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 | |
Joe Perches | f70f873 | 2009-06-16 15:34:08 -0700 | [diff] [blame] | 39 | PLEASE CC: the maintainers and mailing lists that are generated |
| 40 | by scripts/get_maintainer.pl. The results returned by the |
| 41 | script will be best if you have git installed and are making |
| 42 | your changes in a branch derived from Linus' latest git tree. |
| 43 | See Documentation/SubmittingPatches for details. |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | PLEASE try to include any credit lines you want added with the |
| 46 | patch. It avoids people being missed off by mistake and makes |
| 47 | it easier to know who wants adding and who doesn't. |
| 48 | |
| 49 | PLEASE document known bugs. If it doesn't work for everything |
| 50 | or does something very odd once a month document it. |
| 51 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 52 | PLEASE remember that submissions must be made under the terms |
Randy Dunlap | 4500371 | 2007-08-30 23:56:37 -0700 | [diff] [blame] | 53 | of the OSDL certificate of contribution and should include a |
| 54 | Signed-off-by: line. The current version of this "Developer's |
| 55 | Certificate of Origin" (DCO) is listed in the file |
| 56 | Documentation/SubmittingPatches. |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | 6. Make sure you have the right to send any changes you make. If you |
| 59 | do changes at work you may find your employer owns the patch |
| 60 | not you. |
| 61 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 62 | 7. When sending security related changes or reports to a maintainer |
| 63 | please Cc: security@kernel.org, especially if the maintainer |
| 64 | does not respond. |
| 65 | |
| 66 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 68 | ----------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | Maintainers List (try to look for most precise areas first) |
| 71 | |
| 72 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 73 | order. If you could add yourselves to it in alphabetical order that would be |
| 74 | so much easier [Ed] |
| 75 | |
| 76 | P: Person |
| 77 | M: Mail patches to |
| 78 | L: Mailing list that is relevant to this area |
| 79 | W: Web-page with status/info |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 80 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. |
Randy Dunlap | 4501a46 | 2008-10-13 09:24:58 -0700 | [diff] [blame] | 81 | S: Status, one of the following: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | Supported: Someone is actually paid to look after this. |
| 84 | Maintained: Someone actually looks after it. |
| 85 | Odd Fixes: It has a maintainer but they don't have time to do |
| 86 | much other than throw the odd patch in. See below.. |
| 87 | Orphan: No current maintainer [but maybe you could take the |
| 88 | role as you write your new code]. |
| 89 | Obsolete: Old code. Something tagged obsolete generally means |
| 90 | it has been replaced by a better system and you |
| 91 | should be using that. |
| 92 | |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 93 | F: Files and directories with wildcard patterns. |
| 94 | A trailing slash includes all files and subdirectory files. |
| 95 | F: drivers/net/ all files in and below drivers/net |
| 96 | F: drivers/net/* all files in drivers/net, but not below |
| 97 | F: */net/* all files in "any top level directory"/net |
| 98 | One pattern per line. Multiple F: lines acceptable. |
| 99 | X: Files and directories that are NOT maintained, same rules as F: |
| 100 | Files exclusions are tested before file matches. |
| 101 | Can be useful for excluding a specific subdirectory, for instance: |
| 102 | F: net/ |
| 103 | X: net/ipv6/ |
| 104 | matches all files in and below net excluding net/ipv6/ |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | 3C505 NETWORK DRIVER |
| 107 | P: Philip Blundell |
| 108 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 109 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 111 | F: drivers/net/3c505* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 113 | 3C59X NETWORK DRIVER |
| 114 | P: Steffen Klassert |
| 115 | M: klassert@mathematik.tu-chemnitz.de |
| 116 | L: netdev@vger.kernel.org |
| 117 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 118 | F: Documentation/networking/vortex.txt |
| 119 | F: drivers/net/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | 3CR990 NETWORK DRIVER |
| 122 | P: David Dillow |
| 123 | M: dave@thedillows.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 124 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 126 | F: drivers/net/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 128 | 3W-9XXX SATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | P: Adam Radford |
| 130 | M: linuxraid@amcc.com |
| 131 | L: linux-scsi@vger.kernel.org |
| 132 | W: http://www.amcc.com |
| 133 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 134 | F: drivers/scsi/3w-9xxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 136 | 3W-XXXX ATA-RAID CONTROLLER DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | P: Adam Radford |
| 138 | M: linuxraid@amcc.com |
| 139 | L: linux-scsi@vger.kernel.org |
| 140 | W: http://www.amcc.com |
| 141 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 142 | F: drivers/scsi/3w-xxxx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | 53C700 AND 53C700-66 SCSI DRIVER |
| 145 | P: James E.J. Bottomley |
| 146 | M: James.Bottomley@HansenPartnership.com |
| 147 | L: linux-scsi@vger.kernel.org |
| 148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 149 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | 6PACK NETWORK DRIVER FOR AX.25 |
| 152 | P: Andreas Koensgen |
| 153 | M: ajk@iehk.rwth-aachen.de |
| 154 | L: linux-hams@vger.kernel.org |
| 155 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 156 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 159 | P: Francois Romieu |
| 160 | M: romieu@fr.zoreil.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 161 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 163 | F: drivers/net/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Joe Perches | dc98792 | 2009-06-16 17:01:52 +0100 | [diff] [blame] | 166 | P: Alan Cox |
| 167 | M: alan@lxorguk.ukuu.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | L: linux-serial@vger.kernel.org |
| 169 | W: http://serial.sourceforge.net |
Alan Cox | 4b6ae89 | 2009-06-11 12:45:08 +0100 | [diff] [blame] | 170 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 171 | F: drivers/serial/8250* |
| 172 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 175 | P: Paul Gortmaker |
| 176 | M: p_gortmaker@yahoo.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 177 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 179 | F: drivers/net/*8390* |
| 180 | F: drivers/net/ax88796.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 182 | 9P FILE SYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 183 | P: Eric Van Hensbergen |
| 184 | M: ericvh@gmail.com |
| 185 | P: Ron Minnich |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 186 | M: rminnich@sandia.gov |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 187 | P: Latchesar Ionkov |
| 188 | M: lucho@ionkov.net |
| 189 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 190 | W: http://swik.net/v9fs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 191 | T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 192 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 193 | F: Documentation/filesystems/9p.txt |
| 194 | F: fs/9p/ |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | A2232 SERIAL BOARD DRIVER |
| 197 | P: Enver Haase |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | M: A2232@gmx.net |
| 199 | L: linux-m68k@lists.linux-m68k.org |
| 200 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 201 | F: drivers/char/ser_a2232* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 203 | AACRAID 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/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 209 | F: Documentation/scsi/aacraid.txt |
| 210 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 212 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 213 | P: Hans de Goede |
| 214 | M: j.w.r.degoede@hhs.nl |
| 215 | L: lm-sensors@lm-sensors.org |
| 216 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 217 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 218 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 219 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 220 | P: Alistair John Strachan |
| 221 | M: alistair@devzero.co.uk |
| 222 | L: lm-sensors@lm-sensors.org |
| 223 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 224 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | ACENIC DRIVER |
| 227 | P: Jes Sorensen |
| 228 | M: jes@trained-monkey.org |
| 229 | L: linux-acenic@sunsite.dk |
| 230 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 231 | F: drivers/net/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 233 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
| 234 | P: Peter Feuerer |
| 235 | M: peter@piie.net |
| 236 | W: http://piie.net/?section=acerhdf |
| 237 | S: Maintained |
| 238 | F: drivers/platform/x86/acerhdf.c |
| 239 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 240 | ACER WMI LAPTOP EXTRAS |
| 241 | P: Carlos Corbacho |
| 242 | M: carlos@strangeworlds.co.uk |
| 243 | L: aceracpi@googlegroups.com (subscribers-only) |
| 244 | W: http://code.google.com/p/aceracpi |
| 245 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 246 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | ACPI |
Andi Kleen | 54cd314 | 2008-09-04 13:30:07 +0200 | [diff] [blame] | 249 | P: Len Brown |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 250 | M: lenb@kernel.org |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 251 | L: linux-acpi@vger.kernel.org |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 252 | W: http://www.lesswatts.org/projects/acpi/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 254 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 255 | F: drivers/acpi/ |
| 256 | F: drivers/pnp/pnpacpi/ |
| 257 | F: include/linux/acpi.h |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 258 | |
| 259 | ACPI BATTERY DRIVERS |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 260 | P: Alexey Starikovskiy |
| 261 | M: astarikovskiy@suse.de |
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 |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 265 | F: drivers/acpi/battery.c |
| 266 | F: drivers/acpi/*sbs* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 267 | |
| 268 | ACPI EC DRIVER |
| 269 | P: Alexey Starikovskiy |
Len Brown | a414655 | 2007-06-23 15:54:36 -0400 | [diff] [blame] | 270 | M: astarikovskiy@suse.de |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 271 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 272 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 273 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 274 | F: drivers/acpi/ec.c |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 275 | |
| 276 | ACPI FAN DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 277 | P: Zhang Rui |
| 278 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 279 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 280 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 281 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 282 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 284 | ACPI PCI HOTPLUG DRIVER |
| 285 | P: Kristen Carlson Accardi |
| 286 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 287 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 288 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 289 | F: drivers/pci/hotplug/acpi* |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 290 | |
| 291 | ACPI THERMAL DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 292 | P: Zhang Rui |
| 293 | M: rui.zhang@intel.com |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 294 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 295 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 296 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 297 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 298 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 299 | ACPI VIDEO DRIVER |
Len Brown | 65573ee | 2008-06-27 11:22:46 -0400 | [diff] [blame] | 300 | P: Zhang Rui |
Len Brown | 38e09d8 | 2007-10-25 17:55:59 -0400 | [diff] [blame] | 301 | M: rui.zhang@intel.com |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 302 | L: linux-acpi@vger.kernel.org |
Adrian Bunk | 0638bc8 | 2008-05-20 01:08:23 +0300 | [diff] [blame] | 303 | W: http://www.lesswatts.org/projects/acpi/ |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 304 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 305 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 306 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 307 | ACPI WMI DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 308 | P: Carlos Corbacho |
| 309 | M: carlos@strangeworlds.co.uk |
| 310 | L: linux-acpi@vger.kernel.org |
| 311 | W: http://www.lesswatts.org/projects/acpi/ |
| 312 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 313 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 314 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 315 | AD1889 ALSA SOUND DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 316 | P: Kyle McMartin |
| 317 | M: kyle@mcmartin.ca |
| 318 | P: Thibaut Varene |
| 319 | M: T-Bone@parisc-linux.org |
| 320 | W: http://wiki.parisc-linux.org/AD1889 |
| 321 | L: linux-parisc@vger.kernel.org |
| 322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 323 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | ADM1025 HARDWARE MONITOR DRIVER |
| 326 | P: Jean Delvare |
| 327 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 328 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 330 | F: Documentation/hwmon/adm1025 |
| 331 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 333 | ADM1029 HARDWARE MONITOR DRIVER |
| 334 | P: Corentin Labbe |
| 335 | M: corentin.labbe@geomatys.fr |
| 336 | L: lm-sensors@lm-sensors.org |
| 337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 338 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 339 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 340 | ADM8211 WIRELESS DRIVER |
| 341 | P: Michael Wu |
| 342 | M: flamingice@sourmilk.net |
| 343 | L: linux-wireless@vger.kernel.org |
| 344 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 346 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 347 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | ADT746X FAN DRIVER |
| 350 | P: Colin Leroy |
| 351 | M: colin@colino.net |
| 352 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 353 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 355 | ADVANSYS SCSI DRIVER |
| 356 | P: Matthew Wilcox |
| 357 | M: matthew@wil.cx |
| 358 | L: linux-scsi@vger.kernel.org |
| 359 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 360 | F: Documentation/scsi/advansys.txt |
| 361 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | AEDSP16 DRIVER |
| 364 | P: Riccardo Facchetti |
| 365 | M: fizban@tin.it |
| 366 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 367 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | AFFS FILE SYSTEM |
| 370 | P: Roman Zippel |
| 371 | M: zippel@linux-m68k.org |
| 372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 373 | F: Documentation/filesystems/affs.txt |
| 374 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 376 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 377 | P: David Howells |
| 378 | M: dhowells@redhat.com |
| 379 | L: linux-afs@lists.infradead.org |
| 380 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 381 | F: fs/afs/ |
| 382 | F: include/net/af_rxrpc.h |
| 383 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | AGPGART DRIVER |
Dave Jones | 70e8992 | 2007-07-09 20:23:50 -0400 | [diff] [blame] | 386 | P: David Airlie |
| 387 | M: airlied@linux.ie |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 390 | F: drivers/char/agp/ |
| 391 | F: include/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | AHA152X SCSI DRIVER |
| 394 | P: Juergen E. Fischer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 395 | M: fischer@norbit.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | L: linux-scsi@vger.kernel.org |
| 397 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 398 | F: drivers/scsi/aha152x* |
| 399 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 401 | AIC7XXX / AIC79XX SCSI DRIVER |
| 402 | P: Hannes Reinecke |
| 403 | M: hare@suse.de |
| 404 | L: linux-scsi@vger.kernel.org |
| 405 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 406 | F: drivers/scsi/aic7xxx/ |
| 407 | F: drivers/scsi/aic7xxx_old/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 408 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 409 | AIO |
| 410 | P: Benjamin LaHaise |
| 411 | M: bcrl@kvack.org |
| 412 | L: linux-aio@kvack.org |
| 413 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 414 | F: fs/aio.c |
| 415 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | ALCATEL SPEEDTOUCH USB DRIVER |
| 418 | P: Duncan Sands |
| 419 | M: duncan.sands@free.fr |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 420 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | W: http://www.linux-usb.org/SpeedTouch/ |
| 422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 423 | F: drivers/usb/atm/speedtch.c |
| 424 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 426 | ALCHEMY AU1XX0 MMC DRIVER |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 427 | P: Manuel Lauss |
| 428 | M: manuel.lauss@gmail.com |
| 429 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 430 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 431 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 432 | ALI1563 I2C DRIVER |
| 433 | P: Rudolf Marek |
Jean Delvare | 7188cc6 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 434 | M: r.marek@assembler.cz |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 435 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 436 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 437 | F: Documentation/i2c/busses/i2c-ali1563 |
| 438 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | ALPHA PORT |
| 441 | P: Richard Henderson |
| 442 | M: rth@twiddle.net |
| 443 | S: Odd Fixes for 2.4; Maintained for 2.6. |
| 444 | P: Ivan Kokshaysky |
| 445 | M: ink@jurassic.park.msu.ru |
| 446 | S: Maintained for 2.4; PCI support for 2.6. |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 447 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 448 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 450 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 451 | P: Thomas Dahlmann |
Thomas Dahlmann | ba94471 | 2009-05-28 14:34:30 -0700 | [diff] [blame] | 452 | M: dahlmann.thomas@arcor.de |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 453 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 454 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 455 | F: drivers/usb/gadget/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 456 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 457 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 458 | P: Jordan Crouse |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 459 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 460 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 461 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 462 | F: arch/x86/kernel/geode_32.c |
| 463 | F: drivers/char/hw_random/geode-rng.c |
| 464 | F: drivers/crypto/geode* |
| 465 | F: drivers/video/geode/ |
| 466 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 467 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 468 | AMD IOMMU (AMD-VI) |
| 469 | P: Joerg Roedel |
| 470 | M: joerg.roedel@amd.com |
| 471 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 473 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 474 | F: arch/x86/kernel/amd_iommu*.c |
| 475 | F: arch/x86/include/asm/amd_iommu*.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 476 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 477 | AMD MICROCODE UPDATE SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 478 | P: Andreas Herrmann |
Randy Dunlap | f403bb8 | 2009-04-13 14:39:36 -0700 | [diff] [blame] | 479 | M: andreas.herrmann3@amd.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 480 | L: amd64-microcode@amd64.org |
| 481 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 482 | F: arch/x86/kernel/microcode_amd.c |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 483 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 484 | AMS (Apple Motion Sensor) DRIVER |
| 485 | P: Stelian Pop |
| 486 | M: stelian@popies.net |
| 487 | P: Michael Hanselmann |
| 488 | M: linux-kernel@hansmi.ch |
| 489 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 490 | F: drivers/hwmon/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 491 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 492 | AMSO1100 RNIC DRIVER |
| 493 | P: Tom Tucker |
| 494 | M: tom@opengridcomputing.com |
| 495 | P: Steve Wise |
| 496 | M: swise@opengridcomputing.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 497 | L: general@lists.openfabrics.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 498 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 499 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 500 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 501 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 502 | P: Johannes Berg |
| 503 | M: johannes@sipsolutions.net |
| 504 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 505 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 506 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 507 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | APM DRIVER |
| 510 | P: Stephen Rothwell |
| 511 | M: sfr@canb.auug.org.au |
| 512 | L: linux-laptop@vger.kernel.org |
| 513 | W: http://www.canb.auug.org.au/~sfr/ |
| 514 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 515 | F: arch/x86/kernel/apm_32.c |
| 516 | F: include/linux/apm_bios.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 518 | APPLE BCM5974 MULTITOUCH DRIVER |
| 519 | P: Henrik Rydberg |
| 520 | M: rydberg@euromail.se |
| 521 | L: linux-input@vger.kernel.org |
| 522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 523 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 524 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 525 | APPLE SMC DRIVER |
| 526 | P: Nicolas Boichat |
| 527 | M: nicolas@boichat.ch |
| 528 | L: mactel-linux-devel@lists.sourceforge.net |
| 529 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 530 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | APPLETALK NETWORK LAYER |
| 533 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 534 | M: acme@ghostprotocols.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 536 | F: drivers/net/appletalk/ |
| 537 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 539 | APPLETOUCH TOUCHPAD DRIVER |
| 540 | P: Johannes Berg |
| 541 | M: johannes@sipsolutions.net |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 542 | L: linux-input@vger.kernel.org |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 544 | F: Documentation/input/appletouch.txt |
| 545 | F: drivers/input/mouse/appletouch.c |
Johannes Berg | eb9ebe6 | 2007-10-27 23:42:45 -0400 | [diff] [blame] | 546 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 547 | ARC FRAMEBUFFER DRIVER |
| 548 | P: Jaya Kumar |
| 549 | M: jayalk@intworks.biz |
| 550 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 551 | F: drivers/video/arcfb.c |
| 552 | F: drivers/video/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | ARM MFM AND FLOPPY DRIVERS |
| 555 | P: Ian Molton |
| 556 | M: spyro@f2s.com |
| 557 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 558 | F: arch/arm/lib/floppydma.S |
| 559 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 561 | ARM PORT |
| 562 | P: Russell King |
| 563 | M: linux@arm.linux.org.uk |
| 564 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 565 | W: http://www.arm.linux.org.uk/ |
| 566 | S: Maintained |
| 567 | F: arch/arm/ |
| 568 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 569 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Pierre Ossman | 6d79947 | 2008-07-22 14:36:57 +0200 | [diff] [blame] | 570 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 571 | F: drivers/mmc/host/mmci.* |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 572 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 573 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
| 574 | P: Lennert Buytenhek |
| 575 | M: kernel@wantstofly.org |
| 576 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 577 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 578 | F: arch/arm/mach-ixp23xx/ |
| 579 | F: arch/arm/mach-ixp23xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 580 | |
| 581 | ARM/ADS SPHERE MACHINE SUPPORT |
| 582 | P: Lennert Buytenhek |
| 583 | M: kernel@wantstofly.org |
| 584 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 585 | S: Maintained |
| 586 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 587 | ARM/AFEB9260 MACHINE SUPPORT |
| 588 | P: Sergey Lapin |
| 589 | M: slapin@ossfans.org |
| 590 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 591 | S: Maintained |
| 592 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 593 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 594 | P: Lennert Buytenhek |
| 595 | M: kernel@wantstofly.org |
| 596 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 597 | S: Maintained |
| 598 | |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 599 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 600 | P: Andrew Victor |
| 601 | M: linux@maxim.org.za |
| 602 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 603 | W: http://maxim.org.za/at91_26.html |
| 604 | S: Maintained |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 605 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 606 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 607 | P: Lennert Buytenhek |
| 608 | M: kernel@wantstofly.org |
| 609 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 610 | S: Maintained |
| 611 | |
| 612 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 613 | P: Lennert Buytenhek |
| 614 | M: kernel@wantstofly.org |
| 615 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 616 | S: Maintained |
| 617 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 618 | ARM/CLKDEV SUPPORT |
| 619 | P: Russell King |
| 620 | M: linux@arm.linux.org.uk |
| 621 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 622 | F: arch/arm/common/clkdev.c |
| 623 | F: arch/arm/include/asm/clkdev.h |
| 624 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 625 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 626 | P: Mike Rapoport |
| 627 | M: mike@compulab.co.il |
| 628 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 629 | S: Maintained |
| 630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | ARM/CORGI MACHINE SUPPORT |
| 632 | P: Richard Purdie |
| 633 | M: rpurdie@rpsys.net |
| 634 | S: Maintained |
| 635 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 636 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 637 | P: Paulius Zaleckas |
| 638 | M: paulius.zaleckas@teltonika.lt |
| 639 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 640 | T: git git://gitorious.org/linux-gemini/mainline.git |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 641 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 642 | F: arch/arm/mach-gemini/ |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 643 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 644 | ARM/EBSA110 MACHINE SUPPORT |
| 645 | P: Russell King |
| 646 | M: linux@arm.linux.org.uk |
| 647 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 648 | W: http://www.arm.linux.org.uk/ |
| 649 | S: Maintained |
| 650 | F: arch/arm/mach-ebsa110/ |
| 651 | F: drivers/net/arm/am79c961a.* |
| 652 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 653 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 654 | P: Daniel Ribeiro |
| 655 | M: drwyrm@gmail.com |
| 656 | P: Stefan Schmidt |
| 657 | M: stefan@openezx.org |
| 658 | P: Harald Welte |
| 659 | M: laforge@openezx.org |
| 660 | L: openezx-devel@lists.openezx.org (subscribers-only) |
| 661 | W: http://www.openezx.org/ |
| 662 | S: Maintained |
Stefan Schmidt | cafc226 | 2009-06-14 01:08:36 +0200 | [diff] [blame] | 663 | T: topgit git://git.openezx.org/openezx.git |
| 664 | F: arch/arm/mach-pxa/ezx.c |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 665 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 666 | ARM/FARADAY FA526 PORT |
| 667 | P: Paulius Zaleckas |
| 668 | M: paulius.zaleckas@teltonika.lt |
| 669 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 670 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 671 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 672 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 673 | ARM/FOOTBRIDGE ARCHITECTURE |
| 674 | P: Russell King |
| 675 | M: linux@arm.linux.org.uk |
| 676 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 677 | W: http://www.arm.linux.org.uk/ |
| 678 | S: Maintained |
| 679 | F: arch/arm/include/asm/hardware/dec21285.h |
| 680 | F: arch/arm/mach-footbridge/ |
| 681 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 682 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 683 | P: Sascha Hauer |
| 684 | M: kernel@pengutronix.de |
| 685 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 686 | S: Maintained |
| 687 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 688 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 689 | P: Lennert Buytenhek |
| 690 | M: kernel@wantstofly.org |
| 691 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 692 | S: Maintained |
| 693 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 694 | ARM/GUMSTIX MACHINE SUPPORT |
| 695 | P: Steve Sakoman |
| 696 | M: sakoman@gmail.com |
| 697 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 698 | S: Maintained |
| 699 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 700 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
| 701 | P: Philipp Zabel |
| 702 | M: philipp.zabel@gmail.com |
| 703 | S: Maintained |
| 704 | F: arch/arm/mach-pxa/hx4700.c |
| 705 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
| 706 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 707 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 708 | P: Kristoffer Ericson |
| 709 | M: kristoffer.ericson@gmail.com |
| 710 | W: www.jlime.com |
| 711 | S: Maintained |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 712 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 713 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 714 | P: Lennert Buytenhek |
| 715 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 716 | P: Dan Williams |
| 717 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 718 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 719 | S: Supported |
| 720 | |
| 721 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 722 | P: Dan Williams |
| 723 | M: dan.j.williams@intel.com |
| 724 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 725 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 726 | |
| 727 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 728 | P: Lennert Buytenhek |
| 729 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 730 | P: Dan Williams |
| 731 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 732 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 733 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 734 | |
| 735 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 736 | P: Lennert Buytenhek |
| 737 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 738 | P: Dan Williams |
| 739 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 740 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 741 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 742 | |
| 743 | ARM/INTEL IXP2000 ARM ARCHITECTURE |
| 744 | P: Lennert Buytenhek |
| 745 | M: kernel@wantstofly.org |
| 746 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 747 | S: Maintained |
| 748 | |
| 749 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 750 | P: Lennert Buytenhek |
| 751 | M: kernel@wantstofly.org |
| 752 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 753 | S: Maintained |
| 754 | |
| 755 | ARM/INTEL IXP23XX ARM ARCHITECTURE |
| 756 | P: Lennert Buytenhek |
| 757 | M: kernel@wantstofly.org |
| 758 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 759 | S: Maintained |
| 760 | |
| 761 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 762 | P: Lennert Buytenhek |
| 763 | M: kernel@wantstofly.org |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 764 | P: Dan Williams |
| 765 | M: dan.j.williams@intel.com |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 766 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 767 | S: Supported |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 768 | |
| 769 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 770 | P: Lennert Buytenhek |
| 771 | M: kernel@wantstofly.org |
| 772 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 773 | S: Maintained |
| 774 | |
| 775 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 776 | P: Lennert Buytenhek |
| 777 | M: kernel@wantstofly.org |
| 778 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 779 | S: Maintained |
| 780 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 781 | ARM/MAGICIAN MACHINE SUPPORT |
| 782 | P: Philipp Zabel |
| 783 | M: philipp.zabel@gmail.com |
| 784 | S: Maintained |
| 785 | |
Robert Jarzmik | d78ff0a | 2009-06-16 07:51:05 +0200 | [diff] [blame] | 786 | ARM/MIOA701 MACHINE SUPPORT |
| 787 | P: Robert Jarzmik |
| 788 | M: robert.jarzmik@free.fr |
| 789 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 790 | F: arch/arm/mach-pxa/mioa701.c |
| 791 | S: Maintained |
| 792 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 793 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 794 | P: Michael Petchkovsky |
| 795 | M: mkpetch@internode.on.net |
| 796 | S: Maintained |
| 797 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 798 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
| 799 | P: Nelson Castillo |
| 800 | M: arhuaco@freaks-unidos.net |
| 801 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
| 802 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner |
| 803 | S: Supported |
| 804 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 805 | ARM/TOSA MACHINE SUPPORT |
Dmitry Eremin-Solenikov | bfa0b1c | 2009-01-06 14:41:05 -0800 | [diff] [blame] | 806 | P: Dmitry Eremin-Solenikov |
Dmitry Baryshkov | 9388704 | 2008-07-07 10:50:06 +0100 | [diff] [blame] | 807 | M: dbaryshkov@gmail.com |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 808 | P: Dirk Opfer |
| 809 | M: dirk@opfer-online.de |
| 810 | S: Maintained |
| 811 | |
Marek Vasut | 54088bf | 2009-03-24 00:29:29 +0100 | [diff] [blame] | 812 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 813 | P: Marek Vasut |
| 814 | M: marek.vasut@gmail.com |
| 815 | W: http://hackndev.com |
| 816 | S: Maintained |
| 817 | |
Tomas 'Sleep_Walker' Cech | 90af581 | 2009-05-22 16:05:58 +0200 | [diff] [blame] | 818 | ARM/PALM TREO 680 SUPPORT |
| 819 | P: Tomas Cech |
| 820 | M: sleep_walker@suse.cz |
| 821 | W: http://hackndev.com |
| 822 | S: Maintained |
| 823 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 824 | ARM/PALMZ72 SUPPORT |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 825 | P: Sergey Lapin |
| 826 | M: slapin@ossfans.org |
| 827 | W: http://hackndev.com |
| 828 | S: Maintained |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | ARM/PLEB SUPPORT |
| 831 | P: Peter Chubb |
| 832 | M: pleb@gelato.unsw.edu.au |
| 833 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 834 | S: Maintained |
| 835 | |
| 836 | ARM/PT DIGITAL BOARD PORT |
| 837 | P: Stefan Eletzhofer |
| 838 | M: stefan.eletzhofer@eletztrick.de |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 839 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | W: http://www.arm.linux.org.uk/ |
| 841 | S: Maintained |
| 842 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 843 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 844 | P: Lennert Buytenhek |
| 845 | M: kernel@wantstofly.org |
| 846 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 847 | S: Maintained |
| 848 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 849 | ARM/RISCPC ARCHITECTURE |
| 850 | P: Russell King |
| 851 | M: linux@arm.linux.org.uk |
| 852 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 853 | W: http://www.arm.linux.org.uk/ |
| 854 | S: Maintained |
| 855 | F: arch/arm/common/time-acorn.c |
| 856 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 857 | F: arch/arm/include/asm/hardware/ioc.h |
| 858 | F: arch/arm/include/asm/hardware/iomd.h |
| 859 | F: arch/arm/include/asm/hardware/memc.h |
| 860 | F: arch/arm/mach-rpc/ |
| 861 | F: drivers/net/arm/ether* |
| 862 | F: drivers/scsi/arm/ |
| 863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | ARM/SHARK MACHINE SUPPORT |
| 865 | P: Alexander Schulz |
| 866 | M: alex@shark-linux.de |
| 867 | W: http://www.shark-linux.de/shark.html |
| 868 | S: Maintained |
| 869 | |
Ben Dooks | b21477f | 2009-06-13 10:46:34 +0100 | [diff] [blame] | 870 | ARM/SAMSUNG ARM ARCHITECTURES |
| 871 | P: Ben Dooks |
| 872 | M: ben-linux@fluff.org |
| 873 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 874 | W: http://www.fluff.org/ben/linux/ |
| 875 | S: Maintained |
| 876 | F: arch/arm/plat-s3c/ |
| 877 | F: arch/arm/plat-s3c24xx/ |
| 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | ARM/S3C2410 ARM ARCHITECTURE |
| 880 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 881 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 882 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | W: http://www.fluff.org/ben/linux/ |
| 884 | S: Maintained |
Ben Dooks | 3a45c9e | 2009-06-13 10:43:19 +0100 | [diff] [blame] | 885 | F: arch/arm/mach-s3c2410/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
| 887 | ARM/S3C2440 ARM ARCHITECTURE |
| 888 | P: Ben Dooks |
Ben Dooks | 449d4dd | 2006-12-22 01:10:23 -0800 | [diff] [blame] | 889 | M: ben-linux@fluff.org |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 890 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | W: http://www.fluff.org/ben/linux/ |
| 892 | S: Maintained |
Ben Dooks | 3a45c9e | 2009-06-13 10:43:19 +0100 | [diff] [blame] | 893 | F: arch/arm/mach-s3c2440/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
Ben Dooks | b21477f | 2009-06-13 10:46:34 +0100 | [diff] [blame] | 895 | ARM/S3C2442 ARM ARCHITECTURE |
| 896 | P: Ben Dooks |
| 897 | M: ben-linux@fluff.org |
| 898 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 899 | W: http://www.fluff.org/ben/linux/ |
| 900 | S: Maintained |
| 901 | F: arch/arm/mach-s3c2442/ |
| 902 | |
| 903 | ARM/S3C2443 ARM ARCHITECTURE |
| 904 | P: Ben Dooks |
| 905 | M: ben-linux@fluff.org |
| 906 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 907 | W: http://www.fluff.org/ben/linux/ |
| 908 | S: Maintained |
| 909 | F: arch/arm/mach-s3c2443/ |
| 910 | |
| 911 | ARM/S3C6400 ARM ARCHITECTURE |
| 912 | P: Ben Dooks |
| 913 | M: ben-linux@fluff.org |
| 914 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 915 | W: http://www.fluff.org/ben/linux/ |
| 916 | S: Maintained |
| 917 | F: arch/arm/mach-s3c6400/ |
| 918 | |
| 919 | ARM/S3C6410 ARM ARCHITECTURE |
| 920 | P: Ben Dooks |
| 921 | M: ben-linux@fluff.org |
| 922 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 923 | W: http://www.fluff.org/ben/linux/ |
| 924 | S: Maintained |
| 925 | F: arch/arm/mach-s3c6410/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 927 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 928 | P: Lennert Buytenhek |
| 929 | M: kernel@wantstofly.org |
| 930 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 931 | S: Maintained |
| 932 | |
| 933 | ARM/THECUS N2100 MACHINE SUPPORT |
| 934 | P: Lennert Buytenhek |
| 935 | M: kernel@wantstofly.org |
| 936 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 937 | S: Maintained |
| 938 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 939 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 940 | P: Wan ZongShun |
| 941 | M: mcuos.com@gmail.com |
| 942 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 943 | W: http://www.mcuos.com |
| 944 | S: Maintained |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 945 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 946 | ARM/VFP SUPPORT |
| 947 | P: Russell King |
| 948 | M: linux@arm.linux.org.uk |
| 949 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 950 | W: http://www.arm.linux.org.uk/ |
| 951 | S: Maintained |
| 952 | F: arch/arm/vfp/ |
| 953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | ARPD SUPPORT |
| 955 | P: Jonathan Layes |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 956 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 958 | F: net/ipv4/arp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
| 960 | ASUS ACPI EXTRAS DRIVER |
Len Brown | 0b67d94 | 2006-12-22 21:18:56 -0500 | [diff] [blame] | 961 | P: Corentin Chary |
| 962 | M: corentincj@iksaif.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | P: Karol Kozimor |
| 964 | M: sziwan@users.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | L: acpi4asus-user@lists.sourceforge.net |
Corentin Chary | 76593d6 | 2009-06-16 19:28:47 +0000 | [diff] [blame] | 966 | W: http://acpi4asus.sf.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 968 | F: arch/x86/kernel/acpi/boot.c |
| 969 | F: drivers/platform/x86/asus_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 971 | ASUS ASB100 HARDWARE MONITOR DRIVER |
| 972 | P: Mark M. Hoffman |
| 973 | M: mhoffman@lightlink.com |
| 974 | L: lm-sensors@lm-sensors.org |
| 975 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 976 | F: drivers/hwmon/asb100.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 977 | |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 978 | ASUS LAPTOP EXTRAS DRIVER |
| 979 | P: Corentin Chary |
| 980 | M: corentincj@iksaif.net |
| 981 | L: acpi4asus-user@lists.sourceforge.net |
Corentin Chary | 76593d6 | 2009-06-16 19:28:47 +0000 | [diff] [blame] | 982 | W: http://acpi4asus.sf.net |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 983 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 984 | F: drivers/platform/x86/asus-laptop.c |
Corentin Chary | 85091b7 | 2007-01-26 14:04:30 +0100 | [diff] [blame] | 985 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 986 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 987 | P: Dan Williams |
| 988 | M: dan.j.williams@intel.com |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 989 | P: Maciej Sosnowski |
| 990 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 991 | W: http://sourceforge.net/projects/xscaleiop |
| 992 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 993 | F: Documentation/crypto/async-tx-api.txt |
| 994 | F: crypto/async_tx/ |
| 995 | F: drivers/dma/ |
| 996 | F: include/linux/dmaengine.h |
| 997 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 998 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 999 | ATA OVER ETHERNET (AOE) DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | P: Ed L. Cashin |
| 1001 | M: ecashin@coraid.com |
| 1002 | W: http://www.coraid.com/support/linux |
| 1003 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1004 | F: Documentation/aoe/ |
| 1005 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1007 | ATHEROS ATH5K WIRELESS DRIVER |
| 1008 | P: Jiri Slaby |
| 1009 | M: jirislaby@gmail.com |
| 1010 | P: Nick Kossifidis |
| 1011 | M: mickflemm@gmail.com |
| 1012 | P: Luis R. Rodriguez |
Luis R. Rodriguez | 4fe0657 | 2008-10-13 14:08:07 -0700 | [diff] [blame] | 1013 | M: lrodriguez@atheros.com |
Bob Copeland | adef199 | 2008-10-29 08:30:57 -0400 | [diff] [blame] | 1014 | P: Bob Copeland |
| 1015 | M: me@bobcopeland.com |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1016 | L: linux-wireless@vger.kernel.org |
| 1017 | L: ath5k-devel@lists.ath5k.org |
| 1018 | S: Maintained |
Joe Perches | fa45175 | 2009-06-18 16:49:22 -0700 | [diff] [blame] | 1019 | F: drivers/net/wireless/ath/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1020 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1021 | ATHEROS ATH9K WIRELESS DRIVER |
| 1022 | P: Luis R. Rodriguez |
| 1023 | M: lrodriguez@atheros.com |
| 1024 | P: Jouni Malinen |
| 1025 | M: jmalinen@atheros.com |
Luis R. Rodriguez | 295936c | 2009-03-27 17:21:05 -0400 | [diff] [blame] | 1026 | P: Sujith Manoharan |
| 1027 | M: Sujith.Manoharan@atheros.com |
| 1028 | P: Vasanthakumar Thiagarajan |
| 1029 | M: vasanth@atheros.com |
| 1030 | P: Senthil Balasubramanian |
| 1031 | M: senthilkumar@atheros.com |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1032 | L: linux-wireless@vger.kernel.org |
| 1033 | L: ath9k-devel@lists.ath9k.org |
| 1034 | S: Supported |
Joe Perches | fa45175 | 2009-06-18 16:49:22 -0700 | [diff] [blame] | 1035 | F: drivers/net/wireless/ath/ath9k/ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1036 | |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 1037 | ATHEROS AR9170 WIRELESS DRIVER |
| 1038 | P: Christian Lamparter |
| 1039 | M: chunkeey@web.de |
| 1040 | L: linux-wireless@vger.kernel.org |
| 1041 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 |
| 1042 | S: Maintained |
Joe Perches | fa45175 | 2009-06-18 16:49:22 -0700 | [diff] [blame] | 1043 | F: drivers/net/wireless/ath/ar9170/ |
Christian Lamparter | 75ca88c | 2009-03-21 23:11:49 +0100 | [diff] [blame] | 1044 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 1045 | ATI_REMOTE2 DRIVER |
| 1046 | P: Ville Syrjala |
| 1047 | M: syrjala@sci.fi |
| 1048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1049 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 1050 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 1051 | ATLX ETHERNET DRIVERS |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 1052 | P: Jay Cliburn |
| 1053 | M: jcliburn@gmail.com |
| 1054 | P: Chris Snook |
| 1055 | M: csnook@redhat.com |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 1056 | P: Jie Yang |
| 1057 | M: jie.yang@atheros.com |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 1058 | L: atl1-devel@lists.sourceforge.net |
| 1059 | W: http://sourceforge.net/projects/atl1 |
| 1060 | W: http://atl1.sourceforge.net |
| 1061 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1062 | F: drivers/net/atlx/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 1063 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | ATM |
| 1065 | P: Chas Williams |
| 1066 | M: chas@cmf.nrl.navy.mil |
Roland Dreier | f37bf90 | 2006-09-13 20:39:33 -0700 | [diff] [blame] | 1067 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 1068 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | W: http://linux-atm.sourceforge.net |
| 1070 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1071 | F: drivers/atm/ |
| 1072 | F: include/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1074 | ATMEL AT91 MCI DRIVER |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1075 | P: Nicolas Ferre |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1076 | M: nicolas.ferre@atmel.com |
Pierre Ossman | 81764fa | 2007-07-15 18:47:38 +0200 | [diff] [blame] | 1077 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 1078 | W: http://www.atmel.com/products/AT91/ |
| 1079 | W: http://www.at91.com/ |
| 1080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1081 | F: drivers/mmc/host/at91_mci.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 1082 | |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 1083 | ATMEL AT91 / AT32 MCI DRIVER |
| 1084 | P: Nicolas Ferre |
| 1085 | M: nicolas.ferre@atmel.com |
| 1086 | S: Maintained |
| 1087 | F: drivers/mmc/host/atmel-mci.c |
| 1088 | F: drivers/mmc/host/atmel-mci-regs.h |
| 1089 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1090 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 1091 | P: Haavard Skinnemoen |
| 1092 | M: hskinnemoen@atmel.com |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1093 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1094 | F: drivers/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1095 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1096 | ATMEL LCDFB DRIVER |
| 1097 | P: Nicolas Ferre |
| 1098 | M: nicolas.ferre@atmel.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 1099 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1100 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1101 | F: drivers/video/atmel_lcdfb.c |
| 1102 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1103 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1104 | ATMEL MACB ETHERNET DRIVER |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1105 | P: Haavard Skinnemoen |
| 1106 | M: hskinnemoen@atmel.com |
| 1107 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1108 | F: drivers/net/macb.* |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1109 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1110 | ATMEL SPI DRIVER |
| 1111 | P: Haavard Skinnemoen |
| 1112 | M: hskinnemoen@atmel.com |
| 1113 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1114 | F: drivers/spi/atmel_spi.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1115 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1116 | ATMEL USBA UDC DRIVER |
| 1117 | P: Haavard Skinnemoen |
| 1118 | M: hskinnemoen@atmel.com |
| 1119 | L: kernel@avr32linux.org |
| 1120 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
| 1121 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1122 | F: drivers/usb/gadget/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | ATMEL WIRELESS DRIVER |
| 1125 | P: Simon Kelley |
| 1126 | M: simon@thekelleys.org.uk |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1127 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | W: http://www.thekelleys.org.uk/atmel |
| 1129 | W: http://atmelwlandriver.sourceforge.net/ |
| 1130 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1131 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1133 | AUDIT SUBSYSTEM |
Eric Paris | 0ef1970 | 2008-04-18 10:47:32 -0400 | [diff] [blame] | 1134 | P: Al Viro |
| 1135 | M: viro@zeniv.linux.org.uk |
| 1136 | P: Eric Paris |
| 1137 | M: eparis@redhat.com |
Gabriel C | b9a0620 | 2007-08-10 13:00:56 -0700 | [diff] [blame] | 1138 | L: linux-audit@redhat.com (subscribers-only) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1139 | W: http://people.redhat.com/sgrubb/audit/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1140 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1142 | F: include/linux/audit.h |
| 1143 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1144 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1145 | AUXILIARY DISPLAY DRIVERS |
| 1146 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1147 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1148 | W: http://miguelojeda.es/auxdisplay.htm |
| 1149 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1150 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1151 | F: drivers/auxdisplay/ |
| 1152 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1153 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1154 | AVR32 ARCHITECTURE |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1155 | P: Haavard Skinnemoen |
| 1156 | M: hskinnemoen@atmel.com |
| 1157 | W: http://www.atmel.com/products/AVR32/ |
| 1158 | W: http://avr32linux.org/ |
| 1159 | W: http://avrfreaks.net/ |
| 1160 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1161 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1162 | |
| 1163 | AVR32/AT32AP MACHINE SUPPORT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1164 | P: Haavard Skinnemoen |
| 1165 | M: hskinnemoen@atmel.com |
| 1166 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1167 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | AX.25 NETWORK LAYER |
| 1170 | P: Ralf Baechle |
| 1171 | M: ralf@linux-mips.org |
| 1172 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1173 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1175 | F: include/linux/ax25.h |
| 1176 | F: include/net/ax25.h |
| 1177 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1179 | B43 WIRELESS DRIVER |
| 1180 | P: Michael Buesch |
| 1181 | M: mb@bu3sch.de |
| 1182 | P: Stefano Brivio |
| 1183 | M: stefano.brivio@polimi.it |
| 1184 | L: linux-wireless@vger.kernel.org |
| 1185 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1186 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1187 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1188 | |
| 1189 | B43LEGACY WIRELESS DRIVER |
| 1190 | P: Larry Finger |
| 1191 | M: Larry.Finger@lwfinger.net |
| 1192 | P: Stefano Brivio |
| 1193 | M: stefano.brivio@polimi.it |
| 1194 | L: linux-wireless@vger.kernel.org |
| 1195 | W: http://linuxwireless.org/en/users/Drivers/b43 |
| 1196 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1197 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1198 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1199 | BACKLIGHT CLASS/SUBSYSTEM |
| 1200 | P: Richard Purdie |
| 1201 | M: rpurdie@rpsys.net |
| 1202 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1203 | F: drivers/video/backlight/ |
| 1204 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1205 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1206 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 1207 | P: Thomas Sailer |
| 1208 | M: t.sailer@alumni.ethz.ch |
| 1209 | L: linux-hams@vger.kernel.org |
| 1210 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1212 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1213 | |
| 1214 | BEFS FILE SYSTEM |
| 1215 | P: Sergey S. Kostyliov |
| 1216 | M: rathamahata@php4.ru |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1218 | F: Documentation/filesystems/befs.txt |
| 1219 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1220 | |
| 1221 | BFS FILE SYSTEM |
| 1222 | P: Tigran A. Aivazian |
| 1223 | M: tigran@aivazian.fsnet.co.uk |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1224 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1225 | F: Documentation/filesystems/bfs.txt |
| 1226 | F: fs/bfs/ |
| 1227 | F: include/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1228 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1229 | BLACKFIN ARCHITECTURE |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1230 | P: Mike Frysinger |
| 1231 | M: vapier@gentoo.org |
Mike Frysinger | 5b93e13 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1232 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1233 | W: http://blackfin.uclinux.org |
| 1234 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1235 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1236 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1237 | BLACKFIN EMAC DRIVER |
Mike Frysinger | 6c83429 | 2009-05-24 02:13:15 -0400 | [diff] [blame] | 1238 | P: Michael Hennerich |
| 1239 | M: michael.hennerich@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1240 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1241 | W: http://blackfin.uclinux.org |
| 1242 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1243 | F: drivers/net/bfin_mac.* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1244 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1245 | BLACKFIN RTC DRIVER |
| 1246 | P: Mike Frysinger |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1247 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1248 | L: uclinux-dist-devel@blackfin.uclinux.org |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1249 | W: http://blackfin.uclinux.org |
| 1250 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1251 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1252 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1253 | BLACKFIN SERIAL DRIVER |
Mike Frysinger | 9c5e710 | 2007-11-17 23:19:44 +0800 | [diff] [blame] | 1254 | P: Sonic Zhang |
| 1255 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1256 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1257 | W: http://blackfin.uclinux.org |
| 1258 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1259 | F: drivers/serial/bfin_5xx.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1260 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1261 | BLACKFIN WATCHDOG DRIVER |
| 1262 | P: Mike Frysinger |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1263 | M: vapier.adi@gmail.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1264 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1265 | W: http://blackfin.uclinux.org |
| 1266 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1267 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 1268 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1269 | BLACKFIN I2C TWI DRIVER |
| 1270 | P: Sonic Zhang |
| 1271 | M: sonic.zhang@analog.com |
Mike Frysinger | 49afa60 | 2009-05-18 04:33:07 -0400 | [diff] [blame] | 1272 | L: uclinux-dist-devel@blackfin.uclinux.org |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1273 | W: http://blackfin.uclinux.org/ |
| 1274 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1275 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 1276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | BLOCK LAYER |
| 1278 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 1279 | M: axboe@kernel.dk |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1282 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1284 | BLOCK2MTD DRIVER |
| 1285 | P: Joern Engel |
| 1286 | M: joern@lazybastard.org |
| 1287 | L: linux-mtd@lists.infradead.org |
| 1288 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1289 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 1290 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1291 | BLUETOOTH DRIVERS |
| 1292 | P: Marcel Holtmann |
| 1293 | M: marcel@holtmann.org |
| 1294 | L: linux-bluetooth@vger.kernel.org |
| 1295 | W: http://www.bluez.org/ |
| 1296 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1297 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | BLUETOOTH SUBSYSTEM |
| 1300 | P: Marcel Holtmann |
| 1301 | M: marcel@holtmann.org |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 1302 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 1303 | W: http://www.bluez.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1306 | F: net/bluetooth/ |
| 1307 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | BONDING DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1310 | P: Jay Vosburgh |
| 1311 | M: fubar@us.ibm.com |
| 1312 | L: bonding-devel@lists.sourceforge.net |
| 1313 | W: http://sourceforge.net/projects/bonding/ |
| 1314 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1315 | F: drivers/net/bonding/ |
| 1316 | F: include/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1318 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 1319 | P: Gary Zambrano |
| 1320 | M: zambrano@broadcom.com |
| 1321 | L: netdev@vger.kernel.org |
| 1322 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1323 | F: drivers/net/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 1324 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1325 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 1326 | P: Michael Chan |
| 1327 | M: mchan@broadcom.com |
| 1328 | L: netdev@vger.kernel.org |
| 1329 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1330 | F: drivers/net/bnx2.* |
| 1331 | F: drivers/net/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1332 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1333 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Eilon Greenstein | 24e3fce | 2008-06-12 14:30:28 -0700 | [diff] [blame] | 1334 | P: Eilon Greenstein |
| 1335 | M: eilong@broadcom.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1336 | L: netdev@vger.kernel.org |
| 1337 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1338 | F: drivers/net/bnx2x* |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 1339 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1340 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Matt Carlson | 1318136 | 2009-02-25 14:41:06 +0000 | [diff] [blame] | 1341 | P: Matt Carlson |
| 1342 | M: mcarlson@broadcom.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1343 | P: Michael Chan |
| 1344 | M: mchan@broadcom.com |
| 1345 | L: netdev@vger.kernel.org |
| 1346 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1347 | F: drivers/net/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 1348 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1349 | BSG (block layer generic sg v4 driver) |
| 1350 | P: FUJITA Tomonori |
| 1351 | M: fujita.tomonori@lab.ntt.co.jp |
| 1352 | L: linux-scsi@vger.kernel.org |
| 1353 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1354 | F: block/bsg.c |
| 1355 | F: include/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 1356 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1357 | BT8XXGPIO DRIVER |
| 1358 | P: Michael Buesch |
| 1359 | M: mb@bu3sch.de |
| 1360 | W: http://bu3sch.de/btgpio.php |
| 1361 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1362 | F: drivers/gpio/bt8xxgpio.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 1363 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1364 | BTRFS FILE SYSTEM |
| 1365 | P: Chris Mason |
| 1366 | M: chris.mason@oracle.com |
| 1367 | L: linux-btrfs@vger.kernel.org |
| 1368 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1370 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1371 | F: Documentation/filesystems/btrfs.txt |
| 1372 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 1373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1375 | P: Mauro Carvalho Chehab |
Mauro Carvalho Chehab | 8d58d77 | 2006-01-27 16:32:02 -0200 | [diff] [blame] | 1376 | M: mchehab@infradead.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1377 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1378 | W: http://linuxtv.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1379 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 1380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1381 | F: Documentation/video4linux/bttv/ |
| 1382 | F: drivers/media/video/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 1384 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 1385 | P: David Howells |
| 1386 | M: dhowells@redhat.com |
| 1387 | L: linux-cachefs@redhat.com |
| 1388 | S: Supported |
| 1389 | F: Documentation/filesystems/caching/cachefiles.txt |
| 1390 | F: fs/cachefiles/ |
| 1391 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1392 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1393 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1394 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1395 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1397 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1398 | F: Documentation/video4linux/cafe_ccic |
| 1399 | F: drivers/media/video/cafe_ccic* |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 1400 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1401 | CALGARY x86-64 IOMMU |
| 1402 | P: Muli Ben-Yehuda |
| 1403 | M: muli@il.ibm.com |
| 1404 | P: Jon D. Mason |
Jon Mason | d8d2bed | 2006-10-05 18:47:21 +0200 | [diff] [blame] | 1405 | M: jdmason@kudzu.us |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1406 | L: discuss@x86-64.org |
| 1407 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1408 | F: arch/x86/kernel/pci-calgary_64.c |
| 1409 | F: arch/x86/kernel/tce_64.c |
| 1410 | F: arch/x86/include/asm/calgary.h |
| 1411 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 1412 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1413 | CAN NETWORK LAYER |
| 1414 | P: Urs Thuermann |
| 1415 | M: urs.thuermann@volkswagen.de |
| 1416 | P: Oliver Hartkopp |
| 1417 | M: oliver.hartkopp@volkswagen.de |
| 1418 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1419 | W: http://developer.berlios.de/projects/socketcan/ |
| 1420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1421 | F: drivers/net/can/ |
| 1422 | F: include/linux/can/ |
| 1423 | F: include/linux/can.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1424 | |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 1425 | CAN NETWORK DRIVERS |
| 1426 | P: Wolfgang Grandegger |
| 1427 | M: wg@grandegger.com |
| 1428 | L: socketcan-core@lists.berlios.de (subscribers-only) |
| 1429 | W: http://developer.berlios.de/projects/socketcan/ |
| 1430 | S: Maintained |
| 1431 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1432 | CELL BROADBAND ENGINE ARCHITECTURE |
| 1433 | P: Arnd Bergmann |
| 1434 | M: arnd@arndb.de |
| 1435 | L: linuxppc-dev@ozlabs.org |
| 1436 | L: cbe-oss-dev@ozlabs.org |
| 1437 | W: http://www.ibm.com/developerworks/power/cell/ |
| 1438 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1439 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1440 | F: arch/powerpc/include/asm/spu*.h |
| 1441 | F: arch/powerpc/oprofile/*cell* |
| 1442 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 1443 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1444 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
| 1445 | P: David Vrabel |
| 1446 | M: david.vrabel@csr.com |
| 1447 | L: linux-usb@vger.kernel.org |
| 1448 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1449 | F: Documentation/usb/WUSB-Design-overview.txt |
| 1450 | F: Documentation/usb/wusb-cbaf |
| 1451 | F: drivers/usb/wusbcore/ |
| 1452 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 1453 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1454 | CFAG12864B LCD DRIVER |
| 1455 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1456 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1457 | W: http://miguelojeda.es/auxdisplay.htm |
| 1458 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1459 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1460 | F: drivers/auxdisplay/cfag12864b.c |
| 1461 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1462 | |
| 1463 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 1464 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1465 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1466 | W: http://miguelojeda.es/auxdisplay.htm |
| 1467 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1468 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1469 | F: drivers/auxdisplay/cfag12864bfb.c |
| 1470 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1471 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1472 | CFG80211 and NL80211 |
| 1473 | P: Johannes Berg |
| 1474 | M: johannes@sipsolutions.net |
| 1475 | L: linux-wireless@vger.kernel.org |
| 1476 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1477 | F: include/linux/nl80211.h |
| 1478 | F: include/net/cfg80211.h |
| 1479 | F: net/wireless/* |
| 1480 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1481 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1482 | CHECKPATCH |
| 1483 | P: Andy Whitcroft |
Andy Whitcroft | b0e0b43 | 2009-01-06 14:41:22 -0800 | [diff] [blame] | 1484 | M: apw@canonical.com |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1485 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1486 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 1487 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1488 | CISCO 10G ETHERNET DRIVER |
| 1489 | P: Scott Feldman |
| 1490 | M: scofeldm@cisco.com |
| 1491 | P: Joe Eykholt |
| 1492 | M: jeykholt@cisco.com |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1493 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1494 | F: drivers/net/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 1495 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1496 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 1497 | P: Lennert Buytenhek |
| 1498 | M: kernel@wantstofly.org |
| 1499 | L: netdev@vger.kernel.org |
| 1500 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1501 | F: drivers/net/arm/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1502 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1503 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
| 1504 | P: Lennert Buytenhek |
| 1505 | M: kernel@wantstofly.org |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 1506 | L: linux-usb@vger.kernel.org |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1508 | F: drivers/usb/host/ohci-ep93xx.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1509 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1510 | CIRRUS LOGIC CS4270 SOUND DRIVER |
| 1511 | P: Timur Tabi |
| 1512 | M: timur@freescale.com |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 1513 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1514 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1515 | F: sound/soc/codecs/cs4270* |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 1516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER |
| 1518 | P: Cirrus Logic Corporation (kernel 2.2 driver) |
| 1519 | M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com> |
| 1520 | P: Nils Faerber (port to kernel 2.4) |
| 1521 | M: Nils Faerber <nils@kernelconcepts.de> |
| 1522 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1523 | F: Documentation/input/cs461x.txt |
| 1524 | F: sound/pci/cs46xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1526 | CLK API |
| 1527 | P: Russell King |
| 1528 | M: linux@arm.linux.org.uk |
| 1529 | F: include/linux/clk.h |
| 1530 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1531 | CISCO FCOE HBA DRIVER |
| 1532 | P: Abhijeet Joglekar |
| 1533 | M: abjoglek@cisco.com |
| 1534 | P: Joe Eykholt |
| 1535 | M: jeykholt@cisco.com |
| 1536 | L: linux-scsi@vger.kernel.org |
| 1537 | S: Supported |
Joe Perches | 2a99921 | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 1538 | F: drivers/scsi/fnic/ |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 1539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | CODA FILE SYSTEM |
| 1541 | P: Jan Harkes |
| 1542 | M: jaharkes@cs.cmu.edu |
| 1543 | M: coda@cs.cmu.edu |
| 1544 | L: codalist@coda.cs.cmu.edu |
| 1545 | W: http://www.coda.cs.cmu.edu/ |
| 1546 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1547 | F: Documentation/filesystems/coda.txt |
| 1548 | F: fs/coda/ |
| 1549 | F: include/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1551 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 1552 | P: Steve French |
| 1553 | M: sfrench@samba.org |
| 1554 | L: linux-cifs-client@lists.samba.org |
| 1555 | L: samba-technical@lists.samba.org |
| 1556 | W: http://linux-cifs.samba.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1557 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1558 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1559 | F: Documentation/filesystems/cifs.txt |
| 1560 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | COMPACTPCI HOTPLUG CORE |
| 1563 | P: Scott Murray |
| 1564 | M: scottm@somanetworks.com |
| 1565 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1566 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1568 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | |
| 1570 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 1571 | P: Scott Murray |
| 1572 | M: scottm@somanetworks.com |
| 1573 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1574 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1576 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | |
| 1578 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 1579 | P: Scott Murray |
| 1580 | M: scottm@somanetworks.com |
| 1581 | M: scott@spiteful.org |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 1582 | L: linux-pci@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1584 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1586 | COMPAL LAPTOP SUPPORT |
| 1587 | P: Cezary Jackiewicz |
| 1588 | M: cezary.jackiewicz@gmail.com |
| 1589 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1590 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 1591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | COMPUTONE INTELLIPORT MULTIPORT CARD |
| 1593 | P: Michael H. Warfield |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1594 | M: mhw@wittsend.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | W: http://www.wittsend.com/computone.html |
Adrian Bunk | 07d46de | 2005-06-25 14:59:13 -0700 | [diff] [blame] | 1596 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1597 | F: Documentation/serial/computone.txt |
| 1598 | F: drivers/char/ip2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1600 | CONEXANT ACCESSRUNNER USB DRIVER |
| 1601 | P: Simon Arlott |
| 1602 | M: cxacru@fire.lp0.eu |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 1603 | L: accessrunner-general@lists.sourceforge.net |
| 1604 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1605 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1606 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 1607 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1608 | CONFIGFS |
| 1609 | P: Joel Becker |
| 1610 | M: joel.becker@oracle.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1611 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1612 | F: fs/configfs/ |
| 1613 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1614 | |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1615 | CONTROL GROUPS (CGROUPS) |
| 1616 | P: Paul Menage |
| 1617 | M: menage@google.com |
KOSAKI Motohiro | 01c4a42 | 2009-02-11 13:04:35 -0800 | [diff] [blame] | 1618 | P: Li Zefan |
| 1619 | M: lizf@cn.fujitsu.com |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1620 | L: containers@lists.linux-foundation.org |
| 1621 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1622 | F: include/linux/cgroup* |
| 1623 | F: kernel/cgroup* |
Randy Dunlap | 8ca739e | 2009-06-17 16:26:32 -0700 | [diff] [blame] | 1624 | F: mm/*cgroup* |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 1625 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1626 | CORETEMP HARDWARE MONITORING DRIVER |
| 1627 | P: Rudolf Marek |
| 1628 | M: r.marek@assembler.cz |
| 1629 | L: lm-sensors@lm-sensors.org |
| 1630 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1631 | F: Documentation/hwmon/coretemp |
| 1632 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 1633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | COSA/SRP SYNC SERIAL DRIVER |
| 1635 | P: Jan "Yenya" Kasprzak |
| 1636 | M: kas@fi.muni.cz |
| 1637 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 1638 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1639 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 1641 | CPMAC ETHERNET DRIVER |
| 1642 | P: Florian Fainelli |
| 1643 | M: florian@openwrt.org |
| 1644 | L: netdev@vger.kernel.org |
| 1645 | S: Maintained |
| 1646 | F: drivers/net/cpmac.c |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | CPU FREQUENCY DRIVERS |
| 1649 | P: Dave Jones |
Dave Jones | f4432c5 | 2008-10-20 13:31:45 -0400 | [diff] [blame] | 1650 | M: davej@redhat.com |
Dave Jones | bc5f65d | 2008-07-31 18:22:59 -0400 | [diff] [blame] | 1651 | L: cpufreq@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1655 | F: arch/x86/kernel/cpu/cpufreq/ |
| 1656 | F: drivers/cpufreq/ |
| 1657 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | |
| 1659 | CPUID/MSR DRIVER |
| 1660 | P: H. Peter Anvin |
| 1661 | M: hpa@zytor.com |
| 1662 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1663 | F: arch/x86/kernel/cpuid.c |
| 1664 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1666 | CPUSETS |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1667 | P: Paul Menage |
Paul Jackson | 6bffd7b | 2008-05-01 04:34:21 -0700 | [diff] [blame] | 1668 | M: menage@google.com |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1669 | W: http://www.bullopensource.org/cpuset/ |
Paul Jackson | 551e172 | 2008-06-12 15:21:31 -0700 | [diff] [blame] | 1670 | W: http://oss.sgi.com/projects/cpusets/ |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1671 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1672 | F: Documentation/cgroups/cpusets.txt |
| 1673 | F: include/linux/cpuset.h |
| 1674 | F: kernel/cpuset.c |
Paul Jackson | ed90fb4 | 2005-09-27 21:45:37 -0700 | [diff] [blame] | 1675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 1677 | W: http://sourceforge.net/projects/cramfs/ |
| 1678 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1679 | F: Documentation/filesystems/cramfs.txt |
| 1680 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | |
| 1682 | CRIS PORT |
| 1683 | P: Mikael Starvik |
| 1684 | M: starvik@axis.com |
Jesper Nilsson | 0b07aa6 | 2008-01-25 13:22:29 +0100 | [diff] [blame] | 1685 | P: Jesper Nilsson |
| 1686 | M: jesper.nilsson@axis.com |
Jesper Nilsson | 9937ac0 | 2009-06-24 09:33:19 +0200 | [diff] [blame] | 1687 | L: linux-cris-kernel@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | W: http://developer.axis.com |
| 1689 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1690 | F: arch/cris/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | |
| 1692 | CRYPTO API |
| 1693 | P: Herbert Xu |
| 1694 | M: herbert@gondor.apana.org.au |
| 1695 | P: David S. Miller |
| 1696 | M: davem@davemloft.net |
| 1697 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1698 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1700 | F: Documentation/crypto/ |
| 1701 | F: arch/*/crypto/ |
| 1702 | F: crypto/ |
| 1703 | F: drivers/crypto/ |
| 1704 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 1706 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 1707 | P: Neil Horman |
| 1708 | M: nhorman@tuxdriver.com |
| 1709 | L: linux-crypto@vger.kernel.org |
| 1710 | S: Maintained |
| 1711 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1712 | CS5535 Audio ALSA driver |
| 1713 | P: Jaya Kumar |
| 1714 | M: jayakumar.alsa@gmail.com |
| 1715 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1716 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 1717 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1718 | CX18 VIDEO4LINUX DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1719 | P: Hans Verkuil |
| 1720 | M: hverkuil@xs4all.nl |
| 1721 | P: Andy Walls |
| 1722 | M: awalls@radix.net |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1723 | L: ivtv-devel@ivtvdriver.org |
| 1724 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 1725 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1726 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1727 | W: http://linuxtv.org |
| 1728 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1729 | F: Documentation/video4linux/cx18.txt |
| 1730 | F: drivers/media/video/cx18/ |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 1731 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1732 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 1733 | P: Divy Le Ray |
| 1734 | M: divy@chelsio.com |
| 1735 | L: netdev@vger.kernel.org |
| 1736 | W: http://www.chelsio.com |
| 1737 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1738 | F: drivers/net/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1739 | |
| 1740 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 1741 | P: Steve Wise |
| 1742 | M: swise@chelsio.com |
| 1743 | L: general@lists.openfabrics.org |
| 1744 | W: http://www.openfabrics.org |
| 1745 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1746 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 1747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | CYBERPRO FB DRIVER |
| 1749 | P: Russell King |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1750 | M: linux@arm.linux.org.uk |
| 1751 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | W: http://www.arm.linux.org.uk/ |
| 1753 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1754 | F: drivers/video/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | CYCLADES 2X SYNC CARD DRIVER |
| 1757 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1758 | M: acme@ghostprotocols.net |
| 1759 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1761 | F: drivers/net/wan/cycx* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | |
| 1763 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1765 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1766 | F: drivers/char/cyclades.c |
| 1767 | F: include/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | |
| 1769 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 1771 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1772 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | DAMA SLAVE for AX.25 |
| 1775 | P: Joerg Reuter |
| 1776 | M: jreuter@yaina.de |
| 1777 | W: http://yaina.de/jreuter/ |
| 1778 | W: http://www.qsl.net/dl1bke/ |
| 1779 | L: linux-hams@vger.kernel.org |
| 1780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1781 | F: net/ax25/af_ax25.c |
| 1782 | F: net/ax25/ax25_dev.c |
| 1783 | F: net/ax25/ax25_ds_* |
| 1784 | F: net/ax25/ax25_in.c |
| 1785 | F: net/ax25/ax25_out.c |
| 1786 | F: net/ax25/ax25_timer.c |
| 1787 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1789 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 1790 | P: Tobias Ringstrom |
| 1791 | M: tori@unhappy.mine.nu |
| 1792 | L: netdev@vger.kernel.org |
| 1793 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1794 | F: Documentation/networking/dmfe.txt |
| 1795 | F: drivers/net/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1796 | |
| 1797 | DC390/AM53C974 SCSI driver |
| 1798 | P: Kurt Garloff |
| 1799 | M: garloff@suse.de |
| 1800 | W: http://www.garloff.de/kurt/linux/dc390/ |
| 1801 | P: Guennadi Liakhovetski |
| 1802 | M: g.liakhovetski@gmx.de |
| 1803 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1804 | F: drivers/scsi/tmscsim.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | DC395x SCSI driver |
| 1807 | P: Oliver Neukum |
| 1808 | M: oliver@neukum.name |
| 1809 | P: Ali Akcaagac |
| 1810 | M: aliakc@web.de |
| 1811 | P: Jamie Lenehan |
| 1812 | M: lenehan@twibble.org |
| 1813 | W: http://twibble.org/dist/dc395x/ |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 1814 | L: dc395x@twibble.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 1816 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1817 | F: Documentation/scsi/dc395x.txt |
| 1818 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1820 | DCCP PROTOCOL |
| 1821 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 1822 | M: acme@ghostprotocols.net |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1823 | L: dccp@vger.kernel.org |
Ian McDonald | f3b84ec | 2005-11-10 13:05:01 -0800 | [diff] [blame] | 1824 | W: http://linux-net.osdl.org/index.php/DCCP |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1826 | F: include/linux/dccp.h |
| 1827 | F: include/linux/tfrc.h |
| 1828 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 1829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | DECnet NETWORK LAYER |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1831 | P: Christine Caulfield |
| 1832 | M: christine.caulfield@googlemail.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | W: http://linux-decnet.sourceforge.net |
| 1834 | L: linux-decnet-user@lists.sourceforge.net |
| 1835 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1836 | F: Documentation/networking/decnet.txt |
| 1837 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | |
| 1839 | DEFXX FDDI NETWORK DRIVER |
| 1840 | P: Maciej W. Rozycki |
| 1841 | M: macro@linux-mips.org |
| 1842 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1843 | F: drivers/net/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1845 | DELL LAPTOP DRIVER |
| 1846 | P: Matthew Garrett |
| 1847 | M: mjg59@srcf.ucam.org |
| 1848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1849 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 1850 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | DELL LAPTOP SMM DRIVER |
| 1852 | P: Massimo Dal Zotto |
| 1853 | M: dz@debian.org |
| 1854 | W: http://www.debian.org/~dz/i8k/ |
| 1855 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1856 | F: drivers/char/i8k.c |
| 1857 | F: include/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1859 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 1860 | P: Doug Warzecha |
| 1861 | M: Douglas_Warzecha@dell.com |
| 1862 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1863 | F: Documentation/dcdbas.txt |
| 1864 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 1865 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 1866 | DELL WMI EXTRAS DRIVER |
| 1867 | P: Matthew Garrett |
| 1868 | M: mjg59@srcf.ucam.org |
| 1869 | S: Maintained |
| 1870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | DEVICE NUMBER REGISTRY |
| 1872 | P: Torben Mathiasen |
| 1873 | M: device@lanana.org |
| 1874 | W: http://lanana.org/docs/device-list/index.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | S: Maintained |
| 1876 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1877 | DEVICE-MAPPER (LVM) |
| 1878 | P: Alasdair Kergon |
| 1879 | L: dm-devel@redhat.com |
| 1880 | W: http://sources.redhat.com/dm |
| 1881 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1882 | F: Documentation/device-mapper/ |
| 1883 | F: drivers/md/dm* |
| 1884 | F: include/linux/device-mapper.h |
| 1885 | F: include/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | DIGI INTL. EPCA DRIVER |
| 1888 | P: Digi International, Inc |
| 1889 | M: Eng.Linux@digi.com |
| 1890 | L: Eng.Linux@digi.com |
| 1891 | W: http://www.digi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 1892 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1893 | F: Documentation/serial/digiepca.txt |
| 1894 | F: drivers/char/epca* |
| 1895 | F: drivers/char/digi* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1897 | DIRECTORY NOTIFICATION (DNOTIFY) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1898 | P: Eric Paris |
| 1899 | M: eparis@parisplace.org |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 1900 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1901 | F: Documentation/filesystems/dnotify.txt |
| 1902 | F: fs/notify/dnotify/ |
| 1903 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | |
| 1905 | DISK GEOMETRY AND PARTITION HANDLING |
| 1906 | P: Andries Brouwer |
| 1907 | M: aeb@cwi.nl |
| 1908 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 1909 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 1910 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 1911 | S: Maintained |
| 1912 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 1913 | DISKQUOTA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | P: Jan Kara |
| 1915 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1917 | F: Documentation/filesystems/quota.txt |
| 1918 | F: fs/quota/ |
| 1919 | F: include/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1921 | DISTRIBUTED LOCK MANAGER (DLM) |
Christine Caulfield | 8943f26 | 2008-02-14 19:31:31 -0800 | [diff] [blame] | 1922 | P: Christine Caulfield |
| 1923 | M: ccaulfie@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1924 | P: David Teigland |
| 1925 | M: teigland@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 1926 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1927 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 1928 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1929 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1930 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 1931 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1932 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 1933 | P: Maciej Sosnowski |
| 1934 | M: maciej.sosnowski@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1935 | P: Dan Williams |
| 1936 | M: dan.j.williams@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1937 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1938 | F: drivers/dma/ |
| 1939 | F: include/linux/dma* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 1940 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1941 | DME1737 HARDWARE MONITOR DRIVER |
| 1942 | P: Juerg Haefliger |
| 1943 | M: juergh@gmail.com |
| 1944 | L: lm-sensors@lm-sensors.org |
| 1945 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1946 | F: Documentation/hwmon/dme1737 |
| 1947 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 1948 | |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1949 | DOCBOOK FOR DOCUMENTATION |
Randy Dunlap | 0f40efb | 2006-07-03 00:24:15 -0700 | [diff] [blame] | 1950 | P: Randy Dunlap |
| 1951 | M: rdunlap@xenotime.net |
Martin Waitz | ba483d5 | 2005-06-17 13:20:59 -0700 | [diff] [blame] | 1952 | S: Maintained |
| 1953 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1954 | DOCKING STATION DRIVER |
Len Brown | c5d191b | 2008-09-24 02:53:25 -0400 | [diff] [blame] | 1955 | P: Shaohua Li |
| 1956 | M: shaohua.li@intel.com |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1957 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 1958 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1959 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 1960 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1961 | DOCUMENTATION |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1962 | P: Randy Dunlap |
| 1963 | M: rdunlap@xenotime.net |
| 1964 | L: linux-doc@vger.kernel.org |
| 1965 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1966 | F: Documentation/ |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 1967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | DOUBLETALK DRIVER |
| 1969 | P: James R. Van Zandt |
| 1970 | M: jrv@vanzandt.mv.com |
| 1971 | L: blinux-list@redhat.com |
| 1972 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1973 | F: drivers/char/dtlk.c |
| 1974 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1976 | DPT_I2O SCSI RAID DRIVER |
| 1977 | P: Adaptec OEM Raid Solutions |
| 1978 | M: aacraid@adaptec.com |
| 1979 | L: linux-scsi@vger.kernel.org |
| 1980 | W: http://www.adaptec.com/ |
| 1981 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1982 | F: drivers/scsi/dpt* |
| 1983 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | DRIVER CORE, KOBJECTS, AND SYSFS |
| 1986 | P: Greg Kroah-Hartman |
| 1987 | M: gregkh@suse.de |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 1988 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1990 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 1991 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1992 | F: fs/sysfs/ |
| 1993 | F: include/linux/kobj* |
| 1994 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | |
| 1996 | DRM DRIVERS |
| 1997 | P: David Airlie |
| 1998 | M: airlied@linux.ie |
| 1999 | L: dri-devel@lists.sourceforge.net |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2002 | F: drivers/gpu/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | |
| 2004 | DSCC4 DRIVER |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 2005 | P: Francois Romieu |
| 2006 | M: romieu@fr.zoreil.com |
| 2007 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2009 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 2011 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 2012 | P: Maciej W. Rozycki |
| 2013 | M: macro@linux-mips.org |
| 2014 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2015 | F: drivers/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 2016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | EATA-DMA SCSI DRIVER |
| 2018 | P: Michael Neuffer |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2019 | M: mike@i-Connect.Net |
| 2020 | L: linux-eata@i-connect.net |
| 2021 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2023 | F: drivers/scsi/eata* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | |
| 2025 | EATA ISA/EISA/PCI SCSI DRIVER |
| 2026 | P: Dario Ballabio |
| 2027 | M: ballabio_dario@emc.com |
| 2028 | L: linux-scsi@vger.kernel.org |
| 2029 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2030 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | |
| 2032 | EATA-PIO SCSI DRIVER |
| 2033 | P: Michael Neuffer |
| 2034 | M: mike@i-Connect.Net |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2035 | L: linux-eata@i-connect.net |
| 2036 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2038 | F: drivers/scsi/eata_pio.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | |
| 2040 | EBTABLES |
| 2041 | P: Bart De Schuymer |
| 2042 | M: bart.de.schuymer@pandora.be |
| 2043 | L: ebtables-user@lists.sourceforge.net |
| 2044 | L: ebtables-devel@lists.sourceforge.net |
| 2045 | W: http://ebtables.sourceforge.net/ |
| 2046 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2047 | F: include/linux/netfilter_bridge/ebt_*.h |
| 2048 | F: net/bridge/netfilter/ebt*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 2050 | ECRYPT FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2051 | P: Tyler Hicks |
| 2052 | M: tyhicks@linux.vnet.ibm.com |
Joe Perches | 866a36b | 2009-06-16 15:34:05 -0700 | [diff] [blame] | 2053 | P: Dustin Kirkland |
| 2054 | M: kirkland@canonical.com |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 2055 | L: ecryptfs-devel@lists.launchpad.net |
| 2056 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 2057 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2058 | F: Documentation/filesystems/ecryptfs.txt |
| 2059 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 2060 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2061 | EDAC-CORE |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2062 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2063 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2064 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2065 | W: bluesmoke.sourceforge.net |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2066 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2067 | F: Documentation/edac.txt |
| 2068 | F: drivers/edac/edac_* |
| 2069 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2070 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 2071 | EDAC-AMD64 |
| 2072 | P: Doug Thompson |
| 2073 | M: dougthompson@xmission.com |
| 2074 | P: Borislav Petkov |
| 2075 | M: borislav.petkov@amd.com |
| 2076 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2077 | W: bluesmoke.sourceforge.net |
| 2078 | S: Supported |
| 2079 | F: drivers/edac/amd64_edac* |
| 2080 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2081 | EDAC-E752X |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2082 | P: Mark Gross |
| 2083 | M: mark.gross@intel.com |
Joe Perches | 681a1b4 | 2009-05-28 14:34:18 -0700 | [diff] [blame] | 2084 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2085 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2086 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2087 | W: bluesmoke.sourceforge.net |
| 2088 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2089 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2090 | |
| 2091 | EDAC-E7XXX |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 2092 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2093 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2094 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2095 | W: bluesmoke.sourceforge.net |
| 2096 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2097 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2098 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2099 | EDAC-I82443BXGX |
| 2100 | P: Tim Small |
| 2101 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2102 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2103 | W: bluesmoke.sourceforge.net |
| 2104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2105 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2106 | |
| 2107 | EDAC-I3000 |
| 2108 | P: Jason Uhlenkott |
| 2109 | M: juhlenko@akamai.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2110 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2111 | W: bluesmoke.sourceforge.net |
| 2112 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2113 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2114 | |
| 2115 | EDAC-I5000 |
| 2116 | P: Doug Thompson |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2117 | M: dougthompson@xmission.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2118 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2119 | W: bluesmoke.sourceforge.net |
| 2120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2121 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2122 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2123 | EDAC-I5400 |
| 2124 | P: Mauro Carvalho Chehab |
| 2125 | M: mchehab@redhat.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2126 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2127 | W: bluesmoke.sourceforge.net |
| 2128 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2129 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 2130 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2131 | EDAC-I82975X |
| 2132 | P: Ranganathan Desikan |
Joe Perches | c15e504 | 2009-06-30 11:41:13 -0700 | [diff] [blame] | 2133 | M: ravi@jetztechnologies.com |
Joe Perches | 5b7f92c | 2009-06-18 16:49:19 -0700 | [diff] [blame] | 2134 | P: Arvind R. |
Joe Perches | c15e504 | 2009-06-30 11:41:13 -0700 | [diff] [blame] | 2135 | M: arvind@jetztechnologies.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2136 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2137 | W: bluesmoke.sourceforge.net |
| 2138 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2139 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 2140 | |
| 2141 | EDAC-PASEMI |
| 2142 | P: Egor Martovetsky |
| 2143 | M: egor@pasemi.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2144 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2145 | W: bluesmoke.sourceforge.net |
| 2146 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2147 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 2148 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2149 | EDAC-R82600 |
| 2150 | P: Tim Small |
| 2151 | M: tim@buttersideup.com |
Jean Delvare | 7b102d0 | 2009-04-13 14:40:02 -0700 | [diff] [blame] | 2152 | L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 2153 | W: bluesmoke.sourceforge.net |
| 2154 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2155 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 2156 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2157 | EEEPC LAPTOP EXTRAS DRIVER |
| 2158 | P: Corentin Chary |
| 2159 | M: corentincj@iksaif.net |
| 2160 | L: acpi4asus-user@lists.sourceforge.net |
Corentin Chary | 76593d6 | 2009-06-16 19:28:47 +0000 | [diff] [blame] | 2161 | W: http://acpi4asus.sf.net |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2162 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2163 | F: drivers/platform/x86/eeepc-laptop.c |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 2164 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2165 | EFS FILESYSTEM |
| 2166 | W: http://aeschi.ch.eu.org/efs/ |
| 2167 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2168 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 2169 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2170 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2171 | P: Hoang-Nam Nguyen |
| 2172 | M: hnguyen@de.ibm.com |
| 2173 | P: Christoph Raisch |
| 2174 | M: raisch@de.ibm.com |
Roland Dreier | 7852682 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 2175 | L: general@lists.openfabrics.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2176 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2177 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 2178 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2179 | EMBEDDED LINUX |
| 2180 | P: Paul Gortmaker |
| 2181 | M: paul.gortmaker@windriver.com |
Matt Mackall | 0f24922 | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 2182 | P: Matt Mackall |
| 2183 | M: mpm@selenic.com |
Uwe Kleine-König | a46add7 | 2008-09-09 00:11:39 +0200 | [diff] [blame] | 2184 | P: David Woodhouse |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 2185 | M: dwmw2@infradead.org |
| 2186 | L: linux-embedded@vger.kernel.org |
| 2187 | S: Maintained |
| 2188 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2189 | EMULEX LPFC FC SCSI DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2190 | P: James Smart |
| 2191 | M: james.smart@emulex.com |
| 2192 | L: linux-scsi@vger.kernel.org |
| 2193 | W: http://sourceforge.net/projects/lpfcxxxx |
| 2194 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2195 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 2196 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 2197 | ENE CB710 FLASH CARD READER DRIVER |
| 2198 | P: Michał Mirosław |
| 2199 | M: mirq-linux@rere.qmqm.pl |
| 2200 | L: linux-kernel@vger.kernel.org |
| 2201 | S: Maintained |
| 2202 | F: drivers/misc/cb710/ |
| 2203 | F: drivers/mmc/host/cb710-mmc.* |
| 2204 | F: include/linux/cb710.h |
| 2205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | EPSON 1355 FRAMEBUFFER DRIVER |
| 2207 | P: Christopher Hoover |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2208 | M: ch@murgatroid.com |
| 2209 | P: Christopher Hoover |
| 2210 | M: ch@hpl.hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2212 | F: drivers/video/epson1355fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2214 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 2215 | P: Kristoffer Ericson |
| 2216 | M: kristoffer.ericson@gmail.com |
| 2217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2218 | F: drivers/video/s1d13xxxfb.c |
| 2219 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 2220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | ETHEREXPRESS-16 NETWORK DRIVER |
| 2222 | P: Philip Blundell |
| 2223 | M: philb@gnu.org |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 2224 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2226 | F: drivers/net/eexpress.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | |
| 2228 | ETHERNET BRIDGE |
| 2229 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 2230 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 2231 | L: bridge@lists.linux-foundation.org |
Adrian Bunk | 57c511d | 2008-06-03 16:00:01 -0700 | [diff] [blame] | 2232 | W: http://www.linux-foundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2234 | F: include/linux/netfilter_bridge/ |
| 2235 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | |
| 2237 | ETHERTEAM 16I DRIVER |
| 2238 | P: Mika Kuoppala |
| 2239 | M: miku@iki.fi |
| 2240 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2241 | F: drivers/net/eth16i.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | |
| 2243 | EXT2 FILE SYSTEM |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2244 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2246 | F: Documentation/filesystems/ext2.txt |
| 2247 | F: fs/ext2/ |
| 2248 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | |
| 2250 | EXT3 FILE SYSTEM |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2251 | P: Stephen Tweedie |
| 2252 | M: sct@redhat.com |
| 2253 | P: Andrew Morton |
| 2254 | M: akpm@linux-foundation.org |
| 2255 | P: Andreas Dilger |
| 2256 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2257 | L: linux-ext4@vger.kernel.org |
| 2258 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2259 | F: Documentation/filesystems/ext3.txt |
| 2260 | F: fs/ext3/ |
| 2261 | F: include/linux/ext3* |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2262 | |
| 2263 | EXT4 FILE SYSTEM |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2264 | P: Theodore Ts'o |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2265 | M: tytso@mit.edu |
| 2266 | P: Andreas Dilger |
| 2267 | M: adilger@sun.com |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 2268 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 2269 | W: http://ext4.wiki.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2271 | F: Documentation/filesystems/ext4.txt |
| 2272 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2274 | F71805F HARDWARE MONITORING DRIVER |
| 2275 | P: Jean Delvare |
| 2276 | M: khali@linux-fr.org |
| 2277 | L: lm-sensors@lm-sensors.org |
| 2278 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2279 | F: Documentation/hwmon/f71805f |
| 2280 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 2281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | FARSYNC SYNCHRONOUS DRIVER |
| 2283 | P: Kevin Curtis |
| 2284 | M: kevin.curtis@farsite.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | W: http://www.farsite.co.uk/ |
| 2286 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2287 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2289 | FAULT INJECTION SUPPORT |
| 2290 | P: Akinobu Mita |
| 2291 | M: akinobu.mita@gmail.com |
| 2292 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2293 | F: Documentation/fault-injection/ |
| 2294 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 2295 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2296 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 2297 | P: Matthew Wilcox |
| 2298 | M: matthew@wil.cx |
| 2299 | L: linux-fsdevel@vger.kernel.org |
| 2300 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2301 | F: include/linux/fcntl.h |
| 2302 | F: include/linux/fs.h |
| 2303 | F: fs/fcntl.c |
| 2304 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2305 | |
| 2306 | FILESYSTEMS (VFS and infrastructure) |
| 2307 | P: Alexander Viro |
| 2308 | M: viro@zeniv.linux.org.uk |
| 2309 | L: linux-fsdevel@vger.kernel.org |
| 2310 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2311 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2312 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2313 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 2314 | P: Riku Voipio |
| 2315 | M: riku.vipio@iki.fi |
| 2316 | L: lm-sensors@lm-sensors.org |
| 2317 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 2318 | F: drivers/hwmon/f75375s.c |
| 2319 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 2320 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2321 | FIREWIRE SUBSYSTEM |
| 2322 | P: Kristian Hoegsberg |
| 2323 | M: krh@redhat.com |
| 2324 | P: Stefan Richter |
| 2325 | M: stefanr@s5r6.in-berlin.de |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2326 | L: linux1394-devel@lists.sourceforge.net |
| 2327 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2328 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2330 | F: drivers/firewire/ |
| 2331 | F: include/linux/firewire*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2332 | |
| 2333 | FIRMWARE LOADER (request_firmware) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2334 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2335 | F: Documentation/firmware_class/ |
| 2336 | F: drivers/base/firmware*.c |
| 2337 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2338 | |
| 2339 | FPU EMULATOR |
| 2340 | P: Bill Metzenthen |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 2341 | M: billm@melbpc.org.au |
| 2342 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2343 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2344 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2345 | |
| 2346 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 2347 | P: Mike McLagan |
| 2348 | M: mike.mclagan@linux.org |
| 2349 | L: netdev@vger.kernel.org |
| 2350 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2351 | F: drivers/net/wan/dlci.c |
| 2352 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | FRAMEBUFFER LAYER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2355 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | W: http://linux-fbdev.sourceforge.net/ |
Andrew Morton | 36025a8 | 2009-06-17 16:25:56 -0700 | [diff] [blame] | 2357 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2358 | F: Documentation/fb/ |
| 2359 | F: drivers/video/fb* |
| 2360 | F: include/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2362 | FREESCALE DMA DRIVER |
Zhang Wei | 76b0c788 | 2008-05-13 14:44:59 -0700 | [diff] [blame] | 2363 | P: Li Yang |
| 2364 | M: leoli@freescale.com |
| 2365 | P: Zhang Wei |
| 2366 | M: zw@zh-kernel.org |
Li Yang | 0899d63 | 2009-05-22 16:39:59 +0800 | [diff] [blame] | 2367 | L: linuxppc-dev@ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2368 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2369 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 2370 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2371 | FREESCALE I2C CPM DRIVER |
| 2372 | P: Jochen Friedrich |
| 2373 | M: jochen@scram.de |
| 2374 | L: linuxppc-dev@ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2375 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2376 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2377 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 2378 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2379 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 2380 | P: Sascha Hauer |
| 2381 | M: kernel@pengutronix.de |
| 2382 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2383 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 2384 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2385 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
| 2386 | F: drivers/video/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 2387 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2388 | FREESCALE SOC FS_ENET DRIVER |
| 2389 | P: Pantelis Antoniou |
| 2390 | M: pantelis.antoniou@gmail.com |
| 2391 | P: Vitaly Bordug |
| 2392 | M: vbordug@ru.mvista.com |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2393 | L: linuxppc-dev@ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2394 | L: netdev@vger.kernel.org |
| 2395 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2396 | F: drivers/net/fs_enet/ |
| 2397 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 2398 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2399 | FREESCALE QUICC ENGINE LIBRARY |
| 2400 | P: Timur Tabi |
| 2401 | M: timur@freescale.com |
| 2402 | L: linuxppc-dev@ozlabs.org |
| 2403 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2404 | F: arch/powerpc/sysdev/qe_lib/ |
| 2405 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2406 | |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2407 | FREESCALE HIGHSPEED USB DEVICE DRIVER |
| 2408 | P: Li Yang |
| 2409 | M: leoli@freescale.com |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 2410 | L: linux-usb@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2411 | L: linuxppc-dev@ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2412 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2413 | F: drivers/usb/gadget/fsl_usb2_udc.c |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 2414 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2415 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 2416 | P: Li Yang |
| 2417 | M: leoli@freescale.com |
| 2418 | L: netdev@vger.kernel.org |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 2419 | L: linuxppc-dev@ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2421 | F: drivers/net/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 2422 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2423 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 2424 | P: Timur Tabi |
| 2425 | M: timur@freescale.com |
| 2426 | L: linuxppc-dev@ozlabs.org |
| 2427 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2428 | F: drivers/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2429 | |
| 2430 | FREESCALE SOC SOUND DRIVERS |
| 2431 | P: Timur Tabi |
| 2432 | M: timur@freescale.com |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 2433 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2434 | L: linuxppc-dev@ozlabs.org |
| 2435 | S: Supported |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 2436 | F: sound/soc/fsl/fsl* |
| 2437 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 2438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | FREEVXFS FILESYSTEM |
| 2440 | P: Christoph Hellwig |
| 2441 | M: hch@infradead.org |
| 2442 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 2443 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2444 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2446 | FREEZER |
| 2447 | P: Pavel Machek |
Pavel Machek | b6e731d | 2009-05-30 00:58:41 +0200 | [diff] [blame] | 2448 | M: pavel@ucw.cz |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2449 | P: Rafael J. Wysocki |
| 2450 | M: rjw@sisk.pl |
| 2451 | L: linux-pm@lists.linux-foundation.org |
| 2452 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2453 | F: Documentation/power/freezing-of-tasks.txt |
| 2454 | F: include/linux/freezer.h |
| 2455 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 2456 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2457 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 2458 | P: David Howells |
| 2459 | M: dhowells@redhat.com |
| 2460 | L: linux-cachefs@redhat.com |
| 2461 | S: Supported |
| 2462 | F: Documentation/filesystems/caching/ |
| 2463 | F: fs/fscache/ |
| 2464 | F: include/linux/fscache*.h |
| 2465 | |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2466 | FTRACE |
| 2467 | P: Steven Rostedt |
Steven Rostedt | 8e324c1 | 2008-11-19 15:36:43 -0800 | [diff] [blame] | 2468 | M: rostedt@goodmis.org |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2469 | S: Maintained |
Joe Perches | a65fd8e | 2009-06-18 16:49:23 -0700 | [diff] [blame] | 2470 | F: Documentation/trace/ftrace.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2471 | F: arch/*/*/*/ftrace.h |
| 2472 | F: arch/*/kernel/ftrace.c |
| 2473 | F: include/*/ftrace.h |
| 2474 | F: kernel/trace/ |
Steven Rostedt | de3b69d | 2008-07-15 13:28:14 -0400 | [diff] [blame] | 2475 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 2476 | FUJITSU FR-V (FRV) PORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | P: David Howells |
| 2478 | M: dhowells@redhat.com |
| 2479 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2480 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2481 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2482 | FUJITSU LAPTOP EXTRAS |
| 2483 | P: Jonathan Woithe |
| 2484 | M: jwoithe@physics.adelaide.edu.au |
| 2485 | L: linux-acpi@vger.kernel.org |
| 2486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2487 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 2488 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2489 | FUSE: FILESYSTEM IN USERSPACE |
| 2490 | P: Miklos Szeredi |
| 2491 | M: miklos@szeredi.hu |
| 2492 | L: fuse-devel@lists.sourceforge.net |
| 2493 | W: http://fuse.sourceforge.net/ |
| 2494 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2495 | F: fs/fuse/ |
| 2496 | F: include/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 2497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2498 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 2499 | P: Rik Faith |
| 2500 | M: faith@cs.unc.edu |
| 2501 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2502 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2503 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | |
| 2505 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 2506 | P: Achim Leubner |
| 2507 | M: achim_leubner@adaptec.com |
| 2508 | L: linux-scsi@vger.kernel.org |
| 2509 | W: http://www.icp-vortex.com/ |
| 2510 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2511 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2512 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2513 | GENERIC GPIO I2C DRIVER |
| 2514 | P: Haavard Skinnemoen |
| 2515 | M: hskinnemoen@atmel.com |
| 2516 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2517 | F: drivers/i2c/busses/i2c-gpio.c |
| 2518 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 2519 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 2520 | GENERIC HDLC (WAN) DRIVERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | P: Krzysztof Halasa |
| 2522 | M: khc@pm.waw.pl |
| 2523 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 2524 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2525 | F: drivers/net/wan/c101.c |
| 2526 | F: drivers/net/wan/hd6457* |
| 2527 | F: drivers/net/wan/hdlc* |
| 2528 | F: drivers/net/wan/n2.c |
| 2529 | F: drivers/net/wan/pc300too.c |
| 2530 | F: drivers/net/wan/pci200syn.c |
| 2531 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 2533 | GENERIC INCLUDE/ASM HEADER FILES |
| 2534 | P: Arnd Bergmann |
| 2535 | M: arnd@arndb.de |
| 2536 | L: linux-arch@vger.kernel.org |
| 2537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git |
| 2538 | S: Maintained |
| 2539 | F: include/asm-generic |
| 2540 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2541 | GFS2 FILE SYSTEM |
| 2542 | P: Steven Whitehouse |
| 2543 | M: swhiteho@redhat.com |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 2544 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2545 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2546 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
| 2547 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2548 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2549 | F: Documentation/filesystems/gfs2*.txt |
| 2550 | F: fs/gfs2/ |
| 2551 | F: include/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 2552 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2553 | GIGASET ISDN DRIVERS |
| 2554 | P: Hansjoerg Lipp |
| 2555 | M: hjlipp@web.de |
| 2556 | P: Tilman Schmidt |
| 2557 | M: tilman@imap.cc |
| 2558 | L: gigaset307x-common@lists.sourceforge.net |
| 2559 | W: http://gigaset307x.sourceforge.net/ |
| 2560 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2561 | F: Documentation/isdn/README.gigaset |
| 2562 | F: drivers/isdn/gigaset/ |
| 2563 | F: include/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 2564 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2565 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
Frank Seidel | 211e3e0 | 2009-02-17 19:59:54 +0100 | [diff] [blame] | 2566 | P: Frank Seidel |
| 2567 | M: frank@f-seidel.de |
| 2568 | L: lm-sensors@lm-sensors.org |
| 2569 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2570 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2571 | F: drivers/hwmon/hdaps.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2572 | |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2573 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 2574 | L: linuxppc-dev@ozlabs.org |
Michael Ellerman | c90bfeb | 2009-04-02 16:56:43 -0700 | [diff] [blame] | 2575 | S: Odd Fixes |
| 2576 | F: drivers/char/hvc_* |
| 2577 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2578 | GSPCA FINEPIX SUBDRIVER |
| 2579 | P: Frank Zago |
| 2580 | M: frank@zago.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2581 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2582 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2583 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2584 | F: drivers/media/video/gspca/finepix.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2585 | |
| 2586 | GSPCA M5602 SUBDRIVER |
| 2587 | P: Erik Andren |
| 2588 | M: erik.andren@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2589 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2591 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2592 | F: drivers/media/video/gspca/m5602/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2593 | |
| 2594 | GSPCA PAC207 SONIXB SUBDRIVER |
| 2595 | P: Hans de Goede |
| 2596 | M: hdegoede@redhat.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2597 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2598 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2599 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2600 | F: drivers/media/video/gspca/pac207.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2601 | |
| 2602 | GSPCA T613 SUBDRIVER |
| 2603 | P: Leandro Costantino |
| 2604 | M: lcostantino@gmail.com |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2605 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2607 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2608 | F: drivers/media/video/gspca/t613.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2609 | |
| 2610 | GSPCA USB WEBCAM DRIVER |
| 2611 | P: Jean-Francois Moine |
| 2612 | M: moinejf@free.fr |
| 2613 | W: http://moinejf.free.fr |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2614 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2615 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2616 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2617 | F: drivers/media/video/gspca/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 2618 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2619 | HARDWARE MONITORING |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2620 | L: lm-sensors@lm-sensors.org |
Jean Delvare | 595142e | 2006-12-06 20:39:36 -0800 | [diff] [blame] | 2621 | W: http://www.lm-sensors.org/ |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2622 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2623 | F: drivers/hwmon/ |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2624 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2625 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 2626 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2627 | F: Documentation/hw_random.txt |
| 2628 | F: drivers/char/hw_random/ |
| 2629 | F: include/linux/hw_random.h |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 2630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2631 | HARMONY SOUND DRIVER |
| 2632 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 2633 | M: kyle@mcmartin.ca |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 2634 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2636 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
| 2638 | HAYES ESP SERIAL DRIVER |
| 2639 | P: Andrew J. Robinson |
| 2640 | M: arobinso@nyx.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | W: http://www.nyx.net/~arobinso |
| 2642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2643 | F: Documentation/serial/hayes-esp.txt |
| 2644 | F: drivers/char/esp.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2645 | |
| 2646 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 2647 | P: Chirag Kantharia |
| 2648 | M: chirag.kantharia@hp.com |
| 2649 | L: iss_storagedev@hp.com |
| 2650 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2651 | F: Documentation/blockdev/cpqarray.txt |
| 2652 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2653 | |
| 2654 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 2655 | P: Mike Miller |
| 2656 | M: mike.miller@hp.com |
| 2657 | L: iss_storagedev@hp.com |
| 2658 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2659 | F: Documentation/blockdev/cciss.txt |
| 2660 | F: drivers/block/cciss* |
| 2661 | F: include/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | HFS FILESYSTEM |
| 2664 | P: Roman Zippel |
| 2665 | M: zippel@linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2667 | F: Documentation/filesystems/hfs.txt |
| 2668 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | |
| 2670 | HGA FRAMEBUFFER DRIVER |
| 2671 | P: Ferenc Bakonyi |
| 2672 | M: fero@drama.obuda.kando.hu |
| 2673 | L: linux-nvidia@lists.surfsouth.com |
| 2674 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 2675 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2676 | F: drivers/video/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 2678 | HIBERNATION (aka Software Suspend, aka swsusp) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2679 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 2680 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2681 | P: Rafael J. Wysocki |
| 2682 | M: rjw@sisk.pl |
| 2683 | L: linux-pm@lists.linux-foundation.org |
| 2684 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2685 | F: arch/x86/power/ |
| 2686 | F: drivers/base/power/ |
| 2687 | F: kernel/power/ |
| 2688 | F: include/linux/suspend.h |
| 2689 | F: include/linux/freezer.h |
| 2690 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2691 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2692 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2693 | HID CORE LAYER |
| 2694 | P: Jiri Kosina |
| 2695 | M: jkosina@suse.cz |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 2696 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2698 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2699 | F: drivers/hid/ |
| 2700 | F: include/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 2701 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2702 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 2703 | P: Thomas Gleixner |
| 2704 | M: tglx@linutronix.de |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2705 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2706 | F: Documentation/timers/ |
| 2707 | F: kernel/hrtimer.c |
| 2708 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 2709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 2711 | P: Klaus Kudielka |
| 2712 | M: klaus.kudielka@ieee.org |
| 2713 | L: linux-hams@vger.kernel.org |
| 2714 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ |
| 2715 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2716 | F: drivers/net/hamradio/dmascc.c |
| 2717 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2719 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 2720 | P: HighPoint Linux Team |
| 2721 | M: linux@highpoint-tech.com |
| 2722 | W: http://www.highpoint-tech.com |
| 2723 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2724 | F: Documentation/scsi/hptiop.txt |
| 2725 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 2726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | HIPPI |
| 2728 | P: Jes Sorensen |
| 2729 | M: jes@trained-monkey.org |
| 2730 | L: linux-hippi@sunsite.dk |
| 2731 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2732 | F: include/linux/hippidevice.h |
| 2733 | F: include/linux/if_hippi.h |
| 2734 | F: net/802/hippi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2736 | HOST AP DRIVER |
| 2737 | P: Jouni Malinen |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 2738 | M: j@w1.fi |
| 2739 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2740 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2741 | W: http://hostap.epitest.fi/ |
| 2742 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2743 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 2744 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2745 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 2746 | P: Carlos Corbacho |
| 2747 | M: carlos@strangeworlds.co.uk |
| 2748 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2749 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 2750 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2751 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 2752 | P: Jaroslav Kysela |
| 2753 | M: perex@perex.cz |
| 2754 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2755 | F: drivers/net/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2756 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2757 | HPET: High Precision Event Timers driver |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2758 | P: Clemens Ladisch |
| 2759 | M: clemens@ladisch.de |
| 2760 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2761 | F: Documentation/timers/hpet.txt |
| 2762 | F: drivers/char/hpet.c |
| 2763 | F: include/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2764 | |
| 2765 | HPET: i386 |
| 2766 | P: Venkatesh Pallipadi (Venki) |
| 2767 | M: venkatesh.pallipadi@intel.com |
| 2768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2769 | F: arch/x86/kernel/hpet.c |
| 2770 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2771 | |
| 2772 | HPET: x86_64 |
Andi Kleen | 8bd0983 | 2007-10-13 01:01:08 +0200 | [diff] [blame] | 2773 | P: Vojtech Pavlik |
| 2774 | M: vojtech@suse.cz |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2775 | S: Maintained |
| 2776 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2777 | HPET: ACPI |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2778 | P: Bob Picco |
| 2779 | M: bob.picco@hp.com |
| 2780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2781 | F: drivers/char/hpet.c |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 2782 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | HPFS FILESYSTEM |
| 2784 | P: Mikulas Patocka |
| 2785 | M: mikulas@artax.karlin.mff.cuni.cz |
| 2786 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 2787 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2788 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2790 | HSO 3G MODEM DRIVER |
Jan Dumon | 510f32b | 2009-04-13 14:39:34 -0700 | [diff] [blame] | 2791 | P: Jan Dumon |
| 2792 | M: j.dumon@option.com |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2793 | W: http://www.pharscape.org |
| 2794 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2795 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 2796 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2797 | HTCPEN TOUCHSCREEN DRIVER |
| 2798 | P: Pau Oliva Fora |
| 2799 | M: pof@eslack.org |
| 2800 | L: linux-input@vger.kernel.org |
| 2801 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2802 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 2803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | HUGETLB FILESYSTEM |
| 2805 | P: William Irwin |
| 2806 | M: wli@holomorphy.com |
| 2807 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2808 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2810 | I2C/SMBUS STUB DRIVER |
| 2811 | P: Mark M. Hoffman |
| 2812 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2813 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2814 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2815 | F: drivers/i2c/busses/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 2816 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 2817 | I2C SUBSYSTEM |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2818 | P: Jean Delvare (PC drivers, core) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | M: khali@linux-fr.org |
Jean Delvare | 710cf7e | 2008-05-18 20:49:40 +0200 | [diff] [blame] | 2820 | P: Ben Dooks (embedded platforms) |
| 2821 | M: ben-linux@fluff.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2822 | L: linux-i2c@vger.kernel.org |
Jean Delvare | a01064a | 2009-01-26 21:19:53 +0100 | [diff] [blame] | 2823 | W: http://i2c.wiki.kernel.org/ |
| 2824 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2826 | F: Documentation/i2c/ |
| 2827 | F: drivers/i2c/ |
| 2828 | F: include/linux/i2c.h |
| 2829 | F: include/linux/i2c-dev.h |
| 2830 | F: include/linux/i2c-id.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2832 | I2C-TINY-USB DRIVER |
| 2833 | P: Till Harbaum |
| 2834 | M: till@harbaum.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 2835 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 2836 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2837 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2838 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 2839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | i386 BOOT CODE |
H. Peter Anvin | 7f1291f | 2007-07-11 12:18:26 -0700 | [diff] [blame] | 2841 | P: H. Peter Anvin |
| 2842 | M: hpa@zytor.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2844 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | |
| 2846 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | P: H. Peter Anvin |
| 2848 | M: hpa@zytor.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | S: Maintained |
| 2851 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | IA64 (Itanium) PLATFORM |
| 2853 | P: Tony Luck |
Tony Luck | fadfd2b | 2009-06-30 14:28:54 -0700 | [diff] [blame] | 2854 | P: Fenghua Yu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | M: tony.luck@intel.com |
Tony Luck | fadfd2b | 2009-06-30 14:28:54 -0700 | [diff] [blame] | 2856 | M: fenghua.yu@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | L: linux-ia64@vger.kernel.org |
| 2858 | W: http://www.ia64-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2861 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | IBM MCA SCSI SUBSYSTEM DRIVER |
| 2864 | P: Michael Lang |
| 2865 | M: langa2@kph.uni-mainz.de |
| 2866 | W: http://www.uni-mainz.de/~langm000/linux.html |
| 2867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2868 | F: drivers/scsi/ibmmca.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | |
| 2870 | IBM Power Linux RAID adapter |
| 2871 | P: Brian King |
| 2872 | M: brking@us.ibm.com |
| 2873 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2874 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | |
| 2876 | IBM ServeRAID RAID DRIVER |
| 2877 | P: Jack Hammer |
| 2878 | P: Dave Jeffery |
| 2879 | M: ipslinux@adaptec.com |
| 2880 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 2881 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2882 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 2884 | IDE SUBSYSTEM |
David S. Miller | 920d44e | 2009-06-21 16:11:33 -0700 | [diff] [blame] | 2885 | P: David S. Miller |
| 2886 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | L: linux-ide@vger.kernel.org |
David S. Miller | 920d44e | 2009-06-21 16:11:33 -0700 | [diff] [blame] | 2888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2890 | F: Documentation/ide/ |
| 2891 | F: drivers/ide/ |
| 2892 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2893 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 2894 | IDE/ATAPI DRIVERS |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2895 | P: Borislav Petkov |
Borislav Petkov | ef70916 | 2008-02-19 01:41:25 +0100 | [diff] [blame] | 2896 | M: petkovbb@gmail.com |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 2897 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 2898 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2899 | F: Documentation/cdrom/ide-cd |
| 2900 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2902 | IDLE-I7300 |
| 2903 | P: Andy Henroid |
| 2904 | M: andrew.d.henroid@intel.com |
| 2905 | L: linux-pm@lists.linux-foundation.org |
| 2906 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2907 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 2908 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2909 | IEEE 1394 SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | P: Ben Collins |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2911 | M: ben.collins@ubuntu.com |
Stefan Richter | 87730d0 | 2006-09-16 12:24:00 +0200 | [diff] [blame] | 2912 | P: Stefan Richter |
| 2913 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | L: linux1394-devel@lists.sourceforge.net |
| 2915 | W: http://www.linux1394.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2918 | F: drivers/ieee1394/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 2920 | IEEE 1394 RAW I/O DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | P: Dan Dennedy |
| 2922 | M: dan@dennedy.org |
Stefan Richter | f51a5a9 | 2007-04-23 14:41:10 -0700 | [diff] [blame] | 2923 | P: Stefan Richter |
| 2924 | M: stefanr@s5r6.in-berlin.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | L: linux1394-devel@lists.sourceforge.net |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2926 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2927 | F: drivers/ieee1394/raw1394* |
Jody McIntyre | 105d7b3 | 2005-09-30 11:59:04 -0700 | [diff] [blame] | 2928 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2929 | IEEE 802.15.4 SUBSYSTEM |
| 2930 | P: Dmitry Eremin-Solenikov |
| 2931 | M: dbaryshkov@gmail.com |
| 2932 | P: Sergey Lapin |
| 2933 | M: slapin@ossfans.org |
| 2934 | L: linux-zigbee-devel@lists.sourceforge.net |
| 2935 | W: http://apps.sourceforge.net/trac/linux-zigbee |
Dmitry Baryshkov | a060330 | 2009-06-18 04:16:47 +0000 | [diff] [blame] | 2936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2937 | S: Maintained |
| 2938 | F: net/ieee802154/ |
Joe Perches | a26c446 | 2009-06-18 16:49:24 -0700 | [diff] [blame] | 2939 | F: drivers/ieee802154/ |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 2940 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2941 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 2942 | P: Mimi Zohar |
| 2943 | M: zohar@us.ibm.com |
| 2944 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2945 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 2946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2948 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 2949 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2950 | F: drivers/video/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | |
| 2952 | INFINIBAND SUBSYSTEM |
| 2953 | P: Roland Dreier |
Roland Dreier | 21c121c | 2005-06-27 14:36:47 -0700 | [diff] [blame] | 2954 | M: rolandd@cisco.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | P: Sean Hefty |
Sean Hefty | ed96f2470 | 2008-01-02 12:00:24 -0800 | [diff] [blame] | 2956 | M: sean.hefty@intel.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | P: Hal Rosenstock |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 2958 | M: hal.rosenstock@gmail.com |
Randy Dunlap | 40b0bb1 | 2009-02-04 15:12:13 -0800 | [diff] [blame] | 2959 | L: general@lists.openfabrics.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | W: http://www.openib.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2961 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2963 | F: Documentation/infiniband/ |
| 2964 | F: drivers/infiniband/ |
| 2965 | F: include/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2967 | INOTIFY |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2968 | P: John McCutchan |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2969 | M: john@johnmccutchan.com |
Cal Peake | 18b36c71 | 2006-12-12 20:18:16 +0100 | [diff] [blame] | 2970 | P: Robert Love |
John McCutchan | 52af894 | 2008-12-17 17:43:02 -0800 | [diff] [blame] | 2971 | M: rlove@rlove.org |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 2972 | P: Eric Paris |
| 2973 | M: eparis@parisplace.org |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2974 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2975 | F: Documentation/filesystems/inotify.txt |
| 2976 | F: fs/notify/inotify/ |
| 2977 | F: include/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 2978 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2979 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 2980 | P: Dmitry Torokhov |
| 2981 | M: dmitry.torokhov@gmail.com |
| 2982 | M: dtor@mail.ru |
| 2983 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2985 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2986 | F: drivers/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2987 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2988 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2989 | P: Sylvain Meyer |
| 2990 | M: sylvain.meyer@worldonline.fr |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2991 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2992 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2993 | F: Documentation/fb/intelfb.txt |
| 2994 | F: drivers/video/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 2995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | INTEL 810/815 FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2997 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 2998 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 2999 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3000 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3001 | F: drivers/video/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 3003 | INTEL MENLOW THERMAL DRIVER |
| 3004 | P: Sujith Thomas |
| 3005 | M: sujith.thomas@intel.com |
| 3006 | L: linux-acpi@vger.kernel.org |
| 3007 | W: http://www.lesswatts.org/projects/acpi/ |
| 3008 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3009 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 3010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | INTEL IA32 MICROCODE UPDATE SUPPORT |
| 3012 | P: Tigran Aivazian |
Tigran Aivazian | b5b9df6 | 2006-11-08 17:44:46 -0800 | [diff] [blame] | 3013 | M: tigran@aivazian.fsnet.co.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3015 | F: arch/x86/kernel/microcode_core.c |
| 3016 | F: arch/x86/kernel/microcode_intel.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 3018 | INTEL I/OAT DMA DRIVER |
Maciej Sosnowski | 5e45bb2 | 2008-02-21 13:44:31 +0100 | [diff] [blame] | 3019 | P: Maciej Sosnowski |
| 3020 | M: maciej.sosnowski@intel.com |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 3021 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3022 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 3023 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 3024 | INTEL IOMMU (VT-d) |
| 3025 | P: David Woodhouse |
| 3026 | M: dwmw2@infradead.org |
| 3027 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3028 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 3029 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3030 | F: drivers/pci/intel-iommu.c |
| 3031 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 3032 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 3033 | INTEL IOP-ADMA DMA DRIVER |
| 3034 | P: Dan Williams |
| 3035 | M: dan.j.williams@intel.com |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 3036 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3037 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 3038 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 3039 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 3040 | P: Krzysztof Halasa |
| 3041 | M: khc@pm.waw.pl |
| 3042 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3043 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 3044 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 3045 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 3046 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 3047 | F: drivers/net/arm/ixp4xx_eth.c |
| 3048 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 3049 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 3050 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 3051 | P: Deepak Saxena |
| 3052 | M: dsaxena@plexity.net |
| 3053 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3054 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 3055 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 3056 | INTEL IXP2000 ETHERNET DRIVER |
| 3057 | P: Lennert Buytenhek |
| 3058 | M: kernel@wantstofly.org |
| 3059 | L: netdev@vger.kernel.org |
| 3060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3061 | F: drivers/net/ixp2000/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 3062 | |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3063 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe) |
Jesse Brandeburg | add1878 | 2006-03-14 14:52:13 -0800 | [diff] [blame] | 3064 | P: Jeff Kirsher |
| 3065 | M: jeffrey.t.kirsher@intel.com |
Auke Kok | e0164af | 2008-05-07 13:42:33 -0700 | [diff] [blame] | 3066 | P: Jesse Brandeburg |
| 3067 | M: jesse.brandeburg@intel.com |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3068 | P: Bruce Allan |
| 3069 | M: bruce.w.allan@intel.com |
Jeff Kirsher | ae7b648 | 2008-06-11 15:15:53 -0700 | [diff] [blame] | 3070 | P: PJ Waskiewicz |
| 3071 | M: peter.p.waskiewicz.jr@intel.com |
Auke Kok | 2042465 | 2008-01-07 21:47:25 -0800 | [diff] [blame] | 3072 | P: John Ronciak |
| 3073 | M: john.ronciak@intel.com |
Auke Kok | dcd01fa | 2007-03-06 08:58:06 -0800 | [diff] [blame] | 3074 | L: e1000-devel@lists.sourceforge.net |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 3075 | W: http://e1000.sourceforge.net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3077 | F: drivers/net/e100.c |
| 3078 | F: drivers/net/e1000/ |
| 3079 | F: drivers/net/e1000e/ |
| 3080 | F: drivers/net/igb/ |
| 3081 | F: drivers/net/ixgb/ |
| 3082 | F: drivers/net/ixgbe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3083 | |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3084 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3085 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3086 | M: yi.zhu@intel.com |
| 3087 | P: James Ketrenos |
| 3088 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3089 | P: Reinette Chatre |
| 3090 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3091 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3092 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3093 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3094 | W: http://ipw2100.sourceforge.net |
| 3095 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3096 | F: Documentation/networking/README.ipw2100 |
| 3097 | F: drivers/net/wireless/ipw2x00/ipw2100.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3098 | |
| 3099 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3100 | P: Zhu Yi |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3101 | M: yi.zhu@intel.com |
| 3102 | P: James Ketrenos |
| 3103 | M: jketreno@linux.intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3104 | P: Reinette Chatre |
| 3105 | M: reinette.chatre@intel.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 3106 | L: linux-wireless@vger.kernel.org |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3107 | L: ipw2100-devel@lists.sourceforge.net |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3108 | W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3109 | W: http://ipw2200.sourceforge.net |
| 3110 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3111 | F: Documentation/networking/README.ipw2200 |
| 3112 | F: drivers/net/wireless/ipw2x00/ipw2200.* |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 3113 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3114 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 3115 | P: Inaky Perez-Gonzalez |
| 3116 | M: inaky.perez-gonzalez@intel.com |
| 3117 | M: linux-wimax@intel.com |
| 3118 | L: wimax@linuxwimax.org |
| 3119 | S: Supported |
| 3120 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3121 | F: Documentation/wimax/README.i2400m |
| 3122 | F: drivers/net/wimax/i2400m/ |
| 3123 | F: include/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 3124 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3125 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 3126 | P: Zhu Yi |
| 3127 | M: yi.zhu@intel.com |
Reinette Chatre | 1d43d31 | 2007-11-06 22:06:28 -0800 | [diff] [blame] | 3128 | P: Reinette Chatre |
| 3129 | M: reinette.chatre@intel.com |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3130 | L: linux-wireless@vger.kernel.org |
| 3131 | L: ipw3945-devel@lists.sourceforge.net |
| 3132 | W: http://intellinuxwireless.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3133 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3134 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3135 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 3136 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3137 | IOC3 ETHERNET DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | P: Ralf Baechle |
| 3139 | M: ralf@linux-mips.org |
| 3140 | L: linux-mips@linux-mips.org |
| 3141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3142 | F: drivers/net/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3144 | IOC3 SERIAL DRIVER |
| 3145 | P: Pat Gefre |
| 3146 | M: pfg@sgi.com |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 3147 | L: linux-mips@linux-mips.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3149 | F: drivers/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 3150 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3151 | IP MASQUERADING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3152 | P: Juanjo Ciarlante |
| 3153 | M: jjciarla@raiz.uncu.edu.ar |
| 3154 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3155 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3157 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
| 3158 | P: Francois Romieu |
| 3159 | M: romieu@fr.zoreil.com |
| 3160 | P: Sorbica Shieh |
| 3161 | M: sorbica@icplus.com.tw |
| 3162 | P: Jesse Huang |
| 3163 | M: jesse@icplus.com.tw |
| 3164 | L: netdev@vger.kernel.org |
| 3165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3166 | F: drivers/net/ipg.c |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 3167 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3168 | IPATH DRIVER |
Arthur Jones | 18b8c8f | 2008-02-29 10:13:37 -0800 | [diff] [blame] | 3169 | P: Ralph Campbell |
Arthur Jones | f42b647 | 2007-07-09 20:12:26 -0700 | [diff] [blame] | 3170 | M: infinipath@qlogic.com |
| 3171 | L: general@lists.openfabrics.org |
| 3172 | T: git git://git.qlogic.com/ipath-linux-2.6 |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3173 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3174 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 3175 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3176 | IPMI SUBSYSTEM |
| 3177 | P: Corey Minyard |
| 3178 | M: minyard@acm.org |
| 3179 | L: openipmi-developer@lists.sourceforge.net |
| 3180 | W: http://openipmi.sourceforge.net/ |
| 3181 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3182 | F: Documentation/IPMI.txt |
| 3183 | F: drivers/char/ipmi/ |
| 3184 | F: include/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 3185 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3186 | IPS SCSI RAID DRIVER |
| 3187 | P: Adaptec OEM Raid Solutions |
| 3188 | M: aacraid@adaptec.com |
| 3189 | L: linux-scsi@vger.kernel.org |
| 3190 | W: http://www.adaptec.com/ |
| 3191 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3192 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3193 | |
| 3194 | IPVS |
| 3195 | P: Wensong Zhang |
| 3196 | M: wensong@linux-vs.org |
| 3197 | P: Simon Horman |
| 3198 | M: horms@verge.net.au |
| 3199 | P: Julian Anastasov |
| 3200 | M: ja@ssi.bg |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3201 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3202 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3203 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3204 | F: Documentation/networking/ipvs-sysctl.txt |
| 3205 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3207 | IPWIRELESS DRIVER |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3208 | P: Jiri Kosina |
| 3209 | M: jkosina@suse.cz |
| 3210 | P: David Sterba |
| 3211 | M: dsterba@suse.cz |
| 3212 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3214 | F: drivers/char/pcmcia/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 3215 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3216 | IPX NETWORK LAYER |
| 3217 | P: Arnaldo Carvalho de Melo |
| 3218 | M: acme@ghostprotocols.net |
| 3219 | L: netdev@vger.kernel.org |
| 3220 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3221 | F: include/linux/ipx.h |
| 3222 | F: include/net/ipx.h |
| 3223 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | IRDA SUBSYSTEM |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3226 | P: Samuel Ortiz |
| 3227 | M: samuel@sortiz.org |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 3228 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3229 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 3230 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 3231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3232 | F: Documentation/networking/irda.txt |
| 3233 | F: drivers/net/irda/ |
| 3234 | F: include/net/irda/ |
| 3235 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3237 | ISAPNP |
| 3238 | P: Jaroslav Kysela |
| 3239 | M: perex@perex.cz |
| 3240 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3241 | F: Documentation/isapnp.txt |
| 3242 | F: drivers/pnp/isapnp/ |
| 3243 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3244 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3245 | ISCSI |
| 3246 | P: Mike Christie |
| 3247 | M: michaelc@cs.wisc.edu |
| 3248 | L: open-iscsi@googlegroups.com |
| 3249 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3251 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3252 | F: drivers/scsi/*iscsi* |
| 3253 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 3254 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3255 | ISDN SUBSYSTEM |
| 3256 | P: Karsten Keil |
Karsten Keil | fbfd8b5 | 2009-03-01 18:04:53 +0100 | [diff] [blame] | 3257 | M: isdn@linux-pingi.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3258 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3260 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3261 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3262 | F: Documentation/isdn/ |
| 3263 | F: drivers/isdn/ |
| 3264 | F: include/linux/isdn.h |
| 3265 | F: include/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | |
| 3267 | ISDN SUBSYSTEM (Eicon active card driver) |
| 3268 | P: Armin Schindler |
| 3269 | M: mac@melware.de |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 3270 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | W: http://www.melware.de |
| 3272 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3273 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3275 | IVTV VIDEO4LINUX DRIVER |
| 3276 | P: Hans Verkuil |
| 3277 | M: hverkuil@xs4all.nl |
| 3278 | L: ivtv-devel@ivtvdriver.org |
| 3279 | L: ivtv-users@ivtvdriver.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3280 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3281 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3282 | W: http://www.ivtvdriver.org |
| 3283 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3284 | F: Documentation/video4linux/*.ivtv |
| 3285 | F: drivers/media/video/ivtv/ |
| 3286 | F: include/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 3287 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3288 | JFS FILESYSTEM |
| 3289 | P: Dave Kleikamp |
| 3290 | M: shaggy@austin.ibm.com |
| 3291 | L: jfs-discussion@lists.sourceforge.net |
| 3292 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3293 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3294 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3295 | F: Documentation/filesystems/jfs.txt |
| 3296 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3297 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3298 | JME NETWORK DRIVER |
| 3299 | P: Guo-Fu Tseng |
| 3300 | M: cooldavid@cooldavid.org |
| 3301 | L: netdev@vger.kernel.org |
| 3302 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3303 | F: drivers/net/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 3304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 3306 | P: David Woodhouse |
| 3307 | M: dwmw2@infradead.org |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 3308 | L: linux-mtd@lists.infradead.org |
| 3309 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3311 | F: fs/jffs2/ |
| 3312 | F: include/linux/jffs2.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 3314 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3315 | P: Stephen Tweedie |
| 3316 | M: sct@redhat.com |
| 3317 | P: Andrew Morton |
| 3318 | M: akpm@linux-foundation.org |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3319 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3320 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3321 | F: fs/jbd*/ |
| 3322 | F: include/linux/ext*jbd*.h |
| 3323 | F: include/linux/jbd*.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 3324 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 3325 | K8TEMP HARDWARE MONITORING DRIVER |
| 3326 | P: Rudolf Marek |
| 3327 | M: r.marek@assembler.cz |
| 3328 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3330 | F: Documentation/hwmon/k8temp |
| 3331 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | |
| 3333 | KCONFIG |
| 3334 | P: Roman Zippel |
| 3335 | M: zippel@linux-m68k.org |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3336 | L: linux-kbuild@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3338 | F: Documentation/kbuild/kconfig-language.txt |
| 3339 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3341 | KDUMP |
| 3342 | P: Vivek Goyal |
Vivek Goyal | 4200b66c | 2007-12-01 12:16:30 -0800 | [diff] [blame] | 3343 | M: vgoyal@redhat.com |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3344 | P: Haren Myneni |
| 3345 | M: hbabu@us.ibm.com |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3346 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3347 | W: http://lse.sourceforge.net/kdump/ |
| 3348 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3349 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 3350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | KERNEL AUTOMOUNTER (AUTOFS) |
| 3352 | P: H. Peter Anvin |
| 3353 | M: hpa@zytor.com |
| 3354 | L: autofs@linux.kernel.org |
| 3355 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3356 | F: fs/autofs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | |
| 3358 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 3359 | P: Ian Kent |
| 3360 | M: raven@themaw.net |
| 3361 | L: autofs@linux.kernel.org |
| 3362 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3363 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3364 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3365 | KERNEL BUILD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | P: Sam Ravnborg |
| 3367 | M: sam@ravnborg.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3368 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git |
| 3369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 3370 | L: linux-kbuild@vger.kernel.org |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 3371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3372 | F: Documentation/kbuild/ |
| 3373 | F: Makefile |
| 3374 | F: scripts/Makefile.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3375 | |
| 3376 | KERNEL JANITORS |
| 3377 | P: Several |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 3378 | L: kernel-janitors@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3379 | W: http://www.kerneljanitors.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | S: Maintained |
| 3381 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 3382 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Neil Brown | a512cd5 | 2007-07-31 00:37:27 -0700 | [diff] [blame] | 3383 | P: J. Bruce Fields |
| 3384 | M: bfields@fieldses.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | P: Neil Brown |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3386 | M: neilb@suse.de |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 3387 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 3389 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3390 | F: fs/nfsd/ |
| 3391 | F: include/linux/nfsd/ |
| 3392 | F: fs/lockd/ |
| 3393 | F: fs/nfs_common/ |
| 3394 | F: net/sunrpc/ |
| 3395 | F: include/linux/lockd/ |
| 3396 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3397 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3398 | KERNEL VIRTUAL MACHINE (KVM) |
| 3399 | P: Avi Kivity |
Avi Kivity | 9ea1de4 | 2008-09-19 19:25:30 -0700 | [diff] [blame] | 3400 | M: avi@redhat.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3401 | L: kvm@vger.kernel.org |
| 3402 | W: http://kvm.qumranet.com |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3403 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3404 | F: Documentation/*/kvm.txt |
| 3405 | F: arch/*/kvm/ |
| 3406 | F: arch/*/include/asm/kvm* |
| 3407 | F: include/linux/kvm* |
| 3408 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 3409 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 3410 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 3411 | P: Joerg Roedel |
| 3412 | M: joerg.roedel@amd.com |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3413 | L: kvm@vger.kernel.org |
| 3414 | W: http://kvm.qumranet.com |
| 3415 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3416 | F: arch/x86/include/asm/svm.h |
| 3417 | F: arch/x86/kvm/kvm_svm.h |
| 3418 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3419 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3420 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 3421 | P: Hollis Blanchard |
| 3422 | M: hollisb@us.ibm.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3423 | L: kvm-ppc@vger.kernel.org |
| 3424 | W: http://kvm.qumranet.com |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3425 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3426 | F: arch/powerpc/include/asm/kvm* |
| 3427 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 3428 | |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3429 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3430 | P: Xiantao Zhang |
| 3431 | M: xiantao.zhang@intel.com |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 3432 | L: kvm-ia64@vger.kernel.org |
| 3433 | W: http://kvm.qumranet.com |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3434 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3435 | F: Documentation/ia64/kvm.txt |
| 3436 | F: arch/ia64/include/asm/kvm* |
| 3437 | F: arch/ia64/kvm/ |
Zhang Xiantao | 920ed9f | 2008-01-31 12:03:39 +0800 | [diff] [blame] | 3438 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3439 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 3440 | P: Carsten Otte |
| 3441 | M: cotte@de.ibm.com |
| 3442 | P: Christian Borntraeger |
| 3443 | M: borntraeger@de.ibm.com |
| 3444 | M: linux390@de.ibm.com |
| 3445 | L: linux-s390@vger.kernel.org |
| 3446 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 3447 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3448 | F: Documentation/s390/kvm.txt |
| 3449 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 3450 | F: arch/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 3451 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3452 | KEXEC |
| 3453 | P: Eric Biederman |
| 3454 | M: ebiederm@xmission.com |
Signed-off-by@vergenet.net":Simon | b7c698f | 2007-10-18 03:04:33 -0700 | [diff] [blame] | 3455 | W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 3456 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3457 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3458 | F: include/linux/kexec.h |
| 3459 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 3460 | |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3461 | KGDB |
| 3462 | P: Jason Wessel |
| 3463 | M: jason.wessel@windriver.com |
| 3464 | L: kgdb-bugreport@lists.sourceforge.net |
| 3465 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3466 | F: Documentation/DocBook/kgdb.tmpl |
| 3467 | F: drivers/misc/kgdbts.c |
| 3468 | F: drivers/serial/kgdboc.c |
| 3469 | F: include/linux/kgdb.h |
| 3470 | F: kernel/kgdb.c |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 3471 | |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 3472 | KMEMCHECK |
| 3473 | P: Vegard Nossum |
| 3474 | M: vegardno@ifi.uio.no |
| 3475 | P Pekka Enberg |
| 3476 | M: penberg@cs.helsinki.fi |
| 3477 | L: linux-kernel@vger.kernel.org |
| 3478 | S: Maintained |
| 3479 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 3480 | KMEMLEAK |
| 3481 | P: Catalin Marinas |
| 3482 | M: catalin.marinas@arm.com |
| 3483 | L: linux-kernel@vger.kernel.org |
| 3484 | S: Maintained |
| 3485 | F: Documentation/kmemleak.txt |
| 3486 | F: include/linux/kmemleak.h |
| 3487 | F: mm/kmemleak.c |
| 3488 | F: mm/kmemleak-test.c |
| 3489 | |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3490 | KMEMTRACE |
| 3491 | P: Eduard - Gabriel Munteanu |
| 3492 | M: eduard.munteanu@linux360.ro |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3493 | S: Maintained |
Joe Perches | dc8c7f8 | 2009-04-21 12:24:45 -0700 | [diff] [blame] | 3494 | F: Documentation/trace/kmemtrace.txt |
Joe Perches | 898f96f | 2009-06-18 16:49:25 -0700 | [diff] [blame] | 3495 | F: include/linux/kmemtrace.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3496 | F: kernel/trace/kmemtrace.c |
Eduard - Gabriel Munteanu | b9ce08c | 2008-08-10 20:14:03 +0300 | [diff] [blame] | 3497 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3498 | KPROBES |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3499 | P: Ananth N Mavinakayanahalli |
| 3500 | M: ananth@in.ibm.com |
| 3501 | P: Anil S Keshavamurthy |
| 3502 | M: anil.s.keshavamurthy@intel.com |
| 3503 | P: David S. Miller |
| 3504 | M: davem@davemloft.net |
Masami Hiramatsu | 6edef97 | 2008-03-26 15:53:19 -0400 | [diff] [blame] | 3505 | P: Masami Hiramatsu |
| 3506 | M: mhiramat@redhat.com |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3508 | F: Documentation/kprobes.txt |
| 3509 | F: include/linux/kprobes.h |
| 3510 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 3511 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3512 | KS0108 LCD CONTROLLER DRIVER |
| 3513 | P: Miguel Ojeda Sandonis |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3514 | M: miguel.ojeda.sandonis@gmail.com |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3515 | W: http://miguelojeda.es/auxdisplay.htm |
| 3516 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3517 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3518 | F: Documentation/auxdisplay/ks0108 |
| 3519 | F: drivers/auxdisplay/ks0108.c |
| 3520 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 3524 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3525 | F: Documentation/networking/lapb-module.txt |
| 3526 | F: include/*/lapb.h |
| 3527 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | |
| 3529 | LASI 53c700 driver for PARISC |
| 3530 | P: James E.J. Bottomley |
| 3531 | M: James.Bottomley@HansenPartnership.com |
| 3532 | L: linux-scsi@vger.kernel.org |
| 3533 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3534 | F: Documentation/scsi/53c700.txt |
| 3535 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3536 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3537 | LED SUBSYSTEM |
| 3538 | P: Richard Purdie |
| 3539 | M: rpurdie@rpsys.net |
| 3540 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3541 | F: drivers/leds/ |
| 3542 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 3543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | LEGO USB Tower driver |
| 3545 | P: Juergen Stuber |
| 3546 | M: starblue@users.sourceforge.net |
| 3547 | L: legousb-devel@lists.sourceforge.net |
| 3548 | W: http://legousb.sourceforge.net/ |
| 3549 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3550 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3552 | LGUEST |
| 3553 | P: Rusty Russell |
| 3554 | M: rusty@rustcorp.com.au |
| 3555 | L: lguest@ozlabs.org |
| 3556 | W: http://lguest.ozlabs.org/ |
| 3557 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3558 | F: Documentation/lguest/ |
| 3559 | F: arch/x86/lguest/ |
| 3560 | F: drivers/lguest/ |
| 3561 | F: include/linux/lguest*.h |
| 3562 | F: arch/x86/include/asm/lguest*.h |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 3563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3564 | LINUX FOR IBM pSERIES (RS/6000) |
| 3565 | P: Paul Mackerras |
| 3566 | M: paulus@au.ibm.com |
| 3567 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 3568 | S: Supported |
| 3569 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3570 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 3571 | P: Benjamin Herrenschmidt |
| 3572 | M: benh@kernel.crashing.org |
Paul Mackerras | 92cde4d | 2009-01-02 15:40:55 +1100 | [diff] [blame] | 3573 | P: Paul Mackerras |
| 3574 | M: paulus@samba.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | W: http://www.penguinppc.org/ |
| 3576 | L: linuxppc-dev@ozlabs.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | S: Supported |
| 3579 | |
| 3580 | LINUX FOR POWER MACINTOSH |
| 3581 | P: Benjamin Herrenschmidt |
| 3582 | M: benh@kernel.crashing.org |
| 3583 | W: http://www.penguinppc.org/ |
| 3584 | L: linuxppc-dev@ozlabs.org |
| 3585 | S: Maintained |
| 3586 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 3587 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Grant Likely | e1eea9f | 2007-10-09 14:45:26 -0600 | [diff] [blame] | 3588 | P: Grant Likely |
| 3589 | M: grant.likely@secretlab.ca |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3591 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3592 | S: Maintained |
| 3593 | |
| 3594 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Josh Boyer | 9a474ff | 2007-09-19 21:19:07 -0500 | [diff] [blame] | 3595 | P: Josh Boyer |
| 3596 | M: jwboyer@linux.vnet.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3597 | P: Matt Porter |
| 3598 | M: mporter@kernel.crashing.org |
| 3599 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3600 | L: linuxppc-dev@ozlabs.org |
Josh Boyer | 9ae2ccf | 2009-04-24 08:57:47 -0400 | [diff] [blame] | 3601 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | S: Maintained |
| 3603 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3604 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 3605 | P: Grant Likely |
| 3606 | M: grant.likely@secretlab.ca |
Grant Likely | f210d43 | 2007-10-03 23:24:52 -0600 | [diff] [blame] | 3607 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 3608 | L: linuxppc-dev@ozlabs.org |
Grant Likely | 9d37a90 | 2009-04-28 06:50:15 +0000 | [diff] [blame] | 3609 | T: git git://git.secretlab.ca/git/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3610 | S: Maintained |
| 3611 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3612 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Marcelo Tosatti | dba5baf | 2007-09-10 18:46:01 -0400 | [diff] [blame] | 3613 | P: Vitaly Bordug |
| 3614 | M: vitb@kernel.crashing.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3615 | P: Marcelo Tosatti |
Marcelo Tosatti | 2e367a8 | 2006-05-15 09:44:08 -0700 | [diff] [blame] | 3616 | M: marcelo@kvack.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3617 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3618 | L: linuxppc-dev@ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 3619 | S: Maintained |
| 3620 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3622 | P: Kumar Gala |
| 3623 | M: galak@kernel.crashing.org |
| 3624 | W: http://www.penguinppc.org/ |
Mark A. Greer | 88de3ca | 2007-10-02 10:24:08 +1000 | [diff] [blame] | 3625 | L: linuxppc-dev@ozlabs.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3626 | S: Maintained |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3627 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 3628 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 3629 | P: Olof Johansson |
| 3630 | M: olof@lixom.net |
| 3631 | W: http://www.pasemi.com/ |
| 3632 | L: linuxppc-dev@ozlabs.org |
| 3633 | S: Supported |
| 3634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3635 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 3636 | P: Chris Wright |
Chris Wright | 692a206 | 2006-03-11 03:27:19 -0800 | [diff] [blame] | 3637 | M: chrisw@sous-sol.org |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 3638 | L: linux-security-module@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3639 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3640 | S: Supported |
| 3641 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3642 | LLC (802.2) |
| 3643 | P: Arnaldo Carvalho de Melo |
| 3644 | M: acme@ghostprotocols.net |
| 3645 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3646 | F: include/linux/llc.h |
| 3647 | F: include/net/llc* |
| 3648 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3649 | |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3650 | LIS3LV02D ACCELEROMETER DRIVER |
| 3651 | P: Eric Piel |
| 3652 | M: eric.piel@tremplin-utc.net |
| 3653 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3654 | F: Documentation/hwmon/lis3lv02d |
| 3655 | F: drivers/hwmon/lis3lv02d.* |
Pavel Machek | 455fbdd | 2008-11-12 13:27:02 -0800 | [diff] [blame] | 3656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | LM83 HARDWARE MONITOR DRIVER |
| 3658 | P: Jean Delvare |
| 3659 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3660 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3661 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3662 | F: Documentation/hwmon/lm83 |
| 3663 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | |
| 3665 | LM90 HARDWARE MONITOR DRIVER |
| 3666 | P: Jean Delvare |
| 3667 | M: khali@linux-fr.org |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 3668 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3669 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3670 | F: Documentation/hwmon/lm90 |
| 3671 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3673 | LOCKDEP AND LOCKSTAT |
| 3674 | P: Peter Zijlstra |
| 3675 | M: peterz@infradead.org |
| 3676 | P: Ingo Molnar |
| 3677 | M: mingo@redhat.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3679 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3680 | F: Documentation/lockdep*.txt |
| 3681 | F: Documentation/lockstat.txt |
| 3682 | F: include/linux/lockdep.h |
| 3683 | F: kernel/lockdep* |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3684 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3685 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3686 | P: Richard Russon (FlatCap) |
| 3687 | M: ldm@flatcap.org |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 3688 | L: linux-ntfs-dev@lists.sourceforge.net |
| 3689 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3691 | F: Documentation/ldm.txt |
| 3692 | F: fs/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3694 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 3695 | P: Eric Moore |
Eric Moore | d8a82d7 | 2006-12-29 16:47:43 -0800 | [diff] [blame] | 3696 | M: Eric.Moore@lsi.com |
| 3697 | M: support@lsi.com |
Eric Moore | cec744f | 2007-09-14 19:08:08 -0600 | [diff] [blame] | 3698 | L: DL-MPTFusionLinux@lsi.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3699 | L: linux-scsi@vger.kernel.org |
| 3700 | W: http://www.lsilogic.com/support |
| 3701 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3702 | F: drivers/message/fusion/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 3703 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3704 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 3705 | P: Matthew Wilcox |
| 3706 | M: matthew@wil.cx |
| 3707 | L: linux-scsi@vger.kernel.org |
| 3708 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3709 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3710 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3711 | LTP (Linux Test Project) |
| 3712 | P: Subrata Modak |
| 3713 | M: subrata@linux.vnet.ibm.com |
| 3714 | P: Mike Frysinger |
| 3715 | M: vapier@gentoo.org |
| 3716 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
| 3717 | W: http://ltp.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 3719 | S: Maintained |
| 3720 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3721 | M32R ARCHITECTURE |
| 3722 | P: Hirokazu Takata |
| 3723 | M: takata@linux-m32r.org |
| 3724 | L: linux-m32r@ml.linux-m32r.org |
| 3725 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
| 3726 | W: http://www.linux-m32r.org/ |
| 3727 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3728 | F: arch/m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 3729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | M68K ARCHITECTURE |
| 3731 | P: Geert Uytterhoeven |
| 3732 | M: geert@linux-m68k.org |
| 3733 | P: Roman Zippel |
| 3734 | M: zippel@linux-m68k.org |
| 3735 | L: linux-m68k@lists.linux-m68k.org |
| 3736 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3739 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3740 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | |
| 3742 | M68K ON APPLE MACINTOSH |
| 3743 | P: Joshua Thompson |
| 3744 | M: funaho@jurai.org |
| 3745 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 3746 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 3748 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | |
| 3750 | M68K ON HP9000/300 |
| 3751 | P: Philip Blundell |
| 3752 | M: philb@gnu.org |
| 3753 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 3754 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3755 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3757 | MAC80211 |
Johannes Berg | 31c7cec | 2007-10-23 17:05:25 +0200 | [diff] [blame] | 3758 | P: Johannes Berg |
| 3759 | M: johannes@sipsolutions.net |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3760 | L: linux-wireless@vger.kernel.org |
| 3761 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3762 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3763 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3764 | F: Documentation/networking/mac80211-injection.txt |
| 3765 | F: include/net/mac80211.h |
| 3766 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 3767 | |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3768 | MAC80211 PID RATE CONTROL |
| 3769 | P: Stefano Brivio |
| 3770 | M: stefano.brivio@polimi.it |
| 3771 | P: Mattias Nissler |
| 3772 | M: mattias.nissler@gmx.de |
| 3773 | L: linux-wireless@vger.kernel.org |
| 3774 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3775 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3776 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3777 | F: net/mac80211/rc80211_pid* |
Stefano Brivio | 1036d86 | 2007-12-23 04:46:27 +0100 | [diff] [blame] | 3778 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3779 | MACVLAN DRIVER |
| 3780 | P: Patrick McHardy |
| 3781 | M: kaber@trash.net |
| 3782 | L: netdev@vger.kernel.org |
| 3783 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3784 | F: drivers/net/macvlan.c |
| 3785 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 3786 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3787 | 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] | 3788 | P: Michael Kerrisk |
Michael Kerrisk | 1d7f502 | 2007-10-16 23:30:31 -0700 | [diff] [blame] | 3789 | M: mtk.manpages@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3790 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 3791 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 3792 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 3793 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3794 | MARVELL LIBERTAS WIRELESS DRIVER |
| 3795 | P: Dan Williams |
| 3796 | M: dcbw@redhat.com |
| 3797 | L: libertas-dev@lists.infradead.org |
| 3798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3799 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 3800 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 3801 | MARVELL MV643XX ETHERNET DRIVER |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3802 | P: Lennert Buytenhek |
| 3803 | M: buytenh@marvell.com |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 3804 | L: netdev@vger.kernel.org |
Dale Farnsworth | 85ba9d9 | 2008-06-05 06:10:51 -0700 | [diff] [blame] | 3805 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3806 | F: drivers/net/mv643xx_eth.* |
| 3807 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3809 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 3810 | P: Nicolas Pitre |
| 3811 | M: nico@cam.org |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 3812 | S: Maintained |
| 3813 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3814 | MARVELL YUKON / SYSKONNECT DRIVER |
| 3815 | P: Mirko Lindner |
| 3816 | M: mlindner@syskonnect.de |
| 3817 | P: Ralph Roesler |
| 3818 | M: rroesler@syskonnect.de |
| 3819 | W: http://www.syskonnect.com |
| 3820 | S: Supported |
| 3821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3822 | MATROX FRAMEBUFFER DRIVER |
| 3823 | P: Petr Vandrovec |
| 3824 | M: vandrove@vc.cvut.cz |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 3825 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3826 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3827 | F: drivers/video/matrox/matroxfb_* |
| 3828 | F: include/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3829 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3830 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 3831 | P: Hans J. Koch |
| 3832 | M: hjk@linutronix.de |
| 3833 | L: lm-sensors@lm-sensors.org |
| 3834 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3835 | F: Documentation/hwmon/max6650 |
| 3836 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 3837 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 3838 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 3839 | P: Mauro Carvalho Chehab |
| 3840 | M: mchehab@infradead.org |
| 3841 | P: LinuxTV.org Project |
| 3842 | L: linux-media@vger.kernel.org |
| 3843 | W: http://linuxtv.org |
| 3844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
| 3845 | S: Maintained |
| 3846 | F: Documentation/dvb/ |
| 3847 | F: Documentation/video4linux/ |
| 3848 | F: drivers/media/ |
| 3849 | F: include/media/ |
| 3850 | F: include/linux/dvb/ |
| 3851 | F: include/linux/videodev*.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 3852 | |
| 3853 | MEGARAID SCSI DRIVERS |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3854 | P: Neela Syam Kolli |
Sumant Patro | bdd0d757 | 2007-05-10 07:22:35 -0700 | [diff] [blame] | 3855 | M: megaraidlinux@lsi.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3856 | L: linux-scsi@vger.kernel.org |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3857 | W: http://megaraid.lsilogic.com |
| 3858 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3859 | F: Documentation/scsi/megaraid.txt |
| 3860 | F: drivers/scsi/megaraid.* |
| 3861 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 3862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3863 | MEMORY MANAGEMENT |
| 3864 | L: linux-mm@kvack.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | W: http://www.linux-mm.org |
| 3866 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3867 | F: include/linux/mm.h |
| 3868 | F: mm/ |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 3869 | |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3870 | MEMORY RESOURCE CONTROLLER |
| 3871 | P: Balbir Singh |
| 3872 | M: balbir@linux.vnet.ibm.com |
| 3873 | P: Pavel Emelyanov |
| 3874 | M: xemul@openvz.org |
| 3875 | P: KAMEZAWA Hiroyuki |
| 3876 | M: kamezawa.hiroyu@jp.fujitsu.com |
| 3877 | L: linux-mm@kvack.org |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3878 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3879 | F: mm/memcontrol.c |
akpm@linux-foundation.org | 938a920 | 2008-03-04 14:28:29 -0800 | [diff] [blame] | 3880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3881 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 3882 | P: David Woodhouse |
| 3883 | M: dwmw2@infradead.org |
| 3884 | W: http://www.linux-mtd.infradead.org/ |
| 3885 | L: linux-mtd@lists.infradead.org |
Josh Boyer | 2c560ac | 2005-11-23 15:43:57 -0800 | [diff] [blame] | 3886 | T: git git://git.infradead.org/mtd-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3888 | F: drivers/mtd/ |
| 3889 | F: include/linux/mtd/ |
| 3890 | F: include/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3891 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 3892 | MICROBLAZE ARCHITECTURE |
| 3893 | P: Michal Simek |
| 3894 | M: monstr@monstr.eu |
| 3895 | L: microblaze-uclinux@itee.uq.edu.au |
| 3896 | W: http://www.monstr.eu/fdt/ |
| 3897 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 3898 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 3899 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3900 | |
| 3901 | MICROTEK X6 SCANNER |
| 3902 | P: Oliver Neukum |
| 3903 | M: oliver@neukum.name |
| 3904 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3905 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | |
| 3907 | MIPS |
| 3908 | P: Ralf Baechle |
| 3909 | M: ralf@linux-mips.org |
Ralf Baechle | d50f7ec | 2005-10-04 13:30:10 +0100 | [diff] [blame] | 3910 | W: http://www.linux-mips.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | L: linux-mips@linux-mips.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3912 | T: git git://git.linux-mips.org/pub/scm/linux.git |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 3913 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3914 | F: Documentation/mips/ |
| 3915 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3916 | |
| 3917 | MISCELLANEOUS MCA-SUPPORT |
| 3918 | P: James Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 3919 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3920 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3921 | F: Documentation/ia64/mca.txt |
| 3922 | F: Documentation/mca.txt |
| 3923 | F: drivers/mca/ |
| 3924 | F: include/linux/mca* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | |
| 3926 | MODULE SUPPORT |
| 3927 | P: Rusty Russell |
| 3928 | M: rusty@rustcorp.com.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3929 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3930 | F: include/linux/module.h |
| 3931 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | |
| 3933 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 3934 | P: Stelian Pop |
| 3935 | M: stelian@popies.net |
| 3936 | W: http://popies.net/meye/ |
| 3937 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3938 | F: Documentation/video4linux/meye.txt |
| 3939 | F: drivers/media/video/meye.* |
| 3940 | F: include/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3941 | |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3942 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 3943 | P: Pavel Pisa |
| 3944 | M: ppisa@pikron.com |
| 3945 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3946 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3947 | F: drivers/mmc/host/imxmmc.* |
Pavel Pisa | c58ff04 | 2007-05-16 01:10:41 +0200 | [diff] [blame] | 3948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3949 | MOUSE AND MISC DEVICES [GENERAL] |
| 3950 | P: Alessandro Rubini |
| 3951 | M: rubini@ipvvis.unipv.it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3953 | F: drivers/input/mouse/ |
| 3954 | F: include/linux/gpio_mouse.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3955 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 3956 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3957 | P: Jiri Slaby |
| 3958 | M: jirislaby@gmail.com |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3959 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3960 | F: Documentation/serial/moxa-smartio |
| 3961 | F: drivers/char/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3962 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3963 | MSI LAPTOP SUPPORT |
| 3964 | P: Lennart Poettering |
| 3965 | M: mzxreary@0pointer.de |
Joe Perches | 04bdfb9 | 2007-12-22 14:03:27 -0800 | [diff] [blame] | 3966 | W: https://tango.0pointer.de/mailman/listinfo/s270-linux |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3967 | W: http://0pointer.de/lennart/tchibo.html |
| 3968 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3969 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 3970 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3971 | MULTIFUNCTION DEVICES (MFD) |
| 3972 | P: Samuel Ortiz |
Samuel Ortiz | 895d9f0 | 2009-03-23 00:46:18 +0100 | [diff] [blame] | 3973 | M: sameo@linux.intel.com |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3975 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3976 | F: drivers/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 3977 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 3978 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3979 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3980 | M: pierre@ossman.eu |
Pierre Ossman | b9f5d80 | 2006-10-17 00:09:30 -0700 | [diff] [blame] | 3981 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3982 | F: drivers/mmc/ |
| 3983 | F: include/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 3984 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3985 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 3986 | P: David Brownell |
| 3987 | M: dbrownell@users.sourceforge.net |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 3988 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3989 | F: drivers/mmc/host/mmc_spi.c |
| 3990 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 3991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3992 | MULTISOUND SOUND DRIVER |
| 3993 | P: Andrew Veliath |
| 3994 | M: andrewtv@usa.net |
| 3995 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3996 | F: Documentation/sound/oss/MultiSound |
| 3997 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3998 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 3999 | MULTITECH MULTIPORT CARD (ISICOM) |
| 4000 | P: Jiri Slaby |
| 4001 | M: jirislaby@gmail.com |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 4002 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4003 | F: drivers/char/isicom.c |
| 4004 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 4005 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 4006 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4007 | P: Felipe Balbi |
| 4008 | M: felipe.balbi@nokia.com |
| 4009 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4010 | T: git git://gitorious.org/musb/mainline.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4011 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4012 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 4013 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 4014 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 4015 | P: Andrew Gallatin |
| 4016 | M: gallatin@myri.com |
| 4017 | P: Brice Goglin |
| 4018 | M: brice@myri.com |
| 4019 | L: netdev@vger.kernel.org |
| 4020 | W: http://www.myri.com/scs/download-Myri10GE.html |
| 4021 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4022 | F: drivers/net/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 4023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4024 | NATSEMI ETHERNET DRIVER (DP8381x) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4025 | P: Tim Hockin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | M: thockin@hockin.org |
| 4027 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4028 | F: drivers/net/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4029 | |
| 4030 | NCP FILESYSTEM |
| 4031 | P: Petr Vandrovec |
| 4032 | M: vandrove@vc.cvut.cz |
| 4033 | L: linware@sh.cvut.cz |
| 4034 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4035 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4036 | |
| 4037 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 4038 | P: James E.J. Bottomley |
| 4039 | M: James.Bottomley@HansenPartnership.com |
| 4040 | L: linux-scsi@vger.kernel.org |
| 4041 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4042 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 4044 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 4045 | P: Faisal Latif |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 4046 | M: faisal.latif@intel.com |
Chien Tung | 5f62560 | 2008-05-26 15:23:32 -0700 | [diff] [blame] | 4047 | P: Chien Tung |
Roland Dreier | 7b49d95 | 2008-10-16 15:39:14 -0700 | [diff] [blame] | 4048 | M: chien.tin.tung@intel.com |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 4049 | L: general@lists.openfabrics.org |
| 4050 | W: http://www.neteffect.com |
| 4051 | S: Supported |
| 4052 | F: drivers/infiniband/hw/nes/ |
| 4053 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4054 | NETEM NETWORK EMULATOR |
| 4055 | P: Stephen Hemminger |
Stephen Hemminger | 65ebe634 | 2007-01-23 11:38:57 -0800 | [diff] [blame] | 4056 | M: shemminger@linux-foundation.org |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 4057 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4058 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4059 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 4060 | |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4061 | NETERION (S2IO) 10GbE DRIVER (xframe/vxge) |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4062 | P: Ramkrishna Vepa |
| 4063 | M: ram.vepa@neterion.com |
| 4064 | P: Rastapur Santosh |
| 4065 | M: santosh.rastapur@neterion.com |
| 4066 | P: Sivakumar Subramani |
| 4067 | M: sivakumar.subramani@neterion.com |
| 4068 | P: Sreenivasa Honnur |
| 4069 | M: sreenivasa.honnur@neterion.com |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4070 | P: Anil Murthy |
| 4071 | M: anil.murthy@neterion.com |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4072 | L: netdev@vger.kernel.org |
Ramkrishna Vepa | b136d1c | 2009-04-01 18:14:25 +0000 | [diff] [blame] | 4073 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
| 4074 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4075 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4076 | F: Documentation/networking/s2io.txt |
| 4077 | F: drivers/net/s2io* |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 4078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4079 | NETFILTER/IPTABLES/IPCHAINS |
| 4080 | P: Rusty Russell |
| 4081 | P: Marc Boucher |
| 4082 | P: James Morris |
| 4083 | P: Harald Welte |
| 4084 | P: Jozsef Kadlecsik |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4085 | P: Patrick McHardy |
| 4086 | M: kaber@trash.net |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4087 | L: netfilter-devel@vger.kernel.org |
| 4088 | L: netfilter@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 4089 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4090 | W: http://www.netfilter.org/ |
| 4091 | W: http://www.iptables.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4093 | F: include/linux/netfilter* |
| 4094 | F: include/linux/netfilter/ |
| 4095 | F: include/net/netfilter/ |
| 4096 | F: net/*/netfilter.c |
| 4097 | F: net/*/netfilter/ |
| 4098 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4100 | NETLABEL |
| 4101 | P: Paul Moore |
| 4102 | M: paul.moore@hp.com |
| 4103 | W: http://netlabel.sf.net |
| 4104 | L: netdev@vger.kernel.org |
| 4105 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4106 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4107 | F: include/net/netlabel.h |
| 4108 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 4109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4110 | NETROM NETWORK LAYER |
| 4111 | P: Ralf Baechle |
| 4112 | M: ralf@linux-mips.org |
| 4113 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4114 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4115 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4116 | F: include/linux/netrom.h |
| 4117 | F: include/net/netrom.h |
| 4118 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4119 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 4120 | NETWORK BLOCK DEVICE (NBD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | P: Paul Clements |
| 4122 | M: Paul.Clements@steeleye.com |
| 4123 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4124 | F: Documentation/blockdev/nbd.txt |
| 4125 | F: drivers/block/nbd.c |
| 4126 | F: include/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4127 | |
| 4128 | NETWORKING [GENERAL] |
Ben Hutchings | 48f6e89 | 2009-04-09 05:47:41 +0000 | [diff] [blame] | 4129 | P: David S. Miller |
| 4130 | M: davem@davemloft.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4131 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 4132 | W: http://www.linuxfoundation.org/en/Net |
| 4133 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4135 | F: net/ |
| 4136 | F: include/net/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4137 | |
| 4138 | NETWORKING [IPv4/IPv6] |
| 4139 | P: David S. Miller |
| 4140 | M: davem@davemloft.net |
| 4141 | P: Alexey Kuznetsov |
| 4142 | M: kuznet@ms2.inr.ac.ru |
| 4143 | P: Pekka Savola (ipv6) |
| 4144 | M: pekkas@netcore.fi |
| 4145 | P: James Morris |
James Morris | 48de5be | 2005-08-08 10:29:08 -0400 | [diff] [blame] | 4146 | M: jmorris@namei.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4147 | P: Hideaki YOSHIFUJI |
| 4148 | M: yoshfuji@linux-ipv6.org |
| 4149 | P: Patrick McHardy |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 4150 | M: kaber@trash.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4151 | L: netdev@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4152 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4153 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4154 | F: net/ipv4/ |
| 4155 | F: net/ipv6/ |
| 4156 | F: include/net/ip* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4157 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 4158 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 4159 | P: Paul Moore |
| 4160 | M: paul.moore@hp.com |
| 4161 | L: netdev@vger.kernel.org |
| 4162 | S: Maintained |
| 4163 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4164 | NETWORKING [WIRELESS] |
| 4165 | P: John W. Linville |
| 4166 | M: linville@tuxdriver.com |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 4167 | L: linux-wireless@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4169 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4170 | F: net/wireless/ |
| 4171 | F: include/net/ieee80211* |
Joe Perches | cc8b4a2 | 2009-06-18 16:49:24 -0700 | [diff] [blame] | 4172 | F: include/linux/wireless.h |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 4173 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 4174 | NETWORKING DRIVERS |
| 4175 | L: netdev@vger.kernel.org |
| 4176 | W: http://www.linuxfoundation.org/en/Net |
| 4177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
| 4178 | S: Odd Fixes |
| 4179 | F: drivers/net/ |
| 4180 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4181 | NETXEN (1/10) GbE SUPPORT |
dhananjay@netxen.com | d230ce3 | 2007-12-26 10:23:53 -0800 | [diff] [blame] | 4182 | P: Dhananjay Phadke |
| 4183 | M: dhananjay@netxen.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4184 | L: netdev@vger.kernel.org |
| 4185 | W: http://www.netxen.com |
| 4186 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4187 | F: drivers/net/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 4188 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 4189 | NFS, SUNRPC, AND LOCKD CLIENTS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | P: Trond Myklebust |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 4191 | M: Trond.Myklebust@netapp.com |
| 4192 | L: linux-nfs@vger.kernel.org |
| 4193 | W: http://client.linux-nfs.org |
| 4194 | 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] | 4195 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4196 | F: fs/lockd/ |
| 4197 | F: fs/nfs/ |
| 4198 | F: fs/nfs_common/ |
| 4199 | F: net/sunrpc/ |
| 4200 | F: include/linux/lockd/ |
| 4201 | F: include/linux/nfs* |
| 4202 | F: include/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4203 | |
| 4204 | NI5010 NETWORK DRIVER |
Andreas Mohr | 5b552b1 | 2006-06-30 02:25:07 -0700 | [diff] [blame] | 4205 | P: Jan-Pascal van Best |
| 4206 | M: janpascal@vanbest.org |
| 4207 | P: Andreas Mohr |
| 4208 | M: andi@lisas.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4209 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4210 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4211 | F: drivers/net/ni5010.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4212 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4213 | NILFS2 FILESYSTEM |
| 4214 | P: KONISHI Ryusuke |
| 4215 | M: konishi.ryusuke@lab.ntt.co.jp |
| 4216 | L: users@nilfs.org |
| 4217 | W: http://www.nilfs.org/en/ |
| 4218 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4219 | F: Documentation/filesystems/nilfs2.txt |
| 4220 | F: fs/nilfs2/ |
| 4221 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 4222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 4224 | P: YOKOTA Hiroshi |
| 4225 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4226 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4227 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4228 | F: Documentation/scsi/NinjaSCSI.txt |
| 4229 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | |
| 4231 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 4232 | P: GOTO Masanori |
| 4233 | M: gotom@debian.or.jp |
| 4234 | P: YOKOTA Hiroshi |
| 4235 | M: yokota@netlab.is.tsukuba.ac.jp |
| 4236 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 4237 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4238 | F: Documentation/scsi/NinjaSCSI.txt |
| 4239 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | NTFS FILESYSTEM |
| 4242 | P: Anton Altaparmakov |
| 4243 | M: aia21@cantab.net |
| 4244 | L: linux-ntfs-dev@lists.sourceforge.net |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 4245 | W: http://www.linux-ntfs.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4246 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4247 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4248 | F: Documentation/filesystems/ntfs.txt |
| 4249 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4250 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4251 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4252 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4253 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4254 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4255 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4256 | F: drivers/video/riva/ |
| 4257 | F: drivers/video/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4258 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 4259 | OMAP SUPPORT |
| 4260 | P: Tony Lindgren <tony@atomide.com> |
| 4261 | M: tony@atomide.com |
| 4262 | L: linux-omap@vger.kernel.org |
| 4263 | W: http://www.muru.com/linux/omap/ |
| 4264 | W: http://linux.omap.com/ |
| 4265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git |
| 4266 | S: Maintained |
| 4267 | F: arch/arm/*omap* |
| 4268 | |
| 4269 | OMAP CLOCK FRAMEWORK SUPPORT |
| 4270 | P: Paul Walmsley |
| 4271 | M: paul@pwsan.com |
| 4272 | L: linux-omap@vger.kernel.org |
| 4273 | S: Maintained |
| 4274 | F: arch/arm/*omap*/*clock* |
| 4275 | |
| 4276 | OMAP POWER MANAGEMENT SUPPORT |
| 4277 | P: Kevin Hilman |
| 4278 | M: khilman@deeprootsystems.com |
| 4279 | L: linux-omap@vger.kernel.org |
| 4280 | S: Maintained |
| 4281 | F: arch/arm/*omap*/*pm* |
| 4282 | |
| 4283 | OMAP AUDIO SUPPORT |
| 4284 | P: Jarkko Nikula |
| 4285 | M: jhnikula@gmail.com |
| 4286 | L: alsa-devel@alsa-project.org (subscribers-only) |
| 4287 | L: linux-omap@vger.kernel.org |
| 4288 | S: Maintained |
| 4289 | F: sound/soc/omap/ |
| 4290 | |
| 4291 | OMAP FRAMEBUFFER SUPPORT |
| 4292 | P: Imre Deak |
| 4293 | M: imre.deak@nokia.com |
| 4294 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 4295 | L: linux-omap@vger.kernel.org |
| 4296 | S: Maintained |
| 4297 | F: drivers/video/omap/ |
| 4298 | |
| 4299 | OMAP MMC SUPPORT |
| 4300 | P: Jarkko Lavinen |
| 4301 | M: jarkko.lavinen@nokia.com |
| 4302 | L: linux-kernel@vger.kernel.org |
| 4303 | L: linux-omap@vger.kernel.org |
| 4304 | S: Maintained |
| 4305 | F: drivers/mmc/host/*omap* |
| 4306 | |
| 4307 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 4308 | P: Deepak Saxena |
| 4309 | M: dsaxena@plexity.net |
| 4310 | S: Maintained |
| 4311 | F: drivers/char/hw_random/omap-rng.c |
| 4312 | |
| 4313 | OMAP USB SUPPORT |
| 4314 | P: Felipe Balbi |
| 4315 | M: felipe.balbi@nokia.com |
| 4316 | P: David Brownell |
| 4317 | M: dbrownell@users.sourceforge.net |
| 4318 | L: linux-usb@vger.kernel.org |
| 4319 | L: linux-omap@vger.kernel.org |
| 4320 | S: Maintained |
| 4321 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4322 | OMFS FILESYSTEM |
| 4323 | P: Bob Copeland |
| 4324 | M: me@bobcopeland.com |
| 4325 | L: linux-karma-devel@lists.sourceforge.net |
| 4326 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4327 | F: Documentation/filesystems/omfs.txt |
| 4328 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 4329 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4330 | OMNIKEY CARDMAN 4000 DRIVER |
| 4331 | P: Harald Welte |
| 4332 | M: laforge@gnumonks.org |
| 4333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4334 | F: drivers/char/pcmcia/cm4000_cs.c |
| 4335 | F: include/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 4336 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4337 | OMNIKEY CARDMAN 4040 DRIVER |
| 4338 | P: Harald Welte |
| 4339 | M: laforge@gnumonks.org |
| 4340 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4341 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 4342 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4343 | OMNIVISION OV7670 SENSOR DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4344 | P: Jonathan Corbet |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4345 | M: corbet@lwn.net |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4346 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4348 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4349 | F: drivers/media/video/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 4350 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4351 | ONENAND FLASH DRIVER |
| 4352 | P: Kyungmin Park |
| 4353 | M: kyungmin.park@samsung.com |
| 4354 | L: linux-mtd@lists.infradead.org |
| 4355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4356 | F: drivers/mtd/onenand/ |
| 4357 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 4358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | ONSTREAM SCSI TAPE DRIVER |
| 4360 | P: Willem Riede |
| 4361 | M: osst@riede.org |
| 4362 | L: osst-users@lists.sourceforge.net |
| 4363 | L: linux-scsi@vger.kernel.org |
| 4364 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4365 | F: drivers/scsi/osst* |
| 4366 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4367 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4368 | OPENCORES I2C BUS DRIVER |
| 4369 | P: Peter Korsgaard |
| 4370 | M: jacmet@sunsite.dk |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4371 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4373 | F: Documentation/i2c/busses/i2c-ocores |
| 4374 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4376 | OPROFILE |
Robert Richter | d1a5d19 | 2008-07-12 13:47:57 -0700 | [diff] [blame] | 4377 | P: Robert Richter |
| 4378 | M: robert.richter@amd.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4379 | L: oprofile-list@lists.sf.net |
| 4380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4381 | F: arch/*/oprofile/ |
| 4382 | F: drivers/oprofile/ |
| 4383 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4384 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4385 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 4386 | P: Mark Fasheh |
| 4387 | M: mfasheh@suse.com |
| 4388 | P: Joel Becker |
| 4389 | M: joel.becker@oracle.com |
| 4390 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 4391 | W: http://oss.oracle.com/projects/ocfs2/ |
Joel Becker | 2191aeb | 2009-04-17 15:58:50 -0700 | [diff] [blame] | 4392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4393 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4394 | F: Documentation/filesystems/ocfs2.txt |
| 4395 | F: Documentation/filesystems/dlmfs.txt |
| 4396 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | ORINOCO DRIVER |
| 4399 | P: Pavel Roskin |
| 4400 | M: proski@gnu.org |
| 4401 | P: David Gibson |
| 4402 | M: hermes@gibson.dropbear.id.au |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4403 | L: linux-wireless@vger.kernel.org |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 4404 | L: orinoco-users@lists.sourceforge.net |
| 4405 | L: orinoco-devel@lists.sourceforge.net |
| 4406 | W: http://www.nongnu.org/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4407 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4408 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4410 | OSD LIBRARY |
| 4411 | P: Boaz Harrosh |
| 4412 | M: bharrosh@panasas.com |
| 4413 | P: Benny Halevy |
| 4414 | M: bhalevy@panasas.com |
| 4415 | L: osd-dev@open-osd.org |
| 4416 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4417 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 4418 | S: Maintained |
| 4419 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4420 | P54 WIRELESS DRIVER |
| 4421 | P: Michael Wu |
| 4422 | M: flamingice@sourmilk.net |
| 4423 | L: linux-wireless@vger.kernel.org |
| 4424 | W: http://prism54.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4427 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4428 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4429 | PA SEMI ETHERNET DRIVER |
| 4430 | P: Olof Johansson |
| 4431 | M: olof@lixom.net |
| 4432 | L: netdev@vger.kernel.org |
| 4433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4434 | F: drivers/net/pasemi_mac.* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 4435 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4436 | PA SEMI SMBUS DRIVER |
| 4437 | P: Olof Johansson |
| 4438 | M: olof@lixom.net |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4439 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4440 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4441 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 4442 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4443 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 4444 | P: Harald Welte |
| 4445 | M: laforge@gnumonks.org |
| 4446 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4447 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 4448 | |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4449 | PANASONIC MN10300/AM33 PORT |
| 4450 | P: David Howells |
| 4451 | M: dhowells@redhat.com |
| 4452 | P: Koichi Yasutake |
| 4453 | M: yasutake.koichi@jp.panasonic.com |
| 4454 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 4455 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 4456 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4457 | F: Documentation/mn10300/ |
| 4458 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 4459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4460 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4461 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 4462 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4463 | F: drivers/parport/ |
| 4464 | F: include/linux/parport*.h |
| 4465 | F: drivers/char/ppdev.c |
| 4466 | F: include/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4467 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4468 | PARAVIRT_OPS INTERFACE |
| 4469 | P: Jeremy Fitzhardinge |
| 4470 | M: jeremy@xensource.com |
| 4471 | P: Chris Wright |
| 4472 | M: chrisw@sous-sol.org |
Zachary Amsden | 8cbb5bc | 2009-02-20 11:27:46 -0800 | [diff] [blame] | 4473 | P: Alok Kataria |
| 4474 | M: akataria@vmware.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4475 | P: Rusty Russell |
| 4476 | M: rusty@rustcorp.com.au |
| 4477 | L: virtualization@lists.osdl.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4478 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4479 | F: Documentation/ia64/paravirt_ops.txt |
| 4480 | F: arch/*/kernel/paravirt* |
| 4481 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4483 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 4484 | P: Tim Waugh |
| 4485 | M: tim@cyberelk.net |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 4486 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4487 | W: http://www.torque.net/linux-pp.html |
| 4488 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4489 | F: Documentation/blockdev/paride.txt |
| 4490 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | |
| 4492 | PARISC ARCHITECTURE |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4493 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 4494 | M: kyle@mcmartin.ca |
Grant Grundler | 76346119 | 2008-12-01 00:21:35 -0700 | [diff] [blame] | 4495 | P: Helge Deller |
| 4496 | M: deller@gmx.de |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4497 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | W: http://www.parisc-linux.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4501 | F: arch/parisc/ |
| 4502 | F: drivers/parisc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4504 | PC87360 HARDWARE MONITORING DRIVER |
| 4505 | P: Jim Cromie |
| 4506 | M: jim.cromie@gmail.com |
| 4507 | L: lm-sensors@lm-sensors.org |
| 4508 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4509 | F: Documentation/hwmon/pc87360 |
| 4510 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4511 | |
| 4512 | PC8736x GPIO DRIVER |
| 4513 | P: Jim Cromie |
| 4514 | M: jim.cromie@gmail.com |
| 4515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4516 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 4517 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4518 | PCA9532 LED DRIVER |
| 4519 | P: Riku Voipio |
| 4520 | M: riku.voipio@iki.fi |
| 4521 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4522 | F: drivers/leds/leds-pca9532.c |
| 4523 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4524 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4525 | PCI ERROR RECOVERY |
| 4526 | P: Linas Vepstas |
| 4527 | M: linas@austin.ibm.com |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 4528 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4529 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4530 | F: Documentation/PCI/pci-error-recovery.txt |
| 4531 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 4532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4533 | PCI SUBSYSTEM |
Greg Kroah-Hartman | af40b48 | 2008-04-17 10:22:27 -0700 | [diff] [blame] | 4534 | P: Jesse Barnes |
| 4535 | M: jbarnes@virtuousgeek.org |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 4536 | L: linux-pci@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4539 | F: Documentation/PCI/ |
| 4540 | F: drivers/pci/ |
| 4541 | F: include/linux/pci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4542 | |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4543 | PCIE HOTPLUG DRIVER |
| 4544 | P: Kristen Carlson Accardi |
| 4545 | M: kristen.c.accardi@intel.com |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 4546 | L: linux-pci@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 4547 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4548 | F: drivers/pci/pcie/ |
Kristen Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 4549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4551 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 4552 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 4553 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 4555 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4556 | F: Documentation/pcmcia/ |
| 4557 | F: drivers/pcmcia/ |
| 4558 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4559 | |
| 4560 | PCNET32 NETWORK DRIVER |
pcnet32@verizon.net | 04ce094 | 2007-02-16 10:07:12 -0600 | [diff] [blame] | 4561 | P: Don Fry |
| 4562 | M: pcnet32@verizon.net |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 4563 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4564 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4565 | F: drivers/net/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4566 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4567 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 4568 | P: Balbir Singh |
| 4569 | M: balbir@linux.vnet.ibm.com |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4570 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4571 | F: include/linux/delayacct.h |
| 4572 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 4573 | |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 4574 | PERFORMANCE COUNTER SUBSYSTEM |
| 4575 | P: Peter Zijlstra |
| 4576 | M: a.p.zijlstra@chello.nl |
| 4577 | P: Paul Mackerras |
| 4578 | M: paulus@samba.org |
| 4579 | P: Ingo Molnar |
| 4580 | M: mingo@elte.hu |
| 4581 | L: linux-kernel@vger.kernel.org |
| 4582 | S: Supported |
| 4583 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4584 | PERSONALITY HANDLING |
| 4585 | P: Christoph Hellwig |
| 4586 | M: hch@infradead.org |
| 4587 | L: linux-abi-devel@lists.sourceforge.net |
| 4588 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4589 | F: include/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 4590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | PHRAM MTD DRIVER |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 4592 | P: Joern Engel |
| 4593 | M: joern@lazybastard.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4594 | L: linux-mtd@lists.infradead.org |
| 4595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4596 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4598 | PKTCDVD DRIVER |
| 4599 | P: Peter Osterlund |
| 4600 | M: petero2@telia.com |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4602 | F: drivers/block/pktcdvd.c |
| 4603 | F: include/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 4604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4605 | POSIX CLOCKS and TIMERS |
Ingo Molnar | aa781ae | 2007-07-19 01:48:32 -0700 | [diff] [blame] | 4606 | P: Thomas Gleixner |
| 4607 | M: tglx@linutronix.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4608 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4609 | F: fs/timerfd.c |
| 4610 | F: include/linux/timer* |
| 4611 | F: kernel/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4612 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4613 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 4614 | P: Anton Vorontsov |
| 4615 | M: cbou@mail.ru |
| 4616 | P: David Woodhouse |
| 4617 | M: dwmw2@infradead.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4618 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4619 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4620 | F: include/linux/power_supply.h |
| 4621 | F: drivers/power/power_supply* |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 4622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4623 | PNP SUPPORT |
| 4624 | P: Adam Belay |
Bjorn Helgaas | 2d59f6a | 2008-08-01 10:01:12 -0600 | [diff] [blame] | 4625 | M: abelay@mit.edu |
| 4626 | P: Bjorn Helgaas |
| 4627 | M: bjorn.helgaas@hp.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4629 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4630 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4631 | PNXxxxx I2C DRIVER |
| 4632 | P: Vitaly Wool |
| 4633 | M: vitalywool@gmail.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4634 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4635 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4636 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 4637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4638 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 4639 | P: Paul Mackerras |
| 4640 | M: paulus@samba.org |
| 4641 | L: linux-ppp@vger.kernel.org |
| 4642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4643 | F: drivers/net/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4644 | |
| 4645 | PPP OVER ATM (RFC 2364) |
| 4646 | P: Mitchell Blank Jr |
| 4647 | M: mitch@sfgoth.com |
| 4648 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4649 | F: net/atm/pppoatm.c |
| 4650 | F: include/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4651 | |
| 4652 | PPP OVER ETHERNET |
| 4653 | P: Michal Ostrowski |
Chris Wright | 5e70b7f3 | 2008-06-09 16:07:28 -0700 | [diff] [blame] | 4654 | M: mostrows@earthlink.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4655 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4656 | F: drivers/net/pppoe.c |
| 4657 | F: drivers/net/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4658 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4659 | PPP OVER L2TP |
| 4660 | P: James Chapman |
| 4661 | M: jchapman@katalix.com |
| 4662 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4663 | F: drivers/net/pppol2tp.c |
| 4664 | F: include/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 4665 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 4666 | PPS SUPPORT |
| 4667 | P: Rodolfo Giometti |
| 4668 | M: giometti@enneenne.com |
| 4669 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
| 4670 | L: linuxpps@ml.enneenne.com (subscribers-only) |
| 4671 | S: Maintained |
| 4672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | PREEMPTIBLE KERNEL |
| 4674 | P: Robert Love |
| 4675 | M: rml@tech9.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4676 | L: kpreempt-tech@lists.sourceforge.net |
| 4677 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 4678 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4679 | F: Documentation/preempt-locking.txt |
| 4680 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4681 | |
| 4682 | PRISM54 WIRELESS DRIVER |
Luis R. Rodriguez | e88b34b | 2007-06-01 00:46:57 -0700 | [diff] [blame] | 4683 | P: Luis R. Rodriguez |
| 4684 | M: mcgrof@gmail.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4685 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4686 | W: http://prism54.org |
| 4687 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4688 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4689 | |
| 4690 | PROMISE DC4030 CACHING DISK CONTROLLER DRIVER |
| 4691 | P: Peter Denison |
| 4692 | M: promise@pnd-pc.demon.co.uk |
| 4693 | W: http://www.pnd-pc.demon.co.uk/promise/ |
| 4694 | S: Maintained |
| 4695 | |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4696 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
| 4697 | P: Mikael Pettersson |
| 4698 | M: mikpe@it.uu.se |
| 4699 | L: linux-ide@vger.kernel.org |
| 4700 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4701 | F: drivers/ata/sata_promise.* |
Mikael Pettersson | b3277df | 2007-01-10 09:33:53 +0100 | [diff] [blame] | 4702 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4703 | PS3 NETWORK SUPPORT |
Masakazu Mokuno | ae3d246 | 2009-03-30 11:04:04 -0700 | [diff] [blame] | 4704 | P: Geoff Levand |
| 4705 | M: geoffrey.levand@am.sony.com |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4706 | L: netdev@vger.kernel.org |
| 4707 | L: cbe-oss-dev@ozlabs.org |
| 4708 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4709 | F: drivers/net/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 4710 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4711 | PS3 PLATFORM SUPPORT |
| 4712 | P: Geoff Levand |
| 4713 | M: geoffrey.levand@am.sony.com |
| 4714 | L: linuxppc-dev@ozlabs.org |
| 4715 | L: cbe-oss-dev@ozlabs.org |
| 4716 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4717 | F: arch/powerpc/boot/ps3* |
| 4718 | F: arch/powerpc/include/asm/lv1call.h |
| 4719 | F: arch/powerpc/include/asm/ps3*.h |
| 4720 | F: arch/powerpc/platforms/ps3/ |
| 4721 | F: drivers/*/ps3* |
| 4722 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4723 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4724 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 4725 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 4726 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 4727 | PS3VRAM DRIVER |
| 4728 | P: Jim Paris |
| 4729 | M: jim@jtan.com |
| 4730 | L: cbe-oss-dev@ozlabs.org |
| 4731 | S: Maintained |
| 4732 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4733 | PTRACE SUPPORT |
| 4734 | P: Roland McGrath |
| 4735 | M: roland@redhat.com |
| 4736 | P: Oleg Nesterov |
| 4737 | M: oleg@redhat.com |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 4738 | S: Maintained |
| 4739 | F: include/asm-generic/syscall.h |
| 4740 | F: include/linux/ptrace.h |
| 4741 | F: include/linux/regset.h |
| 4742 | F: include/linux/tracehook.h |
| 4743 | F: kernel/ptrace.c |
| 4744 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4745 | PVRUSB2 VIDEO4LINUX DRIVER |
| 4746 | P: Mike Isely |
| 4747 | M: isely@pobox.com |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 4748 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4749 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4750 | W: http://www.isely.net/pvrusb2/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4752 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4753 | F: Documentation/video4linux/README.pvrusb2 |
| 4754 | F: drivers/media/video/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 4755 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4756 | PXA2xx/PXA3xx SUPPORT |
| 4757 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4758 | M: eric.y.miao@gmail.com |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 4759 | P: Russell King |
| 4760 | M: linux@arm.linux.org.uk |
Alexey Dobriyan | 70f09f1 | 2005-06-23 00:09:47 -0700 | [diff] [blame] | 4761 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4763 | F: arch/arm/mach-pxa/ |
| 4764 | F: drivers/pcmcia/pxa2xx* |
| 4765 | F: drivers/spi/pxa2xx* |
| 4766 | F: drivers/usb/gadget/pxa2* |
| 4767 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 4768 | F: sound/arm/pxa* |
| 4769 | F: sound/soc/pxa |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4770 | |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4771 | PXA168 SUPPORT |
| 4772 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4773 | M: eric.y.miao@gmail.com |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4774 | P: Jason Chagas |
| 4775 | M: jason.chagas@marvell.com |
| 4776 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4778 | S: Maintained |
Eric Miao | a6bb4ba | 2009-02-19 21:13:21 +0800 | [diff] [blame] | 4779 | |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4780 | PXA910 SUPPORT |
| 4781 | P: Eric Miao |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4782 | M: eric.y.miao@gmail.com |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4783 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
Eric Miao | 7517b3f | 2009-06-13 00:10:17 +0800 | [diff] [blame] | 4785 | S: Maintained |
Eric Miao | 5fa82eb | 2009-03-20 12:52:24 +0800 | [diff] [blame] | 4786 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 4787 | PXA MMCI DRIVER |
| 4788 | S: Orphan |
| 4789 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 4790 | PXA RTC DRIVER |
| 4791 | P: Robert Jarzmik |
| 4792 | M: robert.jarzmik@free.fr |
| 4793 | L: rtc-linux@googlegroups.com |
| 4794 | S: Maintained |
| 4795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4796 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 4797 | P: Andrew Vasquez |
Andrew Vasquez | 95e6a85 | 2006-03-14 14:41:04 -0800 | [diff] [blame] | 4798 | M: linux-driver@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4799 | L: linux-scsi@vger.kernel.org |
| 4800 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4801 | F: Documentation/scsi/LICENSE.qla2xxx |
| 4802 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4803 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4804 | QLOGIC QLA3XXX NETWORK DRIVER |
| 4805 | P: Ron Mercer |
| 4806 | M: linux-driver@qlogic.com |
| 4807 | L: netdev@vger.kernel.org |
| 4808 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4809 | F: Documentation/networking/LICENSE.qla3xxx |
| 4810 | F: drivers/net/qla3xxx.* |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 4811 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4812 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 4813 | P: Ron Mercer |
| 4814 | M: linux-driver@qlogic.com |
| 4815 | M: ron.mercer@qlogic.com |
| 4816 | L: netdev@vger.kernel.org |
| 4817 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4818 | F: drivers/net/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 4819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | QNX4 FILESYSTEM |
| 4821 | P: Anders Larsen |
| 4822 | M: al@alarsen.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4823 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 4824 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4825 | F: fs/qnx4/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4826 | F: include/linux/qnx4_fs.h |
| 4827 | F: include/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4828 | |
| 4829 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4830 | P: Benjamin Herrenschmidt |
| 4831 | M: benh@kernel.crashing.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4832 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4833 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4834 | F: drivers/video/aty/radeon* |
| 4835 | F: include/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4836 | |
| 4837 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Benjamin Herrenschmidt | 187a278 | 2005-04-16 15:26:40 -0700 | [diff] [blame] | 4838 | P: Paul Mackerras |
| 4839 | M: paulus@samba.org |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4840 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4841 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4842 | F: drivers/video/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4843 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4844 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4845 | P: rt2x00 project |
| 4846 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 6d5eaaf | 2009-03-17 11:29:19 +0100 | [diff] [blame] | 4847 | L: users@rt2x00.serialmonkey.com |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4848 | W: http://rt2x00.serialmonkey.com/ |
| 4849 | S: Maintained |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4850 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 4851 | F: drivers/net/wireless/rt2x00/ |
| 4852 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4853 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 4854 | P: Nick Piggin |
| 4855 | M: npiggin@suse.de |
| 4856 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4857 | F: Documentation/blockdev/ramdisk.txt |
| 4858 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 4859 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4860 | RANDOM NUMBER DRIVER |
| 4861 | P: Matt Mackall |
| 4862 | M: mpm@selenic.com |
| 4863 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4864 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 4865 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4866 | RAPIDIO SUBSYSTEM |
| 4867 | P: Matt Porter |
| 4868 | M: mporter@kernel.crashing.org |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4869 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4870 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 4871 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4872 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 4873 | P: Corey Thomas |
| 4874 | M: coreythomas@charter.net |
| 4875 | L: linux-wireless@vger.kernel.org |
| 4876 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4877 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4878 | |
| 4879 | RCUTORTURE MODULE |
| 4880 | P: Josh Triplett |
| 4881 | M: josh@freedesktop.org |
Joe Perches | 852f9bb | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 4882 | P: Paul E. McKenney |
| 4883 | M: paulmck@linux.vnet.ibm.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4884 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4885 | F: Documentation/RCU/torture.txt |
| 4886 | F: kernel/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4887 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4888 | RDC R-321X SoC |
| 4889 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4890 | M: florian@openwrt.org |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 4891 | S: Maintained |
| 4892 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4893 | RDC R6040 FAST ETHERNET DRIVER |
| 4894 | P: Florian Fainelli |
Florian Fainelli | 1e50cc9 | 2009-04-30 15:08:10 -0700 | [diff] [blame] | 4895 | M: florian@openwrt.org |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4896 | L: netdev@vger.kernel.org |
| 4897 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4898 | F: drivers/net/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 4899 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4900 | RDS - RELIABLE DATAGRAM SOCKETS |
| 4901 | P: Andy Grover |
| 4902 | M: andy.grover@oracle.com |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 4903 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4904 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4905 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 4906 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4907 | READ-COPY UPDATE (RCU) |
| 4908 | P: Dipankar Sarma |
| 4909 | M: dipankar@in.ibm.com |
Joe Perches | 852f9bb | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 4910 | P: Paul E. McKenney |
| 4911 | M: paulmck@linux.vnet.ibm.com |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4912 | W: http://www.rdrop.com/users/paulmck/rclock/ |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4913 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4914 | F: Documentation/RCU/rcu.txt |
| 4915 | F: Documentation/RCU/rcuref.txt |
| 4916 | F: include/linux/rcupdate.h |
| 4917 | F: include/linux/srcu.h |
| 4918 | F: kernel/rcupdate.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 4919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4920 | REAL TIME CLOCK DRIVER |
| 4921 | P: Paul Gortmaker |
| 4922 | M: p_gortmaker@yahoo.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4923 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4924 | F: Documentation/rtc.txt |
| 4925 | F: drivers/rtc/ |
| 4926 | F: include/linux/rtc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4927 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4928 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 4929 | P: Alessandro Zummo |
| 4930 | M: a.zummo@towertech.it |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 4931 | L: rtc-linux@googlegroups.com |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4932 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4933 | F: Documentation/rtc.txt |
| 4934 | F: drivers/rtc/ |
| 4935 | F: include/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 4936 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4937 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 4938 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4939 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4940 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4941 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4942 | RFKILL |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 4943 | P: Johannes Berg |
| 4944 | M: johannes@sipsolutions.net |
| 4945 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4946 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 4947 | F Documentation/rfkill.txt |
| 4948 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 4949 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4950 | RISCOM8 DRIVER |
| 4951 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4952 | F: Documentation/serial/riscom8.txt |
| 4953 | F: drivers/char/riscom8* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | ROCKETPORT DRIVER |
| 4956 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4957 | W: http://www.comtrol.com |
| 4958 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4959 | F: Documentation/serial/rocket.txt |
| 4960 | F: drivers/char/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | |
| 4962 | ROSE NETWORK LAYER |
| 4963 | P: Ralf Baechle |
| 4964 | M: ralf@linux-mips.org |
| 4965 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 4966 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4967 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4968 | F: include/linux/rose.h |
| 4969 | F: include/net/rose.h |
| 4970 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4971 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4972 | RTL8180 WIRELESS DRIVER |
John W. Linville | 96dd603 | 2008-11-12 14:51:56 -0500 | [diff] [blame] | 4973 | P: John W. Linville |
| 4974 | M: linville@tuxdriver.com |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4975 | L: linux-wireless@vger.kernel.org |
| 4976 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4979 | F: drivers/net/wireless/rtl818* |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 4980 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4981 | RTL8187 WIRELESS DRIVER |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4982 | P: Herton Ronaldo Krzesinski |
| 4983 | M: herton@mandriva.com.br |
| 4984 | P: Hin-Tak Leung |
| 4985 | M: htl10@users.sourceforge.net |
| 4986 | P: Larry Finger |
| 4987 | M: Larry.Finger@lwfinger.net |
| 4988 | L: linux-wireless@vger.kernel.org |
| 4989 | W: http://linuxwireless.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4990 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4991 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4992 | F: drivers/net/wireless/rtl818x/rtl8187* |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 4993 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 4994 | S3 SAVAGE FRAMEBUFFER DRIVER |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4995 | P: Antonino Daplas |
Antonino A. Daplas | 0478e62 | 2007-02-28 20:12:37 -0800 | [diff] [blame] | 4996 | M: adaplas@gmail.com |
Geert Uytterhoeven | 8936b6d | 2008-02-23 15:23:30 -0800 | [diff] [blame] | 4997 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4998 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4999 | F: drivers/video/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 5000 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5001 | S390 |
| 5002 | P: Martin Schwidefsky |
| 5003 | M: schwidefsky@de.ibm.com |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 5004 | P: Heiko Carstens |
| 5005 | M: heiko.carstens@de.ibm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5006 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 5007 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5008 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5009 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5010 | F: arch/s390/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5011 | |
| 5012 | S390 NETWORK DRIVERS |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5013 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 5014 | M: ursula.braun@de.ibm.com |
Ursula Braun | b9192ad | 2007-10-22 16:16:15 +0200 | [diff] [blame] | 5015 | P: Frank Blaschka |
| 5016 | M: blaschka@linux.vnet.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5017 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 5018 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5019 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5020 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5021 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5022 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 5023 | S390 ZCRYPT DRIVER |
| 5024 | P: Felix Beck |
| 5025 | M: felix.beck@de.ibm.com |
| 5026 | P: Ralph Wuerthner |
| 5027 | M: ralph.wuerthner@de.ibm.com |
| 5028 | M: linux390@de.ibm.com |
| 5029 | L: linux-s390@vger.kernel.org |
| 5030 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5031 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 5032 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5033 | S390 ZFCP DRIVER |
Swen Schillig | 0033bb4 | 2007-12-18 11:16:14 +0100 | [diff] [blame] | 5034 | P: Christof Schmitt |
| 5035 | M: christof.schmitt@de.ibm.com |
| 5036 | P: Martin Peschke |
| 5037 | M: mp3@de.ibm.com |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5038 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 5039 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 5040 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5041 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5042 | F: Documentation/s390/zfcpdump.txt |
| 5043 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5044 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5045 | S390 IUCV NETWORK LAYER |
| 5046 | P: Ursula Braun |
Ursula Braun | 23fcc8d | 2008-07-18 15:24:58 +0200 | [diff] [blame] | 5047 | M: ursula.braun@de.ibm.com |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5048 | M: linux390@de.ibm.com |
| 5049 | L: linux-s390@vger.kernel.org |
| 5050 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5051 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5052 | F: drivers/s390/net/*iucv* |
| 5053 | F: include/net/iucv/ |
| 5054 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 5055 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5056 | S3C24XX SD/MMC Driver |
| 5057 | P: Ben Dooks |
| 5058 | M: ben-linux@fluff.org |
| 5059 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5060 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5061 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 5062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5063 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 5064 | P: Michael Hunold |
| 5065 | M: michael@mihu.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5066 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5067 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5068 | W: http://www.mihu.de/linux/saa7146 |
| 5069 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5070 | F: drivers/media/common/saa7146* |
| 5071 | F: drivers/media/video/*7146* |
| 5072 | F: include/media/*7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5074 | SC1200 WDT DRIVER |
| 5075 | P: Zwane Mwaikambo |
Zwane Mwaikambo | 3c7bf1e | 2005-08-18 11:24:07 -0700 | [diff] [blame] | 5076 | M: zwane@arm.linux.org.uk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5077 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5078 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5079 | |
| 5080 | SCHEDULER |
| 5081 | P: Ingo Molnar |
| 5082 | M: mingo@elte.hu |
Ingo Molnar | 01fad98 | 2009-04-08 17:27:59 +0200 | [diff] [blame] | 5083 | P: Peter Zijlstra |
| 5084 | M: peterz@infradead.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5085 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5086 | F: kernel/sched* |
| 5087 | F: include/linux/sched.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5088 | |
| 5089 | SCSI CDROM DRIVER |
| 5090 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5091 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5092 | L: linux-scsi@vger.kernel.org |
| 5093 | W: http://www.kernel.dk |
| 5094 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5095 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5096 | |
| 5097 | SCSI SG DRIVER |
| 5098 | P: Doug Gilbert |
| 5099 | M: dgilbert@interlog.com |
| 5100 | L: linux-scsi@vger.kernel.org |
| 5101 | W: http://www.torque.net/sg |
| 5102 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5103 | F: drivers/scsi/sg.c |
| 5104 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | |
| 5106 | SCSI SUBSYSTEM |
| 5107 | P: James E.J. Bottomley |
James Bottomley | c4e1608 | 2007-11-03 08:40:30 -0500 | [diff] [blame] | 5108 | M: James.Bottomley@HansenPartnership.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5109 | L: linux-scsi@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
| 5111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git |
| 5112 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5113 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5114 | F: drivers/scsi/ |
| 5115 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5116 | |
| 5117 | SCSI TAPE DRIVER |
John Anthony Kazos Jr | dd4ef01 | 2007-05-09 08:06:37 +0200 | [diff] [blame] | 5118 | P: Kai Mäkisara |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5119 | M: Kai.Makisara@kolumbus.fi |
| 5120 | L: linux-scsi@vger.kernel.org |
| 5121 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5122 | F: Documentation/scsi/st.txt |
| 5123 | F: drivers/scsi/st* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5124 | |
| 5125 | SCTP PROTOCOL |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5126 | P: Vlad Yasevich |
| 5127 | M: vladislav.yasevich@hp.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5128 | P: Sridhar Samudrala |
| 5129 | M: sri@us.ibm.com |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 5130 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 5131 | W: http://lksctp.sourceforge.net |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5132 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5133 | F: Documentation/networking/sctp.txt |
| 5134 | F: include/linux/sctp.h |
| 5135 | F: include/net/sctp/ |
| 5136 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5137 | |
| 5138 | SCx200 CPU SUPPORT |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5139 | P: Jim Cromie |
| 5140 | M: jim.cromie@gmail.com |
| 5141 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5142 | F: Documentation/i2c/busses/scx200_acb |
| 5143 | F: arch/x86/kernel/scx200_32.c |
| 5144 | F: drivers/watchdog/scx200_wdt.c |
| 5145 | F: drivers/i2c/busses/scx200* |
| 5146 | F: drivers/mtd/maps/scx200_docflash.c |
| 5147 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5148 | |
| 5149 | SCx200 GPIO DRIVER |
| 5150 | P: Jim Cromie |
| 5151 | M: jim.cromie@gmail.com |
| 5152 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5153 | F: drivers/char/scx200_gpio.c |
| 5154 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 5155 | |
| 5156 | SCx200 HRT CLOCKSOURCE DRIVER |
| 5157 | P: Jim Cromie |
| 5158 | M: jim.cromie@gmail.com |
| 5159 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5160 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5161 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5162 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 5163 | P: Sascha Sommer |
| 5164 | M: saschasommer@freenet.de |
| 5165 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 5166 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5167 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 5168 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 5169 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5170 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 5171 | M: pierre@ossman.eu |
Pierre Ossman | b8e2006 | 2009-03-14 21:17:32 +0100 | [diff] [blame] | 5172 | L: sdhci-devel@lists.ossman.eu |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5173 | S: Maintained |
| 5174 | |
Anton Vorontsov | 3085e9c | 2009-03-17 00:14:05 +0300 | [diff] [blame] | 5175 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
| 5176 | P: Anton Vorontsov |
| 5177 | M: avorontsov@ru.mvista.com |
| 5178 | L: linuxppc-dev@ozlabs.org |
| 5179 | L: sdhci-devel@lists.ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5180 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5181 | F: drivers/mmc/host/sdhci.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5182 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 5183 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
| 5184 | P: Ben Dooks |
| 5185 | M: ben-linux@fluff.org |
| 5186 | L: sdhci-devel@lists.ossman.eu |
| 5187 | S: Maintained |
| 5188 | F: drivers/mmc/host/sdhci-s3c.c |
| 5189 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5190 | SECURITY SUBSYSTEM |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5191 | P: James Morris |
| 5192 | M: jmorris@namei.org |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5193 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5194 | T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
James Morris | c8334dc | 2009-01-07 20:06:18 +1100 | [diff] [blame] | 5195 | W: http://security.wiki.kernel.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5196 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5197 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 5198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5199 | SECURITY CONTACT |
| 5200 | P: Security Officers |
| 5201 | M: security@kernel.org |
| 5202 | S: Supported |
| 5203 | |
| 5204 | SELINUX SECURITY MODULE |
| 5205 | P: Stephen Smalley |
| 5206 | M: sds@tycho.nsa.gov |
| 5207 | P: James Morris |
| 5208 | M: jmorris@namei.org |
Stephen Smalley | 588a315 | 2007-02-23 09:20:09 -0500 | [diff] [blame] | 5209 | P: Eric Paris |
| 5210 | M: eparis@parisplace.org |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5211 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 5212 | W: http://selinuxproject.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5214 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5215 | F: include/linux/selinux* |
| 5216 | F: security/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5217 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5218 | SENSABLE PHANTOM |
| 5219 | P: Jiri Slaby |
| 5220 | M: jirislaby@gmail.com |
| 5221 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5222 | F: drivers/misc/phantom.c |
| 5223 | F: include/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 5224 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5225 | SERIAL ATA (SATA) SUBSYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5226 | P: Jeff Garzik |
| 5227 | M: jgarzik@pobox.com |
| 5228 | L: linux-ide@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5230 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5231 | F: drivers/ata/ |
| 5232 | F: include/linux/ata.h |
| 5233 | F: include/linux/libata.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5234 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5235 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
| 5236 | P: Sathya Perla |
| 5237 | M: sathyap@serverengines.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5238 | P: Subbu Seetharaman |
| 5239 | M: subbus@serverengines.com |
| 5240 | L: netdev@vger.kernel.org |
| 5241 | W: http://www.serverengines.com |
| 5242 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5243 | F: drivers/net/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 5244 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5245 | SFC NETWORK DRIVER |
| 5246 | P: Steve Hodgson |
| 5247 | P: Ben Hutchings |
| 5248 | P: Robert Stonehouse |
| 5249 | M: linux-net-drivers@solarflare.com |
| 5250 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5251 | F: drivers/net/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5252 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5253 | SGI GRU DRIVER |
| 5254 | P: Jack Steiner |
| 5255 | M: steiner@sgi.com |
| 5256 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5257 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5258 | |
| 5259 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 5260 | P: Pat Gefre |
| 5261 | M: pfg@sgi.com |
| 5262 | L: linux-ia64@vger.kernel.org |
| 5263 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5264 | F: Documentation/ia64/serial.txt |
| 5265 | F: drivers/serial/ioc?_serial.c |
| 5266 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5268 | SGI VISUAL WORKSTATION 320 AND 540 |
| 5269 | P: Andrey Panin |
| 5270 | M: pazke@donpac.ru |
| 5271 | L: linux-visws-devel@lists.sf.net |
| 5272 | W: http://linux-visws.sf.net |
| 5273 | S: Maintained for 2.6. |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5274 | F: Documentation/sgi-visws.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5275 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5276 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | a06bba4 | 2009-04-13 14:40:17 -0700 | [diff] [blame] | 5277 | P: Robin Holt |
| 5278 | M: holt@sgi.com |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5279 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5280 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 5281 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5282 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
| 5283 | P: Marc Singer |
| 5284 | M: elf@buici.com |
| 5285 | W: http://projects.buici.com/arm |
| 5286 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 5287 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5288 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
| 5289 | F: arch/arm/mach-lh7a40x/ |
| 5290 | F: drivers/serial/serial_lh7a40x.c |
| 5291 | F: drivers/usb/gadget/lh7a40* |
| 5292 | F: drivers/usb/host/ohci-lh7a40* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5293 | |
| 5294 | SHPC HOTPLUG DRIVER |
| 5295 | P: Kristen Carlson Accardi |
| 5296 | M: kristen.c.accardi@intel.com |
| 5297 | L: linux-pci@vger.kernel.org |
| 5298 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5299 | F: drivers/pci/hotplug/shpchp* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5301 | SIMTEC EB110ATX (Chalice CATS) |
| 5302 | P: Ben Dooks |
| 5303 | P: Vincent Sanders |
| 5304 | M: support@simtec.co.uk |
| 5305 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 5306 | S: Supported |
| 5307 | |
| 5308 | SIMTEC EB2410ITX (BAST) |
| 5309 | P: Ben Dooks |
| 5310 | P: Vincent Sanders |
| 5311 | M: support@simtec.co.uk |
| 5312 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 5313 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5314 | F: arch/arm/mach-s3c2410/ |
| 5315 | F: drivers/*/*s3c2410* |
| 5316 | F: drivers/*/*/*s3c2410* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5317 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5318 | SIS 190 ETHERNET DRIVER |
| 5319 | P: Francois Romieu |
| 5320 | M: romieu@fr.zoreil.com |
| 5321 | L: netdev@vger.kernel.org |
| 5322 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5323 | F: drivers/net/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 5324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5325 | SIS 900/7016 FAST ETHERNET DRIVER |
| 5326 | P: Daniele Venzano |
| 5327 | M: venza@brownhat.org |
| 5328 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5329 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5331 | F: drivers/net/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5333 | SIS 96X I2C/SMBUS DRIVER |
| 5334 | P: Mark M. Hoffman |
| 5335 | M: mhoffman@lightlink.com |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5336 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5338 | F: Documentation/i2c/busses/i2c-sis96x |
| 5339 | F: drivers/i2c/busses/i2c-sis96x.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5341 | SIS FRAMEBUFFER DRIVER |
| 5342 | P: Thomas Winischhofer |
| 5343 | M: thomas@winischhofer.net |
| 5344 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 5345 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5346 | F: Documentation/fb/sisfb.txt |
| 5347 | F: drivers/video/sis/ |
| 5348 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5349 | |
| 5350 | SIS USB2VGA DRIVER |
| 5351 | P: Thomas Winischhofer |
| 5352 | M: thomas@winischhofer.net |
| 5353 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 5354 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5355 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5356 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5357 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
| 5358 | P: Stephen Hemminger |
| 5359 | M: shemminger@linux-foundation.org |
| 5360 | L: netdev@vger.kernel.org |
| 5361 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5362 | F: drivers/net/skge.* |
| 5363 | F: drivers/net/sky2.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5364 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5365 | SLAB ALLOCATOR |
| 5366 | P: Christoph Lameter |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 5367 | M: cl@linux-foundation.org |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5368 | P: Pekka Enberg |
| 5369 | M: penberg@cs.helsinki.fi |
Pekka Enberg | c76d118 | 2008-02-11 23:52:47 +0200 | [diff] [blame] | 5370 | P: Matt Mackall |
| 5371 | M: mpm@selenic.com |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5372 | L: linux-mm@kvack.org |
| 5373 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5374 | F: include/linux/sl?b*.h |
| 5375 | F: mm/sl?b.c |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 5376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5377 | SMC91x ETHERNET DRIVER |
| 5378 | P: Nicolas Pitre |
| 5379 | M: nico@cam.org |
| 5380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5381 | F: drivers/net/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5382 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5383 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 5384 | P: Mark M. Hoffman |
| 5385 | M: mhoffman@lightlink.com |
| 5386 | L: lm-sensors@lm-sensors.org |
| 5387 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5388 | F: Documentation/hwmon/smsc47b397 |
| 5389 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 5390 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5391 | SMSC911x ETHERNET DRIVER |
| 5392 | P: Steve Glendinning |
| 5393 | M: steve.glendinning@smsc.com |
| 5394 | L: netdev@vger.kernel.org |
| 5395 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5396 | F: include/linux/smsc911x.h |
| 5397 | F: drivers/net/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 5398 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5399 | SMSC9420 PCI ETHERNET DRIVER |
| 5400 | P: Steve Glendinning |
| 5401 | M: steve.glendinning@smsc.com |
| 5402 | L: netdev@vger.kernel.org |
| 5403 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5404 | F: drivers/net/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 5405 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5406 | SMX UIO Interface |
| 5407 | P: Ben Nizette |
| 5408 | M: bn@niasdigital.com |
| 5409 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5410 | F: drivers/uio/uio_smx.c |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 5411 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5412 | SN-IA64 (Itanium) SUB-PLATFORM |
| 5413 | P: Jes Sorensen |
| 5414 | M: jes@sgi.com |
| 5415 | L: linux-altix@sgi.com |
| 5416 | L: linux-ia64@vger.kernel.org |
| 5417 | W: http://www.sgi.com/altix |
| 5418 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5419 | F: arch/ia64/sn/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5420 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5421 | SOC-CAMERA V4L2 SUBSYSTEM |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5422 | P: Guennadi Liakhovetski |
| 5423 | M: g.liakhovetski@gmx.de |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5424 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5427 | F: include/media/v4l2* |
| 5428 | F: drivers/media/video/v4l2* |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 5429 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5430 | SOEKRIS NET48XX LED SUPPORT |
| 5431 | P: Chris Boot |
| 5432 | M: bootc@bootc.net |
| 5433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5434 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5437 | P: Neil Brown |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5438 | M: neilb@suse.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5439 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 5440 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5441 | F: drivers/md/ |
| 5442 | F: include/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5444 | SONIC NETWORK DRIVER |
| 5445 | P: Thomas Bogendoerfer |
| 5446 | M: tsbogend@alpha.franken.de |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5447 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5449 | F: drivers/net/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5450 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5451 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 5452 | P: Michael Buesch |
| 5453 | M: mb@bu3sch.de |
| 5454 | L: netdev@vger.kernel.org |
| 5455 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5456 | F: drivers/ssb/ |
| 5457 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 5458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5459 | SONY VAIO CONTROL DEVICE DRIVER |
Mattia Dongili | 0d477fa | 2007-02-08 20:16:40 +0100 | [diff] [blame] | 5460 | P: Mattia Dongili |
| 5461 | M: malattia@linux.it |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 5462 | L: linux-acpi@vger.kernel.org |
| 5463 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5464 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5465 | F: Documentation/laptops/sony-laptop.txt |
| 5466 | F: drivers/char/sonypi.c |
| 5467 | F: drivers/platform/x86/sony-laptop.c |
| 5468 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5470 | SONY MEMORYSTICK CARD SUPPORT |
| 5471 | P: Alex Dubov |
| 5472 | M: oakad@yahoo.com |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5473 | W: http://tifmxx.berlios.de/ |
| 5474 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5475 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 5476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5477 | SOUND |
| 5478 | P: Jaroslav Kysela |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5479 | M: perex@perex.cz |
Takashi Iwai | 281712f | 2008-08-19 13:10:04 +0200 | [diff] [blame] | 5480 | P: Takashi Iwai |
| 5481 | M: tiwai@suse.de |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 5482 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5483 | W: http://www.alsa-project.org/ |
| 5484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git |
| 5485 | T: git git://git.alsa-project.org/alsa-kernel.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5486 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 5487 | F: Documentation/sound/ |
| 5488 | F: include/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5489 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5490 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 5491 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5492 | P: Liam Girdwood |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5493 | M: lrg@slimlogic.co.uk |
Mark Brown | 2cad0ad | 2008-01-10 14:33:07 +0100 | [diff] [blame] | 5494 | P: Mark Brown |
| 5495 | M: broonie@opensource.wolfsonmicro.com |
Mark Brown | bb74a6e | 2009-05-13 17:23:54 +0100 | [diff] [blame] | 5496 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 5497 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 5498 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5499 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5500 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 5501 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 5502 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 5503 | SPARC + UltraSPARC (sparc/sparc64) |
| 5504 | P: David S. Miller |
| 5505 | M: davem@davemloft.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5506 | L: sparclinux@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5507 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
| 5508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5509 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5510 | F: arch/sparc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5511 | |
| 5512 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
| 5513 | P: Roger Wolff |
| 5514 | M: R.E.Wolff@BitWizard.nl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5515 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5516 | F: Documentation/serial/specialix.txt |
| 5517 | F: drivers/char/specialix* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5518 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5519 | SPI SUBSYSTEM |
| 5520 | P: David Brownell |
| 5521 | M: dbrownell@users.sourceforge.net |
| 5522 | L: spi-devel-general@lists.sourceforge.net |
| 5523 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5524 | F: Documentation/spi/ |
| 5525 | F: drivers/spi/ |
| 5526 | F: include/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5527 | |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5528 | SPIDERNET NETWORK DRIVER for CELL |
Jens Osterkamp | cb8da8a | 2008-01-11 13:44:35 +0100 | [diff] [blame] | 5529 | P: Ishizaki Kou |
| 5530 | M: kou.ishizaki@toshiba.co.jp |
| 5531 | P: Jens Osterkamp |
| 5532 | M: jens@de.ibm.com |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5533 | L: netdev@vger.kernel.org |
| 5534 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5535 | F: Documentation/networking/spider_net.txt |
| 5536 | F: drivers/net/spider_net* |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 5537 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5538 | SPU FILE SYSTEM |
| 5539 | P: Jeremy Kerr |
| 5540 | M: jk@ozlabs.org |
| 5541 | L: linuxppc-dev@ozlabs.org |
| 5542 | L: cbe-oss-dev@ozlabs.org |
| 5543 | W: http://www.ibm.com/developerworks/power/cell/ |
| 5544 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5545 | F: Documentation/filesystems/spufs.txt |
| 5546 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5547 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5548 | SQUASHFS FILE SYSTEM |
| 5549 | P: Phillip Lougher |
| 5550 | M: phillip@lougher.demon.co.uk |
| 5551 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 5552 | W: http://squashfs.org.uk |
| 5553 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5554 | F: Documentation/filesystems/squashfs.txt |
| 5555 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 5556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | SRM (Alpha) environment access |
| 5558 | P: Jan-Benedict Glaw |
| 5559 | M: jbglaw@lug-owl.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5560 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5561 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5562 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5563 | STABLE BRANCH |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5564 | P: Greg Kroah-Hartman |
| 5565 | M: greg@kroah.com |
| 5566 | P: Chris Wright |
| 5567 | M: chrisw@sous-sol.org |
| 5568 | L: stable@kernel.org |
| 5569 | S: Maintained |
| 5570 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5571 | STAGING SUBSYSTEM |
| 5572 | P: Greg Kroah-Hartman |
| 5573 | M: gregkh@suse.de |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5574 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Greg Kroah-Hartman | 1c6ccf6 | 2009-06-05 11:23:47 -0700 | [diff] [blame] | 5575 | L: devel@driverdev.osuosl.org |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5576 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5577 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 5578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5579 | STARFIRE/DURALAN NETWORK DRIVER |
| 5580 | P: Ion Badulescu |
Joe Perches | b4f9018 | 2009-06-30 11:41:32 -0700 | [diff] [blame] | 5581 | M: ionut@badula.org |
| 5582 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5583 | F: drivers/net/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5584 | |
| 5585 | STARMODE RADIO IP (STRIP) PROTOCOL DRIVER |
| 5586 | W: http://mosquitonet.Stanford.EDU/strip.html |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5587 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5588 | F: drivers/net/wireless/strip.c |
| 5589 | F: include/linux/if_strip.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5590 | |
| 5591 | STRADIS MPEG-2 DECODER DRIVER |
| 5592 | P: Nathan Laredo |
| 5593 | M: laredo@gnu.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5594 | W: http://www.stradis.com/ |
| 5595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5596 | F: drivers/media/video/stradis.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5597 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5598 | SUN3/3X |
| 5599 | P: Sam Creasey |
| 5600 | M: sammy@sammy.net |
| 5601 | W: http://sammy.net/sun3/ |
| 5602 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5603 | F: arch/m68k/kernel/*sun3* |
| 5604 | F: arch/m68k/sun3*/ |
| 5605 | F: arch/m68k/include/asm/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5606 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5607 | SUPERH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5608 | P: Paul Mundt |
| 5609 | M: lethal@linux-sh.org |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 5610 | L: linux-sh@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5611 | W: http://www.linux-sh.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git |
Paul Mundt | 5c806b2 | 2008-07-29 06:34:01 +0900 | [diff] [blame] | 5613 | S: Supported |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5614 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5615 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 5616 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5617 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5618 | SUSPEND TO RAM |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5619 | P: Len Brown |
| 5620 | M: len.brown@intel.com |
| 5621 | P: Pavel Machek |
Pavel Machek | ef35ce2 | 2009-02-18 14:48:16 -0800 | [diff] [blame] | 5622 | M: pavel@ucw.cz |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5623 | P: Rafael J. Wysocki |
| 5624 | M: rjw@sisk.pl |
| 5625 | L: linux-pm@lists.linux-foundation.org |
| 5626 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5627 | F: Documentation/power/ |
| 5628 | F: arch/x86/kernel/acpi/ |
| 5629 | F: drivers/base/power/ |
| 5630 | F: kernel/power/ |
| 5631 | F: include/linux/suspend.h |
| 5632 | F: include/linux/freezer.h |
| 5633 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5634 | |
| 5635 | SVGA HANDLING |
| 5636 | P: Martin Mares |
| 5637 | M: mj@ucw.cz |
| 5638 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 5639 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5640 | F: Documentation/svga.txt |
| 5641 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5642 | |
| 5643 | SYSV FILESYSTEM |
| 5644 | P: Christoph Hellwig |
| 5645 | M: hch@infradead.org |
| 5646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5647 | F: Documentation/filesystems/sysv-fs.txt |
| 5648 | F: fs/sysv/ |
| 5649 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5650 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5651 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | abc5f23 | 2008-07-04 09:59:42 -0700 | [diff] [blame] | 5652 | P: Balbir Singh |
| 5653 | M: balbir@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5654 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5655 | F: Documentation/accounting/taskstats* |
| 5656 | F: include/linux/taskstats* |
| 5657 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5658 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5659 | TC CLASSIFIER |
| 5660 | P: Jamal Hadi Salim |
| 5661 | M: hadi@cyberus.ca |
| 5662 | L: netdev@vger.kernel.org |
| 5663 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5664 | F: include/linux/pkt_cls.h |
| 5665 | F: include/net/pkt_cls.h |
| 5666 | F: net/sched/ |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 5667 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5668 | TCP LOW PRIORITY MODULE |
| 5669 | P: Wong Hoi Sing, Edison |
| 5670 | M: hswong3i@gmail.com |
| 5671 | P: Hung Hing Lun, Mike |
| 5672 | M: hlhung3i@gmail.com |
| 5673 | W: http://tcp-lp-mod.sourceforge.net/ |
| 5674 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5675 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 5676 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5677 | TEHUTI ETHERNET DRIVER |
| 5678 | P: Alexander Indenbaum |
| 5679 | M: baum@tehutinetworks.net |
| 5680 | P: Andy Gospodarek |
| 5681 | M: andy@greyhouse.net |
| 5682 | L: netdev@vger.kernel.org |
| 5683 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5684 | F: drivers/net/tehuti* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 5685 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5686 | Telecom Clock Driver for MCPL0010 |
| 5687 | P: Mark Gross |
| 5688 | M: mark.gross@intel.com |
| 5689 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5690 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5691 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5692 | TENSILICA XTENSA PORT (xtensa) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5693 | P: Chris Zankel |
| 5694 | M: chris@zankel.net |
| 5695 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5696 | F: arch/xtensa/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5697 | |
| 5698 | THINKPAD ACPI EXTRAS DRIVER |
| 5699 | P: Henrique de Moraes Holschuh |
| 5700 | M: ibm-acpi@hmh.eng.br |
| 5701 | L: ibm-acpi-devel@lists.sourceforge.net |
| 5702 | W: http://ibm-acpi.sourceforge.net |
| 5703 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5704 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5705 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5706 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5707 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5708 | TI FLASH MEDIA INTERFACE DRIVER |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5709 | P: Alex Dubov |
| 5710 | M: oakad@yahoo.com |
| 5711 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5712 | F: drivers/misc/tifm* |
| 5713 | F: drivers/mmc/host/tifm_sd.c |
| 5714 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 5715 | |
Peter Ujfalusi | dd5e8e6 | 2009-06-25 13:26:09 +0300 | [diff] [blame] | 5716 | TI TWL4030 SERIES SOC CODEC DRIVER |
| 5717 | P: Peter Ujfalusi |
| 5718 | M: peter.ujfalusi@nokia.com |
| 5719 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 5720 | S: Maintained |
| 5721 | F: sound/soc/codecs/twl4030* |
| 5722 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5723 | TIPC NETWORK LAYER |
| 5724 | P: Per Liden |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5725 | M: per.liden@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5726 | P: Jon Maloy |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5727 | M: jon.maloy@ericsson.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5728 | P: Allan Stephens |
Per Liden | 7c2b2aa | 2006-01-14 12:42:21 +0100 | [diff] [blame] | 5729 | M: allan.stephens@windriver.com |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5730 | L: tipc-discussion@lists.sourceforge.net |
| 5731 | W: http://tipc.sourceforge.net/ |
| 5732 | W: http://tipc.cslab.ericsson.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5733 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5734 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5735 | F: include/linux/tipc*.h |
| 5736 | F: include/net/tipc/ |
| 5737 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 5738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5739 | TLAN NETWORK DRIVER |
| 5740 | P: Samuel Chessman |
| 5741 | M: chessman@tux.org |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 5742 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5743 | W: http://sourceforge.net/projects/tlan/ |
| 5744 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5745 | F: Documentation/networking/tlan.txt |
| 5746 | F: drivers/net/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5747 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5748 | TOMOYO SECURITY MODULE |
| 5749 | P: Kentaro Takeda |
| 5750 | M: takedakn@nttdata.co.jp |
| 5751 | P: Tetsuo Handa |
| 5752 | M: penguin-kernel@I-love.SAKURA.ne.jp |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5753 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English) |
| 5754 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 5755 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 5756 | W: http://tomoyo.sourceforge.jp/ |
| 5757 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/ |
| 5758 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5759 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 5760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5761 | TOSHIBA ACPI EXTRAS DRIVER |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 5762 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5763 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5764 | |
| 5765 | TOSHIBA SMM DRIVER |
| 5766 | P: Jonathan Buzzard |
| 5767 | M: jonathan@buzzard.org.uk |
| 5768 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 5769 | W: http://www.buzzard.org.uk/toshiba/ |
| 5770 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5771 | F: drivers/char/toshiba.c |
| 5772 | F: include/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5773 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5774 | TMIO MMC DRIVER |
| 5775 | P: Ian Molton |
| 5776 | M: ian@mnementh.co.uk |
| 5777 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5778 | F: drivers/mmc/host/tmio_mmc.* |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 5779 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 5780 | TMPFS (SHMEM FILESYSTEM) |
| 5781 | P: Hugh Dickins |
| 5782 | M: hugh.dickins@tiscali.co.uk |
| 5783 | L: linux-mm@kvack.org |
| 5784 | S: Maintained |
| 5785 | F: include/linux/shmem_fs.h |
| 5786 | F: mm/shmem.c |
| 5787 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5788 | TPM DEVICE DRIVER |
Rajiv Andrade | 141c024 | 2008-07-21 14:21:37 -0700 | [diff] [blame] | 5789 | P: Debora Velarde |
| 5790 | M: debora@linux.vnet.ibm.com |
| 5791 | P: Rajiv Andrade |
| 5792 | M: srajiv@linux.vnet.ibm.com |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5793 | W: http://tpmdd.sourceforge.net |
| 5794 | P: Marcel Selhorst |
Marcel Selhorst | 7dcce13 | 2009-02-11 13:04:27 -0800 | [diff] [blame] | 5795 | M: m.selhorst@sirrix.com |
| 5796 | W: http://www.sirrix.com |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 5797 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5799 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5801 | TRIVIAL PATCHES |
Jiri Kosina | 2b6a2f5 | 2008-11-14 11:55:03 +0100 | [diff] [blame] | 5802 | P: Jiri Kosina |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5803 | M: trivial@kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5804 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5805 | S: Maintained |
Joe Perches | 130b76c | 2009-06-16 15:34:10 -0700 | [diff] [blame] | 5806 | F: drivers/char/tty_* |
| 5807 | F: drivers/serial/serial_core.c |
| 5808 | F: include/linux/serial_core.h |
| 5809 | F: include/linux/serial.h |
| 5810 | F: include/linux/tty.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5811 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5812 | TTY LAYER |
| 5813 | P: Alan Cox |
| 5814 | M: alan@lxorguk.ukuu.org.uk |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5815 | S: Maintained |
Alan Cox | e960bf7 | 2009-06-11 14:04:57 +0100 | [diff] [blame] | 5816 | T: stgit http://zeniv.linux.org.uk/~alan/ttydev/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 5817 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5818 | TULIP NETWORK DRIVERS |
| 5819 | P: Grant Grundler |
| 5820 | M: grundler@parisc-linux.org |
| 5821 | P: Kyle McMartin |
Kyle McMartin | 42a5a8a | 2008-06-06 17:16:17 -0400 | [diff] [blame] | 5822 | M: kyle@mcmartin.ca |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 5823 | L: netdev@vger.kernel.org |
| 5824 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5825 | F: drivers/net/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5826 | |
| 5827 | TUN/TAP driver |
| 5828 | P: Maxim Krasnyansky |
Dave Jones | 66777b7 | 2006-03-25 03:07:53 -0800 | [diff] [blame] | 5829 | M: maxk@qualcomm.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5830 | L: vtun@office.satix.net |
| 5831 | W: http://vtun.sourceforge.net/tun |
| 5832 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5833 | F: Documentation/networking/tuntap.txt |
| 5834 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5835 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5836 | TURBOCHANNEL SUBSYSTEM |
| 5837 | P: Maciej W. Rozycki |
| 5838 | M: macro@linux-mips.org |
| 5839 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5840 | F: drivers/tc/ |
| 5841 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 5842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5843 | U14-34F SCSI DRIVER |
| 5844 | P: Dario Ballabio |
| 5845 | M: ballabio_dario@emc.com |
| 5846 | L: linux-scsi@vger.kernel.org |
| 5847 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5848 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5849 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5850 | UBI FILE SYSTEM (UBIFS) |
| 5851 | P: Artem Bityutskiy |
| 5852 | M: dedekind@infradead.org |
| 5853 | P: Adrian Hunter |
| 5854 | M: ext-adrian.hunter@nokia.com |
| 5855 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5856 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5857 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 5858 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5859 | F: Documentation/filesystems/ubifs.txt |
| 5860 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5861 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5862 | UCLINUX (AND M68KNOMMU) |
| 5863 | P: Greg Ungerer |
| 5864 | M: gerg@uclinux.org |
| 5865 | W: http://www.uclinux.org/ |
| 5866 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 5867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5868 | F: arch/m68knommu/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5869 | |
Robert P. J. Day | 14fadca | 2009-04-21 12:24:47 -0700 | [diff] [blame] | 5870 | UCLINUX FOR RENESAS H8/300 (H8300) |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5871 | P: Yoshinori Sato |
| 5872 | M: ysato@users.sourceforge.jp |
| 5873 | W: http://uclinux-h8.sourceforge.jp/ |
| 5874 | S: Supported |
| 5875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5876 | UDF FILESYSTEM |
Jan Kara | 800fdfb | 2008-02-08 04:20:51 -0800 | [diff] [blame] | 5877 | P: Jan Kara |
| 5878 | M: jack@suse.cz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5879 | W: http://linux-udf.sourceforge.net |
| 5880 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5881 | F: Documentation/filesystems/udf.txt |
| 5882 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5883 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5884 | UFS FILESYSTEM |
| 5885 | P: Evgeniy Dushistov |
| 5886 | M: dushistov@mail.ru |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5887 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5888 | F: Documentation/filesystems/ufs.txt |
| 5889 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5890 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5891 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 5892 | P: David Vrabel |
| 5893 | M: david.vrabel@csr.com |
| 5894 | L: linux-usb@vger.kernel.org |
| 5895 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5896 | F: drivers/uwb/* |
| 5897 | F: include/linux/uwb.h |
| 5898 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 5899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5900 | UNIFORM CDROM DRIVER |
| 5901 | P: Jens Axboe |
Jens Axboe | 0fe2347 | 2006-09-04 15:41:16 +0200 | [diff] [blame] | 5902 | M: axboe@kernel.dk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5903 | W: http://www.kernel.dk |
| 5904 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5905 | F: Documentation/cdrom/ |
| 5906 | F: drivers/cdrom/cdrom.c |
| 5907 | F: include/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5908 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5909 | UNSORTED BLOCK IMAGES (UBI) |
| 5910 | P: Artem Bityutskiy |
| 5911 | M: dedekind@infradead.org |
| 5912 | W: http://www.linux-mtd.infradead.org/ |
| 5913 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 5914 | T: git git://git.infradead.org/ubi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5915 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5916 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5917 | F: include/linux/mtd/ubi.h |
| 5918 | F: include/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5920 | USB ACM DRIVER |
| 5921 | P: Oliver Neukum |
| 5922 | M: oliver@neukum.name |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5923 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5924 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5925 | F: Documentation/usb/acm.txt |
| 5926 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5927 | |
| 5928 | USB BLOCK DRIVER (UB ub) |
| 5929 | P: Pete Zaitcev |
| 5930 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5931 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5932 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5933 | F: drivers/block/ub.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5935 | USB CDC ETHERNET DRIVER |
| 5936 | P: Greg Kroah-Hartman |
| 5937 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5938 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5939 | S: Maintained |
| 5940 | W: http://www.kroah.com/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5941 | F: drivers/net/usb/cdc_*.c |
| 5942 | F: include/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5943 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5944 | USB CYPRESS C67X00 DRIVER |
| 5945 | P: Peter Korsgaard |
| 5946 | M: jacmet@sunsite.dk |
| 5947 | L: linux-usb@vger.kernel.org |
| 5948 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5949 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 5950 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5951 | USB DAVICOM DM9601 DRIVER |
| 5952 | P: Peter Korsgaard |
| 5953 | M: jacmet@sunsite.dk |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 5954 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5955 | W: http://www.linux-usb.org/usbnet |
| 5956 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5957 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 5958 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5959 | USB DIAMOND RIO500 DRIVER |
| 5960 | P: Cesar Miquel |
| 5961 | M: miquel@df.uba.ar |
| 5962 | L: rio500-users@lists.sourceforge.net |
| 5963 | W: http://rio500.sourceforge.net |
| 5964 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5965 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 5966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5967 | USB EHCI DRIVER |
| 5968 | P: David Brownell |
| 5969 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5970 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 5971 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5972 | F: Documentation/usb/ehci.txt |
| 5973 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5974 | |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5975 | USB ET61X[12]51 DRIVER |
| 5976 | P: Luca Risolia |
| 5977 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5978 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5979 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5980 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5981 | W: http://www.linux-projects.org |
| 5982 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5983 | F: drivers/media/video/et61x251/ |
Luca Risolia | 7ce08c9 | 2006-01-11 02:06:59 +0000 | [diff] [blame] | 5984 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5985 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 5986 | P: David Brownell |
| 5987 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5988 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5989 | W: http://www.linux-usb.org/gadget |
| 5990 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5991 | F: drivers/usb/gadget/ |
| 5992 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 5993 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 5994 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | 641266fd | 2007-01-15 09:56:21 +0100 | [diff] [blame] | 5995 | P: Jiri Kosina |
| 5996 | M: jkosina@suse.cz |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 5997 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5999 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6000 | F: Documentation/usb/hiddev.txt |
| 6001 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6002 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 6003 | USB ISP116X DRIVER |
| 6004 | P: Olav Kongas |
| 6005 | M: ok@artecdesign.ee |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6006 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 6007 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6008 | F: drivers/usb/host/isp116x* |
| 6009 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 6010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6011 | USB KAWASAKI LSI DRIVER |
| 6012 | P: Oliver Neukum |
| 6013 | M: oliver@neukum.name |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6014 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6015 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6016 | F: drivers/usb/serial/kl5kusb105.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6017 | |
| 6018 | USB MASS STORAGE DRIVER |
| 6019 | P: Matthew Dharm |
| 6020 | M: mdharm-usb@one-eyed-alien.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6021 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 6022 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6023 | S: Maintained |
| 6024 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6025 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6026 | |
| 6027 | USB OHCI DRIVER |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 6028 | P: David Brownell |
| 6029 | M: dbrownell@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6030 | L: linux-usb@vger.kernel.org |
David Brownell | 23d8c90 | 2006-12-05 03:10:08 -0800 | [diff] [blame] | 6031 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6032 | F: Documentation/usb/ohci.txt |
| 6033 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6034 | |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 6035 | USB OPTION-CARD DRIVER |
| 6036 | P: Matthias Urlichs |
| 6037 | M: smurf@smurf.noris.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6038 | L: linux-usb@vger.kernel.org |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 6039 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6040 | F: drivers/usb/serial/option.c |
Matthias Urlichs | ba460e4 | 2005-07-14 00:33:47 -0700 | [diff] [blame] | 6041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6042 | USB OV511 DRIVER |
| 6043 | P: Mark McClelland |
| 6044 | M: mmcclell@bigfoot.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6045 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6046 | W: http://alpha.dyndns.org/ov511/ |
| 6047 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6048 | F: drivers/media/video/ov511.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6049 | |
| 6050 | USB PEGASUS DRIVER |
| 6051 | P: Petko Manolov |
| 6052 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6053 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6054 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6055 | W: http://pegasus2.sourceforge.net/ |
| 6056 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6057 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6058 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6059 | USB PRINTER DRIVER (usblp) |
| 6060 | P: Pete Zaitcev |
| 6061 | M: zaitcev@redhat.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6062 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 6063 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6064 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | |
| 6066 | USB RTL8150 DRIVER |
| 6067 | P: Petko Manolov |
| 6068 | M: petkan@users.sourceforge.net |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6069 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6070 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6071 | W: http://pegasus2.sourceforge.net/ |
| 6072 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6073 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6074 | |
| 6075 | USB SE401 DRIVER |
| 6076 | P: Jeroen Vreeken |
| 6077 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6078 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6079 | W: http://www.chello.nl/~j.vreeken/se401/ |
| 6080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6081 | F: Documentation/video4linux/se401.txt |
| 6082 | F: drivers/media/video/se401.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6083 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6084 | USB SERIAL BELKIN F5U103 DRIVER |
| 6085 | P: William Greathouse |
| 6086 | M: wgreathouse@smva.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6087 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6088 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6089 | F: drivers/usb/serial/belkin_sa.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6090 | |
| 6091 | USB SERIAL CYPRESS M8 DRIVER |
| 6092 | P: Lonnie Mendez |
| 6093 | M: dignome@gmail.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6094 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6095 | S: Maintained |
| 6096 | W: http://geocities.com/i0xox0i |
| 6097 | W: http://firstlight.net/cvs |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6098 | F: drivers/usb/serial/cypress_m8.* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 6099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6100 | USB SERIAL CYBERJACK DRIVER |
| 6101 | P: Matthias Bruestle and Harald Welte |
| 6102 | M: support@reiner-sct.com |
| 6103 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
| 6104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6105 | F: drivers/usb/serial/cyberjack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6106 | |
| 6107 | USB SERIAL DIGI ACCELEPORT DRIVER |
| 6108 | P: Peter Berger and Al Borchers |
| 6109 | M: pberger@brimson.com |
| 6110 | M: alborchers@steinerpoint.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6111 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6112 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6113 | F: drivers/usb/serial/digi_acceleport.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6114 | |
| 6115 | USB SERIAL DRIVER |
| 6116 | P: Greg Kroah-Hartman |
| 6117 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6118 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6119 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6120 | F: Documentation/usb/usb-serial.txt |
| 6121 | F: drivers/usb/serial/generic.c |
| 6122 | F: drivers/usb/serial/usb-serial.c |
| 6123 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6125 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
| 6126 | P: Gary Brubaker |
| 6127 | M: xavyer@ix.netcom.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6128 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6129 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6130 | F: drivers/usb/serial/empeg.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6131 | |
| 6132 | USB SERIAL KEYSPAN DRIVER |
| 6133 | P: Greg Kroah-Hartman |
| 6134 | M: greg@kroah.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6135 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6136 | W: http://www.kroah.com/linux/ |
| 6137 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6138 | F: drivers/usb/serial/*keyspan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6139 | |
| 6140 | USB SERIAL WHITEHEAT DRIVER |
Stuart MacDonald | 8bc8493 | 2007-05-04 16:00:03 -0400 | [diff] [blame] | 6141 | P: Support Department |
| 6142 | M: support@connecttech.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6143 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6144 | W: http://www.connecttech.com |
| 6145 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6146 | F: drivers/usb/serial/whiteheat* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6147 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6148 | USB SMSC95XX ETHERNET DRIVER |
| 6149 | P: Steve Glendinning |
| 6150 | M: steve.glendinning@smsc.com |
| 6151 | L: netdev@vger.kernel.org |
| 6152 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6153 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 6154 | |
Luca Risolia | f423b9a | 2007-03-26 16:12:04 -0300 | [diff] [blame] | 6155 | USB SN9C1xx DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6156 | P: Luca Risolia |
| 6157 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6158 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6159 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6161 | W: http://www.linux-projects.org |
| 6162 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6163 | F: Documentation/video4linux/sn9c102.txt |
| 6164 | F: drivers/media/video/sn9c102/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6165 | |
| 6166 | USB SUBSYSTEM |
| 6167 | P: Greg Kroah-Hartman |
| 6168 | M: gregkh@suse.de |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6169 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6170 | W: http://www.linux-usb.org |
Jody McIntyre | 6fb0425 | 2005-11-18 09:31:06 -0800 | [diff] [blame] | 6171 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6172 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6173 | F: Documentation/usb/ |
| 6174 | F: drivers/net/usb/ |
| 6175 | F: drivers/usb/ |
| 6176 | F: include/linux/usb.h |
| 6177 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6178 | |
| 6179 | USB UHCI DRIVER |
| 6180 | P: Alan Stern |
| 6181 | M: stern@rowland.harvard.edu |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6182 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6183 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6184 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6185 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6186 | USB "USBNET" DRIVER FRAMEWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6187 | P: David Brownell |
| 6188 | M: dbrownell@users.sourceforge.net |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 6189 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 6190 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6191 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6192 | F: drivers/net/usb/usbnet.c |
| 6193 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6194 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6195 | USB VIDEO CLASS |
| 6196 | P: Laurent Pinchart |
| 6197 | M: laurent.pinchart@skynet.be |
Jiri Slaby | a67534a | 2008-12-10 09:09:27 -0300 | [diff] [blame] | 6198 | L: linux-uvc-devel@lists.berlios.de (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6199 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6201 | W: http://linux-uvc.berlios.de |
| 6202 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6203 | F: drivers/media/video/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 6204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6205 | USB W996[87]CF DRIVER |
| 6206 | P: Luca Risolia |
| 6207 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6208 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6209 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6211 | W: http://www.linux-projects.org |
| 6212 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6213 | F: Documentation/video4linux/w9968cf.txt |
| 6214 | F: drivers/media/video/w996* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6215 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6216 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 6217 | P: Jussi Kivilinna |
| 6218 | M: jussi.kivilinna@mbnet.fi |
| 6219 | L: linux-wireless@vger.kernel.org |
| 6220 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6221 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 6222 | |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 6223 | USB XHCI DRIVER |
| 6224 | P: Sarah Sharp |
| 6225 | M: sarah.a.sharp@intel.com |
| 6226 | L: linux-usb@vger.kernel.org |
| 6227 | S: Supported |
| 6228 | |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6229 | USB ZC0301 DRIVER |
| 6230 | P: Luca Risolia |
| 6231 | M: luca.risolia@studio.unibo.it |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6232 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6233 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6235 | W: http://www.linux-projects.org |
| 6236 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6237 | F: Documentation/video4linux/zc0301.txt |
| 6238 | F: drivers/media/video/zc0301/ |
Luca Risolia | 60f7805 | 2006-02-06 16:29:35 +0000 | [diff] [blame] | 6239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6240 | USB ZD1201 DRIVER |
| 6241 | P: Jeroen Vreeken |
| 6242 | M: pe1rxq@amsat.org |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6243 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6244 | W: http://linux-lc100020.sourceforge.net |
| 6245 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6246 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6247 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6248 | USB ZR364XX DRIVER |
| 6249 | P: Antoine Jacquet |
| 6250 | M: royale@zerezo.com |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6251 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 6252 | L: linux-media@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6254 | W: http://royale.zerezo.com/zr364xx/ |
| 6255 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6256 | F: Documentation/video4linux/zr364xx.txt |
| 6257 | F: drivers/media/video/zr364xx.c |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6258 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6259 | USER-MODE LINUX (UML) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6260 | P: Jeff Dike |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 6261 | M: jdike@addtoit.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6262 | L: user-mode-linux-devel@lists.sourceforge.net |
| 6263 | L: user-mode-linux-user@lists.sourceforge.net |
| 6264 | W: http://user-mode-linux.sourceforge.net |
| 6265 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6266 | F: Documentation/uml/ |
| 6267 | F: arch/um/ |
| 6268 | F: fs/hostfs/ |
| 6269 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 6270 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6271 | USERSPACE I/O (UIO) |
| 6272 | P: Hans J. Koch |
| 6273 | M: hjk@linutronix.de |
| 6274 | P: Greg Kroah-Hartman |
| 6275 | M: gregkh@suse.de |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6277 | F: Documentation/DocBook/uio-howto.tmpl |
| 6278 | F: drivers/uio/ |
| 6279 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 6280 | |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6281 | UTIL-LINUX-NG PACKAGE |
| 6282 | P: Karel Zak |
| 6283 | M: kzak@redhat.com |
| 6284 | L: util-linux-ng@vger.kernel.org |
| 6285 | W: http://kernel.org/~kzak/util-linux-ng/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6286 | T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 6287 | S: Maintained |
| 6288 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6289 | UVESAFB DRIVER |
| 6290 | P: Michal Januszewski |
| 6291 | M: spock@gentoo.org |
| 6292 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6293 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 6294 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6295 | F: Documentation/fb/uvesafb.txt |
| 6296 | F: drivers/video/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 6297 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6298 | VFAT/FAT/MSDOS FILESYSTEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6299 | P: OGAWA Hirofumi |
| 6300 | M: hirofumi@mail.parknet.co.jp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6302 | F: Documentation/filesystems/vfat.txt |
| 6303 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6305 | VIA RHINE NETWORK DRIVER |
| 6306 | P: Roger Luethi |
| 6307 | M: rl@hellgate.ch |
| 6308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6309 | F: drivers/net/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6310 | |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6311 | VIAPRO SMBUS DRIVER |
| 6312 | P: Jean Delvare |
| 6313 | M: khali@linux-fr.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6314 | L: linux-i2c@vger.kernel.org |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6315 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6316 | F: Documentation/i2c/busses/i2c-viapro |
| 6317 | F: drivers/i2c/busses/i2c-viapro.c |
Jean Delvare | 32c0a52 | 2005-09-22 21:47:58 +0200 | [diff] [blame] | 6318 | |
Harald Welte | f0bf7f6 | 2009-06-17 20:22:39 +0200 | [diff] [blame] | 6319 | VIA SD/MMC CARD CONTROLLER DRIVER |
| 6320 | P: Joseph Chan |
| 6321 | M: JosephChan@via.com.tw |
| 6322 | P: Harald Welte |
| 6323 | M: HaraldWelte@viatech.com |
| 6324 | S: Maintained |
| 6325 | F: drivers/mmc/host/via-sdmmc.c |
| 6326 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6327 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 6328 | P: Joseph Chan |
| 6329 | M: JosephChan@via.com.tw |
| 6330 | P: Scott Fang |
| 6331 | M: ScottFang@viatech.com.cn |
| 6332 | L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 6333 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6334 | F: drivers/video/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 6335 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 6336 | VIA VELOCITY NETWORK DRIVER |
| 6337 | P: Francois Romieu |
| 6338 | M: romieu@fr.zoreil.com |
| 6339 | L: netdev@vger.kernel.org |
| 6340 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6341 | F: drivers/net/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6342 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6343 | VLAN (802.1Q) |
| 6344 | P: Patrick McHardy |
| 6345 | M: kaber@trash.net |
| 6346 | L: netdev@vger.kernel.org |
| 6347 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6348 | F: drivers/net/macvlan.c |
| 6349 | F: include/linux/if_*vlan.h |
| 6350 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 6351 | |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 6352 | VLYNQ BUS |
| 6353 | P: Florian Fainelli |
| 6354 | M: florian@openwrt.org |
| 6355 | L: openwrt-devel@lists.openwrt.org |
| 6356 | S: Maintained |
| 6357 | F: drivers/vlynq/vlynq.c |
| 6358 | F: include/linux/vlynq.h |
| 6359 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6360 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 6361 | P: Liam Girdwood |
Liam Girdwood | 8a62ab4 | 2008-09-14 17:40:21 +0100 | [diff] [blame] | 6362 | M: lrg@slimlogic.co.uk |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6363 | P: Mark Brown |
| 6364 | M: broonie@opensource.wolfsonmicro.com |
| 6365 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 6366 | W: http://www.slimlogic.co.uk/?p=48 |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6368 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6369 | F: drivers/regulator/ |
| 6370 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 6371 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6372 | VT1211 HARDWARE MONITOR DRIVER |
| 6373 | P: Juerg Haefliger |
| 6374 | M: juergh@gmail.com |
| 6375 | L: lm-sensors@lm-sensors.org |
| 6376 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6377 | F: Documentation/hwmon/vt1211 |
| 6378 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 6379 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6380 | VT8231 HARDWARE MONITOR DRIVER |
| 6381 | P: Roger Lucas |
Roger Lucas | af86576 | 2008-02-13 07:52:06 -0500 | [diff] [blame] | 6382 | M: vt8231@hiddenengine.co.uk |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6383 | L: lm-sensors@lm-sensors.org |
| 6384 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6385 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 6386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6387 | W1 DALLAS'S 1-WIRE BUS |
| 6388 | P: Evgeniy Polyakov |
| 6389 | M: johnpol@2ka.mipt.ru |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6391 | F: Documentation/w1/ |
| 6392 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6393 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6394 | W83791D HARDWARE MONITORING DRIVER |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6395 | P: Marc Hulsman |
| 6396 | M: m.hulsman@tudelft.nl |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6397 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 6398 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6399 | F: Documentation/hwmon/w83791d |
| 6400 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 6401 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6402 | W83793 HARDWARE MONITORING DRIVER |
| 6403 | P: Rudolf Marek |
| 6404 | M: r.marek@assembler.cz |
| 6405 | L: lm-sensors@lm-sensors.org |
| 6406 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6407 | F: Documentation/hwmon/w83793 |
| 6408 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 6409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6410 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 6411 | P: Pierre Ossman |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 6412 | M: pierre@ossman.eu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6413 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6414 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6415 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6416 | WATCHDOG DEVICE DRIVERS |
| 6417 | P: Wim Van Sebroeck |
| 6418 | M: wim@iguana.be |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6421 | F: Documentation/watchdog/ |
| 6422 | F: drivers/watchdog/ |
| 6423 | F: include/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 6424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6425 | WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS |
| 6426 | P: Jean Tourrilhes |
| 6427 | M: jt@hpl.hp.com |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6428 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6429 | W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/ |
| 6430 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6431 | F: Documentation/networking/wavelan.txt |
| 6432 | F: drivers/net/wireless/wavelan* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6433 | |
| 6434 | WD7000 SCSI DRIVER |
| 6435 | P: Miroslav Zagorac |
| 6436 | M: zaga@fly.cc.fer.hr |
| 6437 | L: linux-scsi@vger.kernel.org |
| 6438 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6439 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6440 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6441 | WIMAX STACK |
| 6442 | P: Inaky Perez-Gonzalez |
| 6443 | M: inaky.perez-gonzalez@intel.com |
| 6444 | M: linux-wimax@intel.com |
| 6445 | L: wimax@linuxwimax.org |
| 6446 | S: Supported |
| 6447 | W: http://linuxwimax.org |
| 6448 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6449 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
| 6450 | P: David Vrabel |
| 6451 | M: david.vrabel@csr.com |
| 6452 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6453 | F: include/linux/wlp.h |
| 6454 | F: drivers/uwb/wlp/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 6455 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6456 | WISTRON LAPTOP BUTTON DRIVER |
| 6457 | P: Miloslav Trmac |
| 6458 | M: mitr@volny.cz |
| 6459 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6460 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 6461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6462 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 6463 | P: Arnaldo Carvalho de Melo |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6464 | M: acme@ghostprotocols.net |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6465 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 6466 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6467 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6468 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6469 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6470 | WM97XX TOUCHSCREEN DRIVERS |
| 6471 | P: Mark Brown |
| 6472 | M: broonie@opensource.wolfsonmicro.com |
| 6473 | P: Liam Girdwood |
Liam Girdwood | b8d055a | 2008-10-13 23:00:15 -0400 | [diff] [blame] | 6474 | M: lrg@slimlogic.co.uk |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6475 | L: linux-input@vger.kernel.org |
| 6476 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 6477 | W: http://opensource.wolfsonmicro.com/node/7 |
| 6478 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6479 | F: drivers/input/touchscreen/*wm97* |
| 6480 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 6481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6482 | X.25 NETWORK LAYER |
| 6483 | P: Henner Eisen |
| 6484 | M: eis@baty.hanse.de |
| 6485 | L: linux-x25@vger.kernel.org |
| 6486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6487 | F: Documentation/networking/x25* |
| 6488 | F: include/net/x25* |
| 6489 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6490 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6491 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 6492 | P: Thomas Gleixner |
| 6493 | M: tglx@linutronix.de |
| 6494 | P: Ingo Molnar |
| 6495 | M: mingo@redhat.com |
| 6496 | P: H. Peter Anvin |
| 6497 | M: hpa@zytor.com |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 6498 | M: x86@kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6500 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6501 | F: Documentation/x86/ |
| 6502 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6503 | |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6504 | XEN HYPERVISOR INTERFACE |
| 6505 | P: Jeremy Fitzhardinge |
| 6506 | M: jeremy@xensource.com |
| 6507 | P: Chris Wright |
| 6508 | M: chrisw@sous-sol.org |
| 6509 | L: virtualization@lists.osdl.org |
| 6510 | L: xen-devel@lists.xensource.com |
| 6511 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6512 | F: arch/x86/xen/ |
| 6513 | F: drivers/*/xen-*front.c |
| 6514 | F: drivers/xen/ |
| 6515 | F: arch/x86/include/asm/xen/ |
| 6516 | F: include/xen/ |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 6517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6518 | XFS FILESYSTEM |
| 6519 | P: Silicon Graphics Inc |
Felix Blyakher | b58a4cc | 2009-02-03 15:37:18 -0600 | [diff] [blame] | 6520 | P: Felix Blyakher |
| 6521 | M: felixb@sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6522 | M: xfs-masters@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 6523 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6524 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6525 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6526 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6527 | F: Documentation/filesystems/xfs.txt |
| 6528 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6529 | |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6530 | XILINX SYSTEMACE DRIVER |
| 6531 | P: Grant Likely |
| 6532 | M: grant.likely@secretlab.ca |
| 6533 | W: http://www.secretlab.ca/ |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6534 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6535 | F: drivers/block/xsysace.c |
Grant Likely | c9d3d8e | 2007-10-01 16:33:51 +0200 | [diff] [blame] | 6536 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6537 | XILINX UARTLITE SERIAL DRIVER |
| 6538 | P: Peter Korsgaard |
| 6539 | M: jacmet@sunsite.dk |
| 6540 | L: linux-serial@vger.kernel.org |
| 6541 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6542 | F: drivers/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 6543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6544 | YAM DRIVER FOR AX.25 |
| 6545 | P: Jean-Paul Roubelat |
| 6546 | M: jpr@f6fbb.org |
| 6547 | L: linux-hams@vger.kernel.org |
| 6548 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6549 | F: drivers/net/hamradio/yam* |
| 6550 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6551 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6552 | YEALINK PHONE DRIVER |
| 6553 | P: Henk Vergonet |
| 6554 | M: Henk.Vergonet@gmail.com |
| 6555 | L: usbb2k-api-dev@nongnu.org |
| 6556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6557 | F: Documentation/input/yealink.txt |
| 6558 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 6559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6560 | Z8530 DRIVER FOR AX.25 |
| 6561 | P: Joerg Reuter |
| 6562 | M: jreuter@yaina.de |
| 6563 | W: http://yaina.de/jreuter/ |
| 6564 | W: http://www.qsl.net/dl1bke/ |
| 6565 | L: linux-hams@vger.kernel.org |
| 6566 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6567 | F: Documentation/networking/z8530drv.txt |
| 6568 | F: drivers/net/hamradio/*scc.c |
| 6569 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6570 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6571 | ZD1211RW WIRELESS DRIVER |
| 6572 | P: Daniel Drake |
| 6573 | M: dsd@gentoo.org |
| 6574 | P: Ulrich Kunitz |
| 6575 | M: kune@deine-taler.de |
| 6576 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6577 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6578 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 6579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6580 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 6581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6582 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6583 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6584 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6585 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 6586 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
| 6587 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6588 | F: drivers/media/video/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6589 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6590 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 6591 | P: Maciej W. Rozycki |
| 6592 | M: macro@linux-mips.org |
| 6593 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6594 | F: drivers/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 6595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6596 | THE REST |
| 6597 | P: Linus Torvalds |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 6598 | M: torvalds@linux-foundation.org |
| 6599 | L: linux-kernel@vger.kernel.org |
Joe Perches | cfe81f7 | 2009-04-07 21:09:58 -0700 | [diff] [blame] | 6600 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6601 | S: Buried alive in reporters |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 6602 | F: * |
| 6603 | F: */ |