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