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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | S: Status, one of the following: |
| 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 3C505 NETWORK DRIVER |
| 88 | P: Philip Blundell |
| 89 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 90 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | S: Maintained |
| 92 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 93 | 3C59X NETWORK DRIVER |
| 94 | P: Steffen Klassert |
| 95 | M: klassert@mathematik.tu-chemnitz.de |
| 96 | L: netdev@vger.kernel.org |
| 97 | S: Maintained |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 3CR990 NETWORK DRIVER |
| 100 | P: David Dillow |
| 101 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 102 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | S: Maintained |
| 104 | |
| 105 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
| 106 | P: Adam Radford |
| 107 | M: linuxraid@amcc.com |
| 108 | L: linux-scsi@vger.kernel.org |
| 109 | W: http://www.amcc.com |
| 110 | S: Supported |
| 111 | |
| 112 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
| 113 | P: Adam Radford |
| 114 | M: linuxraid@amcc.com |
| 115 | L: linux-scsi@vger.kernel.org |
| 116 | W: http://www.amcc.com |
| 117 | S: Supported |
| 118 | |
| 119 | 53C700 AND 53C700-66 SCSI DRIVER |
| 120 | P: James E.J. Bottomley |
| 121 | M: James.Bottomley@HansenPartnership.com |
| 122 | L: linux-scsi@vger.kernel.org |
| 123 | S: Maintained |
| 124 | |
| 125 | 6PACK NETWORK DRIVER FOR AX.25 |
| 126 | P: Andreas Koensgen |
| 127 | M: ajk@iehk.rwth-aachen.de |
| 128 | L: linux-hams@vger.kernel.org |
| 129 | S: Maintained |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 132 | P: Francois Romieu |
| 133 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 134 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | S: Maintained |
| 136 | |
| 137 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | L: linux-serial@vger.kernel.org |
| 139 | W: http://serial.sourceforge.net |
Russell King | 353cefd | 2006-10-03 17:36:11 +0100 | [diff] [blame] | 140 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 143 | P: Paul Gortmaker |
| 144 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 145 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | S: Maintained |
| 147 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 148 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 149 | P: Eric Van Hensbergen |
| 150 | M: ericvh@gmail.com |
| 151 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 152 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 153 | P: Latchesar Ionkov |
| 154 | M: lucho@ionkov.net |
| 155 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 156 | W: http://swik.net/v9fs |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 157 | T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git |
| 158 | S: Maintained |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | A2232 SERIAL BOARD DRIVER |
| 161 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | M: A2232@gmx.net |
| 163 | L: linux-m68k@lists.linux-m68k.org |
| 164 | S: Maintained |
| 165 | |
David Howells | fac533c | 2008-03-28 14:15:54 -0700 | [diff] [blame] | 166 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 167 | P: David Howells |
| 168 | M: dhowells@redhat.com |
| 169 | L: linux-afs@lists.infradead.org |
| 170 | S: Supported |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | AIO |
| 173 | P: Benjamin LaHaise |
| 174 | M: bcrl@kvack.org |
| 175 | L: linux-aio@kvack.org |
| 176 | S: Supported |
| 177 | |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 178 | ABIT UGURU HARDWARE MONITOR DRIVER |
| 179 | P: Hans de Goede |
| 180 | M: j.w.r.degoede@hhs.nl |
| 181 | L: lm-sensors@lm-sensors.org |
| 182 | S: Maintained |
| 183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | ACENIC DRIVER |
| 185 | P: Jes Sorensen |
| 186 | M: jes@trained-monkey.org |
| 187 | L: linux-acenic@sunsite.dk |
| 188 | S: Maintained |
| 189 | |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 190 | IPS SCSI RAID DRIVER |
| 191 | P: Adaptec OEM Raid Solutions |
| 192 | M: aacraid@adaptec.com |
| 193 | L: linux-scsi@vger.kernel.org |
| 194 | W: http://www.adaptec.com/ |
| 195 | S: Maintained |
| 196 | |
| 197 | DPT_I2O SCSI RAID DRIVER |
| 198 | P: Adaptec OEM Raid Solutions |
| 199 | M: aacraid@adaptec.com |
| 200 | L: linux-scsi@vger.kernel.org |
| 201 | W: http://www.adaptec.com/ |
| 202 | S: Maintained |
| 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | AACRAID SCSI RAID DRIVER |
| 205 | P: Adaptec OEM Raid Solutions |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 206 | M: aacraid@adaptec.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | L: linux-scsi@vger.kernel.org |
Salyzyn, Mark | e6d1fc3 | 2007-03-29 01:20:24 -0700 | [diff] [blame] | 208 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | S: Supported |
| 210 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 211 | ACER WMI LAPTOP EXTRAS |
| 212 | P: Carlos Corbacho |
| 213 | M: carlos@strangeworlds.co.uk |
| 214 | L: aceracpi@googlegroups.com (subscribers-only) |
| 215 | W: http://code.google.com/p/aceracpi |
| 216 | S: Maintained |
| 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | ACPI |
| 219 | P: Len Brown |
| 220 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 221 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 222 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 223 | W: http://www.lesswatts.org/projects/acpi/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 224 | T: 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] | 225 | S: Supported |
| 226 | |
| 227 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 228 | P: Alexey Starikovskiy |
| 229 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 230 | L: linux-acpi@vger.kernel.org |
| 231 | W: http://acpi.sourceforge.net/ |
| 232 | S: Supported |
| 233 | |
| 234 | ACPI EC DRIVER |
| 235 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 236 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 237 | L: linux-acpi@vger.kernel.org |
| 238 | W: http://acpi.sourceforge.net/ |
| 239 | S: Supported |
| 240 | |
| 241 | ACPI FAN DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 242 | P: Len Brown |
| 243 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 244 | L: linux-acpi@vger.kernel.org |
| 245 | W: http://acpi.sourceforge.net/ |
| 246 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 248 | ACPI PCI HOTPLUG DRIVER |
| 249 | P: Kristen Carlson Accardi |
| 250 | M: kristen.c.accardi@intel.com |
| 251 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 252 | S: Supported |
| 253 | |
| 254 | ACPI THERMAL DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 255 | P: Len Brown |
| 256 | M: len.brown@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 257 | L: linux-acpi@vger.kernel.org |
| 258 | W: http://acpi.sourceforge.net/ |
| 259 | S: Supported |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 260 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 261 | ACPI VIDEO DRIVER |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 262 | P: Rui Zhang |
| 263 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 264 | L: linux-acpi@vger.kernel.org |
| 265 | W: http://acpi.sourceforge.net/ |
| 266 | S: Supported |
| 267 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 268 | ACPI WMI DRIVER |
| 269 | P: Carlos Corbacho |
| 270 | M: carlos@strangeworlds.co.uk |
| 271 | L: linux-acpi@vger.kernel.org |
| 272 | W: http://www.lesswatts.org/projects/acpi/ |
| 273 | S: Maintained |
| 274 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 275 | AD1889 ALSA SOUND DRIVER |
| 276 | P: Kyle McMartin |
| 277 | M: kyle@parisc-linux.org |
| 278 | P: Thibaut Varene |
| 279 | M: T-Bone@parisc-linux.org |
| 280 | W: http://wiki.parisc-linux.org/AD1889 |
| 281 | L: linux-parisc@vger.kernel.org |
| 282 | S: Maintained |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | ADM1025 HARDWARE MONITOR DRIVER |
| 285 | P: Jean Delvare |
| 286 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 287 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | S: Maintained |
| 289 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 290 | ADM1029 HARDWARE MONITOR DRIVER |
| 291 | P: Corentin Labbe |
| 292 | M: corentin.labbe@geomatys.fr |
| 293 | L: lm-sensors@lm-sensors.org |
| 294 | S: Maintained |
| 295 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 296 | ADM8211 WIRELESS DRIVER |
| 297 | P: Michael Wu |
| 298 | M: flamingice@sourmilk.net |
| 299 | L: linux-wireless@vger.kernel.org |
| 300 | W: http://linuxwireless.org/ |
| 301 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 302 | S: Maintained |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | ADT746X FAN DRIVER |
| 305 | P: Colin Leroy |
| 306 | M: colin@colino.net |
| 307 | S: Maintained |
| 308 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 309 | ADVANSYS SCSI DRIVER |
| 310 | P: Matthew Wilcox |
| 311 | M: matthew@wil.cx |
| 312 | L: linux-scsi@vger.kernel.org |
| 313 | S: Maintained |
| 314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | AEDSP16 DRIVER |
| 316 | P: Riccardo Facchetti |
| 317 | M: fizban@tin.it |
| 318 | S: Maintained |
| 319 | |
| 320 | AFFS FILE SYSTEM |
| 321 | P: Roman Zippel |
| 322 | M: zippel@linux-m68k.org |
| 323 | S: Maintained |
| 324 | |
| 325 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 326 | P: David Airlie |
| 327 | M: airlied@linux.ie |
| 328 | T: 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] | 329 | S: Maintained |
| 330 | |
| 331 | AHA152X SCSI DRIVER |
| 332 | P: Juergen E. Fischer |
| 333 | M: Juergen Fischer <fischer@norbit.de> |
| 334 | L: linux-scsi@vger.kernel.org |
| 335 | S: Maintained |
| 336 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 337 | AIC7XXX / AIC79XX SCSI DRIVER |
| 338 | P: Hannes Reinecke |
| 339 | M: hare@suse.de |
| 340 | L: linux-scsi@vger.kernel.org |
| 341 | S: Maintained |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | ALCATEL SPEEDTOUCH USB DRIVER |
| 344 | P: Duncan Sands |
| 345 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 346 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | W: http://www.linux-usb.org/SpeedTouch/ |
| 348 | S: Maintained |
| 349 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 350 | ALCHEMY AU1XX0 MMC DRIVER |
| 351 | S: Orphan |
| 352 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 353 | ALI1563 I2C DRIVER |
| 354 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 355 | M: r.marek@assembler.cz |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 356 | L: i2c@lm-sensors.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 357 | S: Maintained |
| 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | ALPHA PORT |
| 360 | P: Richard Henderson |
| 361 | M: rth@twiddle.net |
| 362 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 363 | P: Ivan Kokshaysky |
| 364 | M: ink@jurassic.park.msu.ru |
| 365 | S: Maintained for 2.4; PCI support for 2.6. |
| 366 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 367 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 368 | P: Thomas Dahlmann |
| 369 | M: thomas.dahlmann@amd.com |
Alan Cox | 20292bc | 2008-02-06 01:36:07 -0800 | [diff] [blame] | 370 | L: info-linux@geode.amd.com (subscribers-only) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 371 | S: Supported |
| 372 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 373 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 374 | P: Jordan Crouse |
Alan Cox | 20292bc | 2008-02-06 01:36:07 -0800 | [diff] [blame] | 375 | L: info-linux@geode.amd.com (subscribers-only) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 376 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 377 | S: Supported |
| 378 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 379 | AMS (Apple Motion Sensor) DRIVER |
| 380 | P: Stelian Pop |
| 381 | M: stelian@popies.net |
| 382 | P: Michael Hanselmann |
| 383 | M: linux-kernel@hansmi.ch |
| 384 | S: Supported |
| 385 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 386 | AMSO1100 RNIC DRIVER |
| 387 | P: Tom Tucker |
| 388 | M: tom@opengridcomputing.com |
| 389 | P: Steve Wise |
| 390 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 391 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 392 | S: Maintained |
| 393 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 394 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 395 | P: Johannes Berg |
| 396 | M: johannes@sipsolutions.net |
| 397 | L: linuxppc-dev@ozlabs.org |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 398 | L: alsa-devel@alsa-project.org (subscribers-only) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 399 | S: Maintained |
| 400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | APM DRIVER |
| 402 | P: Stephen Rothwell |
| 403 | M: sfr@canb.auug.org.au |
| 404 | L: linux-laptop@vger.kernel.org |
| 405 | W: http://www.canb.auug.org.au/~sfr/ |
| 406 | S: Supported |
| 407 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 408 | APPLE SMC DRIVER |
| 409 | P: Nicolas Boichat |
| 410 | M: nicolas@boichat.ch |
| 411 | L: mactel-linux-devel@lists.sourceforge.net |
| 412 | S: Maintained |
| 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | APPLETALK NETWORK LAYER |
| 415 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 416 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | S: Maintained |
| 418 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 419 | APPLETOUCH TOUCHPAD DRIVER |
| 420 | P: Johannes Berg |
| 421 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 422 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 423 | S: Maintained |
| 424 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 425 | ARC FRAMEBUFFER DRIVER |
| 426 | P: Jaya Kumar |
| 427 | M: jayalk@intworks.biz |
| 428 | S: Maintained |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | ARM MFM AND FLOPPY DRIVERS |
| 431 | P: Ian Molton |
| 432 | M: spyro@f2s.com |
| 433 | S: Maintained |
| 434 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 435 | ARM PRIMECELL MMCI PL180/1 DRIVER |
| 436 | P: Russell King |
| 437 | M: rmk@arm.linux.org.uk |
| 438 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 439 | S: Maintained |
| 440 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 441 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 442 | P: Lennert Buytenhek |
| 443 | M: kernel@wantstofly.org |
| 444 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 445 | S: Maintained |
| 446 | |
| 447 | ARM/ADS SPHERE MACHINE SUPPORT |
| 448 | P: Lennert Buytenhek |
| 449 | M: kernel@wantstofly.org |
| 450 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 451 | S: Maintained |
| 452 | |
| 453 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 454 | P: Lennert Buytenhek |
| 455 | M: kernel@wantstofly.org |
| 456 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 457 | S: Maintained |
| 458 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 459 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
| 460 | P: Andrew Victor |
Andrew Victor | c5215f3 | 2008-03-12 21:29:09 +0100 | [diff] [blame] | 461 | M: linux@maxim.org.za |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 462 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 463 | W: http://maxim.org.za/at91_26.html |
| 464 | S: Maintained |
| 465 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 466 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 467 | P: Lennert Buytenhek |
| 468 | M: kernel@wantstofly.org |
| 469 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 470 | S: Maintained |
| 471 | |
| 472 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 473 | P: Lennert Buytenhek |
| 474 | M: kernel@wantstofly.org |
| 475 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 476 | S: Maintained |
| 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | ARM/CORGI MACHINE SUPPORT |
| 479 | P: Richard Purdie |
| 480 | M: rpurdie@rpsys.net |
| 481 | S: Maintained |
| 482 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 483 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 484 | P: Lennert Buytenhek |
| 485 | M: kernel@wantstofly.org |
| 486 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 487 | S: Maintained |
| 488 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 489 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
| 490 | P: Kristoffer Ericson |
Kristoffer Ericson | 6a4d028 | 2007-07-07 17:45:10 +0100 | [diff] [blame] | 491 | M: kristoffer.ericson@gmail.com |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 492 | W: www.jlime.com |
| 493 | S: Maintained |
| 494 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 495 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 496 | P: Lennert Buytenhek |
| 497 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 498 | P: Dan Williams |
| 499 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 500 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 501 | S: Supported |
| 502 | |
| 503 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 504 | P: Dan Williams |
| 505 | M: dan.j.williams@intel.com |
| 506 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 507 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 508 | |
| 509 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 510 | P: Lennert Buytenhek |
| 511 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 512 | P: Dan Williams |
| 513 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 514 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 515 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 516 | |
| 517 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 518 | P: Lennert Buytenhek |
| 519 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 520 | P: Dan Williams |
| 521 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 522 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 523 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 524 | |
| 525 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 526 | P: Lennert Buytenhek |
| 527 | M: kernel@wantstofly.org |
| 528 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 529 | S: Maintained |
| 530 | |
| 531 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 532 | P: Lennert Buytenhek |
| 533 | M: kernel@wantstofly.org |
| 534 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 535 | S: Maintained |
| 536 | |
| 537 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 538 | P: Lennert Buytenhek |
| 539 | M: kernel@wantstofly.org |
| 540 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 541 | S: Maintained |
| 542 | |
| 543 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 544 | P: Lennert Buytenhek |
| 545 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 546 | P: Dan Williams |
| 547 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 548 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 549 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 550 | |
| 551 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 552 | P: Lennert Buytenhek |
| 553 | M: kernel@wantstofly.org |
| 554 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 555 | S: Maintained |
| 556 | |
| 557 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 558 | P: Lennert Buytenhek |
| 559 | M: kernel@wantstofly.org |
| 560 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 561 | S: Maintained |
| 562 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 563 | ARM/TOSA MACHINE SUPPORT |
| 564 | P: Dirk Opfer |
| 565 | M: dirk@opfer-online.de |
| 566 | S: Maintained |
| 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | ARM/PLEB SUPPORT |
| 569 | P: Peter Chubb |
| 570 | M: pleb@gelato.unsw.edu.au |
| 571 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 572 | S: Maintained |
| 573 | |
| 574 | ARM/PT DIGITAL BOARD PORT |
| 575 | P: Stefan Eletzhofer |
| 576 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 577 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | W: http://www.arm.linux.org.uk/ |
| 579 | S: Maintained |
| 580 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 581 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 582 | P: Lennert Buytenhek |
| 583 | M: kernel@wantstofly.org |
| 584 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 585 | S: Maintained |
| 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | ARM/SHARK MACHINE SUPPORT |
| 588 | P: Alexander Schulz |
| 589 | M: alex@shark-linux.de |
| 590 | W: http://www.shark-linux.de/shark.html |
| 591 | S: Maintained |
| 592 | |
| 593 | ARM/STRONGARM110 PORT |
| 594 | P: Russell King |
| 595 | M: rmk@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 596 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | W: http://www.arm.linux.org.uk/ |
| 598 | S: Maintained |
| 599 | |
| 600 | ARM/S3C2410 ARM ARCHITECTURE |
| 601 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 602 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 603 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | W: http://www.fluff.org/ben/linux/ |
| 605 | S: Maintained |
| 606 | |
| 607 | ARM/S3C2440 ARM ARCHITECTURE |
| 608 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 609 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 610 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | W: http://www.fluff.org/ben/linux/ |
| 612 | S: Maintained |
| 613 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 614 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 615 | P: Lennert Buytenhek |
| 616 | M: kernel@wantstofly.org |
| 617 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 618 | S: Maintained |
| 619 | |
| 620 | ARM/THECUS N2100 MACHINE SUPPORT |
| 621 | P: Lennert Buytenhek |
| 622 | M: kernel@wantstofly.org |
| 623 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 624 | S: Maintained |
| 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | ARPD SUPPORT |
| 627 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 628 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | S: Maintained |
| 630 | |
| 631 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 632 | P: Corentin Chary |
| 633 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | P: Karol Kozimor |
| 635 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | L: acpi4asus-user@lists.sourceforge.net |
| 637 | W: http://sourceforge.net/projects/acpi4asus |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 638 | W: http://xf.iksaif.net/acpi4asus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | S: Maintained |
| 640 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 641 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 642 | P: Mark M. Hoffman |
| 643 | M: mhoffman@lightlink.com |
| 644 | L: lm-sensors@lm-sensors.org |
| 645 | S: Maintained |
| 646 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 647 | ASUS LAPTOP EXTRAS DRIVER |
| 648 | P: Corentin Chary |
| 649 | M: corentincj@iksaif.net |
| 650 | L: acpi4asus-user@lists.sourceforge.net |
| 651 | W: http://sourceforge.net/projects/acpi4asus |
| 652 | W: http://xf.iksaif.net/acpi4asus |
| 653 | S: Maintained |
| 654 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 655 | ASYNCHRONOUS TRANSFERS/TRANSFORMS API |
| 656 | P: Dan Williams |
| 657 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 658 | P: Maciej Sosnowski |
| 659 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 660 | L: linux-kernel@vger.kernel.org |
| 661 | W: http://sourceforge.net/projects/xscaleiop |
| 662 | S: Supported |
| 663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | ATA OVER ETHERNET DRIVER |
| 665 | P: Ed L. Cashin |
| 666 | M: ecashin@coraid.com |
| 667 | W: http://www.coraid.com/support/linux |
| 668 | S: Supported |
| 669 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 670 | ATHEROS ATH5K WIRELESS DRIVER |
| 671 | P: Jiri Slaby |
| 672 | M: jirislaby@gmail.com |
| 673 | P: Nick Kossifidis |
| 674 | M: mickflemm@gmail.com |
| 675 | P: Luis R. Rodriguez |
| 676 | M: mcgrof@gmail.com |
| 677 | L: linux-wireless@vger.kernel.org |
| 678 | L: ath5k-devel@lists.ath5k.org |
| 679 | S: Maintained |
| 680 | |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 681 | ATL1 ETHERNET DRIVER |
| 682 | P: Jay Cliburn |
| 683 | M: jcliburn@gmail.com |
| 684 | P: Chris Snook |
| 685 | M: csnook@redhat.com |
| 686 | L: atl1-devel@lists.sourceforge.net |
| 687 | W: http://sourceforge.net/projects/atl1 |
| 688 | W: http://atl1.sourceforge.net |
| 689 | S: Maintained |
| 690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | ATM |
| 692 | P: Chas Williams |
| 693 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 694 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | W: http://linux-atm.sourceforge.net |
| 696 | S: Maintained |
| 697 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 698 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 699 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 700 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 701 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 702 | W: http://www.atmel.com/products/AT91/ |
| 703 | W: http://www.at91.com/ |
| 704 | S: Maintained |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 705 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 706 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 707 | P: Haavard Skinnemoen |
| 708 | M: hskinnemoen@atmel.com |
| 709 | L: linux-kernel@vger.kernel.org |
| 710 | S: Supported |
| 711 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 712 | ATMEL LCDFB DRIVER |
| 713 | P: Nicolas Ferre |
| 714 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 715 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 716 | S: Maintained |
| 717 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 718 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 719 | P: Haavard Skinnemoen |
| 720 | M: hskinnemoen@atmel.com |
| 721 | S: Supported |
| 722 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 723 | ATMEL SPI DRIVER |
| 724 | P: Haavard Skinnemoen |
| 725 | M: hskinnemoen@atmel.com |
| 726 | S: Supported |
| 727 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 728 | ATMEL USBA UDC DRIVER |
| 729 | P: Haavard Skinnemoen |
| 730 | M: hskinnemoen@atmel.com |
| 731 | L: kernel@avr32linux.org |
| 732 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 733 | S: Supported |
| 734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | ATMEL WIRELESS DRIVER |
| 736 | P: Simon Kelley |
| 737 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 738 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | W: http://www.thekelleys.org.uk/atmel |
| 740 | W: http://atmelwlandriver.sourceforge.net/ |
| 741 | S: Maintained |
| 742 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 743 | AUDIT SUBSYSTEM |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 744 | P: David Woodhouse |
| 745 | M: dwmw2@infradead.org |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 746 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 747 | W: http://people.redhat.com/sgrubb/audit/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 748 | T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 749 | S: Maintained |
| 750 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 751 | AUXILIARY DISPLAY DRIVERS |
| 752 | P: Miguel Ojeda Sandonis |
| 753 | M: maxextreme@gmail.com |
| 754 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 755 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 756 | S: Maintained |
| 757 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 758 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 759 | P: Haavard Skinnemoen |
| 760 | M: hskinnemoen@atmel.com |
| 761 | W: http://www.atmel.com/products/AVR32/ |
| 762 | W: http://avr32linux.org/ |
| 763 | W: http://avrfreaks.net/ |
| 764 | S: Supported |
| 765 | |
| 766 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 767 | P: Haavard Skinnemoen |
| 768 | M: hskinnemoen@atmel.com |
| 769 | S: Supported |
| 770 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | AX.25 NETWORK LAYER |
| 772 | P: Ralf Baechle |
| 773 | M: ralf@linux-mips.org |
| 774 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 775 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | S: Maintained |
| 777 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 778 | BACKLIGHT CLASS/SUBSYSTEM |
| 779 | P: Richard Purdie |
| 780 | M: rpurdie@rpsys.net |
| 781 | S: Maintained |
| 782 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 783 | BLACKFIN ARCHITECTURE |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 784 | P: Bryan Wu |
Bryan Wu | 7dd06cd | 2008-02-21 16:18:43 +0800 | [diff] [blame] | 785 | M: cooloney@kernel.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 786 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 787 | W: http://blackfin.uclinux.org |
| 788 | S: Supported |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 789 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 790 | BLACKFIN EMAC DRIVER |
| 791 | P: Bryan Wu |
Bryan Wu | 7dd06cd | 2008-02-21 16:18:43 +0800 | [diff] [blame] | 792 | M: cooloney@kernel.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 793 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 794 | W: http://blackfin.uclinux.org |
| 795 | S: Supported |
| 796 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 797 | BLACKFIN RTC DRIVER |
| 798 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 799 | M: vapier.adi@gmail.com |
| 800 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 801 | W: http://blackfin.uclinux.org |
| 802 | S: Supported |
| 803 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 804 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 805 | P: Sonic Zhang |
| 806 | M: sonic.zhang@analog.com |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 807 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 808 | W: http://blackfin.uclinux.org |
| 809 | S: Supported |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 810 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 811 | BLACKFIN WATCHDOG DRIVER |
| 812 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 813 | M: vapier.adi@gmail.com |
| 814 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 815 | W: http://blackfin.uclinux.org |
| 816 | S: Supported |
| 817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 819 | P: Thomas Sailer |
| 820 | M: t.sailer@alumni.ethz.ch |
| 821 | L: linux-hams@vger.kernel.org |
| 822 | W: http://www.baycom.org/~tom/ham/ham.html |
| 823 | S: Maintained |
| 824 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 825 | B43 WIRELESS DRIVER |
| 826 | P: Michael Buesch |
| 827 | M: mb@bu3sch.de |
| 828 | P: Stefano Brivio |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 829 | M: stefano.brivio@polimi.it |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 830 | L: linux-wireless@vger.kernel.org |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 831 | W: http://linuxwireless.org/en/users/Drivers/b43 |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 832 | S: Maintained |
| 833 | |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 834 | B43LEGACY WIRELESS DRIVER |
| 835 | P: Larry Finger |
| 836 | M: Larry.Finger@lwfinger.net |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 837 | P: Stefano Brivio |
| 838 | M: stefano.brivio@polimi.it |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 839 | L: linux-wireless@vger.kernel.org |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 840 | W: http://linuxwireless.org/en/users/Drivers/b43 |
Larry Finger | 75388ac | 2007-09-25 16:46:54 -0700 | [diff] [blame] | 841 | S: Maintained |
| 842 | |
Michael Buesch | fb67a0f | 2006-08-16 00:39:36 +0200 | [diff] [blame] | 843 | BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION) |
| 844 | P: Larry Finger |
| 845 | M: Larry.Finger@lwfinger.net |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 846 | P: Stefano Brivio |
Stefano Brivio | 2817ef1 | 2007-11-06 22:48:56 +0100 | [diff] [blame] | 847 | M: stefano.brivio@polimi.it |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 848 | L: linux-wireless@vger.kernel.org |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 849 | W: http://bcm43xx.berlios.de/ |
John W. Linville | 003faaa | 2008-01-27 22:48:37 -0800 | [diff] [blame] | 850 | S: Obsolete |
Michael Buesch | 9eac8f9 | 2006-04-22 17:31:27 +0200 | [diff] [blame] | 851 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | BEFS FILE SYSTEM |
| 853 | P: Sergey S. Kostyliov |
| 854 | M: rathamahata@php4.ru |
| 855 | L: linux-kernel@vger.kernel.org |
| 856 | S: Maintained |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | BFS FILE SYSTEM |
| 859 | P: Tigran A. Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 860 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | L: linux-kernel@vger.kernel.org |
| 862 | S: Maintained |
| 863 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 864 | BLACKFIN I2C TWI DRIVER |
| 865 | P: Sonic Zhang |
| 866 | M: sonic.zhang@analog.com |
| 867 | L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only) |
| 868 | W: http://blackfin.uclinux.org/ |
| 869 | S: Supported |
| 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | BLOCK LAYER |
| 872 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 873 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 875 | T: 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] | 876 | S: Maintained |
| 877 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 878 | BLOCK2MTD DRIVER |
| 879 | P: Joern Engel |
| 880 | M: joern@lazybastard.org |
| 881 | L: linux-mtd@lists.infradead.org |
| 882 | S: Maintained |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | BLUETOOTH SUBSYSTEM |
| 885 | P: Marcel Holtmann |
| 886 | M: marcel@holtmann.org |
| 887 | P: Maxim Krasnyansky |
| 888 | M: maxk@qualcomm.com |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 889 | L: linux-bluetooth@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | W: http://bluez.sf.net |
| 891 | W: http://www.bluez.org |
| 892 | W: http://www.holtmann.org/linux/bluetooth/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 893 | T: 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] | 894 | S: Maintained |
| 895 | |
| 896 | BLUETOOTH RFCOMM LAYER |
| 897 | P: Marcel Holtmann |
| 898 | M: marcel@holtmann.org |
| 899 | P: Maxim Krasnyansky |
| 900 | M: maxk@qualcomm.com |
| 901 | S: Maintained |
| 902 | |
| 903 | BLUETOOTH BNEP LAYER |
| 904 | P: Marcel Holtmann |
| 905 | M: marcel@holtmann.org |
| 906 | P: Maxim Krasnyansky |
| 907 | M: maxk@qualcomm.com |
| 908 | S: Maintained |
| 909 | |
| 910 | BLUETOOTH CMTP LAYER |
| 911 | P: Marcel Holtmann |
| 912 | M: marcel@holtmann.org |
| 913 | S: Maintained |
| 914 | |
| 915 | BLUETOOTH HIDP LAYER |
| 916 | P: Marcel Holtmann |
| 917 | M: marcel@holtmann.org |
| 918 | S: Maintained |
| 919 | |
| 920 | BLUETOOTH HCI UART DRIVER |
| 921 | P: Marcel Holtmann |
| 922 | M: marcel@holtmann.org |
| 923 | P: Maxim Krasnyansky |
| 924 | M: maxk@qualcomm.com |
| 925 | S: Maintained |
| 926 | |
| 927 | BLUETOOTH HCI USB DRIVER |
| 928 | P: Marcel Holtmann |
| 929 | M: marcel@holtmann.org |
| 930 | P: Maxim Krasnyansky |
| 931 | M: maxk@qualcomm.com |
| 932 | S: Maintained |
| 933 | |
| 934 | BLUETOOTH HCI BCM203X DRIVER |
| 935 | P: Marcel Holtmann |
| 936 | M: marcel@holtmann.org |
| 937 | S: Maintained |
| 938 | |
| 939 | BLUETOOTH HCI BPA10X DRIVER |
| 940 | P: Marcel Holtmann |
| 941 | M: marcel@holtmann.org |
| 942 | S: Maintained |
| 943 | |
| 944 | BLUETOOTH HCI BFUSB DRIVER |
| 945 | P: Marcel Holtmann |
| 946 | M: marcel@holtmann.org |
| 947 | S: Maintained |
| 948 | |
| 949 | BLUETOOTH HCI DTL1 DRIVER |
| 950 | P: Marcel Holtmann |
| 951 | M: marcel@holtmann.org |
| 952 | S: Maintained |
| 953 | |
| 954 | BLUETOOTH HCI BLUECARD DRIVER |
| 955 | P: Marcel Holtmann |
| 956 | M: marcel@holtmann.org |
| 957 | S: Maintained |
| 958 | |
| 959 | BLUETOOTH HCI BT3C DRIVER |
| 960 | P: Marcel Holtmann |
| 961 | M: marcel@holtmann.org |
| 962 | S: Maintained |
| 963 | |
| 964 | BLUETOOTH HCI BTUART DRIVER |
| 965 | P: Marcel Holtmann |
| 966 | M: marcel@holtmann.org |
| 967 | S: Maintained |
| 968 | |
| 969 | BLUETOOTH HCI VHCI DRIVER |
| 970 | P: Maxim Krasnyansky |
| 971 | M: maxk@qualcomm.com |
| 972 | S: Maintained |
| 973 | |
| 974 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 975 | P: Jay Vosburgh |
| 976 | M: fubar@us.ibm.com |
| 977 | L: bonding-devel@lists.sourceforge.net |
| 978 | W: http://sourceforge.net/projects/bonding/ |
| 979 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
Arnd Bergmann | fef1c77 | 2005-06-23 09:43:37 +1000 | [diff] [blame] | 981 | BROADBAND PROCESSOR ARCHITECTURE |
| 982 | P: Arnd Bergmann |
| 983 | M: arnd@arndb.de |
Stephen Rothwell | 1d04981 | 2006-03-22 11:26:58 +1100 | [diff] [blame] | 984 | L: linuxppc-dev@ozlabs.org |
Arthur Othieno | 6d923f9 | 2006-05-19 06:22:23 -0400 | [diff] [blame] | 985 | W: http://www.penguinppc.org/ppc64/ |
Arnd Bergmann | fef1c77 | 2005-06-23 09:43:37 +1000 | [diff] [blame] | 986 | S: Supported |
| 987 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 988 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 989 | P: Gary Zambrano |
| 990 | M: zambrano@broadcom.com |
| 991 | L: netdev@vger.kernel.org |
| 992 | S: Supported |
| 993 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 994 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 995 | P: Michael Chan |
| 996 | M: mchan@broadcom.com |
| 997 | L: netdev@vger.kernel.org |
| 998 | S: Supported |
| 999 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1000 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
| 1001 | P: Eliezer Tamir |
| 1002 | M: eliezert@broadcom.com |
| 1003 | L: netdev@vger.kernel.org |
| 1004 | S: Supported |
| 1005 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1006 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
| 1007 | P: Michael Chan |
| 1008 | M: mchan@broadcom.com |
| 1009 | L: netdev@vger.kernel.org |
| 1010 | S: Supported |
| 1011 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1012 | BSG (block layer generic sg v4 driver) |
| 1013 | P: FUJITA Tomonori |
| 1014 | M: fujita.tomonori@lab.ntt.co.jp |
| 1015 | L: linux-scsi@vger.kernel.org |
| 1016 | S: Supported |
| 1017 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1019 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1020 | M: mchehab@infradead.org |
| 1021 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | L: video4linux-list@redhat.com |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1023 | W: http://linuxtv.org |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 1024 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1025 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1027 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
| 1028 | P: Jonathan Corbet |
| 1029 | M: corbet@lwn.net |
| 1030 | L: video4linux-list@redhat.com |
| 1031 | S: Maintained |
| 1032 | |
Oliver Hartkopp | beca222 | 2007-11-16 16:07:41 -0800 | [diff] [blame] | 1033 | CAN NETWORK LAYER |
| 1034 | P: Urs Thuermann |
| 1035 | M: urs.thuermann@volkswagen.de |
| 1036 | P: Oliver Hartkopp |
| 1037 | M: oliver.hartkopp@volkswagen.de |
| 1038 | L: socketcan-core@lists.berlios.de |
| 1039 | W: http://developer.berlios.de/projects/socketcan/ |
| 1040 | S: Maintained |
| 1041 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1042 | CALGARY x86-64 IOMMU |
| 1043 | P: Muli Ben-Yehuda |
| 1044 | M: muli@il.ibm.com |
| 1045 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1046 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1047 | L: linux-kernel@vger.kernel.org |
| 1048 | L: discuss@x86-64.org |
| 1049 | S: Maintained |
| 1050 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1051 | CFAG12864B LCD DRIVER |
| 1052 | P: Miguel Ojeda Sandonis |
| 1053 | M: maxextreme@gmail.com |
| 1054 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 1055 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1056 | S: Maintained |
| 1057 | |
| 1058 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1059 | P: Miguel Ojeda Sandonis |
| 1060 | M: maxextreme@gmail.com |
| 1061 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 1062 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1063 | S: Maintained |
| 1064 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1065 | CFG80211 and NL80211 |
| 1066 | P: Johannes Berg |
| 1067 | M: johannes@sipsolutions.net |
| 1068 | L: linux-wireless@vger.kernel.org |
| 1069 | S: Maintained |
| 1070 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1071 | CHECKPATCH |
| 1072 | P: Andy Whitcroft |
| 1073 | M: apw@shadowen.org |
| 1074 | P: Randy Dunlap |
| 1075 | M: rdunlap@xenotime.net |
| 1076 | P: Joel Schopp |
| 1077 | M: jschopp@austin.ibm.com |
| 1078 | S: Supported |
| 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1081 | P: Steve French |
| 1082 | M: sfrench@samba.org |
Jesper Juhl | fb453d4 | 2006-01-15 02:46:48 +0100 | [diff] [blame] | 1083 | L: linux-cifs-client@lists.samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | L: samba-technical@lists.samba.org |
Steve French | af5a032 | 2007-08-13 19:53:17 +0000 | [diff] [blame] | 1085 | W: http://linux-cifs.samba.org/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 1086 | T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1087 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1089 | CONFIGFS |
| 1090 | P: Joel Becker |
Joel Becker | 62ca3d26 | 2006-01-27 11:04:12 -0800 | [diff] [blame] | 1091 | M: joel.becker@oracle.com |
| 1092 | L: linux-kernel@vger.kernel.org |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1093 | S: Supported |
| 1094 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1095 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1096 | P: Lennert Buytenhek |
| 1097 | M: kernel@wantstofly.org |
| 1098 | L: netdev@vger.kernel.org |
| 1099 | S: Maintained |
| 1100 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1101 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1102 | P: Lennert Buytenhek |
| 1103 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1104 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1105 | S: Maintained |
| 1106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1108 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1109 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1110 | P: Nils Faerber (port to kernel 2.4) |
| 1111 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1112 | S: Maintained |
| 1113 | |
| 1114 | CODA FILE SYSTEM |
| 1115 | P: Jan Harkes |
| 1116 | M: jaharkes@cs.cmu.edu |
| 1117 | M: coda@cs.cmu.edu |
| 1118 | L: codalist@coda.cs.cmu.edu |
| 1119 | W: http://www.coda.cs.cmu.edu/ |
| 1120 | S: Maintained |
| 1121 | |
| 1122 | COMPACTPCI HOTPLUG CORE |
| 1123 | P: Scott Murray |
| 1124 | M: scottm@somanetworks.com |
| 1125 | M: scott@spiteful.org |
| 1126 | L: pcihpd-discuss@lists.sourceforge.net |
| 1127 | S: Supported |
| 1128 | |
| 1129 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1130 | P: Scott Murray |
| 1131 | M: scottm@somanetworks.com |
| 1132 | M: scott@spiteful.org |
| 1133 | L: pcihpd-discuss@lists.sourceforge.net |
| 1134 | S: Supported |
| 1135 | |
| 1136 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1137 | P: Scott Murray |
| 1138 | M: scottm@somanetworks.com |
| 1139 | M: scott@spiteful.org |
| 1140 | L: pcihpd-discuss@lists.sourceforge.net |
| 1141 | S: Supported |
| 1142 | |
| 1143 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1144 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1145 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1147 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1149 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1150 | P: Simon Arlott |
| 1151 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1152 | L: accessrunner-general@lists.sourceforge.net |
| 1153 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1154 | S: Maintained |
| 1155 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1156 | CONTROL GROUPS (CGROUPS) |
| 1157 | P: Paul Menage |
| 1158 | M: menage@google.com |
| 1159 | L: containers@lists.linux-foundation.org |
| 1160 | S: Maintained |
| 1161 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1162 | CORETEMP HARDWARE MONITORING DRIVER |
| 1163 | P: Rudolf Marek |
| 1164 | M: r.marek@assembler.cz |
| 1165 | L: lm-sensors@lm-sensors.org |
| 1166 | S: Maintained |
| 1167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | COSA/SRP SYNC SERIAL DRIVER |
| 1169 | P: Jan "Yenya" Kasprzak |
| 1170 | M: kas@fi.muni.cz |
| 1171 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1172 | S: Maintained |
| 1173 | |
| 1174 | CPU FREQUENCY DRIVERS |
| 1175 | P: Dave Jones |
| 1176 | M: davej@codemonkey.org.uk |
| 1177 | L: cpufreq@lists.linux.org.uk |
| 1178 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Dave Jones | 7531a0b | 2006-12-12 17:26:35 -0500 | [diff] [blame] | 1179 | T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | S: Maintained |
| 1181 | |
| 1182 | CPUID/MSR DRIVER |
| 1183 | P: H. Peter Anvin |
| 1184 | M: hpa@zytor.com |
| 1185 | S: Maintained |
| 1186 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1187 | CPUSETS |
| 1188 | P: Paul Jackson |
| 1189 | P: Simon Derr |
| 1190 | M: pj@sgi.com |
| 1191 | M: simon.derr@bull.net |
| 1192 | L: linux-kernel@vger.kernel.org |
| 1193 | W: http://www.bullopensource.org/cpuset/ |
| 1194 | S: Supported |
| 1195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1197 | W: http://sourceforge.net/projects/cramfs/ |
| 1198 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | |
| 1200 | CRIS PORT |
| 1201 | P: Mikael Starvik |
| 1202 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1203 | P: Jesper Nilsson |
| 1204 | M: jesper.nilsson@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | L: dev-etrax@axis.com |
| 1206 | W: http://developer.axis.com |
| 1207 | S: Maintained |
| 1208 | |
| 1209 | CRYPTO API |
| 1210 | P: Herbert Xu |
| 1211 | M: herbert@gondor.apana.org.au |
| 1212 | P: David S. Miller |
| 1213 | M: davem@davemloft.net |
| 1214 | L: linux-crypto@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 1215 | T: 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] | 1216 | S: Maintained |
| 1217 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1218 | CS5535 Audio ALSA driver |
| 1219 | P: Jaya Kumar |
| 1220 | M: jayakumar.alsa@gmail.com |
| 1221 | S: Maintained |
| 1222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | CYBERPRO FB DRIVER |
| 1224 | P: Russell King |
| 1225 | M: rmk@arm.linux.org.uk |
| 1226 | W: http://www.arm.linux.org.uk/ |
| 1227 | S: Maintained |
| 1228 | |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1229 | CYBLAFB FRAMEBUFFER DRIVER |
| 1230 | P: Knut Petersen |
| 1231 | M: Knut_Petersen@t-online.de |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1232 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1233 | S: Maintained |
| 1234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | CYCLADES 2X SYNC CARD DRIVER |
| 1236 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1237 | M: acme@ghostprotocols.net |
| 1238 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | S: Maintained |
| 1240 | |
| 1241 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1243 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | |
| 1245 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1247 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | DAMA SLAVE for AX.25 |
| 1250 | P: Joerg Reuter |
| 1251 | M: jreuter@yaina.de |
| 1252 | W: http://yaina.de/jreuter/ |
| 1253 | W: http://www.qsl.net/dl1bke/ |
| 1254 | L: linux-hams@vger.kernel.org |
| 1255 | S: Maintained |
| 1256 | |
| 1257 | DC395x SCSI driver |
| 1258 | P: Oliver Neukum |
| 1259 | M: oliver@neukum.name |
| 1260 | P: Ali Akcaagac |
| 1261 | M: aliakc@web.de |
| 1262 | P: Jamie Lenehan |
| 1263 | M: lenehan@twibble.org |
| 1264 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1265 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1267 | S: Maintained |
| 1268 | |
| 1269 | DC390/AM53C974 SCSI driver |
| 1270 | P: Kurt Garloff |
| 1271 | M: garloff@suse.de |
| 1272 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1273 | P: Guennadi Liakhovetski |
| 1274 | M: g.liakhovetski@gmx.de |
| 1275 | S: Maintained |
| 1276 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1277 | DCCP PROTOCOL |
| 1278 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1279 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1280 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1281 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1282 | S: Maintained |
| 1283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1285 | P: Christine Caulfield |
| 1286 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | W: http://linux-decnet.sourceforge.net |
| 1288 | L: linux-decnet-user@lists.sourceforge.net |
| 1289 | S: Maintained |
| 1290 | |
| 1291 | DEFXX FDDI NETWORK DRIVER |
| 1292 | P: Maciej W. Rozycki |
| 1293 | M: macro@linux-mips.org |
| 1294 | S: Maintained |
| 1295 | |
| 1296 | DELL LAPTOP SMM DRIVER |
| 1297 | P: Massimo Dal Zotto |
| 1298 | M: dz@debian.org |
| 1299 | W: http://www.debian.org/~dz/i8k/ |
| 1300 | S: Maintained |
| 1301 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1302 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1303 | P: Doug Warzecha |
| 1304 | M: Douglas_Warzecha@dell.com |
| 1305 | S: Maintained |
| 1306 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 1307 | DEVICE-MAPPER (LVM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | P: Alasdair Kergon |
| 1309 | L: dm-devel@redhat.com |
| 1310 | W: http://sources.redhat.com/dm |
| 1311 | S: Maintained |
| 1312 | |
| 1313 | DEVICE NUMBER REGISTRY |
| 1314 | P: Torben Mathiasen |
| 1315 | M: device@lanana.org |
| 1316 | W: http://lanana.org/docs/device-list/index.html |
| 1317 | L: linux-kernel@vger.kernel.org |
| 1318 | S: Maintained |
| 1319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | DIGI INTL. EPCA DRIVER |
| 1321 | P: Digi International, Inc |
| 1322 | M: Eng.Linux@digi.com |
| 1323 | L: Eng.Linux@digi.com |
| 1324 | W: http://www.digi.com |
| 1325 | S: Orphaned |
| 1326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | DIRECTORY NOTIFICATION |
| 1328 | P: Stephen Rothwell |
| 1329 | M: sfr@canb.auug.org.au |
| 1330 | L: linux-kernel@vger.kernel.org |
| 1331 | S: Supported |
| 1332 | |
| 1333 | DISK GEOMETRY AND PARTITION HANDLING |
| 1334 | P: Andries Brouwer |
| 1335 | M: aeb@cwi.nl |
| 1336 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1337 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1338 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1339 | S: Maintained |
| 1340 | |
| 1341 | DISKQUOTA: |
| 1342 | P: Jan Kara |
| 1343 | M: jack@suse.cz |
| 1344 | L: linux-kernel@vger.kernel.org |
| 1345 | S: Maintained |
| 1346 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1347 | DISTRIBUTED LOCK MANAGER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1348 | P: Christine Caulfield |
| 1349 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1350 | P: David Teigland |
| 1351 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1352 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1353 | W: http://sources.redhat.com/cluster/ |
David Teigland | d7c2fea | 2008-02-21 15:27:09 -0600 | [diff] [blame] | 1354 | T: git kernel.org:/pub/scm/linux/kernel/git/teigland/dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1355 | S: Supported |
| 1356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1358 | P: Tobias Ringstrom |
| 1359 | M: tori@unhappy.mine.nu |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 1360 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | S: Maintained |
| 1362 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1363 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1364 | P: Maciej Sosnowski |
| 1365 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1366 | P: Dan Williams |
| 1367 | M: dan.j.williams@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1368 | L: linux-kernel@vger.kernel.org |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1369 | S: Supported |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1370 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1371 | DME1737 HARDWARE MONITOR DRIVER |
| 1372 | P: Juerg Haefliger |
| 1373 | M: juergh@gmail.com |
| 1374 | L: lm-sensors@lm-sensors.org |
| 1375 | S: Maintained |
| 1376 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1377 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1378 | P: Randy Dunlap |
| 1379 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1380 | S: Maintained |
| 1381 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1382 | DOCKING STATION DRIVER |
| 1383 | P: Kristen Carlson Accardi |
| 1384 | M: kristen.c.accardi@intel.com |
| 1385 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1386 | S: Supported |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | DOUBLETALK DRIVER |
| 1389 | P: James R. Van Zandt |
| 1390 | M: jrv@vanzandt.mv.com |
| 1391 | L: blinux-list@redhat.com |
| 1392 | S: Maintained |
| 1393 | |
| 1394 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1395 | P: Greg Kroah-Hartman |
| 1396 | M: gregkh@suse.de |
| 1397 | L: linux-kernel@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1398 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | S: Supported |
| 1400 | |
| 1401 | DRM DRIVERS |
| 1402 | P: David Airlie |
| 1403 | M: airlied@linux.ie |
| 1404 | L: dri-devel@lists.sourceforge.net |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1405 | T: 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] | 1406 | S: Maintained |
| 1407 | |
| 1408 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 1409 | P: Francois Romieu |
| 1410 | M: romieu@fr.zoreil.com |
| 1411 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | S: Maintained |
| 1413 | |
| 1414 | DVB SUBSYSTEM AND DRIVERS |
| 1415 | P: LinuxTV.org Project |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1416 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | L: linux-dvb@linuxtv.org (subscription required) |
Johannes Stezenbach | 7d69fa6 | 2005-08-11 11:54:24 +0200 | [diff] [blame] | 1418 | W: http://linuxtv.org/ |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 1419 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1420 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 1422 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 1423 | P: Maciej W. Rozycki |
| 1424 | M: macro@linux-mips.org |
| 1425 | S: Maintained |
| 1426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | EATA-DMA SCSI DRIVER |
| 1428 | P: Michael Neuffer |
| 1429 | L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org |
| 1430 | S: Maintained |
| 1431 | |
| 1432 | EATA ISA/EISA/PCI SCSI DRIVER |
| 1433 | P: Dario Ballabio |
| 1434 | M: ballabio_dario@emc.com |
| 1435 | L: linux-scsi@vger.kernel.org |
| 1436 | S: Maintained |
| 1437 | |
| 1438 | EATA-PIO SCSI DRIVER |
| 1439 | P: Michael Neuffer |
| 1440 | M: mike@i-Connect.Net |
| 1441 | L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org |
| 1442 | S: Maintained |
| 1443 | |
| 1444 | EBTABLES |
| 1445 | P: Bart De Schuymer |
| 1446 | M: bart.de.schuymer@pandora.be |
| 1447 | L: ebtables-user@lists.sourceforge.net |
| 1448 | L: ebtables-devel@lists.sourceforge.net |
| 1449 | W: http://ebtables.sourceforge.net/ |
| 1450 | S: Maintained |
| 1451 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1452 | ECRYPT FILE SYSTEM |
| 1453 | P: Mike Halcrow, Phillip Hellewell |
| 1454 | M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net |
| 1455 | L: ecryptfs-devel@lists.sourceforge.net |
| 1456 | W: http://ecryptfs.sourceforge.net/ |
| 1457 | S: Supported |
| 1458 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1459 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1460 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1461 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1462 | L: bluesmoke-devel@lists.sourceforge.net |
| 1463 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1464 | S: Supported |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1465 | |
| 1466 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1467 | P: Mark Gross |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1468 | P: Doug Thompson |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1469 | M: mark.gross@intel.com |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1470 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1471 | L: bluesmoke-devel@lists.sourceforge.net |
| 1472 | W: bluesmoke.sourceforge.net |
| 1473 | S: Maintained |
| 1474 | |
| 1475 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 1476 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1477 | M: dougthompson@xmission.com |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1478 | L: bluesmoke-devel@lists.sourceforge.net |
| 1479 | W: bluesmoke.sourceforge.net |
| 1480 | S: Maintained |
| 1481 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1482 | EDAC-I82443BXGX |
| 1483 | P: Tim Small |
| 1484 | M: tim@buttersideup.com |
| 1485 | L: bluesmoke-devel@lists.sourceforge.net |
| 1486 | W: bluesmoke.sourceforge.net |
| 1487 | S: Maintained |
| 1488 | |
| 1489 | EDAC-I3000 |
| 1490 | P: Jason Uhlenkott |
| 1491 | M: juhlenko@akamai.com |
| 1492 | L: bluesmoke-devel@lists.sourceforge.net |
| 1493 | W: bluesmoke.sourceforge.net |
| 1494 | S: Maintained |
| 1495 | |
| 1496 | EDAC-I5000 |
| 1497 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 1498 | M: dougthompson@xmission.com |
| 1499 | L: bluesmoke-devel@lists.sourceforge.net |
| 1500 | W: bluesmoke.sourceforge.net |
| 1501 | S: Maintained |
| 1502 | |
| 1503 | EDAC-I82975X |
| 1504 | P: Ranganathan Desikan |
| 1505 | P: Arvind R. |
| 1506 | M: rdesikan@jetzbroadband.com |
| 1507 | M: arvind@acarlab.com |
| 1508 | L: bluesmoke-devel@lists.sourceforge.net |
| 1509 | W: bluesmoke.sourceforge.net |
| 1510 | S: Maintained |
| 1511 | |
| 1512 | EDAC-PASEMI |
| 1513 | P: Egor Martovetsky |
| 1514 | M: egor@pasemi.com |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 1515 | L: bluesmoke-devel@lists.sourceforge.net |
| 1516 | W: bluesmoke.sourceforge.net |
| 1517 | S: Maintained |
| 1518 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 1519 | EDAC-R82600 |
| 1520 | P: Tim Small |
| 1521 | M: tim@buttersideup.com |
| 1522 | L: bluesmoke-devel@lists.sourceforge.net |
| 1523 | W: bluesmoke.sourceforge.net |
| 1524 | S: Maintained |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 1525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | EEPRO100 NETWORK DRIVER |
| 1527 | P: Andrey V. Savochkin |
| 1528 | M: saw@saw.sw.com.sg |
| 1529 | S: Maintained |
| 1530 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 1531 | EFS FILESYSTEM |
| 1532 | W: http://aeschi.ch.eu.org/efs/ |
| 1533 | S: Orphan |
| 1534 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 1535 | EHCA (IBM GX bus InfiniBand adapter) DRIVER: |
| 1536 | P: Hoang-Nam Nguyen |
| 1537 | M: hnguyen@de.ibm.com |
| 1538 | P: Christoph Raisch |
| 1539 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 1540 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 1541 | S: Supported |
| 1542 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 1543 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1544 | P: James Smart |
| 1545 | M: james.smart@emulex.com |
| 1546 | L: linux-scsi@vger.kernel.org |
| 1547 | W: http://sourceforge.net/projects/lpfcxxxx |
| 1548 | S: Supported |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 1549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | EPSON 1355 FRAMEBUFFER DRIVER |
| 1551 | P: Christopher Hoover |
| 1552 | M: ch@murgatroid.com, ch@hpl.hp.com |
| 1553 | S: Maintained |
| 1554 | |
| 1555 | ETHEREXPRESS-16 NETWORK DRIVER |
| 1556 | P: Philip Blundell |
| 1557 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 1558 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | S: Maintained |
| 1560 | |
| 1561 | ETHERNET BRIDGE |
| 1562 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 1563 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 1564 | L: bridge@lists.linux-foundation.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | W: http://bridge.sourceforge.net/ |
| 1566 | S: Maintained |
| 1567 | |
| 1568 | ETHERTEAM 16I DRIVER |
| 1569 | P: Mika Kuoppala |
| 1570 | M: miku@iki.fi |
| 1571 | S: Maintained |
| 1572 | |
| 1573 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1574 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | S: Maintained |
| 1576 | |
| 1577 | EXT3 FILE SYSTEM |
| 1578 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 1579 | M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1580 | L: linux-ext4@vger.kernel.org |
| 1581 | S: Maintained |
| 1582 | |
| 1583 | EXT4 FILE SYSTEM |
| 1584 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 1585 | M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 1586 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | S: Maintained |
| 1588 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 1589 | F71805F HARDWARE MONITORING DRIVER |
| 1590 | P: Jean Delvare |
| 1591 | M: khali@linux-fr.org |
| 1592 | L: lm-sensors@lm-sensors.org |
| 1593 | S: Maintained |
| 1594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | FARSYNC SYNCHRONOUS DRIVER |
| 1596 | P: Kevin Curtis |
| 1597 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | W: http://www.farsite.co.uk/ |
| 1599 | S: Supported |
| 1600 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 1601 | FAULT INJECTION SUPPORT |
| 1602 | P: Akinobu Mita |
| 1603 | M: akinobu.mita@gmail.com |
| 1604 | S: Supported |
| 1605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | FRAMEBUFFER LAYER |
| 1607 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 1608 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1609 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | W: http://linux-fbdev.sourceforge.net/ |
| 1611 | S: Maintained |
| 1612 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 1613 | FREESCALE DMA DRIVER |
| 1614 | P; Zhang Wei |
| 1615 | M: wei.zhang@freescale.com |
| 1616 | L: linuxppc-embedded@ozlabs.org |
| 1617 | L: linux-kernel@vger.kernel.org |
| 1618 | S: Maintained |
| 1619 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 1620 | FREESCALE SOC FS_ENET DRIVER |
| 1621 | P: Pantelis Antoniou |
| 1622 | M: pantelis.antoniou@gmail.com |
| 1623 | P: Vitaly Bordug |
| 1624 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1625 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 1626 | L: netdev@vger.kernel.org |
| 1627 | S: Maintained |
| 1628 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 1629 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 1630 | P: Li Yang |
| 1631 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1632 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1633 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 1634 | S: Maintained |
| 1635 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 1636 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 1637 | P: Li Yang |
| 1638 | M: leoli@freescale.com |
| 1639 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 1640 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 1641 | S: Maintained |
| 1642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 1644 | P: Matthew Wilcox |
| 1645 | M: matthew@wil.cx |
| 1646 | L: linux-fsdevel@vger.kernel.org |
| 1647 | S: Maintained |
| 1648 | |
| 1649 | FILESYSTEMS (VFS and infrastructure) |
| 1650 | P: Alexander Viro |
viro@ZenIV.linux.org.uk | 8412205 | 2005-09-06 19:35:49 +0100 | [diff] [blame] | 1651 | M: viro@zeniv.linux.org.uk |
Paul Menage | b9cf92e | 2008-02-14 19:31:24 -0800 | [diff] [blame] | 1652 | L: linux-fsdevel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | S: Maintained |
| 1654 | |
Stefan Richter | f148e20 | 2008-01-12 12:32:44 +0100 | [diff] [blame] | 1655 | FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>) |
Stefan Richter | b327447 | 2007-05-30 20:44:52 -0400 | [diff] [blame] | 1656 | P: Kristian Hoegsberg, Stefan Richter |
| 1657 | M: krh@redhat.com, stefanr@s5r6.in-berlin.de |
| 1658 | L: linux1394-devel@lists.sourceforge.net |
| 1659 | W: http://www.linux1394.org/ |
| 1660 | T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
| 1661 | S: Maintained |
| 1662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | FIRMWARE LOADER (request_firmware) |
| 1664 | L: linux-kernel@vger.kernel.org |
| 1665 | S: Orphan |
| 1666 | |
| 1667 | FPU EMULATOR |
| 1668 | P: Bill Metzenthen |
| 1669 | M: billm@suburbia.net |
| 1670 | W: http://suburbia.net/~billm/floating-point/emulator/ |
| 1671 | S: Maintained |
| 1672 | |
| 1673 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 1674 | P: Mike McLagan |
| 1675 | M: mike.mclagan@linux.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 1676 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | S: Maintained |
| 1678 | |
| 1679 | FREEVXFS FILESYSTEM |
| 1680 | P: Christoph Hellwig |
| 1681 | M: hch@infradead.org |
| 1682 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 1683 | S: Maintained |
| 1684 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 1685 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | P: David Howells |
| 1687 | M: dhowells@redhat.com |
| 1688 | S: Maintained |
| 1689 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 1690 | FUSE: FILESYSTEM IN USERSPACE |
| 1691 | P: Miklos Szeredi |
| 1692 | M: miklos@szeredi.hu |
| 1693 | L: fuse-devel@lists.sourceforge.net |
| 1694 | W: http://fuse.sourceforge.net/ |
| 1695 | S: Maintained |
| 1696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 1698 | P: Rik Faith |
| 1699 | M: faith@cs.unc.edu |
| 1700 | L: linux-scsi@vger.kernel.org |
| 1701 | S: Odd fixes (e.g., new signatures) |
| 1702 | |
| 1703 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 1704 | P: Achim Leubner |
| 1705 | M: achim_leubner@adaptec.com |
| 1706 | L: linux-scsi@vger.kernel.org |
| 1707 | W: http://www.icp-vortex.com/ |
| 1708 | S: Supported |
| 1709 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 1710 | GENERIC GPIO I2C DRIVER |
| 1711 | P: Haavard Skinnemoen |
| 1712 | M: hskinnemoen@atmel.com |
| 1713 | S: Supported |
| 1714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS |
| 1716 | P: Krzysztof Halasa |
| 1717 | M: khc@pm.waw.pl |
| 1718 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 1719 | S: Maintained |
| 1720 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1721 | GFS2 FILE SYSTEM |
| 1722 | P: Steven Whitehouse |
| 1723 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1724 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1725 | W: http://sources.redhat.com/cluster/ |
Steven Whitehouse | 370298e | 2006-10-12 15:40:05 -0400 | [diff] [blame] | 1726 | T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 1727 | T: 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] | 1728 | S: Supported |
| 1729 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 1730 | GIGASET ISDN DRIVERS |
| 1731 | P: Hansjoerg Lipp |
| 1732 | M: hjlipp@web.de |
| 1733 | P: Tilman Schmidt |
| 1734 | M: tilman@imap.cc |
| 1735 | L: gigaset307x-common@lists.sourceforge.net |
| 1736 | W: http://gigaset307x.sourceforge.net/ |
| 1737 | S: Maintained |
| 1738 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1739 | HARDWARE MONITORING |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 1740 | P: Mark M. Hoffman |
| 1741 | M: mhoffman@lightlink.com |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1742 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 1743 | W: http://www.lm-sensors.org/ |
Mark M. Hoffman | a1aa5a7 | 2007-10-07 14:45:26 -0400 | [diff] [blame] | 1744 | T: git lm-sensors.org:/kernel/mhoffman/hwmon-2.6.git testing |
| 1745 | T: git lm-sensors.org:/kernel/mhoffman/hwmon-2.6.git release |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1746 | S: Maintained |
| 1747 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1748 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Michael Buesch | 4185108 | 2008-02-23 15:23:42 -0800 | [diff] [blame] | 1749 | S: Orphaned |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1750 | |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 1751 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 1752 | P: Robert Love |
| 1753 | M: rlove@rlove.org |
| 1754 | M: linux-kernel@vger.kernel.org |
| 1755 | W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/ |
| 1756 | S: Maintained |
| 1757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | HARMONY SOUND DRIVER |
| 1759 | P: Kyle McMartin |
| 1760 | M: kyle@parisc-linux.org |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 1761 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | S: Maintained |
| 1763 | |
| 1764 | HAYES ESP SERIAL DRIVER |
| 1765 | P: Andrew J. Robinson |
| 1766 | M: arobinso@nyx.net |
| 1767 | L: linux-kernel@vger.kernel.org |
| 1768 | W: http://www.nyx.net/~arobinso |
| 1769 | S: Maintained |
| 1770 | |
| 1771 | HFS FILESYSTEM |
| 1772 | P: Roman Zippel |
| 1773 | M: zippel@linux-m68k.org |
| 1774 | L: linux-kernel@vger.kernel.org |
| 1775 | S: Maintained |
| 1776 | |
| 1777 | HGA FRAMEBUFFER DRIVER |
| 1778 | P: Ferenc Bakonyi |
| 1779 | M: fero@drama.obuda.kando.hu |
| 1780 | L: linux-nvidia@lists.surfsouth.com |
| 1781 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 1782 | S: Maintained |
| 1783 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 1784 | HID CORE LAYER |
| 1785 | P: Jiri Kosina |
| 1786 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 1787 | L: linux-input@vger.kernel.org |
Jiri Kosina | a4dff39 | 2007-02-27 17:40:09 +0100 | [diff] [blame] | 1788 | T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 1789 | S: Maintained |
| 1790 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 1791 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 1792 | P: Thomas Gleixner |
| 1793 | M: tglx@linutronix.de |
| 1794 | L: linux-kernel@vger.kernel.org |
| 1795 | S: Maintained |
| 1796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 1798 | P: Klaus Kudielka |
| 1799 | M: klaus.kudielka@ieee.org |
| 1800 | L: linux-hams@vger.kernel.org |
| 1801 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 1802 | S: Maintained |
| 1803 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 1804 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 1805 | P: HighPoint Linux Team |
| 1806 | M: linux@highpoint-tech.com |
| 1807 | W: http://www.highpoint-tech.com |
| 1808 | S: Supported |
| 1809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | HIPPI |
| 1811 | P: Jes Sorensen |
| 1812 | M: jes@trained-monkey.org |
| 1813 | L: linux-hippi@sunsite.dk |
| 1814 | S: Maintained |
| 1815 | |
| 1816 | HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA |
| 1817 | P: Chirag Kantharia |
| 1818 | M: chirag.kantharia@hp.com |
| 1819 | L: iss_storagedev@hp.com |
| 1820 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 1823 | P: Chirag Kantharia |
| 1824 | M: chirag.kantharia@hp.com |
| 1825 | L: iss_storagedev@hp.com |
| 1826 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 1829 | P: Mike Miller |
| 1830 | M: mike.miller@hp.com |
| 1831 | L: iss_storagedev@hp.com |
| 1832 | S: Supported |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1833 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 1834 | HOST AP DRIVER |
| 1835 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 1836 | M: j@w1.fi |
| 1837 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1838 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 1839 | W: http://hostap.epitest.fi/ |
| 1840 | S: Maintained |
| 1841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 1843 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 1844 | M: perex@perex.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | S: Maintained |
| 1846 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 1847 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 1848 | P: Carlos Corbacho |
| 1849 | M: carlos@strangeworlds.co.uk |
| 1850 | S: Odd Fixes |
| 1851 | |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 1852 | HPET: High Precision Event Timers driver (hpet.c) |
| 1853 | P: Clemens Ladisch |
| 1854 | M: clemens@ladisch.de |
| 1855 | S: Maintained |
| 1856 | |
| 1857 | HPET: i386 |
| 1858 | P: Venkatesh Pallipadi (Venki) |
| 1859 | M: venkatesh.pallipadi@intel.com |
| 1860 | S: Maintained |
| 1861 | |
| 1862 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 1863 | P: Vojtech Pavlik |
| 1864 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 1865 | S: Maintained |
| 1866 | |
| 1867 | HPET: ACPI hpet.c |
| 1868 | P: Bob Picco |
| 1869 | M: bob.picco@hp.com |
| 1870 | S: Maintained |
| 1871 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | HPFS FILESYSTEM |
| 1873 | P: Mikulas Patocka |
| 1874 | M: mikulas@artax.karlin.mff.cuni.cz |
| 1875 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 1876 | S: Maintained |
| 1877 | |
| 1878 | HUGETLB FILESYSTEM |
| 1879 | P: William Irwin |
| 1880 | M: wli@holomorphy.com |
| 1881 | S: Maintained |
| 1882 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 1883 | I2C/SMBUS STUB DRIVER |
| 1884 | P: Mark M. Hoffman |
| 1885 | M: mhoffman@lightlink.com |
| 1886 | L: lm-sensors@lm-sensors.org |
| 1887 | S: Maintained |
| 1888 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 1889 | I2C SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | P: Jean Delvare |
| 1891 | M: khali@linux-fr.org |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 1892 | L: i2c@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 1893 | T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | S: Maintained |
| 1895 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 1896 | I2C-TINY-USB DRIVER |
| 1897 | P: Till Harbaum |
| 1898 | M: till@harbaum.org |
| 1899 | L: i2c@lm-sensors.org |
| 1900 | T: http://www.harbaum.org/till/i2c_tiny_usb |
| 1901 | S: Maintained |
| 1902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 1904 | P: H. Peter Anvin |
| 1905 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | L: Linux-Kernel@vger.kernel.org |
| 1907 | S: Maintained |
| 1908 | |
| 1909 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | P: H. Peter Anvin |
| 1911 | M: hpa@zytor.com |
H. Peter Anvin | 72af61c | 2007-07-13 16:26:55 -0700 | [diff] [blame] | 1912 | T: 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] | 1913 | S: Maintained |
| 1914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | IA64 (Itanium) PLATFORM |
| 1916 | P: Tony Luck |
| 1917 | M: tony.luck@intel.com |
| 1918 | L: linux-ia64@vger.kernel.org |
| 1919 | W: http://www.ia64-linux.org/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1920 | T: 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] | 1921 | S: Maintained |
| 1922 | |
| 1923 | SN-IA64 (Itanium) SUB-PLATFORM |
Greg Edwards | e5ee7dd | 2006-01-18 10:21:59 -0600 | [diff] [blame] | 1924 | P: Jes Sorensen |
| 1925 | M: jes@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | L: linux-altix@sgi.com |
| 1927 | L: linux-ia64@vger.kernel.org |
| 1928 | W: http://www.sgi.com/altix |
| 1929 | S: Maintained |
| 1930 | |
| 1931 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 1932 | P: Michael Lang |
| 1933 | M: langa2@kph.uni-mainz.de |
| 1934 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 1935 | S: Maintained |
| 1936 | |
| 1937 | IBM Power Linux RAID adapter |
| 1938 | P: Brian King |
| 1939 | M: brking@us.ibm.com |
| 1940 | S: Supported |
| 1941 | |
| 1942 | IBM ServeRAID RAID DRIVER |
| 1943 | P: Jack Hammer |
| 1944 | P: Dave Jeffery |
| 1945 | M: ipslinux@adaptec.com |
| 1946 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 1947 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1949 | IDE SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | P: Bartlomiej Zolnierkiewicz |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1951 | M: bzolnier@gmail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | L: linux-ide@vger.kernel.org |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 1953 | T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | S: Maintained |
| 1955 | |
| 1956 | IDE/ATAPI CDROM DRIVER |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 1957 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 1958 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 1959 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 1960 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
| 1962 | IDE/ATAPI FLOPPY DRIVERS |
| 1963 | P: Paul Bristow |
| 1964 | M: Paul Bristow <paul@paulbristow.net> |
| 1965 | W: http://paulbristow.net/linux/idefloppy.html |
| 1966 | L: linux-kernel@vger.kernel.org |
| 1967 | S: Maintained |
| 1968 | |
| 1969 | IDE/ATAPI TAPE DRIVERS |
| 1970 | P: Gadi Oxman |
| 1971 | M: Gadi Oxman <gadio@netvision.net.il> |
| 1972 | L: linux-kernel@vger.kernel.org |
| 1973 | S: Maintained |
| 1974 | |
Bartlomiej Zolnierkiewicz | f72abc2 | 2007-09-19 22:08:56 +0200 | [diff] [blame] | 1975 | IDE-SCSI DRIVER |
| 1976 | L: linux-ide@vger.kernel.org |
| 1977 | L: linux-scsi@vger.kernel.org |
| 1978 | S: Orphan |
| 1979 | |
Stefan Richter | f148e20 | 2008-01-12 12:32:44 +0100 | [diff] [blame] | 1980 | IEEE 1394 SUBSYSTEM (drivers/ieee1394) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1982 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 1983 | P: Stefan Richter |
| 1984 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | L: linux1394-devel@lists.sourceforge.net |
| 1986 | W: http://www.linux1394.org/ |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 1987 | T: 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] | 1988 | S: Maintained |
| 1989 | |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1990 | IEEE 1394 RAW I/O DRIVER (raw1394) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | P: Dan Dennedy |
| 1992 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 1993 | P: Stefan Richter |
| 1994 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 1996 | S: Maintained |
| 1997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1999 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2000 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | |
| 2002 | INFINIBAND SUBSYSTEM |
| 2003 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2004 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2006 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | P: Hal Rosenstock |
Roland Dreier | cec7c89 | 2007-07-12 15:59:36 -0700 | [diff] [blame] | 2008 | M: hal.rosenstock@gmail.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2009 | L: general@lists.openfabrics.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | W: http://www.openib.org/ |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 2011 | T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | S: Supported |
| 2013 | |
Robert P. J. Day | 2f1d076 | 2007-07-10 00:38:18 -0400 | [diff] [blame] | 2014 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
Vojtech Pavlik | 664d22a | 2005-12-13 17:03:36 -0800 | [diff] [blame] | 2015 | P: Dmitry Torokhov |
Dmitry Torokhov | 62f7caf | 2006-06-26 01:47:56 -0400 | [diff] [blame] | 2016 | M: dmitry.torokhov@gmail.com |
| 2017 | M: dtor@mail.ru |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2018 | L: linux-input@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2019 | T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | S: Maintained |
| 2021 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2022 | INOTIFY |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2023 | P: John McCutchan |
| 2024 | M: ttb@tentacle.dhs.org |
| 2025 | P: Robert Love |
| 2026 | M: rml@novell.com |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2027 | L: linux-kernel@vger.kernel.org |
| 2028 | S: Maintained |
| 2029 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2030 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2031 | P: Sylvain Meyer |
| 2032 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2033 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2034 | S: Maintained |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2037 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2038 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2039 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2040 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 2043 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 2044 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | S: Maintained |
| 2046 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2047 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 2048 | P: Maciej Sosnowski |
| 2049 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 2050 | L: linux-kernel@vger.kernel.org |
| 2051 | S: Supported |
| 2052 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2053 | INTEL IOP-ADMA DMA DRIVER |
| 2054 | P: Dan Williams |
| 2055 | M: dan.j.williams@intel.com |
| 2056 | L: linux-kernel@vger.kernel.org |
| 2057 | S: Supported |
| 2058 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2059 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 2060 | P: Deepak Saxena |
| 2061 | M: dsaxena@plexity.net |
| 2062 | S: Maintained |
| 2063 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2064 | INTEL IXP2000 ETHERNET DRIVER |
| 2065 | P: Lennert Buytenhek |
| 2066 | M: kernel@wantstofly.org |
| 2067 | L: netdev@vger.kernel.org |
| 2068 | S: Maintained |
| 2069 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2070 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2071 | P: Auke Kok |
| 2072 | M: auke-jan.h.kok@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | P: Jesse Brandeburg |
| 2074 | M: jesse.brandeburg@intel.com |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 2075 | P: Jeff Kirsher |
| 2076 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2077 | P: Bruce Allan |
| 2078 | M: bruce.w.allan@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 2079 | P: John Ronciak |
| 2080 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 2081 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 2082 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | S: Supported |
| 2084 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2085 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2086 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2087 | M: yi.zhu@intel.com |
| 2088 | P: James Ketrenos |
| 2089 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2090 | P: Reinette Chatre |
| 2091 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2092 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2093 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2094 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2095 | W: http://ipw2100.sourceforge.net |
| 2096 | S: Supported |
| 2097 | |
| 2098 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2099 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2100 | M: yi.zhu@intel.com |
| 2101 | P: James Ketrenos |
| 2102 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2103 | P: Reinette Chatre |
| 2104 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2105 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 2106 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2107 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 2108 | W: http://ipw2200.sourceforge.net |
| 2109 | S: Supported |
| 2110 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2111 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 2112 | P: Zhu Yi |
| 2113 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 2114 | P: Reinette Chatre |
| 2115 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 2116 | L: linux-wireless@vger.kernel.org |
| 2117 | L: ipw3945-devel@lists.sourceforge.net |
| 2118 | W: http://intellinuxwireless.org |
Reinette Chatre | 2d4543f | 2008-04-10 13:16:27 -0700 | [diff] [blame] | 2119 | T: 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] | 2120 | S: Supported |
| 2121 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2122 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | P: Ralf Baechle |
| 2124 | M: ralf@linux-mips.org |
| 2125 | L: linux-mips@linux-mips.org |
| 2126 | S: Maintained |
| 2127 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2128 | IOC3 SERIAL DRIVER |
| 2129 | P: Pat Gefre |
| 2130 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 2131 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 2132 | S: Maintained |
| 2133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | IP MASQUERADING: |
| 2135 | P: Juanjo Ciarlante |
| 2136 | M: jjciarla@raiz.uncu.edu.ar |
| 2137 | S: Maintained |
| 2138 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 2139 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 2140 | P: Francois Romieu |
| 2141 | M: romieu@fr.zoreil.com |
| 2142 | P: Sorbica Shieh |
| 2143 | M: sorbica@icplus.com.tw |
| 2144 | P: Jesse Huang |
| 2145 | M: jesse@icplus.com.tw |
| 2146 | L: netdev@vger.kernel.org |
| 2147 | S: Maintained |
| 2148 | |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 2149 | IPATH DRIVER: |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 2150 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2151 | M: infinipath@qlogic.com |
| 2152 | L: general@lists.openfabrics.org |
| 2153 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 2154 | S: Supported |
| 2155 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 2156 | IPMI SUBSYSTEM |
| 2157 | P: Corey Minyard |
| 2158 | M: minyard@acm.org |
| 2159 | L: openipmi-developer@lists.sourceforge.net |
| 2160 | W: http://openipmi.sourceforge.net/ |
| 2161 | S: Supported |
| 2162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | IPX NETWORK LAYER |
| 2164 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 2165 | M: acme@ghostprotocols.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2166 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | S: Maintained |
| 2168 | |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 2169 | IPWIRELES DRIVER |
| 2170 | P: Jiri Kosina |
| 2171 | M: jkosina@suse.cz |
| 2172 | P: David Sterba |
| 2173 | M: dsterba@suse.cz |
| 2174 | S: Maintained |
| 2175 | T: git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git |
| 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 2178 | P: Samuel Ortiz |
| 2179 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 2180 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 2182 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 2184 | ISCSI |
| 2185 | P: Mike Christie |
| 2186 | M: michaelc@cs.wisc.edu |
| 2187 | L: open-iscsi@googlegroups.com |
| 2188 | W: www.open-iscsi.org |
| 2189 | T: git kernel.org:/pub/scm/linux/kernel/mnc/linux-2.6-iscsi.git |
| 2190 | S: Maintained |
| 2191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | ISAPNP |
| 2193 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 2194 | M: perex@perex.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | S: Maintained |
| 2196 | |
| 2197 | ISDN SUBSYSTEM |
| 2198 | P: Karsten Keil |
| 2199 | M: kkeil@suse.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 2200 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | W: http://www.isdn4linux.de |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2202 | T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | S: Maintained |
| 2204 | |
| 2205 | ISDN SUBSYSTEM (Eicon active card driver) |
| 2206 | P: Armin Schindler |
| 2207 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 2208 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | W: http://www.melware.de |
| 2210 | S: Maintained |
| 2211 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 2212 | IVTV VIDEO4LINUX DRIVER |
| 2213 | P: Hans Verkuil |
| 2214 | M: hverkuil@xs4all.nl |
| 2215 | L: ivtv-devel@ivtvdriver.org |
| 2216 | L: ivtv-users@ivtvdriver.org |
| 2217 | L: video4linux-list@redhat.com |
| 2218 | W: http://www.ivtvdriver.org |
| 2219 | S: Maintained |
| 2220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 2222 | P: David Woodhouse |
| 2223 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 2224 | L: linux-mtd@lists.infradead.org |
| 2225 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | S: Maintained |
| 2227 | |
| 2228 | JFS FILESYSTEM |
| 2229 | P: Dave Kleikamp |
| 2230 | M: shaggy@austin.ibm.com |
| 2231 | L: jfs-discussion@lists.sourceforge.net |
| 2232 | W: http://jfs.sourceforge.net/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2233 | T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | S: Supported |
| 2235 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 2236 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 2237 | P: Stephen Tweedie, Andrew Morton |
Simon Horman | 588cc70 | 2007-02-20 13:58:06 -0800 | [diff] [blame] | 2238 | M: sct@redhat.com, akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2239 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 2240 | S: Maintained |
| 2241 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 2242 | K8TEMP HARDWARE MONITORING DRIVER |
| 2243 | P: Rudolf Marek |
| 2244 | M: r.marek@assembler.cz |
| 2245 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | S: Maintained |
| 2247 | |
| 2248 | KCONFIG |
| 2249 | P: Roman Zippel |
| 2250 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 2251 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | S: Maintained |
| 2253 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2254 | KDUMP |
| 2255 | P: Vivek Goyal |
Vivek Goyal | 4200b66c | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 2256 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2257 | P: Haren Myneni |
| 2258 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 2259 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 2260 | L: linux-kernel@vger.kernel.org |
| 2261 | W: http://lse.sourceforge.net/kdump/ |
| 2262 | S: Maintained |
| 2263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | KERNEL AUTOMOUNTER (AUTOFS) |
| 2265 | P: H. Peter Anvin |
| 2266 | M: hpa@zytor.com |
| 2267 | L: autofs@linux.kernel.org |
| 2268 | S: Odd Fixes |
| 2269 | |
| 2270 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 2271 | P: Ian Kent |
| 2272 | M: raven@themaw.net |
| 2273 | L: autofs@linux.kernel.org |
| 2274 | S: Maintained |
| 2275 | |
| 2276 | KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | P: Sam Ravnborg |
| 2278 | M: sam@ravnborg.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 2279 | T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 2280 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2281 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | |
| 2283 | KERNEL JANITORS |
| 2284 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 2285 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | S: Maintained |
| 2288 | |
| 2289 | KERNEL NFSD |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 2290 | P: J. Bruce Fields |
| 2291 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 2293 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 2294 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 2296 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2297 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 2298 | KERNEL VIRTUAL MACHINE (KVM) |
| 2299 | P: Avi Kivity |
| 2300 | M: avi@qumranet.com |
| 2301 | L: kvm-devel@lists.sourceforge.net |
| 2302 | W: kvm.sourceforge.net |
| 2303 | S: Supported |
| 2304 | |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 2305 | KERNEL VIRTUAL MACHINE For Itanium(KVM/IA64) |
| 2306 | P: Anthony Xu |
| 2307 | M: anthony.xu@intel.com |
| 2308 | P: Xiantao Zhang |
| 2309 | M: xiantao.zhang@intel.com |
| 2310 | L: kvm-ia64-devel@lists.sourceforge.net |
| 2311 | W: kvm.sourceforge.net |
| 2312 | S: Supported |
| 2313 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2314 | KEXEC |
| 2315 | P: Eric Biederman |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2316 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 2317 | 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] | 2318 | L: linux-kernel@vger.kernel.org |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 2319 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 2320 | S: Maintained |
| 2321 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 2322 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 2323 | P: Ananth N Mavinakayanahalli |
| 2324 | M: ananth@in.ibm.com |
| 2325 | P: Anil S Keshavamurthy |
| 2326 | M: anil.s.keshavamurthy@intel.com |
| 2327 | P: David S. Miller |
| 2328 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 2329 | P: Masami Hiramatsu |
| 2330 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 2331 | L: linux-kernel@vger.kernel.org |
| 2332 | S: Maintained |
| 2333 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2334 | KS0108 LCD CONTROLLER DRIVER |
| 2335 | P: Miguel Ojeda Sandonis |
| 2336 | M: maxextreme@gmail.com |
| 2337 | L: linux-kernel@vger.kernel.org |
Miguel Ojeda | 6b96862 | 2007-05-08 00:29:54 -0700 | [diff] [blame] | 2338 | W: http://auxdisplay.googlepages.com/ |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2339 | S: Maintained |
| 2340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 2343 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | |
| 2345 | LASI 53c700 driver for PARISC |
| 2346 | P: James E.J. Bottomley |
| 2347 | M: James.Bottomley@HansenPartnership.com |
| 2348 | L: linux-scsi@vger.kernel.org |
| 2349 | S: Maintained |
| 2350 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 2351 | LED SUBSYSTEM |
| 2352 | P: Richard Purdie |
| 2353 | M: rpurdie@rpsys.net |
| 2354 | S: Maintained |
| 2355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | LEGO USB Tower driver |
| 2357 | P: Juergen Stuber |
| 2358 | M: starblue@users.sourceforge.net |
| 2359 | L: legousb-devel@lists.sourceforge.net |
| 2360 | W: http://legousb.sourceforge.net/ |
| 2361 | S: Maintained |
| 2362 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 2363 | LGUEST |
| 2364 | P: Rusty Russell |
| 2365 | M: rusty@rustcorp.com.au |
| 2366 | L: lguest@ozlabs.org |
| 2367 | W: http://lguest.ozlabs.org/ |
| 2368 | S: Maintained |
| 2369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | LINUX FOR IBM pSERIES (RS/6000) |
| 2371 | P: Paul Mackerras |
| 2372 | M: paulus@au.ibm.com |
| 2373 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 2374 | S: Supported |
| 2375 | |
| 2376 | LINUX FOR NCR VOYAGER |
| 2377 | P: James Bottomley |
| 2378 | M: James.Bottomley@HansenPartnership.com |
| 2379 | W: http://www.hansenpartnership.com/voyager |
| 2380 | S: Maintained |
| 2381 | |
| 2382 | LINUX FOR POWERPC |
| 2383 | P: Paul Mackerras |
| 2384 | M: paulus@samba.org |
| 2385 | W: http://www.penguinppc.org/ |
| 2386 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2387 | T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | S: Supported |
| 2389 | |
| 2390 | LINUX FOR POWER MACINTOSH |
| 2391 | P: Benjamin Herrenschmidt |
| 2392 | M: benh@kernel.crashing.org |
| 2393 | W: http://www.penguinppc.org/ |
| 2394 | L: linuxppc-dev@ozlabs.org |
| 2395 | S: Maintained |
| 2396 | |
| 2397 | LINUX FOR POWERPC EMBEDDED MPC52XX |
| 2398 | P: Sylvain Munaut |
| 2399 | M: tnt@246tNt.com |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 2400 | P: Grant Likely |
| 2401 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | W: http://www.246tNt.com/mpc52xx/ |
| 2403 | W: http://www.penguinppc.org/ |
| 2404 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | S: Maintained |
| 2406 | |
| 2407 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 2408 | P: Josh Boyer |
| 2409 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | P: Matt Porter |
| 2411 | M: mporter@kernel.crashing.org |
| 2412 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2413 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 2414 | T: git kernel.org:/pub/scm/linux/kernel/git/jwboyer/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | S: Maintained |
| 2416 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 2417 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 2418 | P: Grant Likely |
| 2419 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 2420 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 2421 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | S: Maintained |
| 2423 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2424 | LINUX FOR POWERPC BOOT CODE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | P: Tom Rini |
| 2426 | M: trini@kernel.crashing.org |
| 2427 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2428 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2429 | S: Maintained |
| 2430 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2431 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 2432 | P: Vitaly Bordug |
| 2433 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2434 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 2435 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2436 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2437 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 2438 | S: Maintained |
| 2439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2441 | P: Kumar Gala |
| 2442 | M: galak@kernel.crashing.org |
| 2443 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2444 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2445 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 2447 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 2448 | P: Olof Johansson |
| 2449 | M: olof@lixom.net |
| 2450 | W: http://www.pasemi.com/ |
| 2451 | L: linuxppc-dev@ozlabs.org |
| 2452 | S: Supported |
| 2453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | LLC (802.2) |
| 2455 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 2456 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | S: Maintained |
| 2458 | |
| 2459 | LINUX FOR 64BIT POWERPC |
| 2460 | P: Paul Mackerras |
| 2461 | M: paulus@samba.org |
| 2462 | M: paulus@au.ibm.com |
| 2463 | P: Anton Blanchard |
| 2464 | M: anton@samba.org |
| 2465 | M: anton@au.ibm.com |
Arthur Othieno | 6d923f9 | 2006-05-19 06:22:23 -0400 | [diff] [blame] | 2466 | W: http://www.penguinppc.org/ppc64/ |
Stephen Rothwell | 1d04981 | 2006-03-22 11:26:58 +1100 | [diff] [blame] | 2467 | L: linuxppc-dev@ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | S: Supported |
| 2469 | |
| 2470 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 2471 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 2472 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 2473 | L: linux-security-module@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2474 | W: http://lsm.immunix.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2475 | T: 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] | 2476 | S: Supported |
| 2477 | |
| 2478 | LM83 HARDWARE MONITOR DRIVER |
| 2479 | P: Jean Delvare |
| 2480 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 2481 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | S: Maintained |
| 2483 | |
| 2484 | LM90 HARDWARE MONITOR DRIVER |
| 2485 | P: Jean Delvare |
| 2486 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 2487 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2488 | S: Maintained |
| 2489 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 2490 | LOCKDEP AND LOCKSTAT |
| 2491 | P: Peter Zijlstra |
| 2492 | M: peterz@infradead.org |
| 2493 | P: Ingo Molnar |
| 2494 | M: mingo@redhat.com |
| 2495 | L: linux-kernel@vger.kernel.org |
| 2496 | T: git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git |
| 2497 | S: Maintained |
| 2498 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 2499 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | P: Richard Russon (FlatCap) |
| 2501 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 2502 | L: linux-ntfs-dev@lists.sourceforge.net |
| 2503 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | S: Maintained |
| 2505 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 2506 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 2507 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 2508 | M: Eric.Moore@lsi.com |
| 2509 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 2510 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 2511 | L: linux-scsi@vger.kernel.org |
| 2512 | W: http://www.lsilogic.com/support |
| 2513 | S: Supported |
| 2514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2515 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 2516 | P: Matthew Wilcox |
| 2517 | M: matthew@wil.cx |
| 2518 | L: linux-scsi@vger.kernel.org |
| 2519 | S: Maintained |
| 2520 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 2521 | M32R ARCHITECTURE |
| 2522 | P: Hirokazu Takata |
| 2523 | M: takata@linux-m32r.org |
| 2524 | L: linux-m32r@ml.linux-m32r.org |
| 2525 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 2526 | W: http://www.linux-m32r.org/ |
| 2527 | S: Maintained |
| 2528 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | M68K ARCHITECTURE |
| 2530 | P: Geert Uytterhoeven |
| 2531 | M: geert@linux-m68k.org |
| 2532 | P: Roman Zippel |
| 2533 | M: zippel@linux-m68k.org |
| 2534 | L: linux-m68k@lists.linux-m68k.org |
| 2535 | W: http://www.linux-m68k.org/ |
| 2536 | W: http://linux-m68k-cvs.ubb.ca/ |
| 2537 | S: Maintained |
| 2538 | |
| 2539 | M68K ON APPLE MACINTOSH |
| 2540 | P: Joshua Thompson |
| 2541 | M: funaho@jurai.org |
| 2542 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 2543 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | S: Maintained |
| 2545 | |
| 2546 | M68K ON HP9000/300 |
| 2547 | P: Philip Blundell |
| 2548 | M: philb@gnu.org |
| 2549 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 2550 | S: Maintained |
| 2551 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2552 | MAC80211 |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2553 | P: Michael Wu |
| 2554 | M: flamingice@sourmilk.net |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 2555 | P: Johannes Berg |
| 2556 | M: johannes@sipsolutions.net |
| 2557 | P: Jiri Benc |
| 2558 | M: jbenc@suse.cz |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 2559 | L: linux-wireless@vger.kernel.org |
| 2560 | W: http://linuxwireless.org/ |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 2561 | T: 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] | 2562 | S: Maintained |
| 2563 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 2564 | MAC80211 PID RATE CONTROL |
| 2565 | P: Stefano Brivio |
| 2566 | M: stefano.brivio@polimi.it |
| 2567 | P: Mattias Nissler |
| 2568 | M: mattias.nissler@gmx.de |
| 2569 | L: linux-wireless@vger.kernel.org |
| 2570 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
| 2571 | T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
| 2572 | S: Maintained |
| 2573 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 2574 | MACVLAN DRIVER |
| 2575 | P: Patrick McHardy |
| 2576 | M: kaber@trash.net |
| 2577 | L: netdev@vger.kernel.org |
| 2578 | S: Maintained |
| 2579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | MARVELL YUKON / SYSKONNECT DRIVER |
| 2581 | P: Mirko Lindner |
| 2582 | M: mlindner@syskonnect.de |
| 2583 | P: Ralph Roesler |
| 2584 | M: rroesler@syskonnect.de |
| 2585 | W: http://www.syskonnect.com |
| 2586 | S: Supported |
| 2587 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 2588 | 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] | 2589 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 2590 | M: mtk.manpages@gmail.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2591 | W: ftp://ftp.kernel.org/pub/linux/docs/manpages |
| 2592 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 2593 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 2594 | MARVELL LIBERTAS WIRELESS DRIVER |
| 2595 | P: Dan Williams |
| 2596 | M: dcbw@redhat.com |
| 2597 | L: libertas-dev@lists.infradead.org |
| 2598 | S: Maintained |
| 2599 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2600 | MARVELL MV643XX ETHERNET DRIVER |
| 2601 | P: Dale Farnsworth |
| 2602 | M: dale@farnsworth.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | P: Manish Lachwani |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2604 | M: mlachwani@mvista.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2605 | L: netdev@vger.kernel.org |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 2606 | S: Odd Fixes for 2.4; Maintained for 2.6. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | |
| 2608 | MATROX FRAMEBUFFER DRIVER |
| 2609 | P: Petr Vandrovec |
| 2610 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2611 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | S: Maintained |
| 2613 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 2614 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2615 | P: Hans J. Koch |
| 2616 | M: hjk@linutronix.de |
| 2617 | L: lm-sensors@lm-sensors.org |
| 2618 | S: Maintained |
| 2619 | |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 2620 | MEGARAID SCSI DRIVERS |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2621 | P: Neela Syam Kolli |
Sumant Patro | bdd0d757 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 2622 | M: megaraidlinux@lsi.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2623 | S: linux-scsi@vger.kernel.org |
| 2624 | W: http://megaraid.lsilogic.com |
| 2625 | S: Maintained |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 2626 | |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 2627 | MEMORY MANAGEMENT |
| 2628 | L: linux-mm@kvack.org |
| 2629 | L: linux-kernel@vger.kernel.org |
| 2630 | W: http://www.linux-mm.org |
| 2631 | S: Maintained |
| 2632 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 2633 | MEMORY RESOURCE CONTROLLER |
| 2634 | P: Balbir Singh |
| 2635 | M: balbir@linux.vnet.ibm.com |
| 2636 | P: Pavel Emelyanov |
| 2637 | M: xemul@openvz.org |
| 2638 | P: KAMEZAWA Hiroyuki |
| 2639 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 2640 | L: linux-mm@kvack.org |
| 2641 | L: linux-kernel@vger.kernel.org |
| 2642 | S: Maintained |
| 2643 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 2644 | MEI MN10300/AM33 PORT |
| 2645 | P: David Howells |
| 2646 | M: dhowells@redhat.com |
| 2647 | P: Koichi Yasutake |
| 2648 | M: yasutake.koichi@jp.panasonic.com |
| 2649 | L: linux-am33-list@redhat.com |
| 2650 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 2651 | S: Maintained |
| 2652 | |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 2653 | MEMORY TECHNOLOGY DEVICES (MTD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | P: David Woodhouse |
| 2655 | M: dwmw2@infradead.org |
| 2656 | W: http://www.linux-mtd.infradead.org/ |
| 2657 | L: linux-mtd@lists.infradead.org |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 2658 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2659 | S: Maintained |
| 2660 | |
Artem Bityutskiy | 4857640 | 2007-02-13 17:11:10 +0200 | [diff] [blame] | 2661 | UNSORTED BLOCK IMAGES (UBI) |
| 2662 | P: Artem Bityutskiy |
| 2663 | M: dedekind@infradead.org |
| 2664 | W: http://www.linux-mtd.infradead.org/ |
| 2665 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | 2160054 | 2007-05-22 12:23:21 +0300 | [diff] [blame] | 2666 | T: git git://git.infradead.org/~dedekind/ubi-2.6.git |
Artem Bityutskiy | 4857640 | 2007-02-13 17:11:10 +0200 | [diff] [blame] | 2667 | S: Maintained |
| 2668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | MICROTEK X6 SCANNER |
| 2670 | P: Oliver Neukum |
| 2671 | M: oliver@neukum.name |
| 2672 | S: Maintained |
| 2673 | |
| 2674 | MIPS |
| 2675 | P: Ralf Baechle |
| 2676 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 2677 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | L: linux-mips@linux-mips.org |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 2679 | T: git www.linux-mips.org:/pub/scm/linux.git |
| 2680 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | |
| 2682 | MISCELLANEOUS MCA-SUPPORT |
| 2683 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 2684 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | L: linux-kernel@vger.kernel.org |
| 2686 | S: Maintained |
| 2687 | |
| 2688 | MODULE SUPPORT |
| 2689 | P: Rusty Russell |
| 2690 | M: rusty@rustcorp.com.au |
| 2691 | L: linux-kernel@vger.kernel.org |
| 2692 | S: Maintained |
| 2693 | |
| 2694 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 2695 | P: Stelian Pop |
| 2696 | M: stelian@popies.net |
| 2697 | W: http://popies.net/meye/ |
| 2698 | S: Maintained |
| 2699 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 2700 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 2701 | P: Pavel Pisa |
| 2702 | M: ppisa@pikron.com |
| 2703 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 2704 | S: Maintained |
| 2705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | MOUSE AND MISC DEVICES [GENERAL] |
| 2707 | P: Alessandro Rubini |
| 2708 | M: rubini@ipvvis.unipv.it |
| 2709 | L: linux-kernel@vger.kernel.org |
| 2710 | S: Maintained |
| 2711 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 2712 | MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0) |
| 2713 | P: Jiri Slaby |
| 2714 | M: jirislaby@gmail.com |
| 2715 | L: linux-kernel@vger.kernel.org |
| 2716 | S: Maintained |
| 2717 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 2718 | MSI LAPTOP SUPPORT |
| 2719 | P: Lennart Poettering |
| 2720 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 2721 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 2722 | W: http://0pointer.de/lennart/tchibo.html |
| 2723 | S: Maintained |
| 2724 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 2725 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 2726 | P: Pierre Ossman |
| 2727 | M: drzeus-mmc@drzeus.cx |
| 2728 | L: linux-kernel@vger.kernel.org |
| 2729 | S: Maintained |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 2730 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 2731 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 2732 | P: David Brownell |
| 2733 | M: dbrownell@users.sourceforge.net |
| 2734 | L: linux-kernel@vger.kernel.org |
| 2735 | S: Odd fixes |
| 2736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | MULTISOUND SOUND DRIVER |
| 2738 | P: Andrew Veliath |
| 2739 | M: andrewtv@usa.net |
| 2740 | S: Maintained |
| 2741 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 2742 | MULTITECH MULTIPORT CARD (ISICOM) |
| 2743 | P: Jiri Slaby |
| 2744 | M: jirislaby@gmail.com |
| 2745 | L: linux-kernel@vger.kernel.org |
| 2746 | S: Maintained |
| 2747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | NATSEMI ETHERNET DRIVER (DP8381x) |
| 2749 | P: Tim Hockin |
| 2750 | M: thockin@hockin.org |
| 2751 | S: Maintained |
| 2752 | |
| 2753 | NCP FILESYSTEM |
| 2754 | P: Petr Vandrovec |
| 2755 | M: vandrove@vc.cvut.cz |
| 2756 | L: linware@sh.cvut.cz |
| 2757 | S: Maintained |
| 2758 | |
| 2759 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 2760 | P: James E.J. Bottomley |
| 2761 | M: James.Bottomley@HansenPartnership.com |
| 2762 | L: linux-scsi@vger.kernel.org |
| 2763 | S: Maintained |
| 2764 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 2765 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 2766 | P: Faisal Latif |
| 2767 | M: flatif@neteffect.com |
Roland Dreier | 030f1b2 | 2008-02-21 09:02:41 -0600 | [diff] [blame] | 2768 | P: Nishi Gupta |
| 2769 | M: ngupta@neteffect.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 2770 | P: Glenn Streiff |
| 2771 | M: gstreiff@neteffect.com |
| 2772 | L: general@lists.openfabrics.org |
| 2773 | W: http://www.neteffect.com |
| 2774 | S: Supported |
| 2775 | F: drivers/infiniband/hw/nes/ |
| 2776 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 2777 | NETEM NETWORK EMULATOR |
| 2778 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2779 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2780 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 2781 | S: Maintained |
| 2782 | |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 2783 | NETERION (S2IO) Xframe 10GbE DRIVER |
| 2784 | P: Ramkrishna Vepa |
| 2785 | M: ram.vepa@neterion.com |
| 2786 | P: Rastapur Santosh |
| 2787 | M: santosh.rastapur@neterion.com |
| 2788 | P: Sivakumar Subramani |
| 2789 | M: sivakumar.subramani@neterion.com |
| 2790 | P: Sreenivasa Honnur |
| 2791 | M: sreenivasa.honnur@neterion.com |
| 2792 | L: netdev@vger.kernel.org |
| 2793 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous |
| 2794 | S: Supported |
| 2795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | NETFILTER/IPTABLES/IPCHAINS |
| 2797 | P: Rusty Russell |
| 2798 | P: Marc Boucher |
| 2799 | P: James Morris |
| 2800 | P: Harald Welte |
| 2801 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 2802 | P: Patrick McHardy |
| 2803 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 2804 | L: netfilter-devel@vger.kernel.org |
| 2805 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 2806 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | W: http://www.netfilter.org/ |
| 2808 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | S: Supported |
| 2810 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 2811 | NETLABEL |
| 2812 | P: Paul Moore |
| 2813 | M: paul.moore@hp.com |
| 2814 | W: http://netlabel.sf.net |
| 2815 | L: netdev@vger.kernel.org |
| 2816 | S: Supported |
| 2817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2818 | NETROM NETWORK LAYER |
| 2819 | P: Ralf Baechle |
| 2820 | M: ralf@linux-mips.org |
| 2821 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 2822 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | S: Maintained |
| 2824 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 2825 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | P: Paul Clements |
| 2827 | M: Paul.Clements@steeleye.com |
| 2828 | S: Maintained |
| 2829 | |
| 2830 | NETWORK DEVICE DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | P: Jeff Garzik |
| 2832 | M: jgarzik@pobox.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2833 | L: netdev@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 2834 | T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | S: Maintained |
| 2836 | |
| 2837 | NETWORKING [GENERAL] |
| 2838 | P: Networking Team |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2839 | M: netdev@vger.kernel.org |
| 2840 | L: netdev@vger.kernel.org |
David S. Miller | f1465f7 | 2006-03-27 23:28:44 -0800 | [diff] [blame] | 2841 | W: http://linux-net.osdl.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | S: Maintained |
| 2843 | |
| 2844 | NETWORKING [IPv4/IPv6] |
| 2845 | P: David S. Miller |
| 2846 | M: davem@davemloft.net |
| 2847 | P: Alexey Kuznetsov |
| 2848 | M: kuznet@ms2.inr.ac.ru |
| 2849 | P: Pekka Savola (ipv6) |
| 2850 | M: pekkas@netcore.fi |
| 2851 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 2852 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | P: Hideaki YOSHIFUJI |
| 2854 | M: yoshfuji@linux-ipv6.org |
| 2855 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 2856 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2857 | L: netdev@vger.kernel.org |
John W. Linville | d5ca311 | 2006-01-18 14:52:18 -0800 | [diff] [blame] | 2858 | T: 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] | 2859 | S: Maintained |
| 2860 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 2861 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 2862 | P: Paul Moore |
| 2863 | M: paul.moore@hp.com |
| 2864 | L: netdev@vger.kernel.org |
| 2865 | S: Maintained |
| 2866 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 2867 | NETWORKING [WIRELESS] |
| 2868 | P: John W. Linville |
| 2869 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 2870 | L: linux-wireless@vger.kernel.org |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 2871 | T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
| 2872 | S: Maintained |
| 2873 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2874 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 2875 | P: Dhananjay Phadke |
| 2876 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 2877 | L: netdev@vger.kernel.org |
| 2878 | W: http://www.netxen.com |
| 2879 | S: Supported |
| 2880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | IPVS |
| 2882 | P: Wensong Zhang |
| 2883 | M: wensong@linux-vs.org |
Horms | 9d30c17 | 2005-09-29 19:47:06 -0700 | [diff] [blame] | 2884 | P: Simon Horman |
| 2885 | M: horms@verge.net.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | P: Julian Anastasov |
| 2887 | M: ja@ssi.bg |
Horms | 9d30c17 | 2005-09-29 19:47:06 -0700 | [diff] [blame] | 2888 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | S: Maintained |
| 2890 | |
| 2891 | NFS CLIENT |
| 2892 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 2893 | M: Trond.Myklebust@netapp.com |
| 2894 | L: linux-nfs@vger.kernel.org |
| 2895 | W: http://client.linux-nfs.org |
| 2896 | 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] | 2897 | S: Maintained |
| 2898 | |
| 2899 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 2900 | P: Jan-Pascal van Best |
| 2901 | M: janpascal@vanbest.org |
| 2902 | P: Andreas Mohr |
| 2903 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2904 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | S: Maintained |
| 2906 | |
| 2907 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 2908 | P: YOKOTA Hiroshi |
| 2909 | M: yokota@netlab.is.tsukuba.ac.jp |
| 2910 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 2911 | S: Maintained |
| 2912 | |
| 2913 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 2914 | P: GOTO Masanori |
| 2915 | M: gotom@debian.or.jp |
| 2916 | P: YOKOTA Hiroshi |
| 2917 | M: yokota@netlab.is.tsukuba.ac.jp |
| 2918 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 2919 | S: Maintained |
| 2920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | NTFS FILESYSTEM |
| 2922 | P: Anton Altaparmakov |
| 2923 | M: aia21@cantab.net |
| 2924 | L: linux-ntfs-dev@lists.sourceforge.net |
| 2925 | L: linux-kernel@vger.kernel.org |
| 2926 | W: http://linux-ntfs.sf.net/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 2927 | T: 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] | 2928 | S: Maintained |
| 2929 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2930 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2931 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2932 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2933 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2934 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
Peter Korsgaard | 1ded969 | 2006-06-12 21:40:53 +0200 | [diff] [blame] | 2936 | OPENCORES I2C BUS DRIVER |
| 2937 | P: Peter Korsgaard |
| 2938 | M: jacmet@sunsite.dk |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 2939 | L: i2c@lm-sensors.org |
Peter Korsgaard | 1ded969 | 2006-06-12 21:40:53 +0200 | [diff] [blame] | 2940 | S: Maintained |
| 2941 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2942 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 2943 | P: Mark Fasheh |
Mark Fasheh | a575433 | 2008-03-21 10:40:31 -0700 | [diff] [blame] | 2944 | M: mfasheh@suse.com |
| 2945 | P: Joel Becker |
| 2946 | M: joel.becker@oracle.com |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2947 | L: ocfs2-devel@oss.oracle.com |
| 2948 | W: http://oss.oracle.com/projects/ocfs2/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2949 | S: Supported |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2950 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 2951 | OMNIKEY CARDMAN 4000 DRIVER |
| 2952 | P: Harald Welte |
| 2953 | M: laforge@gnumonks.org |
| 2954 | S: Maintained |
| 2955 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 2956 | OMNIKEY CARDMAN 4040 DRIVER |
| 2957 | P: Harald Welte |
| 2958 | M: laforge@gnumonks.org |
| 2959 | S: Maintained |
| 2960 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2961 | OMNIVISION OV7670 SENSOR DRIVER |
| 2962 | P: Jonathan Corbet |
| 2963 | M: corbet@lwn.net |
| 2964 | L: video4linux-list@redhat.com |
| 2965 | S: Maintained |
| 2966 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 2967 | ONENAND FLASH DRIVER |
| 2968 | P: Kyungmin Park |
| 2969 | M: kyungmin.park@samsung.com |
| 2970 | L: linux-mtd@lists.infradead.org |
| 2971 | S: Maintained |
| 2972 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | ONSTREAM SCSI TAPE DRIVER |
| 2974 | P: Willem Riede |
| 2975 | M: osst@riede.org |
| 2976 | L: osst-users@lists.sourceforge.net |
| 2977 | L: linux-scsi@vger.kernel.org |
| 2978 | S: Maintained |
| 2979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | OPROFILE |
| 2981 | P: Philippe Elie |
| 2982 | M: phil.el@wanadoo.fr |
| 2983 | L: oprofile-list@lists.sf.net |
| 2984 | S: Maintained |
| 2985 | |
| 2986 | ORINOCO DRIVER |
| 2987 | P: Pavel Roskin |
| 2988 | M: proski@gnu.org |
| 2989 | P: David Gibson |
| 2990 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2991 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 2992 | L: orinoco-users@lists.sourceforge.net |
| 2993 | L: orinoco-devel@lists.sourceforge.net |
| 2994 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | S: Maintained |
| 2996 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 2997 | PA SEMI ETHERNET DRIVER |
| 2998 | P: Olof Johansson |
| 2999 | M: olof@lixom.net |
| 3000 | L: netdev@vger.kernel.org |
| 3001 | S: Maintained |
| 3002 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 3003 | PA SEMI SMBUS DRIVER |
| 3004 | P: Olof Johansson |
| 3005 | M: olof@lixom.net |
| 3006 | L: i2c@lm-sensors.org |
| 3007 | S: Maintained |
| 3008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 3010 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 3011 | S: Orphan |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | |
| 3013 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 3014 | P: Tim Waugh |
| 3015 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 3016 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | W: http://www.torque.net/linux-pp.html |
| 3018 | S: Maintained |
| 3019 | |
| 3020 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 3021 | P: Kyle McMartin |
| 3022 | M: kyle@parisc-linux.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | P: Matthew Wilcox |
| 3024 | M: matthew@wil.cx |
| 3025 | P: Grant Grundler |
| 3026 | M: grundler@parisc-linux.org |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 3027 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | W: http://www.parisc-linux.org/ |
Kyle McMartin | 223232d | 2006-04-21 16:54:23 -0400 | [diff] [blame] | 3029 | T: 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] | 3030 | S: Maintained |
| 3031 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 3032 | PARAVIRT_OPS INTERFACE |
| 3033 | P: Jeremy Fitzhardinge |
| 3034 | M: jeremy@xensource.com |
| 3035 | P: Chris Wright |
| 3036 | M: chrisw@sous-sol.org |
| 3037 | P: Zachary Amsden |
| 3038 | M: zach@vmware.com |
| 3039 | P: Rusty Russell |
| 3040 | M: rusty@rustcorp.com.au |
| 3041 | L: virtualization@lists.osdl.org |
| 3042 | L: linux-kernel@vger.kernel.org |
| 3043 | S: Supported |
| 3044 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 3045 | PC87360 HARDWARE MONITORING DRIVER |
| 3046 | P: Jim Cromie |
| 3047 | M: jim.cromie@gmail.com |
| 3048 | L: lm-sensors@lm-sensors.org |
| 3049 | S: Maintained |
| 3050 | |
| 3051 | PC8736x GPIO DRIVER |
| 3052 | P: Jim Cromie |
| 3053 | M: jim.cromie@gmail.com |
| 3054 | S: Maintained |
| 3055 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 3056 | PCI ERROR RECOVERY |
| 3057 | P: Linas Vepstas |
| 3058 | M: linas@austin.ibm.com |
| 3059 | L: linux-kernel@vger.kernel.org |
| 3060 | L: linux-pci@atrey.karlin.mff.cuni.cz |
| 3061 | S: Supported |
| 3062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | PCI SUBSYSTEM |
| 3064 | P: Greg Kroah-Hartman |
| 3065 | M: gregkh@suse.de |
| 3066 | L: linux-kernel@vger.kernel.org |
| 3067 | L: linux-pci@atrey.karlin.mff.cuni.cz |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3068 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | S: Supported |
| 3070 | |
| 3071 | PCI HOTPLUG CORE |
Kristen Carlson Accardi | fb5f4d7 | 2006-09-29 10:30:27 -0700 | [diff] [blame] | 3072 | P: Kristen Carlson Accardi |
| 3073 | M: kristen.c.accardi@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | S: Supported |
| 3075 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3076 | PCIE HOTPLUG DRIVER |
| 3077 | P: Kristen Carlson Accardi |
| 3078 | M: kristen.c.accardi@intel.com |
| 3079 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 3080 | S: Supported |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 3083 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3084 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3085 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3086 | T: 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] | 3087 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | |
| 3089 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 3090 | P: Don Fry |
| 3091 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3092 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | S: Maintained |
| 3094 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 3095 | PER-TASK DELAY ACCOUNTING |
| 3096 | P: Shailabh Nagar |
| 3097 | M: nagar@watson.ibm.com |
| 3098 | L: linux-kernel@vger.kernel.org |
| 3099 | S: Maintained |
| 3100 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 3101 | PERSONALITY HANDLING |
| 3102 | P: Christoph Hellwig |
| 3103 | M: hch@infradead.org |
| 3104 | L: linux-abi-devel@lists.sourceforge.net |
| 3105 | S: Maintained |
| 3106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 3108 | P: Joern Engel |
| 3109 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | L: linux-mtd@lists.infradead.org |
| 3111 | S: Maintained |
| 3112 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 3113 | PKTCDVD DRIVER |
| 3114 | P: Peter Osterlund |
| 3115 | M: petero2@telia.com |
| 3116 | L: linux-kernel@vger.kernel.org |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 3117 | S: Maintained |
| 3118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 3120 | P: Thomas Gleixner |
| 3121 | M: tglx@linutronix.de |
Horms | f1c3ddf | 2006-01-15 02:18:28 +0100 | [diff] [blame] | 3122 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | S: Supported |
| 3124 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 3125 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 3126 | P: Anton Vorontsov |
| 3127 | M: cbou@mail.ru |
| 3128 | P: David Woodhouse |
| 3129 | M: dwmw2@infradead.org |
| 3130 | L: linux-kernel@vger.kernel.org |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 3131 | T: git git.infradead.org/battery-2.6.git |
| 3132 | S: Maintained |
| 3133 | |
Eugene Surovegin | 2468297 | 2005-10-14 03:00:53 -0700 | [diff] [blame] | 3134 | POWERPC 4xx EMAC DRIVER |
| 3135 | P: Eugene Surovegin |
| 3136 | M: ebs@ebshome.net |
| 3137 | W: http://kernel.ebshome.net/emac/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3138 | L: linuxppc-dev@ozlabs.org |
Eugene Surovegin | 2468297 | 2005-10-14 03:00:53 -0700 | [diff] [blame] | 3139 | L: netdev@vger.kernel.org |
| 3140 | S: Maintained |
| 3141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | PNP SUPPORT |
| 3143 | P: Adam Belay |
| 3144 | M: ambx1@neo.rr.com |
| 3145 | S: Maintained |
| 3146 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 3147 | PNXxxxx I2C DRIVER |
| 3148 | P: Vitaly Wool |
| 3149 | M: vitalywool@gmail.com |
| 3150 | L: i2c@lm-sensors.org |
| 3151 | S: Maintained |
| 3152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 3154 | P: Paul Mackerras |
| 3155 | M: paulus@samba.org |
| 3156 | L: linux-ppp@vger.kernel.org |
| 3157 | S: Maintained |
| 3158 | |
| 3159 | PPP OVER ATM (RFC 2364) |
| 3160 | P: Mitchell Blank Jr |
| 3161 | M: mitch@sfgoth.com |
| 3162 | S: Maintained |
| 3163 | |
| 3164 | PPP OVER ETHERNET |
| 3165 | P: Michal Ostrowski |
| 3166 | M: mostrows@speakeasy.net |
| 3167 | S: Maintained |
| 3168 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 3169 | PPP OVER L2TP |
| 3170 | P: James Chapman |
| 3171 | M: jchapman@katalix.com |
| 3172 | S: Maintained |
| 3173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | PREEMPTIBLE KERNEL |
| 3175 | P: Robert Love |
| 3176 | M: rml@tech9.net |
| 3177 | L: linux-kernel@vger.kernel.org |
| 3178 | L: kpreempt-tech@lists.sourceforge.net |
| 3179 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 3180 | S: Supported |
| 3181 | |
Michael Wu | eff1a59 | 2007-09-25 18:11:01 -0700 | [diff] [blame] | 3182 | P54 WIRELESS DRIVER |
| 3183 | P: Michael Wu |
| 3184 | M: flamingice@sourmilk.net |
| 3185 | L: linux-wireless@vger.kernel.org |
| 3186 | W: http://prism54.org |
| 3187 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 3188 | S: Maintained |
| 3189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 3191 | P: Luis R. Rodriguez |
| 3192 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3193 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | W: http://prism54.org |
| 3195 | S: Maintained |
| 3196 | |
| 3197 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 3198 | P: Peter Denison |
| 3199 | M: promise@pnd-pc.demon.co.uk |
| 3200 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 3201 | S: Maintained |
| 3202 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 3203 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 3204 | P: Mikael Pettersson |
| 3205 | M: mikpe@it.uu.se |
| 3206 | L: linux-ide@vger.kernel.org |
| 3207 | S: Maintained |
| 3208 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 3209 | PS3 NETWORK SUPPORT |
| 3210 | P: Masakazu Mokuno |
| 3211 | M: mokuno@sm.sony.co.jp |
| 3212 | L: netdev@vger.kernel.org |
| 3213 | L: cbe-oss-dev@ozlabs.org |
| 3214 | S: Supported |
| 3215 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 3216 | PS3 PLATFORM SUPPORT |
| 3217 | P: Geoff Levand |
| 3218 | M: geoffrey.levand@am.sony.com |
| 3219 | L: linuxppc-dev@ozlabs.org |
| 3220 | L: cbe-oss-dev@ozlabs.org |
| 3221 | S: Supported |
| 3222 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 3223 | PVRUSB2 VIDEO4LINUX DRIVER |
| 3224 | P: Mike Isely |
| 3225 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 3226 | L: pvrusb2@isely.net (subscribers-only) |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 3227 | L: video4linux-list@redhat.com |
| 3228 | W: http://www.isely.net/pvrusb2/ |
| 3229 | S: Maintained |
| 3230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | PXA2xx SUPPORT |
| 3232 | P: Nicolas Pitre |
| 3233 | M: nico@cam.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 3234 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | S: Maintained |
| 3236 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 3237 | PXA MMCI DRIVER |
| 3238 | S: Orphan |
| 3239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 3241 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 3242 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3243 | L: linux-scsi@vger.kernel.org |
| 3244 | S: Supported |
| 3245 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 3246 | QLOGIC QLA3XXX NETWORK DRIVER |
| 3247 | P: Ron Mercer |
| 3248 | M: linux-driver@qlogic.com |
| 3249 | L: netdev@vger.kernel.org |
| 3250 | S: Supported |
| 3251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | QNX4 FILESYSTEM |
| 3253 | P: Anders Larsen |
| 3254 | M: al@alarsen.net |
| 3255 | L: linux-kernel@vger.kernel.org |
| 3256 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 3257 | S: Maintained |
| 3258 | |
| 3259 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 3260 | P: Benjamin Herrenschmidt |
| 3261 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3262 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3263 | S: Maintained |
| 3264 | |
| 3265 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 3266 | P: Paul Mackerras |
| 3267 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3268 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3269 | S: Maintained |
| 3270 | |
| 3271 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 3272 | P: Corey Thomas |
Joe Perches | 7c4a52e | 2008-02-03 16:38:31 +0200 | [diff] [blame] | 3273 | M: coreythomas@charter.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3274 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | S: Maintained |
| 3276 | |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 3277 | RALINK RT2X00 WLAN DRIVER |
| 3278 | P: rt2x00 project |
| 3279 | L: linux-wireless@vger.kernel.org |
| 3280 | L: rt2400-devel@lists.sourceforge.net |
| 3281 | W: http://rt2x00.serialmonkey.com/ |
| 3282 | S: Maintained |
Ivo van Doorn | 2dd0f69 | 2008-04-12 19:25:00 +0200 | [diff] [blame] | 3283 | T: git kernel.org:/pub/scm/linux/kernel/git/ivd/rt2x00.git |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 3284 | F: drivers/net/wireless/rt2x00/ |
| 3285 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 3286 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 3287 | P: Nick Piggin |
| 3288 | M: npiggin@suse.de |
| 3289 | S: Maintained |
| 3290 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 3291 | RANDOM NUMBER DRIVER |
| 3292 | P: Matt Mackall |
| 3293 | M: mpm@selenic.com |
| 3294 | S: Maintained |
| 3295 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 3296 | RAPIDIO SUBSYSTEM |
| 3297 | P: Matt Porter |
| 3298 | M: mporter@kernel.crashing.org |
| 3299 | L: linux-kernel@vger.kernel.org |
| 3300 | S: Maintained |
| 3301 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 3302 | RDC R-321X SoC |
| 3303 | P: Florian Fainelli |
| 3304 | M: florian.fainelli@telecomint.eu |
| 3305 | L: linux-kernel@vger.kernel.org |
| 3306 | S: Maintained |
| 3307 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 3308 | RDC R6040 FAST ETHERNET DRIVER |
| 3309 | P: Florian Fainelli |
| 3310 | M: florian.fainelli@telecomint.eu |
| 3311 | L: netdev@vger.kernel.org |
| 3312 | S: Maintained |
| 3313 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 3314 | READ-COPY UPDATE (RCU) |
| 3315 | P: Dipankar Sarma |
| 3316 | M: dipankar@in.ibm.com |
| 3317 | W: http://www.rdrop.com/users/paulmck/rclock/ |
| 3318 | L: linux-kernel@vger.kernel.org |
| 3319 | S: Supported |
| 3320 | |
| 3321 | RCUTORTURE MODULE |
| 3322 | P: Josh Triplett |
| 3323 | M: josh@freedesktop.org |
| 3324 | L: linux-kernel@vger.kernel.org |
| 3325 | S: Maintained |
| 3326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | REAL TIME CLOCK DRIVER |
| 3328 | P: Paul Gortmaker |
| 3329 | M: p_gortmaker@yahoo.com |
| 3330 | L: linux-kernel@vger.kernel.org |
| 3331 | S: Maintained |
| 3332 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 3333 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 3334 | P: Alessandro Zummo |
| 3335 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 3336 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 3337 | S: Maintained |
| 3338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3339 | REISERFS FILE SYSTEM |
| 3340 | P: Hans Reiser |
| 3341 | M: reiserfs-dev@namesys.com |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 3342 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | W: http://www.namesys.com |
| 3344 | S: Supported |
| 3345 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 3346 | RFKILL |
| 3347 | P: Ivo van Doorn |
| 3348 | M: IvDoorn@gmail.com |
| 3349 | L: netdev@vger.kernel.org |
| 3350 | S: Maintained |
| 3351 | F: net/rfkill |
| 3352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | ROCKETPORT DRIVER |
| 3354 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3355 | W: http://www.comtrol.com |
| 3356 | S: Maintained |
| 3357 | |
| 3358 | ROSE NETWORK LAYER |
| 3359 | P: Ralf Baechle |
| 3360 | M: ralf@linux-mips.org |
| 3361 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 3362 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | S: Maintained |
| 3364 | |
| 3365 | RISCOM8 DRIVER |
| 3366 | S: Orphan |
| 3367 | |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 3368 | RTL818X WIRELESS DRIVER |
| 3369 | P: Michael Wu |
| 3370 | M: flamingice@sourmilk.net |
| 3371 | P: Andrea Merello |
| 3372 | M: andreamrl@tiscali.it |
| 3373 | L: linux-wireless@vger.kernel.org |
| 3374 | W: http://linuxwireless.org/ |
| 3375 | T: git kernel.org:/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
| 3376 | S: Maintained |
| 3377 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 3378 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3379 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 3380 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3381 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3382 | S: Maintained |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 3383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3384 | S390 |
| 3385 | P: Martin Schwidefsky |
| 3386 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 3387 | P: Heiko Carstens |
| 3388 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3389 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3390 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3391 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3392 | S: Supported |
| 3393 | |
| 3394 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 3395 | P: Ursula Braun |
| 3396 | M: ubraun@linux.vnet.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 3397 | P: Frank Blaschka |
| 3398 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3399 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3400 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3401 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3402 | S: Supported |
| 3403 | |
| 3404 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 3405 | P: Christof Schmitt |
| 3406 | M: christof.schmitt@de.ibm.com |
| 3407 | P: Martin Peschke |
| 3408 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3409 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 3410 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 3411 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 | S: Supported |
| 3413 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 3414 | S390 IUCV NETWORK LAYER |
| 3415 | P: Ursula Braun |
| 3416 | M: ubraun@linux.vnet.ibm.com |
| 3417 | M: linux390@de.ibm.com |
| 3418 | L: linux-s390@vger.kernel.org |
| 3419 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3420 | S: Supported |
| 3421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3422 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 3423 | P: Michael Hunold |
| 3424 | M: michael@mihu.de |
| 3425 | W: http://www.mihu.de/linux/saa7146 |
| 3426 | S: Maintained |
| 3427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | SC1200 WDT DRIVER |
| 3429 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 3430 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3431 | S: Maintained |
| 3432 | |
| 3433 | SCHEDULER |
| 3434 | P: Ingo Molnar |
| 3435 | M: mingo@elte.hu |
| 3436 | P: Robert Love [the preemptible kernel bits] |
| 3437 | M: rml@tech9.net |
| 3438 | L: linux-kernel@vger.kernel.org |
| 3439 | S: Maintained |
| 3440 | |
| 3441 | SCSI CDROM DRIVER |
| 3442 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 3443 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3444 | L: linux-scsi@vger.kernel.org |
| 3445 | W: http://www.kernel.dk |
| 3446 | S: Maintained |
| 3447 | |
| 3448 | SCSI SG DRIVER |
| 3449 | P: Doug Gilbert |
| 3450 | M: dgilbert@interlog.com |
| 3451 | L: linux-scsi@vger.kernel.org |
| 3452 | W: http://www.torque.net/sg |
| 3453 | S: Maintained |
| 3454 | |
| 3455 | SCSI SUBSYSTEM |
| 3456 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3457 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | L: linux-scsi@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3459 | T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3460 | T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 3461 | T: 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] | 3462 | S: Maintained |
| 3463 | |
| 3464 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 3465 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | M: Kai.Makisara@kolumbus.fi |
| 3467 | L: linux-scsi@vger.kernel.org |
| 3468 | S: Maintained |
| 3469 | |
| 3470 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 3471 | P: Vlad Yasevich |
| 3472 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3473 | P: Sridhar Samudrala |
| 3474 | M: sri@us.ibm.com |
| 3475 | L: lksctp-developers@lists.sourceforge.net |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 3476 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3477 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | |
| 3479 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 3480 | P: Jim Cromie |
| 3481 | M: jim.cromie@gmail.com |
| 3482 | S: Odd Fixes |
| 3483 | |
| 3484 | SCx200 GPIO DRIVER |
| 3485 | P: Jim Cromie |
| 3486 | M: jim.cromie@gmail.com |
| 3487 | S: Maintained |
| 3488 | |
| 3489 | SCx200 HRT CLOCKSOURCE DRIVER |
| 3490 | P: Jim Cromie |
| 3491 | M: jim.cromie@gmail.com |
| 3492 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | |
| 3494 | SECURITY CONTACT |
| 3495 | P: Security Officers |
| 3496 | M: security@kernel.org |
| 3497 | S: Supported |
| 3498 | |
| 3499 | SELINUX SECURITY MODULE |
| 3500 | P: Stephen Smalley |
Stephen Smalley | 62cfe7e | 2006-02-04 23:27:42 -0800 | [diff] [blame] | 3501 | M: sds@tycho.nsa.gov |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3502 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 3503 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 3504 | P: Eric Paris |
| 3505 | M: eparis@parisplace.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | L: linux-kernel@vger.kernel.org (kernel issues) |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 3507 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3508 | W: http://www.nsa.gov/selinux |
| 3509 | S: Supported |
| 3510 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 3511 | SENSABLE PHANTOM |
| 3512 | P: Jiri Slaby |
| 3513 | M: jirislaby@gmail.com |
| 3514 | S: Maintained |
| 3515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3516 | SERIAL ATA (SATA) SUBSYSTEM: |
| 3517 | P: Jeff Garzik |
| 3518 | M: jgarzik@pobox.com |
| 3519 | L: linux-ide@vger.kernel.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 3520 | T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3521 | S: Supported |
| 3522 | |
| 3523 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 3524 | P: Pat Gefre |
| 3525 | M: pfg@sgi.com |
| 3526 | L: linux-ia64@vger.kernel.org |
| 3527 | S: Supported |
| 3528 | |
| 3529 | SGI VISUAL WORKSTATION 320 AND 540 |
| 3530 | P: Andrey Panin |
| 3531 | M: pazke@donpac.ru |
| 3532 | L: linux-visws-devel@lists.sf.net |
| 3533 | W: http://linux-visws.sf.net |
| 3534 | S: Maintained for 2.6. |
| 3535 | |
| 3536 | SIMTEC EB110ATX (Chalice CATS) |
| 3537 | P: Ben Dooks |
| 3538 | P: Vincent Sanders |
| 3539 | M: support@simtec.co.uk |
| 3540 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 3541 | S: Supported |
| 3542 | |
| 3543 | SIMTEC EB2410ITX (BAST) |
| 3544 | P: Ben Dooks |
| 3545 | P: Vincent Sanders |
| 3546 | M: support@simtec.co.uk |
| 3547 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 3548 | S: Supported |
| 3549 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 3550 | SIS 190 ETHERNET DRIVER |
| 3551 | P: Francois Romieu |
| 3552 | M: romieu@fr.zoreil.com |
| 3553 | L: netdev@vger.kernel.org |
| 3554 | S: Maintained |
| 3555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | SIS 5513 IDE CONTROLLER DRIVER |
| 3557 | P: Lionel Bouton |
| 3558 | M: Lionel.Bouton@inet6.fr |
| 3559 | W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html |
| 3560 | W: http://gyver.homeip.net/sis5513/index.html |
| 3561 | S: Maintained |
| 3562 | |
| 3563 | SIS 900/7016 FAST ETHERNET DRIVER |
| 3564 | P: Daniele Venzano |
| 3565 | M: venza@brownhat.org |
| 3566 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3567 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | S: Maintained |
| 3569 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 3570 | SIS 96X I2C/SMBUS DRIVER |
| 3571 | P: Mark M. Hoffman |
| 3572 | M: mhoffman@lightlink.com |
| 3573 | L: lm-sensors@lm-sensors.org |
| 3574 | S: Maintained |
| 3575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | SIS FRAMEBUFFER DRIVER |
| 3577 | P: Thomas Winischhofer |
| 3578 | M: thomas@winischhofer.net |
| 3579 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3580 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3581 | |
| 3582 | SIS USB2VGA DRIVER |
| 3583 | P: Thomas Winischhofer |
| 3584 | M: thomas@winischhofer.net |
| 3585 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 3586 | S: Maintained |
| 3587 | |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 3588 | SLAB ALLOCATOR |
| 3589 | P: Christoph Lameter |
| 3590 | M: clameter@sgi.com |
| 3591 | P: Pekka Enberg |
| 3592 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 3593 | P: Matt Mackall |
| 3594 | M: mpm@selenic.com |
Christoph Lameter | 415ad26d | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 3595 | L: linux-mm@kvack.org |
| 3596 | S: Maintained |
| 3597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3598 | SMC91x ETHERNET DRIVER |
| 3599 | P: Nicolas Pitre |
| 3600 | M: nico@cam.org |
| 3601 | S: Maintained |
| 3602 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 3603 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 3604 | P: Mark M. Hoffman |
| 3605 | M: mhoffman@lightlink.com |
| 3606 | L: lm-sensors@lm-sensors.org |
| 3607 | S: Maintained |
| 3608 | |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3609 | SOFTMAC LAYER (IEEE 802.11) |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3610 | P: Daniel Drake |
| 3611 | M: dsd@gentoo.org |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3612 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 6b345dd | 2007-11-05 14:32:35 +0100 | [diff] [blame] | 3613 | S: Obsolete |
Daniel Drake | 8f0f850 | 2006-07-18 22:00:25 +0100 | [diff] [blame] | 3614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3615 | SOFTWARE RAID (Multiple Disks) SUPPORT |
| 3616 | P: Ingo Molnar |
| 3617 | M: mingo@redhat.com |
| 3618 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 3619 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3620 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 3621 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3623 | HIBERNATION (aka Software Suspend, aka swsusp): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | P: Pavel Machek |
| 3625 | M: pavel@suse.cz |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3626 | P: Rafael J. Wysocki |
| 3627 | M: rjw@sisk.pl |
| 3628 | L: linux-pm@lists.linux-foundation.org |
| 3629 | S: Supported |
| 3630 | |
| 3631 | SUSPEND TO RAM: |
Len Brown | a0ce317 | 2007-10-25 18:05:49 -0400 | [diff] [blame] | 3632 | P: Len Brown |
| 3633 | M: len.brown@intel.com |
Pavel Machek | 95a631e | 2007-07-19 01:47:42 -0700 | [diff] [blame] | 3634 | P: Pavel Machek |
| 3635 | M: pavel@suse.cz |
| 3636 | P: Rafael J. Wysocki |
| 3637 | M: rjw@sisk.pl |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 3638 | L: linux-pm@lists.linux-foundation.org |
Len Brown | a0ce317 | 2007-10-25 18:05:49 -0400 | [diff] [blame] | 3639 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3640 | |
| 3641 | SONIC NETWORK DRIVER |
| 3642 | P: Thomas Bogendoerfer |
| 3643 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3644 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3645 | S: Maintained |
| 3646 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 3647 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 3648 | P: Michael Buesch |
| 3649 | M: mb@bu3sch.de |
| 3650 | L: netdev@vger.kernel.org |
| 3651 | S: Maintained |
| 3652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 3654 | P: Mattia Dongili |
| 3655 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 3656 | L: linux-acpi@vger.kernel.org |
| 3657 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | S: Maintained |
| 3659 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 3660 | SONY MEMORYSTICK CARD SUPPORT |
| 3661 | P: Alex Dubov |
| 3662 | M: oakad@yahoo.com |
| 3663 | L: linux-kernel@vger.kernel.org |
| 3664 | W: http://tifmxx.berlios.de/ |
| 3665 | S: Maintained |
| 3666 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | SOUND |
| 3668 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3669 | M: perex@perex.cz |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 3670 | L: alsa-devel@alsa-project.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3671 | S: Maintained |
| 3672 | |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 3673 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT |
| 3674 | P: Liam Girdwood |
| 3675 | M: liam.girdwood@wolfsonmicro.com |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 3676 | P: Mark Brown |
| 3677 | M: broonie@opensource.wolfsonmicro.com |
| 3678 | T: git opensource.wolfsonmicro.com/linux-2.6-asoc |
Takashi Iwai | 8262204 | 2007-04-16 12:32:52 +0200 | [diff] [blame] | 3679 | L: alsa-devel@alsa-project.org (subscribers-only) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 3680 | S: Supported |
| 3681 | |
Kumar Gala | 025c398 | 2006-04-02 16:05:54 -0500 | [diff] [blame] | 3682 | SPI SUBSYSTEM |
| 3683 | P: David Brownell |
| 3684 | M: dbrownell@users.sourceforge.net |
| 3685 | L: spi-devel-general@lists.sourceforge.net |
| 3686 | S: Maintained |
| 3687 | |
Steven Rostedt | 855f46a | 2006-08-05 12:14:50 -0700 | [diff] [blame] | 3688 | STABLE BRANCH: |
| 3689 | P: Greg Kroah-Hartman |
| 3690 | M: greg@kroah.com |
| 3691 | P: Chris Wright |
| 3692 | M: chrisw@sous-sol.org |
| 3693 | L: stable@kernel.org |
| 3694 | S: Maintained |
| 3695 | |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3696 | TPM DEVICE DRIVER |
| 3697 | P: Kylene Hall |
Kent Yoder | 8e81cc1 | 2007-08-22 14:01:04 -0700 | [diff] [blame] | 3698 | M: tpmdd-devel@lists.sourceforge.net |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3699 | W: http://tpmdd.sourceforge.net |
Marcel Selhorst | d3a7b6d | 2007-03-16 13:38:31 -0800 | [diff] [blame] | 3700 | P: Marcel Selhorst |
| 3701 | M: tpm@selhorst.net |
| 3702 | W: http://www.prosec.rub.de/tpm/ |
Stephen Rothwell | 3bd2aad | 2007-05-15 01:41:36 -0700 | [diff] [blame] | 3703 | L: tpmdd-devel@lists.sourceforge.net |
Kylene Hall | 1c72d46 | 2005-05-01 08:59:13 -0700 | [diff] [blame] | 3704 | S: Maintained |
| 3705 | |
Mark Gross | 1a80ba8 | 2005-10-30 15:02:55 -0800 | [diff] [blame] | 3706 | Telecom Clock Driver for MCPL0010 |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3707 | P: Mark Gross |
| 3708 | M: mark.gross@intel.com |
| 3709 | S: Supported |
Mark Gross | 1a80ba8 | 2005-10-30 15:02:55 -0800 | [diff] [blame] | 3710 | |
Chris Zankel | 48b415c | 2005-06-23 22:01:07 -0700 | [diff] [blame] | 3711 | TENSILICA XTENSA PORT (xtensa): |
| 3712 | P: Chris Zankel |
| 3713 | M: chris@zankel.net |
| 3714 | S: Maintained |
| 3715 | |
Henrique de Moraes Holschuh | 756970a | 2007-03-29 01:58:44 -0300 | [diff] [blame] | 3716 | THINKPAD ACPI EXTRAS DRIVER |
| 3717 | P: Henrique de Moraes Holschuh |
| 3718 | M: ibm-acpi@hmh.eng.br |
| 3719 | L: ibm-acpi-devel@lists.sourceforge.net |
| 3720 | W: http://ibm-acpi.sourceforge.net |
| 3721 | W: http://thinkwiki.org/wiki/Ibm-acpi |
| 3722 | T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
| 3723 | S: Maintained |
| 3724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | UltraSPARC (sparc64): |
| 3726 | P: David S. Miller |
| 3727 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3728 | L: sparclinux@vger.kernel.org |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 3729 | T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | S: Maintained |
| 3731 | |
| 3732 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 3733 | P: Marc Singer |
| 3734 | M: elf@buici.com |
| 3735 | W: http://projects.buici.com/arm |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 3736 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | S: Maintained |
| 3738 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3739 | SHPC HOTPLUG DRIVER |
| 3740 | P: Kristen Carlson Accardi |
| 3741 | M: kristen.c.accardi@intel.com |
| 3742 | L: pcihpd-discuss@lists.sourceforge.net |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 3743 | S: Supported |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 3744 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3745 | SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER |
| 3746 | P: Pierre Ossman |
| 3747 | M: drzeus-sdhci@drzeus.cx |
| 3748 | L: sdhci-devel@list.drzeus.cx |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3749 | S: Maintained |
| 3750 | |
Stephen Hemminger | 4b1ac9ab | 2005-09-21 09:55:41 -0700 | [diff] [blame] | 3751 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 3752 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 3753 | M: shemminger@linux-foundation.org |
Stephen Hemminger | 4b1ac9ab | 2005-09-21 09:55:41 -0700 | [diff] [blame] | 3754 | L: netdev@vger.kernel.org |
| 3755 | S: Maintained |
| 3756 | |
Chris Boot | 1a87d94 | 2006-07-10 04:45:34 -0700 | [diff] [blame] | 3757 | SOEKRIS NET48XX LED SUPPORT |
| 3758 | P: Chris Boot |
| 3759 | M: bootc@bootc.net |
| 3760 | S: Maintained |
| 3761 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3762 | SPARC (sparc32): |
| 3763 | P: William L. Irwin |
| 3764 | M: wli@holomorphy.com |
| 3765 | L: sparclinux@vger.kernel.org |
| 3766 | S: Maintained |
| 3767 | |
| 3768 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 3769 | P: Roger Wolff |
| 3770 | M: R.E.Wolff@BitWizard.nl |
| 3771 | L: linux-kernel@vger.kernel.org ? |
| 3772 | S: Supported |
| 3773 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 3774 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 3775 | P: Ishizaki Kou |
| 3776 | M: kou.ishizaki@toshiba.co.jp |
| 3777 | P: Jens Osterkamp |
| 3778 | M: jens@de.ibm.com |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 3779 | L: netdev@vger.kernel.org |
| 3780 | S: Supported |
| 3781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | SRM (Alpha) environment access |
| 3783 | P: Jan-Benedict Glaw |
| 3784 | M: jbglaw@lug-owl.de |
| 3785 | L: linux-kernel@vger.kernel.org |
| 3786 | S: Maintained |
| 3787 | |
| 3788 | STARFIRE/DURALAN NETWORK DRIVER |
| 3789 | P: Ion Badulescu |
| 3790 | M: ionut@cs.columbia.edu |
| 3791 | S: Maintained |
| 3792 | |
| 3793 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 3794 | W: http://mosquitonet.Stanford.EDU/strip.html |
| 3795 | S: Unsupported ? |
| 3796 | |
| 3797 | STRADIS MPEG-2 DECODER DRIVER |
| 3798 | P: Nathan Laredo |
| 3799 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3800 | W: http://www.stradis.com/ |
| 3801 | S: Maintained |
| 3802 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3803 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | P: Paul Mundt |
| 3805 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3806 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | W: http://www.linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 3808 | T: git kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3809 | S: Maintained |
| 3810 | |
| 3811 | SUN3/3X |
| 3812 | P: Sam Creasey |
| 3813 | M: sammy@sammy.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | W: http://sammy.net/sun3/ |
| 3815 | S: Maintained |
| 3816 | |
| 3817 | SVGA HANDLING |
| 3818 | P: Martin Mares |
| 3819 | M: mj@ucw.cz |
| 3820 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 3821 | S: Maintained |
| 3822 | |
| 3823 | SYSV FILESYSTEM |
| 3824 | P: Christoph Hellwig |
| 3825 | M: hch@infradead.org |
| 3826 | S: Maintained |
| 3827 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 3828 | TC CLASSIFIER |
| 3829 | P: Jamal Hadi Salim |
| 3830 | M: hadi@cyberus.ca |
| 3831 | L: netdev@vger.kernel.org |
| 3832 | S: Maintained |
| 3833 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 3834 | TCP LOW PRIORITY MODULE |
| 3835 | P: Wong Hoi Sing, Edison |
| 3836 | M: hswong3i@gmail.com |
| 3837 | P: Hung Hing Lun, Mike |
| 3838 | M: hlhung3i@gmail.com |
| 3839 | W: http://tcp-lp-mod.sourceforge.net/ |
| 3840 | S: Maintained |
| 3841 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 3842 | TEHUTI ETHERNET DRIVER |
| 3843 | P: Alexander Indenbaum |
| 3844 | M: baum@tehutinetworks.net |
| 3845 | P: Andy Gospodarek |
| 3846 | M: andy@greyhouse.net |
| 3847 | L: netdev@vger.kernel.org |
| 3848 | S: Supported |
| 3849 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 3850 | TI FLASH MEDIA INTERFACE DRIVER |
| 3851 | P: Alex Dubov |
| 3852 | M: oakad@yahoo.com |
| 3853 | S: Maintained |
| 3854 | |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 3855 | TI OMAP MMC INTERFACE DRIVER |
| 3856 | P: Carlos Aguiar, Anderson Briglia and Syed Khasim |
Randy Dunlap | e82ce35 | 2007-10-16 23:29:44 -0700 | [diff] [blame] | 3857 | M: linux-omap-open-source@linux.omap.com (subscribers only) |
Syed Khasim | 9f9c24f | 2007-05-16 01:07:22 +0200 | [diff] [blame] | 3858 | W: http://linux.omap.com |
| 3859 | W: http://www.muru.com/linux/omap/ |
| 3860 | S: Maintained |
| 3861 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 3862 | TI OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 3863 | P: Deepak Saxena |
| 3864 | M: dsaxena@plexity.net |
| 3865 | S: Maintained |
| 3866 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 3867 | TASKSTATS STATISTICS INTERFACE |
| 3868 | P: Shailabh Nagar |
| 3869 | M: nagar@watson.ibm.com |
| 3870 | L: linux-kernel@vger.kernel.org |
| 3871 | S: Maintained |
| 3872 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3873 | TIPC NETWORK LAYER |
| 3874 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3875 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3876 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3877 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3878 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 3879 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 3880 | L: tipc-discussion@lists.sourceforge.net |
| 3881 | W: http://tipc.sourceforge.net/ |
| 3882 | W: http://tipc.cslab.ericsson.net/ |
| 3883 | T: git tipc.cslab.ericsson.net:/pub/git/tipc.git |
| 3884 | S: Maintained |
| 3885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | TLAN NETWORK DRIVER |
| 3887 | P: Samuel Chessman |
| 3888 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 3889 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | W: http://sourceforge.net/projects/tlan/ |
| 3891 | S: Maintained |
| 3892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3893 | TOSHIBA ACPI EXTRAS DRIVER |
| 3894 | P: John Belmonte |
| 3895 | M: toshiba_acpi@memebeam.org |
| 3896 | W: http://memebeam.org/toys/ToshibaAcpiDriver |
| 3897 | S: Maintained |
| 3898 | |
| 3899 | TOSHIBA SMM DRIVER |
| 3900 | P: Jonathan Buzzard |
| 3901 | M: jonathan@buzzard.org.uk |
| 3902 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 3903 | W: http://www.buzzard.org.uk/toshiba/ |
| 3904 | S: Maintained |
| 3905 | |
| 3906 | TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE |
| 3907 | P: Muli Ben-Yehuda |
| 3908 | M: mulix@mulix.org |
| 3909 | L: linux-kernel@vger.kernel.org |
| 3910 | S: Maintained |
| 3911 | |
| 3912 | TRIVIAL PATCHES |
Adrian Bunk | 1560a79 | 2008-02-03 18:17:37 +0200 | [diff] [blame] | 3913 | P: Jesper Juhl |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3914 | M: trivial@kernel.org |
| 3915 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3916 | S: Maintained |
| 3917 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 3918 | TULIP NETWORK DRIVERS |
| 3919 | P: Grant Grundler |
| 3920 | M: grundler@parisc-linux.org |
| 3921 | P: Kyle McMartin |
| 3922 | M: kyle@parisc-linux.org |
| 3923 | L: netdev@vger.kernel.org |
| 3924 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | |
| 3926 | TUN/TAP driver |
| 3927 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 3928 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3929 | L: vtun@office.satix.net |
| 3930 | W: http://vtun.sourceforge.net/tun |
| 3931 | S: Maintained |
| 3932 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 3933 | TURBOCHANNEL SUBSYSTEM |
| 3934 | P: Maciej W. Rozycki |
| 3935 | M: macro@linux-mips.org |
| 3936 | S: Maintained |
| 3937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | U14-34F SCSI DRIVER |
| 3939 | P: Dario Ballabio |
| 3940 | M: ballabio_dario@emc.com |
| 3941 | L: linux-scsi@vger.kernel.org |
| 3942 | S: Maintained |
| 3943 | |
| 3944 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 3945 | P: Jan Kara |
| 3946 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3947 | W: http://linux-udf.sourceforge.net |
| 3948 | S: Maintained |
| 3949 | |
| 3950 | UNIFORM CDROM DRIVER |
| 3951 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 3952 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3953 | L: linux-kernel@vger.kernel.org |
| 3954 | W: http://www.kernel.dk |
| 3955 | S: Maintained |
| 3956 | |
| 3957 | USB ACM DRIVER |
| 3958 | P: Oliver Neukum |
| 3959 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3960 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | S: Maintained |
| 3962 | |
Jiri Slaby | 6d98516 | 2008-02-06 01:37:11 -0800 | [diff] [blame] | 3963 | USB AUERSWALD DRIVER |
| 3964 | P: Wolfgang Muees |
| 3965 | M: wolfgang@iksw-muees.de |
| 3966 | L: linux-usb@vger.kernel.org |
| 3967 | S: Maintained |
| 3968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | USB BLOCK DRIVER (UB ub) |
| 3970 | P: Pete Zaitcev |
| 3971 | M: zaitcev@redhat.com |
| 3972 | L: linux-kernel@vger.kernel.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3973 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3974 | S: Supported |
| 3975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3976 | USB CDC ETHERNET DRIVER |
| 3977 | P: Greg Kroah-Hartman |
| 3978 | M: greg@kroah.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3979 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | S: Maintained |
| 3981 | W: http://www.kroah.com/linux-usb/ |
| 3982 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 3983 | USB DAVICOM DM9601 DRIVER |
| 3984 | P: Peter Korsgaard |
| 3985 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 3986 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 3987 | W: http://www.linux-usb.org/usbnet |
| 3988 | S: Maintained |
| 3989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | USB EHCI DRIVER |
| 3991 | P: David Brownell |
| 3992 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3993 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 3994 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3995 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 3996 | USB ET61X[12]51 DRIVER |
| 3997 | P: Luca Risolia |
| 3998 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 3999 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 4000 | L: video4linux-list@redhat.com |
| 4001 | W: http://www.linux-projects.org |
| 4002 | S: Maintained |
| 4003 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4004 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 4005 | P: David Brownell |
| 4006 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4007 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4008 | W: http://www.linux-usb.org/gadget |
| 4009 | S: Maintained |
| 4010 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 4011 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266fd | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 4012 | P: Jiri Kosina |
| 4013 | M: jkosina@suse.cz |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4014 | L: linux-usb@vger.kernel.org |
Jiri Kosina | a4dff39 | 2007-02-27 17:40:09 +0100 | [diff] [blame] | 4015 | T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4016 | S: Maintained |
| 4017 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 4018 | USB ISP116X DRIVER |
| 4019 | P: Olav Kongas |
| 4020 | M: ok@artecdesign.ee |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4021 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 4022 | S: Maintained |
| 4023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4024 | USB KAWASAKI LSI DRIVER |
| 4025 | P: Oliver Neukum |
| 4026 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4027 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4028 | S: Maintained |
| 4029 | |
| 4030 | USB MASS STORAGE DRIVER |
| 4031 | P: Matthew Dharm |
| 4032 | M: mdharm-usb@one-eyed-alien.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4033 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 4034 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | S: Maintained |
| 4036 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
| 4037 | |
| 4038 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 4039 | P: David Brownell |
| 4040 | M: dbrownell@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4041 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 4042 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 4044 | USB OPTION-CARD DRIVER |
| 4045 | P: Matthias Urlichs |
| 4046 | M: smurf@smurf.noris.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4047 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 4048 | S: Maintained |
| 4049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4050 | USB OV511 DRIVER |
| 4051 | P: Mark McClelland |
| 4052 | M: mmcclell@bigfoot.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4053 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | W: http://alpha.dyndns.org/ov511/ |
| 4055 | S: Maintained |
| 4056 | |
| 4057 | USB PEGASUS DRIVER |
| 4058 | P: Petko Manolov |
| 4059 | M: petkan@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4060 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4061 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4062 | W: http://pegasus2.sourceforge.net/ |
| 4063 | S: Maintained |
| 4064 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 4065 | USB PRINTER DRIVER (usblp) |
| 4066 | P: Pete Zaitcev |
| 4067 | M: zaitcev@redhat.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4068 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 4069 | S: Supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4070 | |
| 4071 | USB RTL8150 DRIVER |
| 4072 | P: Petko Manolov |
| 4073 | M: petkan@users.sourceforge.net |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4074 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4075 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4076 | W: http://pegasus2.sourceforge.net/ |
| 4077 | S: Maintained |
| 4078 | |
| 4079 | USB SE401 DRIVER |
| 4080 | P: Jeroen Vreeken |
| 4081 | M: pe1rxq@amsat.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4082 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4083 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 4084 | S: Maintained |
| 4085 | |
| 4086 | USB SERIAL CYBERJACK DRIVER |
| 4087 | P: Matthias Bruestle and Harald Welte |
| 4088 | M: support@reiner-sct.com |
| 4089 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 4090 | S: Maintained |
| 4091 | |
| 4092 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 4093 | P: Peter Berger and Al Borchers |
| 4094 | M: pberger@brimson.com |
| 4095 | M: alborchers@steinerpoint.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4096 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4097 | S: Maintained |
| 4098 | |
| 4099 | USB SERIAL DRIVER |
| 4100 | P: Greg Kroah-Hartman |
| 4101 | M: gregkh@suse.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4102 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4103 | S: Supported |
| 4104 | |
| 4105 | USB SERIAL BELKIN F5U103 DRIVER |
| 4106 | P: William Greathouse |
| 4107 | M: wgreathouse@smva.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4108 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | S: Maintained |
| 4110 | |
| 4111 | USB SERIAL CYPRESS M8 DRIVER |
| 4112 | P: Lonnie Mendez |
| 4113 | M: dignome@gmail.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4114 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4115 | S: Maintained |
| 4116 | W: http://geocities.com/i0xox0i |
| 4117 | W: http://firstlight.net/cvs |
| 4118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4119 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 4120 | P: Gary Brubaker |
| 4121 | M: xavyer@ix.netcom.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4122 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4123 | S: Maintained |
| 4124 | |
| 4125 | USB SERIAL KEYSPAN DRIVER |
| 4126 | P: Greg Kroah-Hartman |
| 4127 | M: greg@kroah.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4128 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4129 | W: http://www.kroah.com/linux/ |
| 4130 | S: Maintained |
| 4131 | |
| 4132 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 4133 | P: Support Department |
| 4134 | M: support@connecttech.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4135 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4136 | W: http://www.connecttech.com |
| 4137 | S: Supported |
| 4138 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 4139 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4140 | P: Luca Risolia |
| 4141 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4142 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 4143 | L: video4linux-list@redhat.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | W: http://www.linux-projects.org |
| 4145 | S: Maintained |
| 4146 | |
| 4147 | USB SUBSYSTEM |
| 4148 | P: Greg Kroah-Hartman |
| 4149 | M: gregkh@suse.de |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4150 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4151 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 4152 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4153 | S: Supported |
| 4154 | |
| 4155 | USB UHCI DRIVER |
| 4156 | P: Alan Stern |
| 4157 | M: stern@rowland.harvard.edu |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4158 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | S: Maintained |
| 4160 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4161 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4162 | P: David Brownell |
| 4163 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 4164 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 4165 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4166 | S: Maintained |
| 4167 | |
| 4168 | USB W996[87]CF DRIVER |
| 4169 | P: Luca Risolia |
| 4170 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4171 | L: linux-usb@vger.kernel.org |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 4172 | L: video4linux-list@redhat.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4173 | W: http://www.linux-projects.org |
| 4174 | S: Maintained |
| 4175 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 4176 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 4177 | P: Jussi Kivilinna |
| 4178 | M: jussi.kivilinna@mbnet.fi |
| 4179 | L: linux-wireless@vger.kernel.org |
| 4180 | S: Maintained |
| 4181 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 4182 | USB ZC0301 DRIVER |
| 4183 | P: Luca Risolia |
| 4184 | M: luca.risolia@studio.unibo.it |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4185 | L: linux-usb@vger.kernel.org |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 4186 | L: video4linux-list@redhat.com |
| 4187 | W: http://www.linux-projects.org |
| 4188 | S: Maintained |
| 4189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | USB ZD1201 DRIVER |
| 4191 | P: Jeroen Vreeken |
| 4192 | M: pe1rxq@amsat.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4193 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4194 | W: http://linux-lc100020.sourceforge.net |
| 4195 | S: Maintained |
| 4196 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4197 | USB ZR364XX DRIVER |
| 4198 | P: Antoine Jacquet |
| 4199 | M: royale@zerezo.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4200 | L: linux-usb@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4201 | L: video4linux-list@redhat.com |
| 4202 | W: http://royale.zerezo.com/zr364xx/ |
| 4203 | S: Maintained |
| 4204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4205 | USER-MODE LINUX |
| 4206 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4207 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4208 | L: user-mode-linux-devel@lists.sourceforge.net |
| 4209 | L: user-mode-linux-user@lists.sourceforge.net |
| 4210 | W: http://user-mode-linux.sourceforge.net |
| 4211 | S: Maintained |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 4212 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 4213 | USERSPACE I/O (UIO) |
| 4214 | P: Hans J. Koch |
| 4215 | M: hjk@linutronix.de |
| 4216 | P: Greg Kroah-Hartman |
| 4217 | M: gregkh@suse.de |
| 4218 | L: linux-kernel@vger.kernel.org |
| 4219 | S: Maintained |
| 4220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4221 | FAT/VFAT/MSDOS FILESYSTEM: |
| 4222 | P: OGAWA Hirofumi |
| 4223 | M: hirofumi@mail.parknet.co.jp |
| 4224 | L: linux-kernel@vger.kernel.org |
| 4225 | S: Maintained |
| 4226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4227 | VIA RHINE NETWORK DRIVER |
| 4228 | P: Roger Luethi |
| 4229 | M: rl@hellgate.ch |
| 4230 | S: Maintained |
| 4231 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 4232 | VIAPRO SMBUS DRIVER |
| 4233 | P: Jean Delvare |
| 4234 | M: khali@linux-fr.org |
Jean Delvare | 5d925fe | 2006-07-01 17:14:32 +0200 | [diff] [blame] | 4235 | L: i2c@lm-sensors.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 4236 | S: Maintained |
| 4237 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 4238 | VIA VELOCITY NETWORK DRIVER |
| 4239 | P: Francois Romieu |
| 4240 | M: romieu@fr.zoreil.com |
| 4241 | L: netdev@vger.kernel.org |
| 4242 | S: Maintained |
| 4243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4244 | UCLINUX (AND M68KNOMMU) |
| 4245 | P: Greg Ungerer |
| 4246 | M: gerg@uclinux.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4247 | W: http://www.uclinux.org/ |
Adrian Bunk | d660a74 | 2005-06-25 14:59:35 -0700 | [diff] [blame] | 4248 | L: uclinux-dev@uclinux.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4249 | S: Maintained |
| 4250 | |
| 4251 | UCLINUX FOR NEC V850 |
| 4252 | P: Miles Bader |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | |
| 4254 | UCLINUX FOR RENESAS H8/300 |
| 4255 | P: Yoshinori Sato |
| 4256 | M: ysato@users.sourceforge.jp |
| 4257 | W: http://uclinux-h8.sourceforge.jp/ |
| 4258 | S: Supported |
| 4259 | |
Evgeniy Dushistov | 719d969 | 2007-02-02 11:36:34 +0300 | [diff] [blame] | 4260 | UFS FILESYSTEM |
Alan Cox | abb4920 | 2007-06-08 13:47:03 -0700 | [diff] [blame] | 4261 | P: Evgeniy Dushistov |
| 4262 | M: dushistov@mail.ru |
| 4263 | L: linux-kernel@vger.kernel.org |
| 4264 | S: Maintained |
Evgeniy Dushistov | 719d969 | 2007-02-02 11:36:34 +0300 | [diff] [blame] | 4265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | USB DIAMOND RIO500 DRIVER |
| 4267 | P: Cesar Miquel |
| 4268 | M: miquel@df.uba.ar |
| 4269 | L: rio500-users@lists.sourceforge.net |
| 4270 | W: http://rio500.sourceforge.net |
| 4271 | S: Maintained |
| 4272 | |
| 4273 | VIDEO FOR LINUX |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4274 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 4275 | M: mchehab@infradead.org |
| 4276 | M: v4l-dvb-maintainer@linuxtv.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4277 | L: video4linux-list@redhat.com |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4278 | W: http://linuxtv.org |
Mauro Carvalho Chehab | ecfa4fd | 2005-12-19 09:15:13 -0200 | [diff] [blame] | 4279 | T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 4280 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4281 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 4282 | VLAN (802.1Q) |
| 4283 | P: Patrick McHardy |
| 4284 | M: kaber@trash.net |
| 4285 | L: netdev@vger.kernel.org |
| 4286 | S: Maintained |
| 4287 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 4288 | VT1211 HARDWARE MONITOR DRIVER |
| 4289 | P: Juerg Haefliger |
| 4290 | M: juergh@gmail.com |
| 4291 | L: lm-sensors@lm-sensors.org |
| 4292 | S: Maintained |
| 4293 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 4294 | VT8231 HARDWARE MONITOR DRIVER |
| 4295 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 4296 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 4297 | L: lm-sensors@lm-sensors.org |
| 4298 | S: Maintained |
| 4299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4300 | W1 DALLAS'S 1-WIRE BUS |
| 4301 | P: Evgeniy Polyakov |
| 4302 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4303 | S: Maintained |
| 4304 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 4305 | W83791D HARDWARE MONITORING DRIVER |
| 4306 | P: Charles Spirakis |
| 4307 | M: bezaur@gmail.com |
| 4308 | L: lm-sensors@lm-sensors.org |
Charles Spirakis | 6438312 | 2007-09-04 13:31:56 -0700 | [diff] [blame] | 4309 | S: Odd Fixes |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 4310 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 4311 | W83793 HARDWARE MONITORING DRIVER |
| 4312 | P: Rudolf Marek |
| 4313 | M: r.marek@assembler.cz |
| 4314 | L: lm-sensors@lm-sensors.org |
| 4315 | S: Maintained |
| 4316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4317 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 4318 | P: Pierre Ossman |
| 4319 | M: drzeus-wbsd@drzeus.cx |
Pierre Ossman | fac8899 | 2007-01-27 13:18:26 +0100 | [diff] [blame] | 4320 | L: linux-kernel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | S: Maintained |
| 4322 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 4323 | WATCHDOG DEVICE DRIVERS |
| 4324 | P: Wim Van Sebroeck |
| 4325 | M: wim@iguana.be |
| 4326 | T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git |
| 4327 | S: Maintained |
| 4328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4329 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 4330 | P: Jean Tourrilhes |
| 4331 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4332 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4333 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 4334 | S: Maintained |
| 4335 | |
| 4336 | WD7000 SCSI DRIVER |
| 4337 | P: Miroslav Zagorac |
| 4338 | M: zaga@fly.cc.fer.hr |
| 4339 | L: linux-scsi@vger.kernel.org |
| 4340 | S: Maintained |
| 4341 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 4342 | WISTRON LAPTOP BUTTON DRIVER |
| 4343 | P: Miloslav Trmac |
| 4344 | M: mitr@volny.cz |
| 4345 | S: Maintained |
| 4346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4347 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 4348 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 4349 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4350 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 4351 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | S: Maintained |
| 4353 | |
| 4354 | X.25 NETWORK LAYER |
| 4355 | P: Henner Eisen |
| 4356 | M: eis@baty.hanse.de |
| 4357 | L: linux-x25@vger.kernel.org |
| 4358 | S: Maintained |
| 4359 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 4360 | XEN HYPERVISOR INTERFACE |
| 4361 | P: Jeremy Fitzhardinge |
| 4362 | M: jeremy@xensource.com |
| 4363 | P: Chris Wright |
| 4364 | M: chrisw@sous-sol.org |
| 4365 | L: virtualization@lists.osdl.org |
| 4366 | L: xen-devel@lists.xensource.com |
| 4367 | S: Supported |
| 4368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4369 | XFS FILESYSTEM |
| 4370 | P: Silicon Graphics Inc |
Timothy Shimmin | 78bfd36 | 2007-06-11 20:42:09 -0700 | [diff] [blame] | 4371 | P: Tim Shimmin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4372 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 4373 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4374 | W: http://oss.sgi.com/projects/xfs |
Tim Shimmin | e99f056 | 2007-06-19 15:26:35 +1000 | [diff] [blame] | 4375 | T: git git://oss.sgi.com:8090/xfs/xfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4376 | S: Supported |
| 4377 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 4378 | XILINX SYSTEMACE DRIVER |
| 4379 | P: Grant Likely |
| 4380 | M: grant.likely@secretlab.ca |
| 4381 | W: http://www.secretlab.ca/ |
| 4382 | L: linux-kernel@vger.kernel.org |
| 4383 | S: Maintained |
| 4384 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 4385 | XILINX UARTLITE SERIAL DRIVER |
| 4386 | P: Peter Korsgaard |
| 4387 | M: jacmet@sunsite.dk |
| 4388 | L: linux-serial@vger.kernel.org |
| 4389 | S: Maintained |
| 4390 | |
Ingo Molnar | 6ce59b4 | 2007-10-20 02:36:26 +0200 | [diff] [blame] | 4391 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 4392 | P: Thomas Gleixner |
| 4393 | M: tglx@linutronix.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4394 | P: Ingo Molnar |
| 4395 | M: mingo@redhat.com |
Ingo Molnar | 6ce59b4 | 2007-10-20 02:36:26 +0200 | [diff] [blame] | 4396 | P: H. Peter Anvin |
| 4397 | M: hpa@zytor.com |
| 4398 | L: linux-kernel@vger.kernel.org |
| 4399 | T: git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4400 | S: Maintained |
| 4401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4402 | YAM DRIVER FOR AX.25 |
| 4403 | P: Jean-Paul Roubelat |
| 4404 | M: jpr@f6fbb.org |
| 4405 | L: linux-hams@vger.kernel.org |
| 4406 | S: Maintained |
| 4407 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 4408 | YEALINK PHONE DRIVER |
| 4409 | P: Henk Vergonet |
| 4410 | M: Henk.Vergonet@gmail.com |
| 4411 | L: usbb2k-api-dev@nongnu.org |
| 4412 | S: Maintained |
| 4413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | Z8530 DRIVER FOR AX.25 |
| 4415 | P: Joerg Reuter |
| 4416 | M: jreuter@yaina.de |
| 4417 | W: http://yaina.de/jreuter/ |
| 4418 | W: http://www.qsl.net/dl1bke/ |
| 4419 | L: linux-hams@vger.kernel.org |
| 4420 | S: Maintained |
| 4421 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 4422 | ZD1211RW WIRELESS DRIVER |
| 4423 | P: Daniel Drake |
| 4424 | M: dsd@gentoo.org |
| 4425 | P: Ulrich Kunitz |
| 4426 | M: kune@deine-taler.de |
| 4427 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4428 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 4429 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 4430 | S: Maintained |
| 4431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4432 | ZF MACHZ WATCHDOG |
| 4433 | P: Fernando Fuganti |
| 4434 | M: fuganti@netbank.com.br |
| 4435 | W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/ |
| 4436 | S: Maintained |
| 4437 | |
| 4438 | ZR36067 VIDEO FOR LINUX DRIVER |
| 4439 | P: Ronald Bultje |
| 4440 | M: rbultje@ronald.bitfreak.net |
| 4441 | L: mjpeg-users@lists.sourceforge.net |
| 4442 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
| 4443 | S: Maintained |
| 4444 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 4445 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 4446 | P: Maciej W. Rozycki |
| 4447 | M: macro@linux-mips.org |
| 4448 | S: Maintained |
| 4449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4450 | THE REST |
| 4451 | P: Linus Torvalds |
| 4452 | S: Buried alive in reporters |