]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
37 | (scripts/checkpatch.pl) to catch trival style violations. | |
38 | See Documentation/CodingStyle for guidance here. | |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's | |
56 | Certificate of Origin" (DCO) is listed in the file | |
57 | Documentation/SubmittingPatches. | |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: [email protected], especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
73 | L: Mailing list that is relevant to this area | |
74 | W: Web-page with status/info | |
8a6e2535 | 75 | Q: Patchwork web based patch tracking system site |
b153da60 | 76 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit. |
c7c4fb18 JP |
77 | S: Status, one of the following: |
78 | Supported: Someone is actually paid to look after this. | |
79 | Maintained: Someone actually looks after it. | |
80 | Odd Fixes: It has a maintainer but they don't have time to do | |
81 | much other than throw the odd patch in. See below.. | |
82 | Orphan: No current maintainer [but maybe you could take the | |
83 | role as you write your new code]. | |
84 | Obsolete: Old code. Something tagged obsolete generally means | |
85 | it has been replaced by a better system and you | |
86 | should be using that. | |
87 | F: Files and directories with wildcard patterns. | |
88 | A trailing slash includes all files and subdirectory files. | |
89 | F: drivers/net/ all files in and below drivers/net | |
90 | F: drivers/net/* all files in drivers/net, but not below | |
91 | F: */net/* all files in "any top level directory"/net | |
92 | One pattern per line. Multiple F: lines acceptable. | |
93 | X: Files and directories that are NOT maintained, same rules as F: | |
94 | Files exclusions are tested before file matches. | |
95 | Can be useful for excluding a specific subdirectory, for instance: | |
96 | F: net/ | |
97 | X: net/ipv6/ | |
98 | matches all files in and below net excluding net/ipv6/ | |
99 | K: Keyword perl extended regex pattern to match content in a | |
100 | patch or file. For instance: | |
101 | K: of_get_profile | |
102 | matches patches or files that contain "of_get_profile" | |
103 | K: \b(printk|pr_(info|err))\b | |
104 | matches patches or files that contain one or more of the words | |
105 | printk, pr_info or pr_err | |
106 | One regex pattern per line. Multiple K: lines acceptable. | |
1da177e4 LT |
107 | |
108 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
109 | order. If you could add yourselves to it in alphabetical order that would be | |
110 | so much easier [Ed] | |
111 | ||
c7c4fb18 | 112 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 113 | |
c7c4fb18 | 114 | ----------------------------------- |
679655da | 115 | |
1da177e4 | 116 | 3C505 NETWORK DRIVER |
8b58be88 | 117 | M: Philip Blundell <[email protected]> |
979b6c13 | 118 | L: [email protected] |
1da177e4 | 119 | S: Maintained |
11597885 | 120 | F: drivers/net/ethernet/i825xx/3c505* |
1da177e4 | 121 | |
a6d89915 | 122 | 3C59X NETWORK DRIVER |
8b58be88 | 123 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
124 | L: [email protected] |
125 | S: Maintained | |
679655da | 126 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 127 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 128 | |
1da177e4 | 129 | 3CR990 NETWORK DRIVER |
8b58be88 | 130 | M: David Dillow <[email protected]> |
979b6c13 | 131 | L: [email protected] |
1da177e4 | 132 | S: Maintained |
ca7a8e85 | 133 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 134 | |
c4de0ceb AR |
135 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
136 | M: Adam Radford <[email protected]> | |
1da177e4 | 137 | L: [email protected] |
c4de0ceb | 138 | W: http://www.lsi.com |
1da177e4 | 139 | S: Supported |
c4de0ceb | 140 | F: drivers/scsi/3w-* |
1da177e4 LT |
141 | |
142 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 143 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
144 | L: [email protected] |
145 | S: Maintained | |
679655da | 146 | F: drivers/scsi/53c700* |
1da177e4 LT |
147 | |
148 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 149 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
150 | L: [email protected] |
151 | S: Maintained | |
679655da | 152 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 153 | |
1da177e4 | 154 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 155 | M: Realtek linux nic maintainers <[email protected]> |
8b58be88 | 156 | M: Francois Romieu <[email protected]> |
979b6c13 | 157 | L: [email protected] |
1da177e4 | 158 | S: Maintained |
a8fe65b8 | 159 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
160 | |
161 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 162 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
163 | L: [email protected] |
164 | W: http://serial.sourceforge.net | |
8ee16a1b | 165 | S: Maintained |
08deed1e | 166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 167 | F: drivers/tty/serial/8250* |
679655da | 168 | F: include/linux/serial_8250.h |
1da177e4 LT |
169 | |
170 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 171 | L: [email protected] |
0cf445ce | 172 | S: Orphan / Obsolete |
644570b8 | 173 | F: drivers/net/ethernet/8390/ |
1da177e4 | 174 | |
67543e50 | 175 | 9P FILE SYSTEM |
8b58be88 JP |
176 | M: Eric Van Hensbergen <[email protected]> |
177 | M: Ron Minnich <[email protected]> | |
178 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 179 | L: [email protected] |
27a2a5ff | 180 | W: http://swik.net/v9fs |
8a6e2535 | 181 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 183 | S: Maintained |
679655da JP |
184 | F: Documentation/filesystems/9p.txt |
185 | F: fs/9p/ | |
67543e50 | 186 | |
91952bc0 AP |
187 | A8293 MEDIA DRIVER |
188 | M: Antti Palosaari <[email protected]> | |
189 | L: [email protected] | |
190 | W: http://linuxtv.org/ | |
191 | W: http://palosaari.fi/linux/ | |
192 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
193 | T: git git://linuxtv.org/anttip/media_tree.git | |
194 | S: Maintained | |
195 | F: drivers/media/dvb-frontends/a8293* | |
196 | ||
e2d1d6c0 | 197 | AACRAID SCSI RAID DRIVER |
8b58be88 | 198 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
199 | L: [email protected] |
200 | W: http://www.adaptec.com/ | |
1da177e4 | 201 | S: Supported |
679655da JP |
202 | F: Documentation/scsi/aacraid.txt |
203 | F: drivers/scsi/aacraid/ | |
1da177e4 | 204 | |
249e3c85 | 205 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 206 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
207 | L: [email protected] |
208 | S: Maintained | |
679655da | 209 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 210 | |
249e3c85 | 211 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 212 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
213 | L: [email protected] |
214 | S: Maintained | |
679655da | 215 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 216 | |
1da177e4 | 217 | ACENIC DRIVER |
8b58be88 | 218 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
219 | L: [email protected] |
220 | S: Maintained | |
531c4f89 | 221 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 222 | |
e86435eb | 223 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 224 | M: Peter Feuerer <[email protected]> |
d0944853 | 225 | L: [email protected] |
4fc26e36 JP |
226 | W: http://piie.net/?section=acerhdf |
227 | S: Maintained | |
228 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 229 | |
745a5d21 | 230 | ACER WMI LAPTOP EXTRAS |
d9269a71 | 231 | M: Joey Lee <[email protected]> |
d0944853 | 232 | L: [email protected] |
745a5d21 | 233 | S: Maintained |
679655da | 234 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 235 | |
1da177e4 | 236 | ACPI |
8b58be88 | 237 | M: Len Brown <[email protected]> |
ea26d0cf | 238 | M: Rafael J. Wysocki <[email protected]> |
6968e50c | 239 | L: [email protected] |
38e09d83 | 240 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 241 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
aaef292a | 242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux |
8b59a454 | 243 | S: Supported |
679655da JP |
244 | F: drivers/acpi/ |
245 | F: drivers/pnp/pnpacpi/ | |
246 | F: include/linux/acpi.h | |
43368e74 | 247 | F: include/acpi/ |
8b59a454 | 248 | |
8b59a454 | 249 | ACPI FAN DRIVER |
8b58be88 | 250 | M: Zhang Rui <[email protected]> |
8b59a454 | 251 | L: [email protected] |
0638bc8d | 252 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 253 | S: Supported |
679655da | 254 | F: drivers/acpi/fan.c |
1da177e4 | 255 | |
8b59a454 | 256 | ACPI THERMAL DRIVER |
8b58be88 | 257 | M: Zhang Rui <[email protected]> |
8b59a454 | 258 | L: [email protected] |
0638bc8d | 259 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 260 | S: Supported |
679655da | 261 | F: drivers/acpi/*thermal* |
998be20f | 262 | |
359acec8 | 263 | ACPI VIDEO DRIVER |
8b58be88 | 264 | M: Zhang Rui <[email protected]> |
8b59a454 | 265 | L: [email protected] |
0638bc8d | 266 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 267 | S: Supported |
679655da | 268 | F: drivers/acpi/video.c |
998be20f | 269 | |
bff431e4 | 270 | ACPI WMI DRIVER |
d0944853 | 271 | L: [email protected] |
5b927259 | 272 | S: Orphan |
679655da | 273 | F: drivers/platform/x86/wmi.c |
bff431e4 | 274 | |
2f39d519 | 275 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 276 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
277 | W: http://wiki.parisc-linux.org/AD1889 |
278 | L: [email protected] | |
279 | S: Maintained | |
679655da | 280 | F: sound/pci/ad1889.* |
2f39d519 | 281 | |
527a1a83 MH |
282 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
283 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 284 | L: [email protected] |
a3f531ac | 285 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
286 | S: Supported |
287 | F: drivers/misc/ad525x_dpot.c | |
288 | ||
289 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
290 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 291 | L: [email protected] |
a3f531ac | 292 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
293 | S: Supported |
294 | F: drivers/regulator/ad5398.c | |
295 | ||
296 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
297 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 298 | L: [email protected] |
a3f531ac | 299 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
300 | S: Supported |
301 | F: drivers/input/misc/ad714x.c | |
302 | ||
303 | AD7877 TOUCHSCREEN DRIVER | |
304 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 305 | L: [email protected] |
a3f531ac | 306 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
307 | S: Supported |
308 | F: drivers/input/touchscreen/ad7877.c | |
309 | ||
310 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
311 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 312 | L: [email protected] |
a3f531ac | 313 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/input/touchscreen/ad7879.c | |
316 | ||
1330b0dc JK |
317 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
318 | M: Jiri Kosina <[email protected]> | |
319 | S: Maintained | |
320 | ||
1da177e4 | 321 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 322 | M: Jean Delvare <[email protected]> |
cc0b07ed | 323 | L: [email protected] |
1da177e4 | 324 | S: Maintained |
679655da JP |
325 | F: Documentation/hwmon/adm1025 |
326 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 327 | |
cae2caae | 328 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 329 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
330 | L: [email protected] |
331 | S: Maintained | |
679655da | 332 | F: drivers/hwmon/adm1029.c |
cae2caae | 333 | |
cc0b88cf | 334 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 335 | L: [email protected] |
491b26b4 | 336 | W: http://wireless.kernel.org/ |
e71bcbd0 | 337 | S: Orphan |
679655da | 338 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 339 | |
e8e31622 SA |
340 | ADP1653 FLASH CONTROLLER DRIVER |
341 | M: Sakari Ailus <[email protected]> | |
342 | L: [email protected] | |
343 | S: Maintained | |
344 | F: drivers/media/i2c/adp1653.c | |
345 | F: include/media/adp1653.h | |
346 | ||
527a1a83 MH |
347 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
348 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 349 | L: [email protected] |
a3f531ac | 350 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
351 | S: Supported |
352 | F: drivers/mfd/adp5520.c | |
353 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 354 | F: drivers/leds/leds-adp5520.c |
77278d50 | 355 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
356 | F: drivers/input/keyboard/adp5520-keys.c |
357 | ||
358 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
359 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 360 | L: [email protected] |
a3f531ac | 361 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
362 | S: Supported |
363 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 364 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
365 | |
366 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
367 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 368 | L: [email protected] |
a3f531ac | 369 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
370 | S: Supported |
371 | F: drivers/video/backlight/adp8860_bl.c | |
372 | ||
8c22a8f5 DE |
373 | ADS1015 HARDWARE MONITOR DRIVER |
374 | M: Dirk Eibach <[email protected]> | |
375 | L: [email protected] | |
376 | S: Maintained | |
377 | F: Documentation/hwmon/ads1015 | |
378 | F: drivers/hwmon/ads1015.c | |
379 | F: include/linux/i2c/ads1015.h | |
380 | ||
1da177e4 | 381 | ADT746X FAN DRIVER |
8b58be88 | 382 | M: Colin Leroy <[email protected]> |
1da177e4 | 383 | S: Maintained |
679655da | 384 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 385 | |
b058b859 JD |
386 | ADT7475 HARDWARE MONITOR DRIVER |
387 | M: Jean Delvare <[email protected]> | |
388 | L: [email protected] | |
389 | S: Maintained | |
390 | F: Documentation/hwmon/adt7475 | |
391 | F: drivers/hwmon/adt7475.c | |
392 | ||
527a1a83 MH |
393 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
394 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 395 | L: [email protected] |
a3f531ac | 396 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
397 | S: Supported |
398 | F: drivers/input/misc/adxl34x.c | |
399 | ||
8c6af9e1 | 400 | ADVANSYS SCSI DRIVER |
8b58be88 | 401 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
402 | L: [email protected] |
403 | S: Maintained | |
679655da JP |
404 | F: Documentation/scsi/advansys.txt |
405 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 406 | |
1da177e4 | 407 | AEDSP16 DRIVER |
8b58be88 | 408 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 409 | S: Maintained |
679655da | 410 | F: sound/oss/aedsp16.c |
1da177e4 | 411 | |
91952bc0 AP |
412 | AF9013 MEDIA DRIVER |
413 | M: Antti Palosaari <[email protected]> | |
414 | L: [email protected] | |
415 | W: http://linuxtv.org/ | |
416 | W: http://palosaari.fi/linux/ | |
417 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
418 | T: git git://linuxtv.org/anttip/media_tree.git | |
419 | S: Maintained | |
420 | F: drivers/media/dvb-frontends/af9013* | |
421 | ||
422 | AF9033 MEDIA DRIVER | |
423 | M: Antti Palosaari <[email protected]> | |
424 | L: [email protected] | |
425 | W: http://linuxtv.org/ | |
426 | W: http://palosaari.fi/linux/ | |
427 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
428 | T: git git://linuxtv.org/anttip/media_tree.git | |
429 | S: Maintained | |
430 | F: drivers/media/dvb-frontends/af9033* | |
431 | ||
1da177e4 | 432 | AFFS FILE SYSTEM |
6cf515e1 GU |
433 | L: [email protected] |
434 | S: Orphan | |
679655da JP |
435 | F: Documentation/filesystems/affs.txt |
436 | F: fs/affs/ | |
1da177e4 | 437 | |
e2d1d6c0 | 438 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 439 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
440 | L: [email protected] |
441 | S: Supported | |
679655da JP |
442 | F: fs/afs/ |
443 | F: include/net/af_rxrpc.h | |
444 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 445 | |
1da177e4 | 446 | AGPGART DRIVER |
8b58be88 | 447 | M: David Airlie <[email protected]> |
54e5881d | 448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 449 | S: Maintained |
679655da JP |
450 | F: drivers/char/agp/ |
451 | F: include/linux/agp* | |
1da177e4 LT |
452 | |
453 | AHA152X SCSI DRIVER | |
8b58be88 | 454 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
455 | L: [email protected] |
456 | S: Maintained | |
679655da JP |
457 | F: drivers/scsi/aha152x* |
458 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 459 | |
64624d4f | 460 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 461 | M: Hannes Reinecke <[email protected]> |
64624d4f | 462 | L: [email protected] |
1da177e4 | 463 | S: Maintained |
679655da JP |
464 | F: drivers/scsi/aic7xxx/ |
465 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 466 | |
e2d1d6c0 | 467 | AIO |
8b58be88 | 468 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
469 | L: [email protected] |
470 | S: Supported | |
679655da JP |
471 | F: fs/aio.c |
472 | F: include/linux/*aio*.h | |
e2d1d6c0 | 473 | |
1da177e4 | 474 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 475 | M: Duncan Sands <[email protected]> |
6372594a | 476 | L: [email protected] |
1da177e4 LT |
477 | W: http://www.linux-usb.org/SpeedTouch/ |
478 | S: Maintained | |
679655da JP |
479 | F: drivers/usb/atm/speedtch.c |
480 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 481 | |
272f133a | 482 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 483 | M: Manuel Lauss <[email protected]> |
08fcb720 | 484 | S: Maintained |
679655da | 485 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 486 | |
4a4e5787 | 487 | ALI1563 I2C DRIVER |
8b58be88 | 488 | M: Rudolf Marek <[email protected]> |
846557d3 | 489 | L: [email protected] |
4a4e5787 | 490 | S: Maintained |
679655da JP |
491 | F: Documentation/i2c/busses/i2c-ali1563 |
492 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 493 | |
1da177e4 | 494 | ALPHA PORT |
8b58be88 | 495 | M: Richard Henderson <[email protected]> |
8b58be88 | 496 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 497 | M: Matt Turner <[email protected]> |
c89f4f9a | 498 | S: Odd Fixes |
a9406699 | 499 | L: [email protected] |
679655da | 500 | F: arch/alpha/ |
1da177e4 | 501 | |
adf9251f TK |
502 | ALTERA UART/JTAG UART SERIAL DRIVERS |
503 | M: Tobias Klauser <[email protected]> | |
504 | L: [email protected] | |
505 | L: [email protected] (moderated for non-subscribers) | |
506 | S: Maintained | |
507 | F: drivers/tty/serial/altera_uart.c | |
508 | F: drivers/tty/serial/altera_jtaguart.c | |
509 | F: include/linux/altera_uart.h | |
510 | F: include/linux/altera_jtaguart.h | |
511 | ||
512d1027 | 512 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 513 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
514 | L: [email protected] |
515 | S: Maintained | |
516 | F: Documentation/hwmon/fam15h_power | |
517 | F: drivers/hwmon/fam15h_power.c | |
518 | ||
167a675a | 519 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 520 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 521 | L: [email protected] (moderated for non-subscribers) |
167a675a | 522 | S: Supported |
679655da | 523 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 524 | |
f90b8116 | 525 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 526 | P: Andres Salomon <[email protected]> |
67d76710 | 527 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
528 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
529 | S: Supported | |
679655da JP |
530 | F: drivers/char/hw_random/geode-rng.c |
531 | F: drivers/crypto/geode* | |
532 | F: drivers/video/geode/ | |
533 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 534 | |
919ee7dd | 535 | AMD IOMMU (AMD-VI) |
e4110568 | 536 | M: Joerg Roedel <[email protected]> |
919ee7dd | 537 | L: [email protected] |
525b233c | 538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 539 | S: Maintained |
b2c16391 JP |
540 | F: drivers/iommu/amd_iommu*.[ch] |
541 | F: include/linux/amd-iommu.h | |
919ee7dd | 542 | |
e7f5b309 | 543 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 544 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 545 | L: [email protected] |
943482d0 | 546 | S: Maintained |
679655da | 547 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 548 | |
284f42b6 | 549 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 550 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 551 | S: Supported |
bd5f47ec | 552 | F: drivers/macintosh/ams/ |
284f42b6 | 553 | |
f94b533d | 554 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
555 | M: Tom Tucker <[email protected]> |
556 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 557 | L: [email protected] |
f94b533d | 558 | S: Maintained |
679655da | 559 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 560 | |
531fca16 HV |
561 | ANALOG DEVICES INC AD9389B DRIVER |
562 | M: Hans Verkuil <[email protected]> | |
563 | L: [email protected] | |
564 | S: Maintained | |
565 | F: drivers/media/i2c/ad9389b* | |
566 | ||
567 | ANALOG DEVICES INC ADV7604 DRIVER | |
568 | M: Hans Verkuil <[email protected]> | |
569 | L: [email protected] | |
570 | S: Maintained | |
571 | F: drivers/media/i2c/adv7604* | |
572 | ||
527a1a83 | 573 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 574 | M: Lars-Peter Clausen <[email protected]> |
f8bd42b8 | 575 | L: [email protected] |
4bdef3bd | 576 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 577 | W: http://wiki.analog.com/ |
4bdef3bd | 578 | S: Supported |
39c9d199 | 579 | F: sound/soc/codecs/adau* |
cc52688a | 580 | F: sound/soc/codecs/adav* |
4bdef3bd | 581 | F: sound/soc/codecs/ad1* |
4bdef3bd | 582 | F: sound/soc/codecs/ssm* |
40216ce7 | 583 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 584 | |
527a1a83 MH |
585 | ANALOG DEVICES INC ASOC DRIVERS |
586 | L: [email protected] | |
587 | L: [email protected] (moderated for non-subscribers) | |
588 | W: http://blackfin.uclinux.org/ | |
589 | S: Supported | |
590 | F: sound/soc/blackfin/* | |
591 | ||
42269063 | 592 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 593 | M: Johannes Berg <[email protected]> |
a4724ed6 | 594 | L: [email protected] |
93711660 | 595 | L: [email protected] (moderated for non-subscribers) |
42269063 | 596 | S: Maintained |
679655da | 597 | F: sound/aoa/ |
42269063 | 598 | |
1da177e4 | 599 | APM DRIVER |
81024fc4 JK |
600 | M: Jiri Kosina <[email protected]> |
601 | S: Odd fixes | |
679655da JP |
602 | F: arch/x86/kernel/apm_32.c |
603 | F: include/linux/apm_bios.h | |
81024fc4 | 604 | F: drivers/char/apm-emulation.c |
1da177e4 | 605 | |
bd7aa4b2 | 606 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 607 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
608 | L: [email protected] |
609 | S: Maintained | |
679655da | 610 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 611 | |
6f2fad74 | 612 | APPLE SMC DRIVER |
d618540f HR |
613 | M: Henrik Rydberg <[email protected]> |
614 | L: [email protected] | |
6f2fad74 | 615 | S: Maintained |
679655da | 616 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 617 | |
1da177e4 | 618 | APPLETALK NETWORK LAYER |
8b58be88 | 619 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 620 | S: Maintained |
679655da JP |
621 | F: drivers/net/appletalk/ |
622 | F: net/appletalk/ | |
1da177e4 | 623 | |
a480167b | 624 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 625 | M: Viresh Kumar <[email protected]> |
a480167b VK |
626 | L: [email protected] |
627 | S: Maintained | |
628 | F: include/linux/pata_arasan_cf_data.h | |
629 | F: drivers/ata/pata_arasan_cf.c | |
630 | ||
1154ea7d | 631 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 632 | M: Jaya Kumar <[email protected]> |
1154ea7d | 633 | S: Maintained |
679655da JP |
634 | F: drivers/video/arcfb.c |
635 | F: drivers/video/fb_defio.c | |
1154ea7d | 636 | |
1da177e4 | 637 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 638 | M: Ian Molton <[email protected]> |
1da177e4 | 639 | S: Maintained |
679655da JP |
640 | F: arch/arm/lib/floppydma.S |
641 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 642 | |
6f96521f WD |
643 | ARM PMU PROFILING AND DEBUGGING |
644 | M: Will Deacon <[email protected]> | |
645 | S: Maintained | |
646 | F: arch/arm/kernel/perf_event* | |
647 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
648 | F: arch/arm/include/asm/pmu.h |
649 | F: arch/arm/kernel/hw_breakpoint.c | |
650 | F: arch/arm/include/asm/hw_breakpoint.h | |
651 | ||
d4275354 | 652 | ARM PORT |
8b58be88 | 653 | M: Russell King <[email protected]> |
efc03ecb | 654 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
655 | W: http://www.arm.linux.org.uk/ |
656 | S: Maintained | |
657 | F: arch/arm/ | |
658 | ||
d323c243 SB |
659 | ARM SUB-ARCHITECTURES |
660 | L: [email protected] (moderated for non-subscribers) | |
661 | S: MAINTAINED | |
662 | F: arch/arm/mach-*/ | |
663 | F: arch/arm/plat-*/ | |
664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
665 | ||
cefbf4ea RK |
666 | ARM PRIMECELL AACI PL041 DRIVER |
667 | M: Russell King <[email protected]> | |
668 | S: Maintained | |
669 | F: sound/arm/aaci.* | |
670 | ||
671 | ARM PRIMECELL CLCD PL110 DRIVER | |
672 | M: Russell King <[email protected]> | |
673 | S: Maintained | |
674 | F: drivers/video/amba-clcd.* | |
675 | ||
676 | ARM PRIMECELL KMI PL050 DRIVER | |
677 | M: Russell King <[email protected]> | |
678 | S: Maintained | |
679 | F: drivers/input/serio/ambakmi.* | |
680 | F: include/linux/amba/kmi.h | |
681 | ||
2761f5c2 | 682 | ARM PRIMECELL MMCI PL180/1 DRIVER |
6d79947a | 683 | S: Orphan |
679655da | 684 | F: drivers/mmc/host/mmci.* |
2761f5c2 | 685 | |
cefbf4ea RK |
686 | ARM PRIMECELL BUS SUPPORT |
687 | M: Russell King <[email protected]> | |
688 | S: Maintained | |
689 | F: drivers/amba/ | |
690 | F: include/linux/amba/bus.h | |
691 | ||
2b7a52a4 | 692 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 693 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 694 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
695 | S: Maintained |
696 | ||
9c784f95 | 697 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 698 | M: Sergey Lapin <[email protected]> |
efc03ecb | 699 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
700 | S: Maintained |
701 | ||
2b7a52a4 | 702 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 703 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 704 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
705 | S: Maintained |
706 | ||
c1fc8675 | 707 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 708 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
709 | M: Nicolas Ferre <[email protected]> |
710 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 711 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 712 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
713 | W: http://www.linux4sam.org |
714 | S: Supported | |
715 | F: arch/arm/mach-at91/ | |
d4a89c7d | 716 | |
986cf2e9 RH |
717 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
718 | M: Rob Herring <[email protected]> | |
719 | L: [email protected] (moderated for non-subscribers) | |
720 | S: Maintained | |
721 | F: arch/arm/mach-highbank/ | |
722 | ||
d94f944e AV |
723 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
724 | M: Anton Vorontsov <[email protected]> | |
725 | S: Maintained | |
726 | F: arch/arm/mach-cns3xxx/ | |
727 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
728 | ||
2b7a52a4 | 729 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 730 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 731 | M: Ryan Mallon <[email protected]> |
efc03ecb | 732 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 733 | S: Maintained |
d19d3667 HS |
734 | F: arch/arm/mach-ep93xx/ |
735 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
736 | |
737 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 738 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 739 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
740 | S: Maintained |
741 | ||
d4275354 | 742 | ARM/CLKDEV SUPPORT |
8b58be88 | 743 | M: Russell King <[email protected]> |
efc03ecb | 744 | L: [email protected] (moderated for non-subscribers) |
37417046 | 745 | S: Maintained |
d4275354 | 746 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 747 | F: drivers/clk/clkdev.c |
d4275354 | 748 | |
d48134e7 | 749 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 750 | M: Mike Rapoport <[email protected]> |
efc03ecb | 751 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
752 | S: Maintained |
753 | ||
94150095 HF |
754 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
755 | M: Hubert Feurstein <[email protected]> | |
756 | S: Maintained | |
757 | F: arch/arm/mach-ep93xx/micro9.c | |
758 | ||
1da177e4 | 759 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 760 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
761 | S: Maintained |
762 | ||
881a95f9 | 763 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 764 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 765 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
766 | T: git git://git.berlios.de/gemini-board |
767 | S: Maintained | |
f49afbb5 | 768 | F: arch/arm/mach-gemini/ |
881a95f9 | 769 | |
a990cbd8 BS |
770 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
771 | M: Barry Song <[email protected]> | |
772 | L: [email protected] (moderated for non-subscribers) | |
773 | S: Maintained | |
774 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
775 | F: drivers/dma/sirf-dma.c |
776 | F: drivers/i2c/busses/i2c-sirf.c | |
777 | F: drivers/pinctrl/pinctrl-sirf.c | |
778 | F: drivers/spi/spi-sirf.c | |
a990cbd8 | 779 | |
d4275354 | 780 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 781 | M: Russell King <[email protected]> |
efc03ecb | 782 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
783 | W: http://www.arm.linux.org.uk/ |
784 | S: Maintained | |
785 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 786 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 787 | |
a9da4f7e | 788 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
789 | M: Daniel Ribeiro <[email protected]> |
790 | M: Stefan Schmidt <[email protected]> | |
791 | M: Harald Welte <[email protected]> | |
d66f1886 | 792 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
793 | W: http://www.openezx.org/ |
794 | S: Maintained | |
cafc2265 SS |
795 | T: topgit git://git.openezx.org/openezx.git |
796 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 797 | |
6a915af9 | 798 | ARM/FARADAY FA526 PORT |
162500b3 | 799 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 800 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 801 | S: Maintained |
1fa7e547 | 802 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 803 | F: arch/arm/mm/*-fa* |
6a915af9 | 804 | |
d4275354 | 805 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 806 | M: Russell King <[email protected]> |
efc03ecb | 807 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
808 | W: http://www.arm.linux.org.uk/ |
809 | S: Maintained | |
810 | F: arch/arm/include/asm/hardware/dec21285.h | |
811 | F: arch/arm/mach-footbridge/ | |
812 | ||
86183a5f | 813 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 814 | M: Sascha Hauer <[email protected]> |
efc03ecb | 815 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 816 | S: Maintained |
1fa7e547 | 817 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 818 | F: arch/arm/mach-imx/ |
b16533d3 | 819 | F: arch/arm/plat-mxc/ |
e5dafa22 | 820 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 821 | |
8bcb9765 SG |
822 | ARM/FREESCALE IMX6 |
823 | M: Shawn Guo <[email protected]> | |
824 | L: [email protected] (moderated for non-subscribers) | |
825 | S: Maintained | |
826 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
827 | F: arch/arm/mach-imx/*imx6* | |
828 | ||
a9866a09 SG |
829 | ARM/FREESCALE MXS ARM ARCHITECTURE |
830 | M: Shawn Guo <[email protected]> | |
831 | L: [email protected] (moderated for non-subscribers) | |
832 | S: Maintained | |
833 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
834 | F: arch/arm/mach-mxs/ | |
835 | ||
2b7a52a4 | 836 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 837 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 838 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
839 | S: Maintained |
840 | ||
90b8fc34 | 841 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 842 | M: Steve Sakoman <[email protected]> |
efc03ecb | 843 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
844 | S: Maintained |
845 | ||
ef47d5f0 | 846 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 847 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
848 | M: Paul Parsons <[email protected]> |
849 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
850 | S: Maintained |
851 | F: arch/arm/mach-pxa/hx4700.c | |
852 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 853 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 854 | |
21f37bc3 | 855 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 856 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
857 | W: www.jlime.com |
858 | S: Maintained | |
084bad91 KE |
859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
860 | F: arch/arm/mach-sa1100/jornada720.c | |
861 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 862 | |
5e767ab9 JMC |
863 | ARM/IGEP MACHINE SUPPORT |
864 | M: Enric Balletbo i Serra <[email protected]> | |
865 | M: Javier Martinez Canillas <[email protected]> | |
866 | L: [email protected] | |
867 | L: [email protected] (moderated for non-subscribers) | |
868 | S: Maintained | |
869 | F: arch/arm/mach-omap2/board-igep0020.c | |
870 | ||
403d2971 MV |
871 | ARM/INCOME PXA270 SUPPORT |
872 | M: Marek Vasut <[email protected]> | |
873 | L: [email protected] (moderated for non-subscribers) | |
874 | S: Maintained | |
ec154082 | 875 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 876 | |
2b7a52a4 | 877 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 878 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 879 | M: Dan Williams <[email protected]> |
efc03ecb | 880 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 881 | S: Maintained |
e2bdb176 DW |
882 | |
883 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
1dd8372d | 884 | M: Dan Williams <[email protected]> |
efc03ecb | 885 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 886 | S: Maintained |
2b7a52a4 LB |
887 | |
888 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 889 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 890 | M: Dan Williams <[email protected]> |
efc03ecb | 891 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 892 | S: Maintained |
2b7a52a4 LB |
893 | |
894 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 895 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 896 | M: Dan Williams <[email protected]> |
efc03ecb | 897 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 898 | S: Maintained |
2b7a52a4 | 899 | |
2b7a52a4 | 900 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 901 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 902 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
903 | S: Maintained |
904 | ||
dfdd8cc9 KH |
905 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
906 | M: Imre Kaloz <[email protected]> | |
907 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 908 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
909 | S: Maintained |
910 | F: arch/arm/mach-ixp4xx/ | |
911 | ||
838553c5 | 912 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
913 | M: Jonathan Cameron <[email protected]> |
914 | L: [email protected] (moderated for non-subscribers) | |
915 | S: Maintained | |
916 | F: arch/arm/mach-pxa/stargate2.c | |
917 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
918 | ||
2b7a52a4 | 919 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 920 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 921 | M: Dan Williams <[email protected]> |
efc03ecb | 922 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 923 | S: Maintained |
2b7a52a4 LB |
924 | |
925 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 926 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 927 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
928 | S: Maintained |
929 | ||
930 | ARM/LOGICPD PXA270 MACHINE SUPPORT | |
8b58be88 | 931 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 932 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
933 | S: Maintained |
934 | ||
3b886171 | 935 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 936 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
937 | S: Maintained |
938 | ||
75f41273 TP |
939 | ARM/Marvell Armada 370 and Armada XP SOC support |
940 | M: Jason Cooper <[email protected]> | |
941 | M: Andrew Lunn <[email protected]> | |
942 | M: Gregory Clement <[email protected]> | |
943 | L: [email protected] (moderated for non-subscribers) | |
944 | S: Maintained | |
945 | F: arch/arm/mach-mvebu/ | |
946 | ||
4f1312b0 NP |
947 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
948 | M: Jason Cooper <[email protected]> | |
949 | M: Andrew Lunn <[email protected]> | |
efc03ecb | 950 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
951 | S: Maintained |
952 | F: arch/arm/mach-dove/ | |
54a246ff NP |
953 | F: arch/arm/mach-kirkwood/ |
954 | F: arch/arm/mach-mv78xx0/ | |
955 | F: arch/arm/mach-orion5x/ | |
956 | F: arch/arm/plat-orion/ | |
3b886171 | 957 | |
d69ac131 AC |
958 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
959 | M: Alexander Clouter <[email protected]> | |
960 | L: [email protected] (moderated for non-subscribers) | |
961 | W: http://www.digriz.org.uk/ts78xx/kernel | |
962 | S: Maintained | |
963 | F: arch/arm/mach-orion5x/ts78xx-* | |
964 | ||
adcb079f AB |
965 | ARM/MICREL KS8695 ARCHITECTURE |
966 | M: Greg Ungerer <[email protected]> | |
967 | L: [email protected] (moderated for non-subscribers) | |
968 | F: arch/arm/mach-ks8695 | |
969 | S: Odd Fixes | |
970 | ||
d78ff0a5 | 971 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 972 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 973 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
974 | F: arch/arm/mach-pxa/mioa701.c |
975 | S: Maintained | |
976 | ||
9624dfe6 | 977 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 978 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
979 | S: Maintained |
980 | ||
e0ee9851 | 981 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 982 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 983 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
984 | M: STEricsson <[email protected]> |
985 | L: [email protected] (moderated for non-subscribers) | |
986 | S: Maintained | |
987 | F: arch/arm/mach-nomadik/ | |
988 | F: arch/arm/plat-nomadik/ | |
87572880 | 989 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 990 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 991 | |
9d76295a | 992 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 993 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
994 | L: [email protected] (subscribers-only) |
995 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
996 | S: Supported | |
997 | ||
0c19d21e DW |
998 | ARM/QUALCOMM MSM MACHINE SUPPORT |
999 | M: David Brown <[email protected]> | |
b4c9bfab | 1000 | M: Daniel Walker <[email protected]> |
0c19d21e | 1001 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1002 | L: [email protected] |
0c19d21e DW |
1003 | F: arch/arm/mach-msm/ |
1004 | F: drivers/video/msm/ | |
1005 | F: drivers/mmc/host/msm_sdcc.c | |
1006 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1007 | F: drivers/tty/serial/msm_serial.h |
1008 | F: drivers/tty/serial/msm_serial.c | |
8a5700cd | 1009 | F: drivers/platform/msm/ |
ea91db52 AD |
1010 | F: drivers/*/pm8???-* |
1011 | F: include/linux/mfd/pm8xxx/ | |
8cd5c866 | 1012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1013 | S: Maintained |
1014 | ||
8459c159 | 1015 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1016 | M: Dmitry Eremin-Solenikov <[email protected]> |
1017 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1018 | S: Maintained |
1019 | ||
5d783a2d | 1020 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1021 | M: Marek Vasut <[email protected]> |
75280787 | 1022 | L: [email protected] |
b5e4ad57 MV |
1023 | W: http://hackndev.com |
1024 | S: Maintained | |
933d35f0 JP |
1025 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1026 | F: arch/arm/mach-pxa/palmtx.c | |
1027 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1028 | F: arch/arm/mach-pxa/palmt5.c | |
1029 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1030 | F: arch/arm/mach-pxa/palmld.c | |
1031 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1032 | F: arch/arm/mach-pxa/palmte2.c | |
1033 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1034 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1035 | |
b57fe924 | 1036 | ARM/PALM TREO SUPPORT |
8b58be88 | 1037 | M: Tomas Cech <[email protected]> |
75280787 | 1038 | L: [email protected] |
90af5811 TSC |
1039 | W: http://hackndev.com |
1040 | S: Maintained | |
b57fe924 JP |
1041 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1042 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1043 | |
c49e1e63 | 1044 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1045 | M: Sergey Lapin <[email protected]> |
75280787 | 1046 | L: [email protected] |
7d2c86b5 JP |
1047 | W: http://hackndev.com |
1048 | S: Maintained | |
933d35f0 JP |
1049 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1050 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1051 | |
1da177e4 | 1052 | ARM/PLEB SUPPORT |
8b58be88 | 1053 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1054 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1055 | S: Maintained | |
1056 | ||
1057 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1058 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1059 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1060 | W: http://www.arm.linux.org.uk/ |
1061 | S: Maintained | |
1062 | ||
2b7a52a4 | 1063 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1064 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1065 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1066 | S: Maintained |
1067 | ||
d4275354 | 1068 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1069 | M: Russell King <[email protected]> |
efc03ecb | 1070 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1071 | W: http://www.arm.linux.org.uk/ |
1072 | S: Maintained | |
1073 | F: arch/arm/common/time-acorn.c | |
1074 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S | |
1075 | F: arch/arm/include/asm/hardware/ioc.h | |
1076 | F: arch/arm/include/asm/hardware/iomd.h | |
1077 | F: arch/arm/include/asm/hardware/memc.h | |
1078 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1079 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1080 | F: drivers/net/ethernet/i825xx/ether1* |
1081 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1082 | F: drivers/scsi/arm/ |
1083 | ||
1da177e4 | 1084 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1085 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
1086 | W: http://www.shark-linux.de/shark.html |
1087 | S: Maintained | |
1088 | ||
b21477f9 | 1089 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1090 | M: Ben Dooks <[email protected]> |
482ce512 | 1091 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1092 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1093 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1094 | W: http://www.fluff.org/ben/linux/ |
1095 | S: Maintained | |
482ce512 | 1096 | F: arch/arm/plat-samsung/ |
b21477f9 | 1097 | F: arch/arm/plat-s3c24xx/ |
482ce512 | 1098 | F: arch/arm/plat-s5p/ |
769bbb63 HS |
1099 | F: arch/arm/mach-s3c24*/ |
1100 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1101 | F: drivers/*/*s3c2410* |
1102 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1103 | F: drivers/spi/spi-s3c* |
1104 | F: sound/soc/samsung/* | |
1da177e4 | 1105 | |
0dcecae2 | 1106 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1107 | M: Kukjin Kim <[email protected]> |
1108 | L: [email protected] (moderated for non-subscribers) | |
1109 | L: [email protected] (moderated for non-subscribers) | |
1110 | S: Maintained | |
1111 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1112 | F: arch/arm/mach-exynos*/ |
f556cb07 | 1113 | |
10ffa964 KP |
1114 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1115 | M: Kyungmin Park <[email protected]> | |
1116 | L: [email protected] (moderated for non-subscribers) | |
1117 | S: Maintained | |
1118 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1119 | F: arch/arm/mach-s5pv210/mach-goni.c | |
38f1b4c5 JP |
1120 | F: arch/arm/mach-exynos/mach-universal_c210.c |
1121 | F: arch/arm/mach-exynos/mach-nuri.c | |
10ffa964 | 1122 | |
aaac7d9e KP |
1123 | ARM/SAMSUNG S5P SERIES FIMC SUPPORT |
1124 | M: Kyungmin Park <[email protected]> | |
1125 | M: Sylwester Nawrocki <[email protected]> | |
1126 | L: [email protected] | |
1127 | L: [email protected] | |
1128 | S: Maintained | |
1129 | F: arch/arm/plat-s5p/dev-fimc* | |
1130 | F: arch/arm/plat-samsung/include/plat/*fimc* | |
90d72ac6 | 1131 | F: drivers/media/platform/s5p-fimc/ |
aaac7d9e | 1132 | |
e6a476fd MS |
1133 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1134 | M: Kyungmin Park <[email protected]> | |
1135 | M: Kamil Debski <[email protected]> | |
6305902c | 1136 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1137 | L: [email protected] |
1138 | L: [email protected] | |
1139 | S: Maintained | |
1140 | F: arch/arm/plat-s5p/dev-mfc.c | |
90d72ac6 | 1141 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1142 | |
1143 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1144 | M: Kyungmin Park <[email protected]> | |
1145 | M: Tomasz Stanislawski <[email protected]> | |
1146 | L: [email protected] | |
1147 | L: [email protected] | |
1148 | S: Maintained | |
90d72ac6 | 1149 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1150 | |
d48d38e8 PM |
1151 | ARM/SHMOBILE ARM ARCHITECTURE |
1152 | M: Paul Mundt <[email protected]> | |
1153 | M: Magnus Damm <[email protected]> | |
1154 | L: [email protected] | |
d48d38e8 | 1155 | W: http://oss.renesas.com |
bbff48f5 | 1156 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
d22c0e50 | 1157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest |
d48d38e8 PM |
1158 | S: Supported |
1159 | F: arch/arm/mach-shmobile/ | |
1160 | F: drivers/sh/ | |
1161 | ||
66314223 DN |
1162 | ARM/SOCFPGA ARCHITECTURE |
1163 | M: Dinh Nguyen <[email protected]> | |
1164 | S: Maintained | |
1165 | F: arch/arm/mach-socfpga/ | |
1166 | ||
1167 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1168 | M: Dinh Nguyen <[email protected]> | |
1169 | S: Maintained | |
1170 | F: drivers/clk/socfpga/ | |
1171 | ||
2b7a52a4 | 1172 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1173 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1174 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1175 | S: Maintained |
1176 | ||
1bbd7089 | 1177 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1178 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1179 | L: [email protected] (moderated for non-subscribers) |
1180 | S: Maintained | |
1181 | ||
2b7a52a4 | 1182 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1183 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1184 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1185 | S: Maintained |
1186 | ||
98ad6e3b | 1187 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1188 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1189 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1190 | W: http://www.mcuos.com |
1191 | S: Maintained | |
4e89e8f6 | 1192 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1193 | F: drivers/input/keyboard/w90p910_keypad.c |
1194 | F: drivers/input/touchscreen/w90p910_ts.c | |
1195 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1196 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1197 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1198 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1199 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1200 | F: drivers/usb/host/ehci-w90x900.c |
1201 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1202 | |
54274d71 | 1203 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1204 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1205 | L: [email protected] (moderated for non-subscribers) |
1206 | S: Supported | |
1207 | F: arch/arm/mach-u300/ | |
1208 | F: drivers/i2c/busses/i2c-stu300.c | |
1209 | F: drivers/rtc/rtc-coh901331.c | |
1210 | F: drivers/watchdog/coh901327_wdt.c | |
1211 | F: drivers/dma/coh901318* | |
87572880 LW |
1212 | F: drivers/mfd/ab3100* |
1213 | F: drivers/rtc/rtc-ab3100.c | |
1214 | F: drivers/rtc/rtc-coh901331.c | |
1215 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1216 | |
87572880 | 1217 | ARM/Ux500 ARM ARCHITECTURE |
870725d9 | 1218 | M: Srinidhi Kasagar <[email protected]> |
e4651a9f | 1219 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1220 | L: [email protected] (moderated for non-subscribers) |
1221 | S: Maintained | |
1222 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1223 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1224 | F: drivers/dma/ste_dma40* |
e4651a9f | 1225 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1226 | F: drivers/mfd/abx500* |
1227 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1228 | F: drivers/mfd/dbx500* |
1229 | F: drivers/mfd/db8500* | |
1230 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1231 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1232 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1234 | |
d4275354 | 1235 | ARM/VFP SUPPORT |
8b58be88 | 1236 | M: Russell King <[email protected]> |
efc03ecb | 1237 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1238 | W: http://www.arm.linux.org.uk/ |
1239 | S: Maintained | |
1240 | F: arch/arm/vfp/ | |
1241 | ||
e66b6d8e MV |
1242 | ARM/VOIPAC PXA270 SUPPORT |
1243 | M: Marek Vasut <[email protected]> | |
1244 | L: [email protected] (moderated for non-subscribers) | |
1245 | S: Maintained | |
1246 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1247 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1248 | |
04529fe2 TP |
1249 | ARM/VT8500 ARM ARCHITECTURE |
1250 | M: Tony Prisk <[email protected]> | |
1251 | L: [email protected] (moderated for non-subscribers) | |
1252 | S: Maintained | |
1253 | F: arch/arm/mach-vt8500/ | |
1254 | F: drivers/video/vt8500lcdfb.* | |
1255 | F: drivers/video/wm8505fb* | |
1256 | F: drivers/video/wmt_ge_rops.* | |
1257 | F: drivers/tty/serial/vt8500_serial.c | |
1258 | F: drivers/rtc/rtc-vt8500-c | |
1259 | ||
e66b6d8e MV |
1260 | ARM/ZIPIT Z2 SUPPORT |
1261 | M: Marek Vasut <[email protected]> | |
1262 | L: [email protected] (moderated for non-subscribers) | |
1263 | S: Maintained | |
1264 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1265 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1266 | |
38074229 CM |
1267 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1268 | M: Catalin Marinas <[email protected]> | |
1269 | L: [email protected] (moderated for non-subscribers) | |
1270 | S: Maintained | |
1271 | F: arch/arm64/ | |
1272 | ||
d58de038 GJ |
1273 | ASC7621 HARDWARE MONITOR DRIVER |
1274 | M: George Joseph <[email protected]> | |
1275 | L: [email protected] | |
1276 | S: Maintained | |
1277 | F: Documentation/hwmon/asc7621 | |
1278 | F: drivers/hwmon/asc7621.c | |
1279 | ||
b229ece9 | 1280 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
8b58be88 | 1281 | M: Corentin Chary <[email protected]> |
1da177e4 | 1282 | L: [email protected] |
d0944853 | 1283 | L: [email protected] |
76593d6f | 1284 | W: http://acpi4asus.sf.net |
85091b71 | 1285 | S: Maintained |
b229ece9 CC |
1286 | F: drivers/platform/x86/asus*.c |
1287 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1288 | |
6ea884db | 1289 | ASUS ASB100 HARDWARE MONITOR DRIVER |
8b58be88 | 1290 | M: "Mark M. Hoffman" <[email protected]> |
6ea884db MH |
1291 | L: [email protected] |
1292 | S: Maintained | |
679655da | 1293 | F: drivers/hwmon/asb100.c |
6ea884db | 1294 | |
953a6479 | 1295 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1dd8372d | 1296 | M: Dan Williams <[email protected]> |
b3e5f263 | 1297 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1298 | S: Maintained |
679655da JP |
1299 | F: Documentation/crypto/async-tx-api.txt |
1300 | F: crypto/async_tx/ | |
1301 | F: drivers/dma/ | |
1302 | F: include/linux/dmaengine.h | |
1303 | F: include/linux/async_tx.h | |
b3e5f263 | 1304 | |
a1867d36 WS |
1305 | AT24 EEPROM DRIVER |
1306 | M: Wolfram Sang <[email protected]> | |
1307 | L: [email protected] | |
1308 | S: Maintained | |
1309 | F: drivers/misc/eeprom/at24.c | |
1310 | F: include/linux/i2c/at24.h | |
1311 | ||
e7839f25 | 1312 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1313 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1314 | W: http://support.coraid.com/support/linux |
1da177e4 | 1315 | S: Supported |
679655da JP |
1316 | F: Documentation/aoe/ |
1317 | F: drivers/block/aoe/ | |
1da177e4 | 1318 | |
9a10a870 | 1319 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1320 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1321 | L: [email protected] |
1322 | S: Supported | |
1323 | F: drivers/net/wireless/ath/* | |
1324 | ||
fa1c114f | 1325 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1326 | M: Jiri Slaby <[email protected]> |
1327 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1328 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1329 | L: [email protected] |
1330 | L: [email protected] | |
72c706b7 | 1331 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1332 | S: Maintained |
fa451753 | 1333 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1334 | |
12e62d6f KV |
1335 | ATHEROS ATH6KL WIRELESS DRIVER |
1336 | M: Kalle Valo <[email protected]> | |
1337 | L: [email protected] | |
1338 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
1339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git | |
1340 | S: Supported | |
1341 | F: drivers/net/wireless/ath/ath6kl/ | |
1342 | ||
f078f209 | 1343 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1344 | M: "Luis R. Rodriguez" <[email protected]> |
1345 | M: Jouni Malinen <[email protected]> | |
1346 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1347 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1348 | L: [email protected] |
1349 | L: [email protected] | |
72c706b7 | 1350 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1351 | S: Supported |
fa451753 | 1352 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1353 | |
1d7e1e6b CL |
1354 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1355 | M: Christian Lamparter <[email protected]> | |
1356 | L: [email protected] | |
1357 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1358 | S: Maintained | |
1359 | F: drivers/net/wireless/ath/carl9170/ | |
1360 | ||
2c2a6172 LT |
1361 | ATK0110 HWMON DRIVER |
1362 | M: Luca Tettamanti <[email protected]> | |
1363 | L: [email protected] | |
1364 | S: Maintained | |
1365 | F: drivers/hwmon/asus_atk0110.c | |
1366 | ||
6f69a6d7 | 1367 | ATI_REMOTE2 DRIVER |
8b58be88 | 1368 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1369 | S: Maintained |
679655da | 1370 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1371 | |
7ae115b4 | 1372 | ATLX ETHERNET DRIVERS |
8b58be88 | 1373 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1374 | M: Chris Snook <[email protected]> |
e443e383 | 1375 | L: [email protected] |
8d5ca6ec JC |
1376 | W: http://sourceforge.net/projects/atl1 |
1377 | W: http://atl1.sourceforge.net | |
1378 | S: Maintained | |
2b133ad6 | 1379 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1380 | |
1da177e4 | 1381 | ATM |
8b58be88 | 1382 | M: Chas Williams <[email protected]> |
476604de | 1383 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1384 | L: [email protected] |
1da177e4 LT |
1385 | W: http://linux-atm.sourceforge.net |
1386 | S: Maintained | |
679655da JP |
1387 | F: drivers/atm/ |
1388 | F: include/linux/atm* | |
1da177e4 | 1389 | |
272f133a | 1390 | ATMEL AT91 MCI DRIVER |
24e1511f | 1391 | M: Ludovic Desroches <[email protected]> |
efc03ecb | 1392 | L: [email protected] (moderated for non-subscribers) |
81764fa9 PO |
1393 | W: http://www.atmel.com/products/AT91/ |
1394 | W: http://www.at91.com/ | |
1395 | S: Maintained | |
679655da | 1396 | F: drivers/mmc/host/at91_mci.c |
272f133a | 1397 | |
04ac2f46 | 1398 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1399 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1400 | S: Maintained |
1401 | F: drivers/mmc/host/atmel-mci.c | |
1402 | F: drivers/mmc/host/atmel-mci-regs.h | |
1403 | ||
a1cfac48 | 1404 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1405 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1406 | S: Supported |
df621252 | 1407 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1408 | |
b414dc16 NF |
1409 | ATMEL DMA DRIVER |
1410 | M: Nicolas Ferre <[email protected]> | |
1411 | L: [email protected] (moderated for non-subscribers) | |
1412 | S: Supported | |
1413 | F: drivers/dma/at_hdmac.c | |
1414 | F: drivers/dma/at_hdmac_regs.h | |
1415 | F: arch/arm/mach-at91/include/mach/at_hdmac.h | |
1416 | ||
15515545 JW |
1417 | ATMEL ISI DRIVER |
1418 | M: Josh Wu <[email protected]> | |
1419 | L: [email protected] | |
1420 | S: Supported | |
90d72ac6 | 1421 | F: drivers/media/platform/atmel-isi.c |
15515545 JW |
1422 | F: include/media/atmel-isi.h |
1423 | ||
8f4c79ce | 1424 | ATMEL LCDFB DRIVER |
8b58be88 | 1425 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1426 | L: [email protected] |
8f4c79ce | 1427 | S: Maintained |
679655da JP |
1428 | F: drivers/video/atmel_lcdfb.c |
1429 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1430 | |
89e5785f | 1431 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1432 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1433 | S: Supported |
9f2f381f | 1434 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1435 | |
754ce4f2 | 1436 | ATMEL SPI DRIVER |
a02875a6 | 1437 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1438 | S: Supported |
9df92e6c | 1439 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1440 | |
e9cb1c5a NF |
1441 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1442 | M: Nicolas Ferre <[email protected]> | |
1443 | L: [email protected] (moderated for non-subscribers) | |
1444 | S: Supported | |
1445 | F: drivers/misc/atmel_tclib.c | |
1446 | F: drivers/clocksource/tcb_clksrc.c | |
1447 | ||
ff2675d6 JW |
1448 | ATMEL TSADCC DRIVER |
1449 | M: Josh Wu <[email protected]> | |
1450 | L: [email protected] | |
1451 | S: Supported | |
1452 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1453 | ||
914a3f3b | 1454 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1455 | M: Nicolas Ferre <[email protected]> |
1456 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1457 | S: Supported |
679655da | 1458 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1459 | |
1da177e4 | 1460 | ATMEL WIRELESS DRIVER |
8b58be88 | 1461 | M: Simon Kelley <[email protected]> |
724c6b35 | 1462 | L: [email protected] |
1da177e4 LT |
1463 | W: http://www.thekelleys.org.uk/atmel |
1464 | W: http://atmelwlandriver.sourceforge.net/ | |
1465 | S: Maintained | |
679655da | 1466 | F: drivers/net/wireless/atmel* |
1da177e4 | 1467 | |
a92b7b80 | 1468 | AUDIT SUBSYSTEM |
8b58be88 JP |
1469 | M: Al Viro <[email protected]> |
1470 | M: Eric Paris <[email protected]> | |
b9a06207 | 1471 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1472 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1474 | S: Maintained |
679655da JP |
1475 | F: include/linux/audit.h |
1476 | F: kernel/audit* | |
a92b7b80 | 1477 | |
70e84049 | 1478 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1479 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1480 | W: http://miguelojeda.es/auxdisplay.htm |
1481 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1482 | S: Maintained |
679655da JP |
1483 | F: drivers/auxdisplay/ |
1484 | F: include/linux/cfag12864b.h | |
70e84049 | 1485 | |
5f97f7f9 | 1486 | AVR32 ARCHITECTURE |
e336f61f HCE |
1487 | M: Haavard Skinnemoen <[email protected]> |
1488 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 HS |
1489 | W: http://www.atmel.com/products/AVR32/ |
1490 | W: http://avr32linux.org/ | |
1491 | W: http://avrfreaks.net/ | |
e336f61f | 1492 | S: Maintained |
679655da | 1493 | F: arch/avr32/ |
5f97f7f9 HS |
1494 | |
1495 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1496 | M: Haavard Skinnemoen <[email protected]> |
1497 | M: Hans-Christian Egtvedt <[email protected]> | |
1498 | S: Maintained | |
679655da | 1499 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1500 | |
1da177e4 | 1501 | AX.25 NETWORK LAYER |
8b58be88 | 1502 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1503 | L: [email protected] |
d34cb28a | 1504 | W: http://www.linux-ax25.org/ |
1da177e4 | 1505 | S: Maintained |
679655da JP |
1506 | F: include/linux/ax25.h |
1507 | F: include/net/ax25.h | |
1508 | F: net/ax25/ | |
1da177e4 | 1509 | |
d5269395 MCC |
1510 | AZ6007 DVB DRIVER |
1511 | M: Mauro Carvalho Chehab <[email protected]> | |
1512 | L: [email protected] | |
1513 | W: http://linuxtv.org | |
1514 | T: git git://linuxtv.org/media_tree.git | |
1515 | S: Maintained | |
1516 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1517 | ||
e2d1d6c0 | 1518 | B43 WIRELESS DRIVER |
8b58be88 | 1519 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1520 | L: [email protected] |
ed072f9e | 1521 | L: [email protected] |
491b26b4 | 1522 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1523 | S: Maintained |
679655da | 1524 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1525 | |
1526 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1527 | M: Larry Finger <[email protected]> |
1528 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1529 | L: [email protected] |
ed072f9e | 1530 | L: [email protected] |
491b26b4 | 1531 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1532 | S: Maintained |
679655da | 1533 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1534 | |
300abeb5 | 1535 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1536 | M: Richard Purdie <[email protected]> |
300abeb5 | 1537 | S: Maintained |
679655da JP |
1538 | F: drivers/video/backlight/ |
1539 | F: include/linux/backlight.h | |
300abeb5 | 1540 | |
c6c8fea2 SE |
1541 | BATMAN ADVANCED |
1542 | M: Marek Lindner <[email protected]> | |
1543 | M: Simon Wunderlich <[email protected]> | |
cf9ab887 | 1544 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1545 | L: [email protected] |
1546 | W: http://www.open-mesh.org/ | |
1547 | S: Maintained | |
1548 | F: net/batman-adv/ | |
1549 | ||
e2d1d6c0 | 1550 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1551 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1552 | L: [email protected] |
1553 | W: http://www.baycom.org/~tom/ham/ham.html | |
1554 | S: Maintained | |
679655da | 1555 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 RD |
1556 | |
1557 | BEFS FILE SYSTEM | |
55817d3d | 1558 | S: Orphan |
679655da JP |
1559 | F: Documentation/filesystems/befs.txt |
1560 | F: fs/befs/ | |
e2d1d6c0 RD |
1561 | |
1562 | BFS FILE SYSTEM | |
8b58be88 | 1563 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1564 | S: Maintained |
679655da JP |
1565 | F: Documentation/filesystems/bfs.txt |
1566 | F: fs/bfs/ | |
1567 | F: include/linux/bfs_fs.h | |
e2d1d6c0 | 1568 | |
1394f032 | 1569 | BLACKFIN ARCHITECTURE |
8b58be88 | 1570 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1571 | L: [email protected] |
e3b2d3f3 BW |
1572 | W: http://blackfin.uclinux.org |
1573 | S: Supported | |
679655da | 1574 | F: arch/blackfin/ |
566da5b2 | 1575 | |
e190d6b1 | 1576 | BLACKFIN EMAC DRIVER |
49afa609 | 1577 | L: [email protected] |
e190d6b1 BW |
1578 | W: http://blackfin.uclinux.org |
1579 | S: Supported | |
7b35f033 | 1580 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1581 | |
566da5b2 | 1582 | BLACKFIN RTC DRIVER |
8b58be88 | 1583 | M: Mike Frysinger <[email protected]> |
49afa609 | 1584 | L: [email protected] |
566da5b2 MF |
1585 | W: http://blackfin.uclinux.org |
1586 | S: Supported | |
679655da | 1587 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1588 | |
936ed49a | 1589 | BLACKFIN SDH DRIVER |
109ec8c3 | 1590 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1591 | L: [email protected] |
1592 | W: http://blackfin.uclinux.org | |
1593 | S: Supported | |
1594 | F: drivers/mmc/host/bfin_sdh.c | |
1595 | ||
1394f032 | 1596 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1597 | M: Sonic Zhang <[email protected]> |
49afa609 | 1598 | L: [email protected] |
e3b2d3f3 BW |
1599 | W: http://blackfin.uclinux.org |
1600 | S: Supported | |
8460241e | 1601 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1602 | |
1e6d320f | 1603 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1604 | M: Mike Frysinger <[email protected]> |
49afa609 | 1605 | L: [email protected] |
1e6d320f BW |
1606 | W: http://blackfin.uclinux.org |
1607 | S: Supported | |
679655da | 1608 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1609 | |
d24ecfcc | 1610 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1611 | M: Sonic Zhang <[email protected]> |
49afa609 | 1612 | L: [email protected] |
d24ecfcc BW |
1613 | W: http://blackfin.uclinux.org/ |
1614 | S: Supported | |
679655da | 1615 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1616 | |
b54cf35a JSM |
1617 | BLINKM RGB LED DRIVER |
1618 | M: Jan-Simon Moeller <[email protected]> | |
1619 | S: Maintained | |
1620 | F: drivers/leds/leds-blinkm.c | |
1621 | ||
1da177e4 | 1622 | BLOCK LAYER |
8b58be88 | 1623 | M: Jens Axboe <[email protected]> |
08deed1e | 1624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1625 | S: Maintained |
679655da | 1626 | F: block/ |
1da177e4 | 1627 | |
2b54aaef | 1628 | BLOCK2MTD DRIVER |
8b58be88 | 1629 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1630 | L: [email protected] |
1631 | S: Maintained | |
679655da | 1632 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1633 | |
63fbd24e | 1634 | BLUETOOTH DRIVERS |
8b58be88 | 1635 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1636 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1637 | M: Johan Hedberg <[email protected]> |
781c2844 | 1638 | L: [email protected] |
63fbd24e | 1639 | W: http://www.bluez.org/ |
22e7a424 MH |
1640 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1641 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1642 | S: Maintained |
679655da | 1643 | F: drivers/bluetooth/ |
1da177e4 | 1644 | |
63fbd24e | 1645 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1646 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1647 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1648 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1649 | L: [email protected] |
1650 | W: http://www.bluez.org/ | |
22e7a424 MH |
1651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1653 | S: Maintained |
679655da JP |
1654 | F: net/bluetooth/ |
1655 | F: include/net/bluetooth/ | |
1da177e4 LT |
1656 | |
1657 | BONDING DRIVER | |
8b58be88 | 1658 | M: Jay Vosburgh <[email protected]> |
4cd72c6e | 1659 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1660 | L: [email protected] |
ce00f85c JC |
1661 | W: http://sourceforge.net/projects/bonding/ |
1662 | S: Supported | |
679655da JP |
1663 | F: drivers/net/bonding/ |
1664 | F: include/linux/if_bonding.h | |
1da177e4 | 1665 | |
39105890 | 1666 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1667 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1668 | L: [email protected] |
1669 | S: Supported | |
adfc5217 | 1670 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1671 | |
948c51e6 | 1672 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1673 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1674 | L: [email protected] |
1675 | S: Supported | |
adfc5217 JK |
1676 | F: drivers/net/ethernet/broadcom/bnx2.* |
1677 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1678 | |
4d9d2cb0 | 1679 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1680 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1681 | L: [email protected] |
1682 | S: Supported | |
adfc5217 | 1683 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1684 | |
f680f25c SW |
1685 | BROADCOM BCM2835 ARM ARCHICTURE |
1686 | M: Stephen Warren <[email protected]> | |
1687 | L: [email protected] (moderated for non-subscribers) | |
1688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1689 | S: Maintained | |
1690 | F: arch/arm/mach-bcm2835/ | |
1691 | F: arch/arm/boot/dts/bcm2835* | |
1692 | F: arch/arm/configs/bcm2835_defconfig | |
1693 | F: drivers/*/*bcm2835* | |
1694 | ||
948c51e6 | 1695 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
1696 | M: Matt Carlson <[email protected]> |
1697 | M: Michael Chan <[email protected]> | |
948c51e6 MC |
1698 | L: [email protected] |
1699 | S: Supported | |
adfc5217 | 1700 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1701 | |
a9533e7e HP |
1702 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1703 | M: Brett Rudley <[email protected]> | |
818c07b8 HP |
1704 | M: Roland Vossen <[email protected]> |
1705 | M: Arend van Spriel <[email protected]> | |
85d63686 RV |
1706 | M: Franky (Zhenhui) Lin <[email protected]> |
1707 | M: Kan Yan <[email protected]> | |
a9533e7e | 1708 | L: [email protected] |
5615171c | 1709 | L: [email protected] |
a9533e7e | 1710 | S: Supported |
f62ebdd5 | 1711 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1712 | |
9958d6f9 BPG |
1713 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1714 | M: Bhanu Prakash Gollapudi <[email protected]> | |
1715 | L: [email protected] | |
1716 | S: Supported | |
1717 | F: drivers/scsi/bnx2fc/ | |
1718 | ||
c9678d86 RM |
1719 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1720 | M: Rafał Miłecki <[email protected]> | |
1721 | L: [email protected] | |
1722 | S: Maintained | |
1723 | F: drivers/bcma/ | |
1724 | F: include/linux/bcma/ | |
1725 | ||
7725ccfd | 1726 | BROCADE BFA FC SCSI DRIVER |
ad07b4a8 | 1727 | M: Krishna C Gudipati <[email protected]> |
455518e7 JP |
1728 | L: [email protected] |
1729 | S: Supported | |
1730 | F: drivers/scsi/bfa/ | |
7725ccfd | 1731 | |
8b230ed8 RM |
1732 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1733 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1734 | L: [email protected] |
1735 | S: Supported | |
f844a0ea | 1736 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1737 | |
5cdf7f76 | 1738 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1739 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1740 | L: [email protected] |
1741 | S: Supported | |
679655da JP |
1742 | F: block/bsg.c |
1743 | F: include/linux/bsg.h | |
5cdf7f76 | 1744 | |
af39917d CL |
1745 | BT87X AUDIO DRIVER |
1746 | M: Clemens Ladisch <[email protected]> | |
1747 | L: [email protected] (moderated for non-subscribers) | |
1748 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1749 | S: Maintained | |
1750 | F: Documentation/sound/alsa/Bt87x.txt | |
1751 | F: sound/pci/bt87x.c | |
1752 | ||
ff1d5c2f | 1753 | BT8XXGPIO DRIVER |
eb032b98 | 1754 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1755 | W: http://bu3sch.de/btgpio.php |
1756 | S: Maintained | |
72dbb705 | 1757 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1758 | |
eb1eb04f | 1759 | BTRFS FILE SYSTEM |
9c106405 | 1760 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1761 | L: [email protected] |
1762 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1763 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1765 | S: Maintained |
679655da JP |
1766 | F: Documentation/filesystems/btrfs.txt |
1767 | F: fs/btrfs/ | |
eb1eb04f | 1768 | |
1da177e4 | 1769 | BTTV VIDEO4LINUX DRIVER |
275ffde4 | 1770 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1771 | L: [email protected] |
96b6aba0 | 1772 | W: http://linuxtv.org |
275ffde4 | 1773 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1774 | S: Odd fixes |
679655da | 1775 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1776 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1777 | |
af39917d CL |
1778 | C-MEDIA CMI8788 DRIVER |
1779 | M: Clemens Ladisch <[email protected]> | |
1780 | L: [email protected] (moderated for non-subscribers) | |
1781 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1782 | S: Maintained | |
1783 | F: sound/pci/oxygen/ | |
1784 | ||
2141355f MS |
1785 | C6X ARCHITECTURE |
1786 | M: Mark Salter <[email protected]> | |
1787 | M: Aurelien Jacquiot <[email protected]> | |
1788 | L: [email protected] | |
1789 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1790 | S: Maintained | |
1791 | F: arch/c6x/ | |
1792 | ||
a5432f5a | 1793 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1794 | M: David Howells <[email protected]> |
a5432f5a DH |
1795 | L: [email protected] |
1796 | S: Supported | |
1797 | F: Documentation/filesystems/caching/cachefiles.txt | |
1798 | F: fs/cachefiles/ | |
1799 | ||
77d5140f | 1800 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1801 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1802 | L: [email protected] |
275ffde4 | 1803 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1804 | S: Maintained |
679655da | 1805 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1806 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1807 | |
201b6bab JP |
1808 | CAIF NETWORK LAYER |
1809 | M: Sjur Braendeland <[email protected]> | |
1810 | L: [email protected] | |
1811 | S: Supported | |
1812 | F: Documentation/networking/caif/ | |
1813 | F: drivers/net/caif/ | |
1814 | F: include/linux/caif/ | |
1815 | F: include/net/caif/ | |
1816 | F: net/caif/ | |
1817 | ||
77dac90f | 1818 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1819 | M: Muli Ben-Yehuda <[email protected]> |
1820 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1821 | L: [email protected] |
1822 | S: Maintained | |
679655da JP |
1823 | F: arch/x86/kernel/pci-calgary_64.c |
1824 | F: arch/x86/kernel/tce_64.c | |
1825 | F: arch/x86/include/asm/calgary.h | |
1826 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1827 | |
e2d1d6c0 | 1828 | CAN NETWORK LAYER |
8d15d386 | 1829 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 1830 | L: [email protected] |
ec78213a | 1831 | W: http://gitorious.org/linux-can |
405cc273 | 1832 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1833 | S: Maintained |
8d15d386 | 1834 | F: net/can/ |
679655da | 1835 | F: include/linux/can.h |
8d15d386 OH |
1836 | F: include/linux/can/core.h |
1837 | F: include/linux/can/bcm.h | |
1838 | F: include/linux/can/raw.h | |
c49b82da | 1839 | F: include/linux/can/gw.h |
e2d1d6c0 | 1840 | |
4261a204 | 1841 | CAN NETWORK DRIVERS |
8b58be88 | 1842 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 1843 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 1844 | L: [email protected] |
ec78213a | 1845 | W: http://gitorious.org/linux-can |
405cc273 | 1846 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 1847 | S: Maintained |
8d15d386 OH |
1848 | F: drivers/net/can/ |
1849 | F: include/linux/can/dev.h | |
1850 | F: include/linux/can/error.h | |
1851 | F: include/linux/can/netlink.h | |
1852 | F: include/linux/can/platform/ | |
4261a204 | 1853 | |
95d16c72 JM |
1854 | CAPABILITIES |
1855 | M: Serge Hallyn <[email protected]> | |
1856 | L: [email protected] | |
6305902c | 1857 | S: Supported |
95d16c72 JM |
1858 | F: include/linux/capability.h |
1859 | F: security/capability.c | |
6305902c | 1860 | F: security/commoncap.c |
38a94118 | 1861 | F: kernel/capability.c |
95d16c72 | 1862 | |
b8154542 | 1863 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1864 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
1865 | L: [email protected] |
1866 | L: [email protected] | |
b8154542 AB |
1867 | W: http://www.ibm.com/developerworks/power/cell/ |
1868 | S: Supported | |
679655da | 1869 | F: arch/powerpc/include/asm/cell*.h |
679655da JP |
1870 | F: arch/powerpc/include/asm/spu*.h |
1871 | F: arch/powerpc/oprofile/*cell* | |
1872 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1873 | |
9030aaf9 | 1874 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 1875 | M: Sage Weil <[email protected]> |
82593f87 | 1876 | L: [email protected] |
09d90327 | 1877 | W: http://ceph.com/ |
fb99f881 | 1878 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
1879 | S: Supported |
1880 | F: Documentation/filesystems/ceph.txt | |
1881 | F: fs/ceph | |
3d14c5d2 YS |
1882 | F: net/ceph |
1883 | F: include/linux/ceph | |
09d90327 | 1884 | F: include/linux/crush |
9030aaf9 | 1885 | |
18332a80 | 1886 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 1887 | L: [email protected] |
10c6c9c9 | 1888 | S: Orphan |
679655da JP |
1889 | F: Documentation/usb/WUSB-Design-overview.txt |
1890 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
1891 | F: drivers/usb/host/hwa-hc.c |
1892 | F: drivers/usb/host/whci/ | |
679655da JP |
1893 | F: drivers/usb/wusbcore/ |
1894 | F: include/linux/usb/wusb* | |
18332a80 | 1895 | |
70e84049 | 1896 | CFAG12864B LCD DRIVER |
8b58be88 | 1897 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1898 | W: http://miguelojeda.es/auxdisplay.htm |
1899 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1900 | S: Maintained |
679655da JP |
1901 | F: drivers/auxdisplay/cfag12864b.c |
1902 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
1903 | |
1904 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 1905 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1906 | W: http://miguelojeda.es/auxdisplay.htm |
1907 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1908 | S: Maintained |
679655da JP |
1909 | F: drivers/auxdisplay/cfag12864bfb.c |
1910 | F: include/linux/cfag12864b.h | |
70e84049 | 1911 | |
704232c2 | 1912 | CFG80211 and NL80211 |
8b58be88 | 1913 | M: Johannes Berg <[email protected]> |
704232c2 | 1914 | L: [email protected] |
ce466579 JB |
1915 | W: http://wireless.kernel.org/ |
1916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
1917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 1918 | S: Maintained |
679655da JP |
1919 | F: include/linux/nl80211.h |
1920 | F: include/net/cfg80211.h | |
1921 | F: net/wireless/* | |
1922 | X: net/wireless/wext* | |
704232c2 | 1923 | |
46e64261 GKH |
1924 | CHAR and MISC DRIVERS |
1925 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 1926 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 1927 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 1928 | S: Supported |
46e64261 GKH |
1929 | F: drivers/char/* |
1930 | F: drivers/misc/* | |
1931 | ||
0a920b5b | 1932 | CHECKPATCH |
8b58be88 | 1933 | M: Andy Whitcroft <[email protected]> |
0a920b5b | 1934 | S: Supported |
679655da | 1935 | F: scripts/checkpatch.pl |
0a920b5b | 1936 | |
f8407f26 HW |
1937 | CHINESE DOCUMENTATION |
1938 | M: Harry Wei <[email protected]> | |
1939 | L: [email protected] | |
1940 | L: [email protected] (moderated for non-subscribers) | |
1941 | S: Maintained | |
1942 | F: Documentation/zh_CN/ | |
1943 | ||
2721ea2c AS |
1944 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
1945 | M: Alexander Shishkin <[email protected]> | |
1946 | L: [email protected] | |
1947 | S: Maintained | |
1948 | F: drivers/usb/chipidea/ | |
1949 | ||
641cb85e | 1950 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 1951 | M: Christian Benvenuti <[email protected]> |
641cb85e | 1952 | M: Roopa Prabhu <[email protected]> |
5c6652f5 NP |
1953 | M: Neel Patel <[email protected]> |
1954 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 1955 | S: Supported |
a6a5580c | 1956 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 1957 | |
2b7a52a4 | 1958 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 1959 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
1960 | L: [email protected] |
1961 | S: Maintained | |
57d0b7a0 | 1962 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 1963 | |
2b7a52a4 | 1964 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 1965 | M: Lennert Buytenhek <[email protected]> |
6372594a | 1966 | L: [email protected] |
2b7a52a4 | 1967 | S: Maintained |
679655da | 1968 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 1969 | |
d9e9d82c | 1970 | CIRRUS LOGIC CS4270 SOUND DRIVER |
8b58be88 | 1971 | M: Timur Tabi <[email protected]> |
93711660 | 1972 | L: [email protected] (moderated for non-subscribers) |
d9e9d82c | 1973 | S: Supported |
679655da | 1974 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 1975 | |
94574d9a KRW |
1976 | CLEANCACHE API |
1977 | M: Konrad Rzeszutek Wilk <[email protected]> | |
1978 | L: [email protected] | |
1979 | S: Maintained | |
1980 | F: mm/cleancache.c | |
1981 | F: include/linux/cleancache.h | |
1982 | ||
d4275354 | 1983 | CLK API |
8b58be88 | 1984 | M: Russell King <[email protected]> |
37417046 | 1985 | S: Maintained |
d4275354 RK |
1986 | F: include/linux/clk.h |
1987 | ||
5df6d737 | 1988 | CISCO FCOE HBA DRIVER |
8b58be88 | 1989 | M: Abhijeet Joglekar <[email protected]> |
d7e01dc6 AJ |
1990 | M: Venkata Siva Vijayendra Bhamidipati <[email protected]> |
1991 | M: Brian Uchino <[email protected]> | |
5df6d737 AJ |
1992 | L: [email protected] |
1993 | S: Supported | |
2a99921a | 1994 | F: drivers/scsi/fnic/ |
5df6d737 | 1995 | |
529aa8cb TLSC |
1996 | CMPC ACPI DRIVER |
1997 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
1998 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 1999 | L: [email protected] |
529aa8cb TLSC |
2000 | S: Supported |
2001 | F: drivers/platform/x86/classmate-laptop.c | |
2002 | ||
74425eee | 2003 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2004 | M: Julia Lawall <[email protected]> |
74425eee | 2005 | M: Gilles Muller <[email protected]> |
26de9c26 NP |
2006 | M: Nicolas Palix <[email protected]> |
2007 | L: [email protected] (moderated for non-subscribers) | |
74425eee NP |
2008 | W: http://coccinelle.lip6.fr/ |
2009 | S: Supported | |
2010 | F: scripts/coccinelle/ | |
2011 | F: scripts/coccicheck | |
2012 | ||
1da177e4 | 2013 | CODA FILE SYSTEM |
8b58be88 | 2014 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2015 | M: [email protected] |
2016 | L: [email protected] | |
2017 | W: http://www.coda.cs.cmu.edu/ | |
2018 | S: Maintained | |
679655da JP |
2019 | F: Documentation/filesystems/coda.txt |
2020 | F: fs/coda/ | |
2021 | F: include/linux/coda*.h | |
1da177e4 | 2022 | |
7704addb MT |
2023 | COMMON CLK FRAMEWORK |
2024 | M: Mike Turquette <[email protected]> | |
2025 | M: Mike Turquette <[email protected]> | |
2026 | L: [email protected] (same as CLK API & CLKDEV) | |
2027 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2028 | S: Maintained | |
2029 | F: drivers/clk/clk.c | |
2030 | F: drivers/clk/clk-* | |
2031 | F: include/linux/clk-pr* | |
2032 | ||
e2d1d6c0 | 2033 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2034 | M: Steve French <[email protected]> |
51223df6 | 2035 | L: [email protected] |
d1f28953 | 2036 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2037 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2038 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2040 | S: Supported |
679655da JP |
2041 | F: Documentation/filesystems/cifs.txt |
2042 | F: fs/cifs/ | |
e2d1d6c0 | 2043 | |
1da177e4 | 2044 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2045 | M: Scott Murray <[email protected]> |
64dab204 | 2046 | L: [email protected] |
82c4dfc7 | 2047 | S: Maintained |
679655da | 2048 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2049 | |
2050 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2051 | M: Scott Murray <[email protected]> |
64dab204 | 2052 | L: [email protected] |
82c4dfc7 | 2053 | S: Maintained |
679655da | 2054 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2055 | |
2056 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2057 | M: Scott Murray <[email protected]> |
64dab204 | 2058 | L: [email protected] |
82c4dfc7 | 2059 | S: Maintained |
679655da | 2060 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2061 | |
5411552c | 2062 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2063 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2064 | L: [email protected] |
5411552c | 2065 | S: Maintained |
679655da | 2066 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2067 | |
949be0f7 | 2068 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2069 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2070 | L: [email protected] |
2071 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2072 | S: Maintained |
679655da | 2073 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2074 | |
e2d1d6c0 | 2075 | CONFIGFS |
d6351db2 JB |
2076 | M: Joel Becker <[email protected]> |
2077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2078 | S: Supported |
679655da JP |
2079 | F: fs/configfs/ |
2080 | F: include/linux/configfs.h | |
e2d1d6c0 | 2081 | |
acb9c1b2 | 2082 | CONNECTOR |
8b58be88 | 2083 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2084 | L: [email protected] |
2085 | S: Maintained | |
2086 | F: drivers/connector/ | |
2087 | ||
fb3a0fb6 | 2088 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2089 | M: Tejun Heo <[email protected]> |
ad50c159 | 2090 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2091 | L: [email protected] |
12340313 | 2092 | L: [email protected] |
860ca0e6 | 2093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2094 | S: Maintained |
679655da JP |
2095 | F: include/linux/cgroup* |
2096 | F: kernel/cgroup* | |
8ca739e3 | 2097 | F: mm/*cgroup* |
fb3a0fb6 | 2098 | |
bebe4678 | 2099 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2100 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2101 | L: [email protected] |
2102 | S: Maintained | |
679655da JP |
2103 | F: Documentation/hwmon/coretemp |
2104 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2105 | |
1da177e4 | 2106 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2107 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2108 | W: http://www.fi.muni.cz/~kas/cosa/ |
2109 | S: Maintained | |
679655da | 2110 | F: drivers/net/wan/cosa* |
1da177e4 | 2111 | |
4371ee35 | 2112 | CPMAC ETHERNET DRIVER |
8b58be88 | 2113 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2114 | L: [email protected] |
2115 | S: Maintained | |
b544dbac | 2116 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2117 | |
1da177e4 | 2118 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2119 | M: Rafael J. Wysocki <[email protected]> |
bc5f65d4 | 2120 | L: [email protected] |
a6c072c7 | 2121 | L: [email protected] |
1da177e4 | 2122 | S: Maintained |
679655da JP |
2123 | F: drivers/cpufreq/ |
2124 | F: include/linux/cpufreq.h | |
1da177e4 LT |
2125 | |
2126 | CPUID/MSR DRIVER | |
8b58be88 | 2127 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2128 | S: Maintained |
679655da JP |
2129 | F: arch/x86/kernel/cpuid.c |
2130 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2131 | |
7fe2f639 DB |
2132 | CPU POWER MONITORING SUBSYSTEM |
2133 | M: Dominik Brodowski <[email protected]> | |
2134 | M: Thomas Renninger <[email protected]> | |
2135 | S: Maintained | |
2136 | F: tools/power/cpupower | |
2137 | ||
ed90fb4a | 2138 | CPUSETS |
47331231 | 2139 | M: Paul Menage <[email protected]> |
ed90fb4a | 2140 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2141 | W: http://oss.sgi.com/projects/cpusets/ |
ed90fb4a | 2142 | S: Supported |
679655da JP |
2143 | F: Documentation/cgroups/cpusets.txt |
2144 | F: include/linux/cpuset.h | |
2145 | F: kernel/cpuset.c | |
ed90fb4a | 2146 | |
1da177e4 | 2147 | CRAMFS FILESYSTEM |
ce00f85c JC |
2148 | W: http://sourceforge.net/projects/cramfs/ |
2149 | S: Orphan | |
679655da JP |
2150 | F: Documentation/filesystems/cramfs.txt |
2151 | F: fs/cramfs/ | |
1da177e4 LT |
2152 | |
2153 | CRIS PORT | |
8b58be88 JP |
2154 | M: Mikael Starvik <[email protected]> |
2155 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2156 | L: [email protected] |
1da177e4 LT |
2157 | W: http://developer.axis.com |
2158 | S: Maintained | |
679655da | 2159 | F: arch/cris/ |
df621252 | 2160 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2161 | |
2162 | CRYPTO API | |
8b58be88 JP |
2163 | M: Herbert Xu <[email protected]> |
2164 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2165 | L: [email protected] |
54e5881d | 2166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2167 | S: Maintained |
679655da JP |
2168 | F: Documentation/crypto/ |
2169 | F: arch/*/crypto/ | |
2170 | F: crypto/ | |
2171 | F: drivers/crypto/ | |
2172 | F: include/crypto/ | |
1da177e4 | 2173 | |
5b07bd57 | 2174 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2175 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2176 | L: [email protected] |
2177 | S: Maintained | |
51a2228a JP |
2178 | F: crypto/ansi_cprng.c |
2179 | F: crypto/rng.c | |
5b07bd57 | 2180 | |
9b4ffa48 | 2181 | CS5535 Audio ALSA driver |
8b58be88 | 2182 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2183 | S: Maintained |
679655da | 2184 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2185 | |
6d8425b1 | 2186 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2187 | M: Andy Walls <[email protected]> |
c4240509 | 2188 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2189 | L: [email protected] |
275ffde4 | 2190 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2191 | W: http://linuxtv.org |
30e10993 | 2192 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2193 | S: Maintained |
679655da | 2194 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2195 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2196 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2197 | |
3f101d91 HV |
2198 | CX2341X MPEG ENCODER HELPER MODULE |
2199 | M: Hans Verkuil <[email protected]> | |
2200 | L: [email protected] | |
2201 | T: git git://linuxtv.org/media_tree.git | |
2202 | W: http://linuxtv.org | |
2203 | S: Maintained | |
2204 | F: drivers/media/i2c/cx2341x* | |
2205 | F: include/media/cx2341x* | |
2206 | ||
20357578 MCC |
2207 | CX88 VIDEO4LINUX DRIVER |
2208 | M: Mauro Carvalho Chehab <[email protected]> | |
2209 | L: [email protected] | |
2210 | W: http://linuxtv.org | |
2211 | T: git git://linuxtv.org/media_tree.git | |
2212 | S: Odd fixes | |
2213 | F: Documentation/video4linux/cx88/ | |
2214 | F: drivers/media/pci/cx88/ | |
2215 | ||
91952bc0 AP |
2216 | CXD2820R MEDIA DRIVER |
2217 | M: Antti Palosaari <[email protected]> | |
2218 | L: [email protected] | |
2219 | W: http://linuxtv.org/ | |
2220 | W: http://palosaari.fi/linux/ | |
2221 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2222 | T: git git://linuxtv.org/anttip/media_tree.git | |
2223 | S: Maintained | |
2224 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2225 | |
e5ec3789 | 2226 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2227 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
2228 | L: [email protected] |
2229 | W: http://www.chelsio.com | |
2230 | S: Supported | |
f7917c00 | 2231 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2232 | |
2233 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2234 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2235 | L: [email protected] |
e5ec3789 SW |
2236 | W: http://www.openfabrics.org |
2237 | S: Supported | |
679655da | 2238 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2239 | |
be4c9bad RD |
2240 | CXGB4 ETHERNET DRIVER (CXGB4) |
2241 | M: Dimitris Michailidis <[email protected]> | |
2242 | L: [email protected] | |
2243 | W: http://www.chelsio.com | |
2244 | S: Supported | |
f7917c00 | 2245 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2246 | |
2247 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2248 | M: Steve Wise <[email protected]> | |
2249 | L: [email protected] | |
2250 | W: http://www.openfabrics.org | |
2251 | S: Supported | |
2252 | F: drivers/infiniband/hw/cxgb4/ | |
2253 | ||
5c20a5c7 CL |
2254 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2255 | M: Casey Leedom <[email protected]> | |
2256 | L: [email protected] | |
2257 | W: http://www.chelsio.com | |
2258 | S: Supported | |
f7917c00 | 2259 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2260 | |
b52b97a3 GC |
2261 | STMMAC ETHERNET DRIVER |
2262 | M: Giuseppe Cavallaro <[email protected]> | |
2263 | L: [email protected] | |
2264 | W: http://www.stlinux.com | |
2265 | S: Supported | |
7ac6653a | 2266 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2267 | |
1da177e4 | 2268 | CYBERPRO FB DRIVER |
8b58be88 | 2269 | M: Russell King <[email protected]> |
efc03ecb | 2270 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2271 | W: http://www.arm.linux.org.uk/ |
2272 | S: Maintained | |
679655da | 2273 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2274 | |
1da177e4 | 2275 | CYCLADES 2X SYNC CARD DRIVER |
8b58be88 | 2276 | M: Arnaldo Carvalho de Melo <[email protected]> |
926554c4 | 2277 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 2278 | S: Maintained |
679655da | 2279 | F: drivers/net/wan/cycx* |
1da177e4 LT |
2280 | |
2281 | CYCLADES ASYNC MUX DRIVER | |
1da177e4 | 2282 | W: http://www.cyclades.com/ |
d459883e | 2283 | S: Orphan |
c897401b | 2284 | F: drivers/tty/cyclades.c |
679655da | 2285 | F: include/linux/cyclades.h |
1da177e4 LT |
2286 | |
2287 | CYCLADES PC300 DRIVER | |
1da177e4 | 2288 | W: http://www.cyclades.com/ |
d459883e | 2289 | S: Orphan |
679655da | 2290 | F: drivers/net/wan/pc300* |
1da177e4 | 2291 | |
e3ae3525 | 2292 | CYTTSP TOUCHSCREEN DRIVER |
6305902c JP |
2293 | M: Javier Martinez Canillas <[email protected]> |
2294 | L: [email protected] | |
2295 | S: Maintained | |
2296 | F: drivers/input/touchscreen/cyttsp* | |
2297 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2298 | |
1da177e4 | 2299 | DAMA SLAVE for AX.25 |
8b58be88 | 2300 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2301 | W: http://yaina.de/jreuter/ |
2302 | W: http://www.qsl.net/dl1bke/ | |
2303 | L: [email protected] | |
2304 | S: Maintained | |
679655da JP |
2305 | F: net/ax25/af_ax25.c |
2306 | F: net/ax25/ax25_dev.c | |
2307 | F: net/ax25/ax25_ds_* | |
2308 | F: net/ax25/ax25_in.c | |
2309 | F: net/ax25/ax25_out.c | |
2310 | F: net/ax25/ax25_timer.c | |
2311 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2312 | |
e2d1d6c0 | 2313 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2314 | L: [email protected] |
5ff77428 | 2315 | S: Orphan |
679655da | 2316 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2317 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2318 | |
2319 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2320 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2321 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2322 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2323 | S: Maintained |
679655da | 2324 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2325 | |
1da177e4 | 2326 | DC395x SCSI driver |
61eee9a7 | 2327 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2328 | M: Ali Akcaagac <[email protected]> |
2329 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2330 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2331 | L: [email protected] |
1da177e4 LT |
2332 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2333 | S: Maintained | |
679655da JP |
2334 | F: Documentation/scsi/dc395x.txt |
2335 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2336 | |
eb8edb08 | 2337 | DCCP PROTOCOL |
a89d030e | 2338 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2339 | L: [email protected] |
c996d8b9 | 2340 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2341 | S: Maintained |
679655da JP |
2342 | F: include/linux/dccp.h |
2343 | F: include/linux/tfrc.h | |
2344 | F: net/dccp/ | |
eb8edb08 | 2345 | |
1da177e4 | 2346 | DECnet NETWORK LAYER |
1da177e4 LT |
2347 | W: http://linux-decnet.sourceforge.net |
2348 | L: [email protected] | |
f546444d | 2349 | S: Orphan |
679655da JP |
2350 | F: Documentation/networking/decnet.txt |
2351 | F: net/decnet/ | |
1da177e4 LT |
2352 | |
2353 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2354 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2355 | S: Maintained |
33f810b2 | 2356 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2357 | |
ad8f07cc | 2358 | DELL LAPTOP DRIVER |
8b58be88 | 2359 | M: Matthew Garrett <[email protected]> |
d0944853 | 2360 | L: [email protected] |
ad8f07cc | 2361 | S: Maintained |
679655da | 2362 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2363 | |
1da177e4 | 2364 | DELL LAPTOP SMM DRIVER |
8b58be88 | 2365 | M: Massimo Dal Zotto <[email protected]> |
1da177e4 LT |
2366 | W: http://www.debian.org/~dz/i8k/ |
2367 | S: Maintained | |
679655da JP |
2368 | F: drivers/char/i8k.c |
2369 | F: include/linux/i8k.h | |
1da177e4 | 2370 | |
90563ec4 | 2371 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2372 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2373 | S: Maintained |
679655da JP |
2374 | F: Documentation/dcdbas.txt |
2375 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2376 | |
0b3f6109 | 2377 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2378 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2379 | S: Maintained |
36b3a96f | 2380 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2381 | |
94ab23dd FB |
2382 | DESIGNWARE USB3 DRD IP DRIVER |
2383 | M: Felipe Balbi <[email protected]> | |
2384 | L: [email protected] | |
2385 | L: [email protected] | |
2386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2387 | S: Maintained | |
2388 | F: drivers/usb/dwc3/ | |
2389 | ||
89d07767 KP |
2390 | DEVICE FREQUENCY (DEVFREQ) |
2391 | M: MyungJoo Ham <[email protected]> | |
2392 | M: Kyungmin Park <[email protected]> | |
2393 | L: [email protected] | |
2394 | S: Maintained | |
2395 | F: drivers/devfreq/ | |
2396 | ||
1da177e4 | 2397 | DEVICE NUMBER REGISTRY |
8b58be88 | 2398 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2399 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2400 | S: Maintained |
2401 | ||
e2d1d6c0 | 2402 | DEVICE-MAPPER (LVM) |
854ecaad AK |
2403 | M: Alasdair Kergon <[email protected]> |
2404 | M: [email protected] | |
e2d1d6c0 RD |
2405 | L: [email protected] |
2406 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2407 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2408 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2409 | S: Maintained |
679655da JP |
2410 | F: Documentation/device-mapper/ |
2411 | F: drivers/md/dm* | |
854ecaad | 2412 | F: drivers/md/persistent-data/ |
679655da JP |
2413 | F: include/linux/device-mapper.h |
2414 | F: include/linux/dm-*.h | |
e2d1d6c0 | 2415 | |
335d7c58 | 2416 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2417 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2418 | L: [email protected] |
2419 | S: Maintained | |
2420 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2421 | ||
e7839f25 | 2422 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2423 | M: Eric Paris <[email protected]> |
3c5119c0 | 2424 | S: Maintained |
679655da JP |
2425 | F: Documentation/filesystems/dnotify.txt |
2426 | F: fs/notify/dnotify/ | |
2427 | F: include/linux/dnotify.h | |
1da177e4 LT |
2428 | |
2429 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2430 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2431 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2432 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2433 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2434 | S: Maintained | |
2435 | ||
4480f15b | 2436 | DISKQUOTA |
8b58be88 | 2437 | M: Jan Kara <[email protected]> |
1da177e4 | 2438 | S: Maintained |
679655da JP |
2439 | F: Documentation/filesystems/quota.txt |
2440 | F: fs/quota/ | |
2441 | F: include/linux/quota*.h | |
1da177e4 | 2442 | |
702686ad BT |
2443 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2444 | M: Bernie Thompson <[email protected]> | |
2445 | L: [email protected] | |
2446 | S: Maintained | |
2447 | W: http://plugable.com/category/projects/udlfb/ | |
2448 | F: drivers/video/udlfb.c | |
2449 | F: include/video/udlfb.h | |
2450 | F: Documentation/fb/udlfb.txt | |
2451 | ||
e7839f25 | 2452 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2453 | M: Christine Caulfield <[email protected]> |
2454 | M: David Teigland <[email protected]> | |
a4644184 | 2455 | L: [email protected] |
5be7b50f | 2456 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2457 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2458 | S: Supported |
679655da | 2459 | F: fs/dlm/ |
5be7b50f | 2460 | |
53b6b3e0 SS |
2461 | DMA BUFFER SHARING FRAMEWORK |
2462 | M: Sumit Semwal <[email protected]> | |
2463 | S: Maintained | |
2464 | L: [email protected] | |
2465 | L: [email protected] | |
2466 | L: [email protected] | |
2467 | F: drivers/base/dma-buf* | |
2468 | F: include/linux/dma-buf* | |
2469 | F: Documentation/dma-buf-sharing.txt | |
2470 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2471 | ||
b3e5f263 | 2472 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2473 | M: Vinod Koul <[email protected]> |
1dd8372d | 2474 | M: Dan Williams <[email protected]> |
b3e5f263 | 2475 | S: Supported |
679655da JP |
2476 | F: drivers/dma/ |
2477 | F: include/linux/dma* | |
5dbd05d4 VK |
2478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2479 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2480 | |
b825037d | 2481 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2482 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2483 | L: [email protected] |
2484 | S: Maintained | |
679655da JP |
2485 | F: Documentation/hwmon/dme1737 |
2486 | F: drivers/hwmon/dme1737.c | |
b825037d | 2487 | |
5b9c9bf6 | 2488 | DOCKING STATION DRIVER |
8b58be88 | 2489 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2490 | L: [email protected] |
8b59a454 | 2491 | S: Supported |
679655da | 2492 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2493 | |
7d2c86b5 | 2494 | DOCUMENTATION |
5191d566 | 2495 | M: Rob Landley <[email protected]> |
795fb7e7 | 2496 | L: [email protected] |
5191d566 | 2497 | T: TBD |
795fb7e7 | 2498 | S: Maintained |
679655da | 2499 | F: Documentation/ |
abbaeff3 | 2500 | |
1da177e4 | 2501 | DOUBLETALK DRIVER |
8b58be88 | 2502 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2503 | L: [email protected] |
2504 | S: Maintained | |
679655da JP |
2505 | F: drivers/char/dtlk.c |
2506 | F: include/linux/dtlk.h | |
1da177e4 | 2507 | |
e2d1d6c0 | 2508 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2509 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2510 | L: [email protected] |
2511 | W: http://www.adaptec.com/ | |
2512 | S: Maintained | |
679655da JP |
2513 | F: drivers/scsi/dpt* |
2514 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2515 | |
b411b363 | 2516 | DRBD DRIVER |
28b8e8d4 JP |
2517 | P: Philipp Reisner |
2518 | P: Lars Ellenberg | |
2519 | M: [email protected] | |
2520 | L: [email protected] | |
2521 | W: http://www.drbd.org | |
2522 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2523 | T: git git://git.drbd.org/drbd-8.3.git | |
2524 | S: Supported | |
2525 | F: drivers/block/drbd/ | |
2526 | F: lib/lru_cache.c | |
2527 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2528 | |
87544653 | 2529 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2530 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2531 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2532 | S: Supported |
679655da | 2533 | F: Documentation/kobject.txt |
7cfc51b9 | 2534 | F: drivers/base/ |
679655da | 2535 | F: fs/sysfs/ |
87544653 | 2536 | F: fs/debugfs/ |
679655da | 2537 | F: include/linux/kobj* |
87544653 | 2538 | F: include/linux/debugfs.h |
679655da | 2539 | F: lib/kobj* |
1da177e4 LT |
2540 | |
2541 | DRM DRIVERS | |
8b58be88 | 2542 | M: David Airlie <[email protected]> |
4c6a3999 | 2543 | L: [email protected] |
54e5881d | 2544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2545 | S: Maintained |
679655da | 2546 | F: drivers/gpu/drm/ |
850e9411 | 2547 | F: include/drm/ |
1da177e4 | 2548 | |
8daf7473 | 2549 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2550 | M: Daniel Vetter <[email protected]> |
cc840f77 | 2551 | L: [email protected] (subscribers-only) |
8daf7473 | 2552 | L: [email protected] |
38e490fe | 2553 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 CW |
2554 | S: Supported |
2555 | F: drivers/gpu/drm/i915 | |
2556 | F: include/drm/i915* | |
2557 | ||
398a6d4a KP |
2558 | DRM DRIVERS FOR EXYNOS |
2559 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2560 | M: Joonyoung Shim <[email protected]> |
2561 | M: Seung-Woo Kim <[email protected]> | |
2562 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2563 | L: [email protected] |
25a58030 | 2564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a KP |
2565 | S: Supported |
2566 | F: drivers/gpu/drm/exynos | |
2567 | F: include/drm/exynos* | |
2568 | ||
1da177e4 | 2569 | DSCC4 DRIVER |
8b58be88 | 2570 | M: Francois Romieu <[email protected]> |
01f20734 | 2571 | L: [email protected] |
1da177e4 | 2572 | S: Maintained |
679655da | 2573 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2574 | |
91952bc0 AP |
2575 | DVB_USB_AF9015 MEDIA DRIVER |
2576 | M: Antti Palosaari <[email protected]> | |
2577 | L: [email protected] | |
2578 | W: http://linuxtv.org/ | |
2579 | W: http://palosaari.fi/linux/ | |
2580 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2581 | T: git git://linuxtv.org/anttip/media_tree.git | |
2582 | S: Maintained | |
2583 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2584 | ||
2585 | DVB_USB_AF9035 MEDIA DRIVER | |
2586 | M: Antti Palosaari <[email protected]> | |
2587 | L: [email protected] | |
2588 | W: http://linuxtv.org/ | |
2589 | W: http://palosaari.fi/linux/ | |
2590 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2591 | T: git git://linuxtv.org/anttip/media_tree.git | |
2592 | S: Maintained | |
2593 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2594 | ||
2595 | DVB_USB_ANYSEE MEDIA DRIVER | |
2596 | M: Antti Palosaari <[email protected]> | |
2597 | L: [email protected] | |
2598 | W: http://linuxtv.org/ | |
2599 | W: http://palosaari.fi/linux/ | |
2600 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2601 | T: git git://linuxtv.org/anttip/media_tree.git | |
2602 | S: Maintained | |
2603 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2604 | ||
2605 | DVB_USB_AU6610 MEDIA DRIVER | |
2606 | M: Antti Palosaari <[email protected]> | |
2607 | L: [email protected] | |
2608 | W: http://linuxtv.org/ | |
2609 | W: http://palosaari.fi/linux/ | |
2610 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2611 | T: git git://linuxtv.org/anttip/media_tree.git | |
2612 | S: Maintained | |
2613 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2614 | ||
2615 | DVB_USB_CE6230 MEDIA DRIVER | |
2616 | M: Antti Palosaari <[email protected]> | |
2617 | L: [email protected] | |
2618 | W: http://linuxtv.org/ | |
2619 | W: http://palosaari.fi/linux/ | |
2620 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2621 | T: git git://linuxtv.org/anttip/media_tree.git | |
2622 | S: Maintained | |
2623 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2624 | ||
d099dea2 MK |
2625 | DVB_USB_CXUSB MEDIA DRIVER |
2626 | M: Michael Krufky <[email protected]> | |
2627 | L: [email protected] | |
2628 | W: http://linuxtv.org/ | |
2629 | W: http://github.com/mkrufky | |
2630 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2631 | T: git git://linuxtv.org/media_tree.git | |
2632 | S: Maintained | |
2633 | F: drivers/media/usb/dvb-usb-v2/cxusb* | |
2634 | ||
91952bc0 AP |
2635 | DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER |
2636 | M: Antti Palosaari <[email protected]> | |
2637 | L: [email protected] | |
2638 | W: http://linuxtv.org/ | |
2639 | W: http://palosaari.fi/linux/ | |
2640 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2641 | T: git git://linuxtv.org/anttip/media_tree.git | |
2642 | S: Maintained | |
2643 | F: drivers/media/usb/dvb-usb-v2/cypress_firmware* | |
2644 | ||
2645 | DVB_USB_EC168 MEDIA DRIVER | |
2646 | M: Antti Palosaari <[email protected]> | |
2647 | L: [email protected] | |
2648 | W: http://linuxtv.org/ | |
2649 | W: http://palosaari.fi/linux/ | |
2650 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2651 | T: git git://linuxtv.org/anttip/media_tree.git | |
2652 | S: Maintained | |
2653 | F: drivers/media/usb/dvb-usb-v2/ec168* | |
2654 | ||
8856f5f2 MK |
2655 | DVB_USB_MXL111SF MEDIA DRIVER |
2656 | M: Michael Krufky <[email protected]> | |
2657 | L: [email protected] | |
2658 | W: http://linuxtv.org/ | |
2659 | W: http://github.com/mkrufky | |
2660 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2661 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2662 | S: Maintained | |
2663 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2664 | ||
91952bc0 AP |
2665 | DVB_USB_RTL28XXU MEDIA DRIVER |
2666 | M: Antti Palosaari <[email protected]> | |
2667 | L: [email protected] | |
2668 | W: http://linuxtv.org/ | |
2669 | W: http://palosaari.fi/linux/ | |
2670 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2671 | T: git git://linuxtv.org/anttip/media_tree.git | |
2672 | S: Maintained | |
2673 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2674 | ||
2675 | DVB_USB_V2 MEDIA DRIVER | |
2676 | M: Antti Palosaari <[email protected]> | |
2677 | L: [email protected] | |
2678 | W: http://linuxtv.org/ | |
2679 | W: http://palosaari.fi/linux/ | |
2680 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2681 | T: git git://linuxtv.org/anttip/media_tree.git | |
2682 | S: Maintained | |
2683 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2684 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2685 | ||
ac0ac38f JB |
2686 | DYNAMIC DEBUG |
2687 | M: Jason Baron <[email protected]> | |
2688 | S: Maintained | |
2689 | F: lib/dynamic_debug.c | |
2690 | F: include/linux/dynamic_debug.h | |
2691 | ||
789c7048 | 2692 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2693 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2694 | S: Maintained |
df621252 | 2695 | F: drivers/tty/serial/dz.* |
789c7048 | 2696 | |
91952bc0 AP |
2697 | E4000 MEDIA DRIVER |
2698 | M: Antti Palosaari <[email protected]> | |
2699 | L: [email protected] | |
2700 | W: http://linuxtv.org/ | |
2701 | W: http://palosaari.fi/linux/ | |
2702 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2703 | T: git git://linuxtv.org/anttip/media_tree.git | |
2704 | S: Maintained | |
2705 | F: drivers/media/tuners/e4000* | |
2706 | ||
1da177e4 | 2707 | EATA-DMA SCSI DRIVER |
8b58be88 | 2708 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2709 | L: [email protected] |
2710 | L: [email protected] | |
1da177e4 | 2711 | S: Maintained |
679655da | 2712 | F: drivers/scsi/eata* |
1da177e4 LT |
2713 | |
2714 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2715 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2716 | L: [email protected] |
2717 | S: Maintained | |
679655da | 2718 | F: drivers/scsi/eata.c |
1da177e4 LT |
2719 | |
2720 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2721 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2722 | L: [email protected] |
2723 | L: [email protected] | |
1da177e4 | 2724 | S: Maintained |
679655da | 2725 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2726 | |
2727 | EBTABLES | |
8b58be88 | 2728 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 2729 | L: [email protected] |
1da177e4 LT |
2730 | W: http://ebtables.sourceforge.net/ |
2731 | S: Maintained | |
679655da JP |
2732 | F: include/linux/netfilter_bridge/ebt_*.h |
2733 | F: net/bridge/netfilter/ebt*.c | |
1da177e4 | 2734 | |
91952bc0 AP |
2735 | EC100 MEDIA DRIVER |
2736 | M: Antti Palosaari <[email protected]> | |
2737 | L: [email protected] | |
2738 | W: http://linuxtv.org/ | |
2739 | W: http://palosaari.fi/linux/ | |
2740 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2741 | T: git git://linuxtv.org/anttip/media_tree.git | |
2742 | S: Maintained | |
2743 | F: drivers/media/dvb-frontends/ec100* | |
2744 | ||
237fead6 | 2745 | ECRYPT FILE SYSTEM |
0de9adf2 | 2746 | M: Tyler Hicks <[email protected]> |
14094198 | 2747 | M: Dustin Kirkland <[email protected]> |
a058bfbb | 2748 | L: [email protected] |
6dc7516e | 2749 | W: https://launchpad.net/ecryptfs |
237fead6 | 2750 | S: Supported |
679655da JP |
2751 | F: Documentation/filesystems/ecryptfs.txt |
2752 | F: fs/ecryptfs/ | |
237fead6 | 2753 | |
da9bb1d2 | 2754 | EDAC-CORE |
8b58be88 | 2755 | M: Doug Thompson <[email protected]> |
91445c72 | 2756 | L: [email protected] |
0e438e3f | 2757 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2758 | S: Supported |
679655da | 2759 | F: Documentation/edac.txt |
91445c72 | 2760 | F: drivers/edac/ |
679655da | 2761 | F: include/linux/edac.h |
0e438e3f | 2762 | |
c476c23b | 2763 | EDAC-AMD64 |
8b58be88 | 2764 | M: Doug Thompson <[email protected]> |
487ba8e8 | 2765 | M: Borislav Petkov <[email protected]> |
91445c72 | 2766 | L: [email protected] |
c476c23b | 2767 | W: bluesmoke.sourceforge.net |
487ba8e8 | 2768 | S: Maintained |
c476c23b BP |
2769 | F: drivers/edac/amd64_edac* |
2770 | ||
0e438e3f | 2771 | EDAC-E752X |
8b58be88 JP |
2772 | M: Mark Gross <[email protected]> |
2773 | M: Doug Thompson <[email protected]> | |
91445c72 | 2774 | L: [email protected] |
0e438e3f DP |
2775 | W: bluesmoke.sourceforge.net |
2776 | S: Maintained | |
679655da | 2777 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2778 | |
2779 | EDAC-E7XXX | |
8b58be88 | 2780 | M: Doug Thompson <[email protected]> |
91445c72 | 2781 | L: [email protected] |
0e438e3f DP |
2782 | W: bluesmoke.sourceforge.net |
2783 | S: Maintained | |
679655da | 2784 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2785 | |
6bc78404 | 2786 | EDAC-I82443BXGX |
8b58be88 | 2787 | M: Tim Small <[email protected]> |
91445c72 | 2788 | L: [email protected] |
6bc78404 DT |
2789 | W: bluesmoke.sourceforge.net |
2790 | S: Maintained | |
679655da | 2791 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
2792 | |
2793 | EDAC-I3000 | |
8b58be88 | 2794 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 2795 | L: [email protected] |
6bc78404 DT |
2796 | W: bluesmoke.sourceforge.net |
2797 | S: Maintained | |
679655da | 2798 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
2799 | |
2800 | EDAC-I5000 | |
8b58be88 | 2801 | M: Doug Thompson <[email protected]> |
91445c72 | 2802 | L: [email protected] |
ba9a5918 DT |
2803 | W: bluesmoke.sourceforge.net |
2804 | S: Maintained | |
679655da | 2805 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 2806 | |
44c12cb2 | 2807 | EDAC-I5400 |
8b58be88 | 2808 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 2809 | L: [email protected] |
44c12cb2 MCC |
2810 | W: bluesmoke.sourceforge.net |
2811 | S: Maintained | |
679655da | 2812 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 2813 | |
3c9c92b6 MCC |
2814 | EDAC-I7300 |
2815 | M: Mauro Carvalho Chehab <[email protected]> | |
2816 | L: [email protected] | |
2817 | W: bluesmoke.sourceforge.net | |
2818 | S: Maintained | |
2819 | F: drivers/edac/i7300_edac.c | |
2820 | ||
67c89316 MCC |
2821 | EDAC-I7CORE |
2822 | M: Mauro Carvalho Chehab <[email protected]> | |
2823 | L: [email protected] | |
2824 | W: bluesmoke.sourceforge.net | |
2825 | S: Maintained | |
70aff0ce | 2826 | F: drivers/edac/i7core_edac.c |
67c89316 | 2827 | |
ba9a5918 | 2828 | EDAC-I82975X |
8b58be88 | 2829 | M: Ranganathan Desikan <[email protected]> |
25527885 | 2830 | M: "Arvind R." <[email protected]> |
91445c72 | 2831 | L: [email protected] |
ba9a5918 DT |
2832 | W: bluesmoke.sourceforge.net |
2833 | S: Maintained | |
679655da | 2834 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
2835 | |
2836 | EDAC-PASEMI | |
8b58be88 | 2837 | M: Egor Martovetsky <[email protected]> |
91445c72 | 2838 | L: [email protected] |
6bc78404 DT |
2839 | W: bluesmoke.sourceforge.net |
2840 | S: Maintained | |
679655da | 2841 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 2842 | |
0e438e3f | 2843 | EDAC-R82600 |
8b58be88 | 2844 | M: Tim Small <[email protected]> |
91445c72 | 2845 | L: [email protected] |
0e438e3f DP |
2846 | W: bluesmoke.sourceforge.net |
2847 | S: Maintained | |
679655da | 2848 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 2849 | |
4d096ca7 MCC |
2850 | EDAC-SBRIDGE |
2851 | M: Mauro Carvalho Chehab <[email protected]> | |
2852 | L: [email protected] | |
2853 | W: bluesmoke.sourceforge.net | |
2854 | S: Maintained | |
2855 | F: drivers/edac/sb_edac.c | |
2856 | ||
af39917d CL |
2857 | EDIROL UA-101/UA-1000 DRIVER |
2858 | M: Clemens Ladisch <[email protected]> | |
2859 | L: [email protected] (moderated for non-subscribers) | |
2860 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2861 | S: Maintained | |
2862 | F: sound/usb/misc/ua101.c | |
2863 | ||
1f7df953 MF |
2864 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
2865 | M: Matt Fleming <[email protected]> | |
2866 | L: [email protected] | |
78bef24e | 2867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
2868 | S: Maintained |
2869 | F: Documentation/x86/efi-stub.txt | |
2870 | F: arch/ia64/kernel/efi.c | |
2871 | F: arch/x86/boot/compressed/eboot.[ch] | |
2872 | F: arch/x86/include/asm/efi.h | |
2873 | F: arch/x86/platform/efi/* | |
2874 | F: drivers/firmware/efivars.c | |
2875 | F: include/linux/efi*.h | |
2876 | ||
85a00d9b PJ |
2877 | EFIFB FRAMEBUFFER DRIVER |
2878 | L: [email protected] | |
2879 | M: Peter Jones <[email protected]> | |
2880 | S: Maintained | |
2881 | F: drivers/video/efifb.c | |
2882 | ||
0bee8d28 JT |
2883 | EFS FILESYSTEM |
2884 | W: http://aeschi.ch.eu.org/efs/ | |
2885 | S: Orphan | |
679655da | 2886 | F: fs/efs/ |
0bee8d28 | 2887 | |
4480f15b | 2888 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
2889 | M: Hoang-Nam Nguyen <[email protected]> |
2890 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 2891 | L: [email protected] |
fab97220 | 2892 | S: Supported |
679655da | 2893 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 2894 | |
aa8a9e25 | 2895 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 2896 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
2897 | L: [email protected] |
2898 | S: Maintained | |
9aa32835 | 2899 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 2900 | |
f0319efe MCC |
2901 | EM28XX VIDEO4LINUX DRIVER |
2902 | M: Mauro Carvalho Chehab <[email protected]> | |
2903 | L: [email protected] | |
2904 | W: http://linuxtv.org | |
2905 | T: git git://linuxtv.org/media_tree.git | |
2906 | S: Maintained | |
2907 | F: drivers/media/usb/em28xx/ | |
2908 | ||
3e3a7d66 | 2909 | EMBEDDED LINUX |
8b58be88 JP |
2910 | M: Paul Gortmaker <[email protected]> |
2911 | M: Matt Mackall <[email protected]> | |
2912 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
2913 | L: [email protected] |
2914 | S: Maintained | |
2915 | ||
3a1c1d44 | 2916 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 2917 | M: James Smart <[email protected]> |
ce00f85c JC |
2918 | L: [email protected] |
2919 | W: http://sourceforge.net/projects/lpfcxxxx | |
2920 | S: Supported | |
679655da | 2921 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 2922 | |
5f5bac82 | 2923 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 2924 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
2925 | S: Maintained |
2926 | F: drivers/misc/cb710/ | |
2927 | F: drivers/mmc/host/cb710-mmc.* | |
2928 | F: include/linux/cb710.h | |
2929 | ||
931e39a1 ML |
2930 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
2931 | M: Maxim Levitsky <[email protected]> | |
2932 | S: Maintained | |
2a837449 | 2933 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 2934 | |
1da177e4 | 2935 | EPSON 1355 FRAMEBUFFER DRIVER |
8b58be88 JP |
2936 | M: Christopher Hoover <[email protected]> |
2937 | M: Christopher Hoover <[email protected]> | |
1da177e4 | 2938 | S: Maintained |
679655da | 2939 | F: drivers/video/epson1355fb.c |
1da177e4 | 2940 | |
d5ca9006 | 2941 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 2942 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 2943 | S: Maintained |
084bad91 | 2944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
2945 | F: drivers/video/s1d13xxxfb.c |
2946 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 2947 | |
1da177e4 | 2948 | ETHEREXPRESS-16 NETWORK DRIVER |
8b58be88 | 2949 | M: Philip Blundell <[email protected]> |
979b6c13 | 2950 | L: [email protected] |
1da177e4 | 2951 | S: Maintained |
11597885 | 2952 | F: drivers/net/ethernet/i825xx/eexpress.* |
1da177e4 LT |
2953 | |
2954 | ETHERNET BRIDGE | |
377a4673 | 2955 | M: Stephen Hemminger <[email protected]> |
f318a63b | 2956 | L: [email protected] |
4c325313 | 2957 | L: [email protected] |
c996d8b9 | 2958 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 2959 | S: Maintained |
679655da JP |
2960 | F: include/linux/netfilter_bridge/ |
2961 | F: net/bridge/ | |
1da177e4 LT |
2962 | |
2963 | ETHERTEAM 16I DRIVER | |
8b58be88 | 2964 | M: Mika Kuoppala <[email protected]> |
1da177e4 | 2965 | S: Maintained |
5346ebf6 | 2966 | F: drivers/net/ethernet/fujitsu/eth16i.c |
1da177e4 LT |
2967 | |
2968 | EXT2 FILE SYSTEM | |
01971952 | 2969 | M: Jan Kara <[email protected]> |
72be2ccf | 2970 | L: [email protected] |
1da177e4 | 2971 | S: Maintained |
679655da JP |
2972 | F: Documentation/filesystems/ext2.txt |
2973 | F: fs/ext2/ | |
2974 | F: include/linux/ext2* | |
1da177e4 LT |
2975 | |
2976 | EXT3 FILE SYSTEM | |
01971952 | 2977 | M: Jan Kara <[email protected]> |
8b58be88 | 2978 | M: Andrew Morton <[email protected]> |
3c373a5f | 2979 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
2980 | L: [email protected] |
2981 | S: Maintained | |
679655da JP |
2982 | F: Documentation/filesystems/ext3.txt |
2983 | F: fs/ext3/ | |
2984 | F: include/linux/ext3* | |
72be2ccf EM |
2985 | |
2986 | EXT4 FILE SYSTEM | |
8b58be88 | 2987 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 2988 | M: Andreas Dilger <[email protected]> |
72be2ccf | 2989 | L: [email protected] |
08a225f1 | 2990 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 2991 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 2992 | S: Maintained |
679655da JP |
2993 | F: Documentation/filesystems/ext4.txt |
2994 | F: fs/ext4/ | |
1da177e4 | 2995 | |
c5532b09 MZ |
2996 | Extended Verification Module (EVM) |
2997 | M: Mimi Zohar <[email protected]> | |
2998 | S: Supported | |
2999 | F: security/integrity/evm/ | |
3000 | ||
df6b3cfe MH |
3001 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3002 | M: MyungJoo Ham <[email protected]> | |
3003 | M: Chanwoo Choi <[email protected]> | |
3004 | L: [email protected] | |
3005 | S: Maintained | |
3006 | F: drivers/extcon/ | |
3007 | F: Documentation/extcon/ | |
3008 | ||
0a79951a JH |
3009 | EXYNOS DP DRIVER |
3010 | M: Jingoo Han <[email protected]> | |
3011 | L: [email protected] | |
3012 | S: Maintained | |
3013 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3014 | F: include/video/exynos_dp* |
0a79951a | 3015 | |
33ad3912 DL |
3016 | EXYNOS MIPI DISPLAY DRIVERS |
3017 | M: Inki Dae <[email protected]> | |
3018 | M: Donghwa Lee <[email protected]> | |
3019 | M: Kyungmin Park <[email protected]> | |
3020 | L: [email protected] | |
3021 | S: Maintained | |
3022 | F: drivers/video/exynos/exynos_mipi* | |
3023 | F: include/video/exynos_mipi* | |
3024 | ||
e53004e2 | 3025 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3026 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3027 | L: [email protected] |
3028 | S: Maintained | |
679655da JP |
3029 | F: Documentation/hwmon/f71805f |
3030 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3031 | |
eea977ed MB |
3032 | FC0011 TUNER DRIVER |
3033 | M: Michael Buesch <[email protected]> | |
3034 | L: [email protected] | |
3035 | S: Maintained | |
ccae7af2 MCC |
3036 | F: drivers/media/tuners/fc0011.h |
3037 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3038 | |
91952bc0 AP |
3039 | FC2580 MEDIA DRIVER |
3040 | M: Antti Palosaari <[email protected]> | |
3041 | L: [email protected] | |
3042 | W: http://linuxtv.org/ | |
3043 | W: http://palosaari.fi/linux/ | |
3044 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3045 | T: git git://linuxtv.org/anttip/media_tree.git | |
3046 | S: Maintained | |
3047 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3048 | |
88b2dbdb EP |
3049 | FANOTIFY |
3050 | M: Eric Paris <[email protected]> | |
3051 | S: Maintained | |
3052 | F: fs/notify/fanotify/ | |
3053 | F: include/linux/fanotify.h | |
3054 | ||
1da177e4 | 3055 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3056 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3057 | W: http://www.farsite.co.uk/ |
3058 | S: Supported | |
679655da | 3059 | F: drivers/net/wan/farsync.* |
1da177e4 | 3060 | |
c5408b88 | 3061 | FAULT INJECTION SUPPORT |
8b58be88 | 3062 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3063 | S: Supported |
679655da JP |
3064 | F: Documentation/fault-injection/ |
3065 | F: lib/fault-inject.c | |
c5408b88 | 3066 | |
cae727db RL |
3067 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3068 | M: Robert Love <[email protected]> | |
3069 | L: [email protected] | |
3070 | W: www.Open-FCoE.org | |
3071 | S: Supported | |
3072 | F: drivers/scsi/libfc/ | |
3073 | F: drivers/scsi/fcoe/ | |
3074 | F: include/scsi/fc/ | |
3075 | F: include/scsi/libfc.h | |
3076 | F: include/scsi/libfcoe.h | |
3077 | ||
e2d1d6c0 | 3078 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3079 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3080 | L: [email protected] |
1da177e4 | 3081 | S: Maintained |
679655da JP |
3082 | F: include/linux/fcntl.h |
3083 | F: include/linux/fs.h | |
3084 | F: fs/fcntl.c | |
3085 | F: fs/locks.c | |
1da177e4 | 3086 | |
e2d1d6c0 | 3087 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3088 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3089 | L: [email protected] |
173acc7c | 3090 | S: Maintained |
679655da | 3091 | F: fs/* |
173acc7c | 3092 | |
b26e0ed4 | 3093 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3094 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3095 | L: [email protected] |
3096 | S: Maintained | |
d5ca6918 JP |
3097 | F: drivers/hwmon/f75375s.c |
3098 | F: include/linux/f75375s.h | |
b26e0ed4 | 3099 | |
a331b0c3 CL |
3100 | FIREWIRE AUDIO DRIVERS |
3101 | M: Clemens Ladisch <[email protected]> | |
3102 | L: [email protected] (moderated for non-subscribers) | |
3103 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3104 | S: Maintained | |
3105 | F: sound/firewire/ | |
3106 | ||
eb86ec51 SR |
3107 | FIREWIRE MEDIA DRIVERS (firedtv) |
3108 | M: Stefan Richter <[email protected]> | |
3109 | L: [email protected] | |
3110 | L: [email protected] | |
3111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3112 | S: Maintained | |
3113 | F: drivers/media/firewire/ | |
3114 | ||
a511ce33 CB |
3115 | FIREWIRE SBP-2 TARGET |
3116 | M: Chris Boot <[email protected]> | |
3117 | L: [email protected] | |
3118 | L: [email protected] | |
3119 | L: [email protected] | |
3120 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3121 | S: Maintained | |
3122 | F: drivers/target/sbp/ | |
3123 | ||
7d2c86b5 | 3124 | FIREWIRE SUBSYSTEM |
8b58be88 | 3125 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3126 | L: [email protected] |
958a29cb | 3127 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3128 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3129 | S: Maintained |
679655da JP |
3130 | F: drivers/firewire/ |
3131 | F: include/linux/firewire*.h | |
9f6d3c4b | 3132 | F: tools/firewire/ |
e2d1d6c0 RD |
3133 | |
3134 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3135 | M: Ming Lei <[email protected]> |
3136 | L: [email protected] | |
3137 | S: Maintained | |
679655da JP |
3138 | F: Documentation/firmware_class/ |
3139 | F: drivers/base/firmware*.c | |
3140 | F: include/linux/firmware.h | |
e2d1d6c0 | 3141 | |
8206f664 JK |
3142 | FLOPPY DRIVER |
3143 | M: Jiri Kosina <[email protected]> | |
3144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3145 | S: Odd fixes | |
3146 | F: drivers/block/floppy.c | |
3147 | ||
e2d1d6c0 | 3148 | FPU EMULATOR |
8b58be88 | 3149 | M: Bill Metzenthen <[email protected]> |
e769980f | 3150 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3151 | S: Maintained |
679655da | 3152 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3153 | |
3154 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3155 | L: [email protected] |
c173bfac | 3156 | S: Orphan |
679655da JP |
3157 | F: drivers/net/wan/dlci.c |
3158 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3159 | |
3160 | FRAMEBUFFER LAYER | |
f9557a44 | 3161 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 3162 | L: [email protected] |
e2d1d6c0 | 3163 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3164 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
f9557a44 | 3165 | T: git git://github.com/schandinat/linux-2.6.git fbdev-next |
56be1416 | 3166 | S: Maintained |
679655da | 3167 | F: Documentation/fb/ |
d958c62c | 3168 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3169 | F: drivers/video/ |
3170 | F: include/video/ | |
679655da | 3171 | F: include/linux/fb.h |
e2d1d6c0 RD |
3172 | |
3173 | FREESCALE DMA DRIVER | |
8b58be88 JP |
3174 | M: Li Yang <[email protected]> |
3175 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3176 | L: [email protected] |
e2d1d6c0 | 3177 | S: Maintained |
679655da | 3178 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3179 | |
3180 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3181 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3182 | L: [email protected] |
846557d3 | 3183 | L: [email protected] |
0d2b405a | 3184 | S: Maintained |
679655da | 3185 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3186 | |
60e8c5ab | 3187 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3188 | M: Sascha Hauer <[email protected]> |
c69f677c | 3189 | L: [email protected] |
efc03ecb | 3190 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3191 | S: Maintained |
679655da JP |
3192 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
3193 | F: drivers/video/imxfb.c | |
60e8c5ab | 3194 | |
4689a6b1 | 3195 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3196 | M: Pantelis Antoniou <[email protected]> |
3197 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3198 | L: [email protected] |
4689a6b1 PA |
3199 | L: [email protected] |
3200 | S: Maintained | |
ec21e2ec | 3201 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3202 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3203 | |
d9e9d82c | 3204 | FREESCALE QUICC ENGINE LIBRARY |
8b58be88 | 3205 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3206 | L: [email protected] |
d9e9d82c | 3207 | S: Supported |
679655da JP |
3208 | F: arch/powerpc/sysdev/qe_lib/ |
3209 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3210 | |
b55ef929 | 3211 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3212 | M: Li Yang <[email protected]> |
6372594a | 3213 | L: [email protected] |
a4724ed6 | 3214 | L: [email protected] |
a7205b30 | 3215 | S: Maintained |
5429c731 | 3216 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3217 | |
beaf53bf | 3218 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3219 | M: Li Yang <[email protected]> |
beaf53bf | 3220 | L: [email protected] |
a4724ed6 | 3221 | L: [email protected] |
beaf53bf | 3222 | S: Maintained |
ec21e2ec | 3223 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3224 | |
d9e9d82c | 3225 | FREESCALE QUICC ENGINE UCC UART DRIVER |
8b58be88 | 3226 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3227 | L: [email protected] |
d9e9d82c | 3228 | S: Supported |
df621252 | 3229 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3230 | |
3231 | FREESCALE SOC SOUND DRIVERS | |
8b58be88 | 3232 | M: Timur Tabi <[email protected]> |
93711660 | 3233 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3234 | L: [email protected] |
d9e9d82c | 3235 | S: Supported |
69aefcea JP |
3236 | F: sound/soc/fsl/fsl* |
3237 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3238 | |
1da177e4 | 3239 | FREEVXFS FILESYSTEM |
8b58be88 | 3240 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3241 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3242 | S: Maintained | |
679655da | 3243 | F: fs/freevxfs/ |
1da177e4 | 3244 | |
71038f52 | 3245 | FREEZER |
8b58be88 JP |
3246 | M: Pavel Machek <[email protected]> |
3247 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3248 | L: [email protected] |
71038f52 | 3249 | S: Supported |
679655da JP |
3250 | F: Documentation/power/freezing-of-tasks.txt |
3251 | F: include/linux/freezer.h | |
3252 | F: kernel/freezer.c | |
71038f52 | 3253 | |
839a1f79 KRW |
3254 | FRONTSWAP API |
3255 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3256 | L: [email protected] | |
3257 | S: Maintained | |
3258 | F: mm/frontswap.c | |
3259 | F: include/linux/frontswap.h | |
3260 | ||
a5432f5a | 3261 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3262 | M: David Howells <[email protected]> |
a5432f5a DH |
3263 | L: [email protected] |
3264 | S: Supported | |
3265 | F: Documentation/filesystems/caching/ | |
3266 | F: fs/fscache/ | |
3267 | F: include/linux/fscache*.h | |
3268 | ||
5ab7ffea | 3269 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3270 | M: David Howells <[email protected]> |
1da177e4 | 3271 | S: Maintained |
679655da | 3272 | F: arch/frv/ |
1da177e4 | 3273 | |
20b93734 | 3274 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3275 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3276 | L: [email protected] |
20b93734 | 3277 | S: Maintained |
679655da | 3278 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3279 | |
4da621b6 HK |
3280 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3281 | M: Kyungmin Park <[email protected]> | |
3282 | M: Heungjun Kim <[email protected]> | |
3283 | L: [email protected] | |
3284 | S: Maintained | |
90d72ac6 | 3285 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3286 | F: include/media/m5mols.h |
3287 | ||
2d24c490 RG |
3288 | FUJITSU TABLET EXTRAS |
3289 | M: Robert Gerlach <[email protected]> | |
3290 | L: [email protected] | |
3291 | S: Maintained | |
3292 | F: drivers/platform/x86/fujitsu-tablet.c | |
3293 | ||
04578f17 | 3294 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3295 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3296 | L: [email protected] |
3297 | W: http://fuse.sourceforge.net/ | |
3298 | S: Maintained | |
679655da JP |
3299 | F: fs/fuse/ |
3300 | F: include/linux/fuse.h | |
04578f17 | 3301 | |
1da177e4 | 3302 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3303 | M: Rik Faith <[email protected]> |
1da177e4 | 3304 | L: [email protected] |
baaea1dc | 3305 | S: Odd Fixes (e.g., new signatures) |
679655da | 3306 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3307 | |
3308 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3309 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3310 | L: [email protected] |
3311 | W: http://www.icp-vortex.com/ | |
3312 | S: Supported | |
679655da | 3313 | F: drivers/scsi/gdt* |
1da177e4 | 3314 | |
1c23af90 | 3315 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3316 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3317 | S: Supported |
679655da JP |
3318 | F: drivers/i2c/busses/i2c-gpio.c |
3319 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3320 | |
92ed1a76 PK |
3321 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3322 | M: Peter Korsgaard <[email protected]> | |
3323 | L: [email protected] | |
3324 | S: Supported | |
e7065e20 JD |
3325 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3326 | F: include/linux/i2c-mux-gpio.h | |
3327 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3328 | |
9251ce95 | 3329 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3330 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3331 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3332 | S: Maintained | |
679655da JP |
3333 | F: drivers/net/wan/c101.c |
3334 | F: drivers/net/wan/hd6457* | |
3335 | F: drivers/net/wan/hdlc* | |
3336 | F: drivers/net/wan/n2.c | |
3337 | F: drivers/net/wan/pc300too.c | |
3338 | F: drivers/net/wan/pci200syn.c | |
3339 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3340 | |
1527aab6 | 3341 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3342 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3343 | L: [email protected] |
3344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3345 | S: Maintained | |
3346 | F: include/asm-generic | |
3347 | ||
ccb86a69 | 3348 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3349 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3350 | L: [email protected] |
ccb86a69 MT |
3351 | S: Supported |
3352 | F: drivers/uio/uio_pci_generic.c | |
3353 | ||
5be7b50f | 3354 | GFS2 FILE SYSTEM |
8b58be88 | 3355 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3356 | L: [email protected] |
5be7b50f | 3357 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3358 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3359 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3360 | S: Supported |
679655da JP |
3361 | F: Documentation/filesystems/gfs2*.txt |
3362 | F: fs/gfs2/ | |
3363 | F: include/linux/gfs2_ondisk.h | |
5be7b50f | 3364 | |
0a34eb8f | 3365 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3366 | M: Hansjoerg Lipp <[email protected]> |
3367 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3368 | L: [email protected] |
3369 | W: http://gigaset307x.sourceforge.net/ | |
3370 | S: Maintained | |
679655da JP |
3371 | F: Documentation/isdn/README.gigaset |
3372 | F: drivers/isdn/gigaset/ | |
3373 | F: include/linux/gigaset_dev.h | |
0a34eb8f | 3374 | |
a0dc00b4 GL |
3375 | GPIO SUBSYSTEM |
3376 | M: Grant Likely <[email protected]> | |
e4651a9f | 3377 | M: Linus Walleij <[email protected]> |
a0dc00b4 GL |
3378 | S: Maintained |
3379 | T: git git://git.secretlab.ca/git/linux-2.6.git | |
98909cf0 | 3380 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3381 | F: drivers/gpio/ |
3382 | F: include/linux/gpio* | |
9b692346 | 3383 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3384 | |
71a6d0af HW |
3385 | GRE DEMULTIPLEXER DRIVER |
3386 | M: Dmitry Kozlov <[email protected]> | |
3387 | L: [email protected] | |
3388 | S: Maintained | |
3389 | F: net/ipv4/gre.c | |
3390 | F: include/net/gre.h | |
3391 | ||
d4c41139 KG |
3392 | GRETH 10/100/1G Ethernet MAC device driver |
3393 | M: Kristoffer Glembo <[email protected]> | |
3394 | L: [email protected] | |
3395 | S: Maintained | |
a31a96ad | 3396 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3397 | |
e8deeae2 | 3398 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3399 | M: Frank Zago <[email protected]> |
661263b5 | 3400 | L: [email protected] |
275ffde4 | 3401 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3402 | S: Maintained |
0c0d06ca | 3403 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3404 | |
4b3fa3c4 OL |
3405 | GSPCA GL860 SUBDRIVER |
3406 | M: Olivier Lorin <[email protected]> | |
3407 | L: [email protected] | |
275ffde4 | 3408 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3409 | S: Maintained |
0c0d06ca | 3410 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3411 | |
e8deeae2 | 3412 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3413 | M: Erik Andren <[email protected]> |
661263b5 | 3414 | L: [email protected] |
275ffde4 | 3415 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3416 | S: Maintained |
0c0d06ca | 3417 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3418 | |
3419 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3420 | M: Hans de Goede <[email protected]> |
661263b5 | 3421 | L: [email protected] |
275ffde4 | 3422 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3423 | S: Maintained |
0c0d06ca | 3424 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3425 | |
261982f1 | 3426 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3427 | M: Brian Johnson <[email protected]> |
261982f1 | 3428 | L: [email protected] |
275ffde4 | 3429 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3430 | S: Maintained |
0c0d06ca | 3431 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3432 | |
e8deeae2 | 3433 | GSPCA T613 SUBDRIVER |
8b58be88 | 3434 | M: Leandro Costantino <[email protected]> |
661263b5 | 3435 | L: [email protected] |
275ffde4 | 3436 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3437 | S: Maintained |
0c0d06ca | 3438 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3439 | |
3440 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3441 | M: Hans de Goede <[email protected]> |
661263b5 | 3442 | L: [email protected] |
275ffde4 | 3443 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3444 | S: Maintained |
0c0d06ca | 3445 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3446 | |
aa3c598b EG |
3447 | STK1160 USB VIDEO CAPTURE DRIVER |
3448 | M: Ezequiel Garcia <[email protected]> | |
3449 | L: [email protected] | |
275ffde4 | 3450 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3451 | S: Maintained |
3452 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3453 | |
71a6d0af HW |
3454 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3455 | M: Frank Seidel <[email protected]> | |
3456 | L: [email protected] | |
3457 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3458 | S: Maintained | |
3459 | F: drivers/platform/x86/hdaps.c | |
3460 | ||
3461 | HWPOISON MEMORY FAILURE HANDLING | |
3462 | M: Andi Kleen <[email protected]> | |
3463 | L: [email protected] | |
3464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3465 | S: Maintained | |
3466 | F: mm/memory-failure.c | |
3467 | F: mm/hwpoison-inject.c | |
3468 | ||
3469 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3470 | L: [email protected] | |
3471 | S: Odd Fixes | |
3472 | F: drivers/tty/hvc/ | |
3473 | ||
5b543965 | 3474 | HARDWARE MONITORING |
9e012c1a | 3475 | M: Jean Delvare <[email protected]> |
ca462085 | 3476 | M: Guenter Roeck <[email protected]> |
5b543965 | 3477 | L: [email protected] |
595142e0 | 3478 | W: http://www.lm-sensors.org/ |
9e012c1a | 3479 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3480 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3481 | S: Maintained |
047f4ec2 | 3482 | F: Documentation/hwmon/ |
679655da | 3483 | F: drivers/hwmon/ |
047f4ec2 | 3484 | F: include/linux/hwmon*.h |
5b543965 | 3485 | |
844dd05f | 3486 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3487 | M: Matt Mackall <[email protected]> |
3488 | M: Herbert Xu <[email protected]> | |
3489 | S: Odd fixes | |
679655da JP |
3490 | F: Documentation/hw_random.txt |
3491 | F: drivers/char/hw_random/ | |
3492 | F: include/linux/hw_random.h | |
844dd05f | 3493 | |
8b37fcfc OBC |
3494 | HARDWARE SPINLOCK CORE |
3495 | M: Ohad Ben-Cohen <[email protected]> | |
3496 | S: Maintained | |
3497 | F: Documentation/hwspinlock.txt | |
3498 | F: drivers/hwspinlock/hwspinlock_* | |
3499 | F: include/linux/hwspinlock.h | |
3500 | ||
1da177e4 | 3501 | HARMONY SOUND DRIVER |
ac6aecbf | 3502 | L: [email protected] |
1da177e4 | 3503 | S: Maintained |
679655da | 3504 | F: sound/parisc/harmony.* |
1da177e4 | 3505 | |
91952bc0 AP |
3506 | HD29L2 MEDIA DRIVER |
3507 | M: Antti Palosaari <[email protected]> | |
3508 | L: [email protected] | |
3509 | W: http://linuxtv.org/ | |
3510 | W: http://palosaari.fi/linux/ | |
3511 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3512 | T: git git://linuxtv.org/anttip/media_tree.git | |
3513 | S: Maintained | |
3514 | F: drivers/media/dvb-frontends/hd29l2* | |
3515 | ||
e2d1d6c0 | 3516 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3517 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3518 | L: [email protected] |
3519 | S: Maintained | |
679655da JP |
3520 | F: Documentation/blockdev/cpqarray.txt |
3521 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3522 | |
9257aa49 | 3523 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3524 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3525 | L: [email protected] |
3526 | S: Supported | |
3527 | F: Documentation/scsi/hpsa.txt | |
3528 | F: drivers/scsi/hpsa*.[ch] | |
3529 | F: include/linux/cciss*.h | |
3530 | ||
e2d1d6c0 | 3531 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3532 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3533 | L: [email protected] |
3534 | S: Supported | |
679655da JP |
3535 | F: Documentation/blockdev/cciss.txt |
3536 | F: drivers/block/cciss* | |
3537 | F: include/linux/cciss_ioctl.h | |
e2d1d6c0 | 3538 | |
1da177e4 | 3539 | HFS FILESYSTEM |
6cf515e1 GU |
3540 | L: [email protected] |
3541 | S: Orphan | |
679655da JP |
3542 | F: Documentation/filesystems/hfs.txt |
3543 | F: fs/hfs/ | |
1da177e4 LT |
3544 | |
3545 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3546 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3547 | L: [email protected] |
3548 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3549 | S: Maintained | |
679655da | 3550 | F: drivers/video/hgafb.c |
1da177e4 | 3551 | |
4480f15b | 3552 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3553 | M: Pavel Machek <[email protected]> |
3554 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3555 | L: [email protected] |
e2d1d6c0 | 3556 | S: Supported |
679655da JP |
3557 | F: arch/x86/power/ |
3558 | F: drivers/base/power/ | |
3559 | F: kernel/power/ | |
3560 | F: include/linux/suspend.h | |
3561 | F: include/linux/freezer.h | |
3562 | F: include/linux/pm.h | |
679655da | 3563 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3564 | |
4ef4caad | 3565 | HID CORE LAYER |
8b58be88 | 3566 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3567 | L: [email protected] |
54e5881d | 3568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3569 | S: Maintained |
679655da JP |
3570 | F: drivers/hid/ |
3571 | F: include/linux/hid* | |
4ef4caad | 3572 | |
38bed542 | 3573 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3574 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3575 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3576 | S: Maintained |
679655da JP |
3577 | F: Documentation/timers/ |
3578 | F: kernel/hrtimer.c | |
88606e80 TG |
3579 | F: kernel/time/clockevents.c |
3580 | F: kernel/time/tick*.* | |
3581 | F: kernel/time/timer_*.c | |
05ed8490 | 3582 | F: include/linux/clockchips.h |
679655da | 3583 | F: include/linux/hrtimer.h |
38bed542 | 3584 | |
1da177e4 | 3585 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3586 | L: [email protected] |
8b64f2a0 | 3587 | S: Orphan |
679655da JP |
3588 | F: drivers/net/hamradio/dmascc.c |
3589 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3590 | |
ede1e6f8 | 3591 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3592 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3593 | W: http://www.highpoint-tech.com |
3594 | S: Supported | |
679655da JP |
3595 | F: Documentation/scsi/hptiop.txt |
3596 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3597 | |
1da177e4 | 3598 | HIPPI |
8b58be88 | 3599 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
3600 | L: [email protected] |
3601 | S: Maintained | |
679655da JP |
3602 | F: include/linux/hippidevice.h |
3603 | F: include/linux/if_hippi.h | |
3604 | F: net/802/hippi.c | |
ff5a3b50 | 3605 | F: drivers/net/hippi/ |
1da177e4 | 3606 | |
ff1d2767 | 3607 | HOST AP DRIVER |
8b58be88 | 3608 | M: Jouni Malinen <[email protected]> |
85d32e7b | 3609 | L: [email protected] (subscribers-only) |
724c6b35 | 3610 | L: [email protected] |
ff1d2767 JM |
3611 | W: http://hostap.epitest.fi/ |
3612 | S: Maintained | |
679655da | 3613 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3614 | |
dd8cd779 | 3615 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3616 | L: [email protected] |
95c70215 | 3617 | S: Orphan |
679655da | 3618 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3619 | |
e2d1d6c0 | 3620 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3621 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3622 | S: Maintained |
7e25d724 | 3623 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3624 | |
7d2c86b5 | 3625 | HPET: High Precision Event Timers driver |
8b58be88 | 3626 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 3627 | S: Maintained |
679655da JP |
3628 | F: Documentation/timers/hpet.txt |
3629 | F: drivers/char/hpet.c | |
3630 | F: include/linux/hpet.h | |
b9b0332f | 3631 | |
e07b5d79 | 3632 | HPET: x86 |
9c5fb19a | 3633 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 3634 | S: Maintained |
679655da JP |
3635 | F: arch/x86/kernel/hpet.c |
3636 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3637 | |
1da177e4 | 3638 | HPFS FILESYSTEM |
8b58be88 | 3639 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
3640 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3641 | S: Maintained | |
679655da | 3642 | F: fs/hpfs/ |
1da177e4 | 3643 | |
7d2c86b5 | 3644 | HSO 3G MODEM DRIVER |
8b58be88 | 3645 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
3646 | W: http://www.pharscape.org |
3647 | S: Maintained | |
679655da | 3648 | F: drivers/net/usb/hso.c |
11cd29b0 | 3649 | |
5a18c343 | 3650 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3651 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
3652 | L: [email protected] |
3653 | S: Maintained | |
679655da | 3654 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3655 | |
1da177e4 | 3656 | HUGETLB FILESYSTEM |
8b58be88 | 3657 | M: William Irwin <[email protected]> |
1da177e4 | 3658 | S: Maintained |
679655da | 3659 | F: fs/hugetlbfs/ |
1da177e4 | 3660 | |
05183189 S |
3661 | Hyper-V CORE AND DRIVERS |
3662 | M: K. Y. Srinivasan <[email protected]> | |
3663 | M: Haiyang Zhang <[email protected]> | |
3664 | L: [email protected] | |
3665 | S: Maintained | |
3666 | F: drivers/hv/ | |
3667 | F: drivers/hid/hid-hyperv.c | |
3668 | F: drivers/net/hyperv/ | |
3669 | F: drivers/staging/hv/ | |
3670 | ||
d85c8a6a JD |
3671 | I2C OVER PARALLEL PORT |
3672 | M: Jean Delvare <[email protected]> | |
3673 | L: [email protected] | |
3674 | S: Maintained | |
3675 | F: Documentation/i2c/busses/i2c-parport | |
3676 | F: Documentation/i2c/busses/i2c-parport-light | |
3677 | F: drivers/i2c/busses/i2c-parport.c | |
3678 | F: drivers/i2c/busses/i2c-parport-light.c | |
3679 | ||
3680 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
3681 | M: Jean Delvare <[email protected]> | |
3682 | L: [email protected] | |
3683 | S: Maintained | |
3684 | F: Documentation/i2c/busses/i2c-ali1535 | |
3685 | F: Documentation/i2c/busses/i2c-ali1563 | |
3686 | F: Documentation/i2c/busses/i2c-ali15x3 | |
3687 | F: Documentation/i2c/busses/i2c-amd756 | |
3688 | F: Documentation/i2c/busses/i2c-amd8111 | |
3689 | F: Documentation/i2c/busses/i2c-i801 | |
3690 | F: Documentation/i2c/busses/i2c-nforce2 | |
3691 | F: Documentation/i2c/busses/i2c-piix4 | |
3692 | F: Documentation/i2c/busses/i2c-sis5595 | |
3693 | F: Documentation/i2c/busses/i2c-sis630 | |
3694 | F: Documentation/i2c/busses/i2c-sis96x | |
3695 | F: Documentation/i2c/busses/i2c-via | |
3696 | F: Documentation/i2c/busses/i2c-viapro | |
3697 | F: drivers/i2c/busses/i2c-ali1535.c | |
3698 | F: drivers/i2c/busses/i2c-ali1563.c | |
3699 | F: drivers/i2c/busses/i2c-ali15x3.c | |
3700 | F: drivers/i2c/busses/i2c-amd756.c | |
3701 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
3702 | F: drivers/i2c/busses/i2c-amd8111.c | |
3703 | F: drivers/i2c/busses/i2c-i801.c | |
3704 | F: drivers/i2c/busses/i2c-isch.c | |
3705 | F: drivers/i2c/busses/i2c-nforce2.c | |
3706 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
3707 | F: drivers/i2c/busses/i2c-piix4.c | |
3708 | F: drivers/i2c/busses/i2c-sis5595.c | |
3709 | F: drivers/i2c/busses/i2c-sis630.c | |
3710 | F: drivers/i2c/busses/i2c-sis96x.c | |
3711 | F: drivers/i2c/busses/i2c-via.c | |
3712 | F: drivers/i2c/busses/i2c-viapro.c | |
3713 | ||
6ea884db | 3714 | I2C/SMBUS STUB DRIVER |
8b58be88 | 3715 | M: "Mark M. Hoffman" <[email protected]> |
846557d3 | 3716 | L: [email protected] |
6ea884db | 3717 | S: Maintained |
679655da | 3718 | F: drivers/i2c/busses/i2c-stub.c |
6ea884db | 3719 | |
5b543965 | 3720 | I2C SUBSYSTEM |
d85c8a6a | 3721 | M: Wolfram Sang <[email protected]> |
8b58be88 | 3722 | M: "Ben Dooks (embedded platforms)" <[email protected]> |
846557d3 | 3723 | L: [email protected] |
a01064a9 JD |
3724 | W: http://i2c.wiki.kernel.org/ |
3725 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ | |
4a5b2b26 | 3726 | T: git git://git.pengutronix.de/git/wsa/linux.git |
1da177e4 | 3727 | S: Maintained |
679655da JP |
3728 | F: Documentation/i2c/ |
3729 | F: drivers/i2c/ | |
3730 | F: include/linux/i2c.h | |
03b70d62 | 3731 | F: include/linux/i2c-*.h |
1da177e4 | 3732 | |
d85c8a6a JD |
3733 | I2C-TAOS-EVM DRIVER |
3734 | M: Jean Delvare <[email protected]> | |
3735 | L: [email protected] | |
3736 | S: Maintained | |
3737 | F: Documentation/i2c/busses/i2c-taos-evm | |
3738 | F: drivers/i2c/busses/i2c-taos-evm.c | |
3739 | ||
e8c76eed | 3740 | I2C-TINY-USB DRIVER |
8b58be88 | 3741 | M: Till Harbaum <[email protected]> |
846557d3 | 3742 | L: [email protected] |
932d1872 | 3743 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 3744 | S: Maintained |
679655da | 3745 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 3746 | |
1da177e4 | 3747 | i386 BOOT CODE |
8b58be88 | 3748 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 3749 | S: Maintained |
679655da | 3750 | F: arch/x86/boot/ |
1da177e4 LT |
3751 | |
3752 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 3753 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 3754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
3755 | S: Maintained |
3756 | ||
1da177e4 | 3757 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
3758 | M: Tony Luck <[email protected]> |
3759 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 3760 | L: [email protected] |
6b1c70b1 | 3761 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 3762 | S: Maintained |
679655da | 3763 | F: arch/ia64/ |
1da177e4 | 3764 | |
956c203c KY |
3765 | IBM Power in-Nest Crypto Acceleration |
3766 | M: Kent Yoder <[email protected]> | |
3767 | L: [email protected] | |
3768 | S: Supported | |
3769 | F: drivers/crypto/nx/ | |
3770 | ||
0e16aafb SJ |
3771 | IBM Power 842 compression accelerator |
3772 | M: Robert Jennings <[email protected]> | |
3773 | S: Supported | |
3774 | F: drivers/crypto/nx/nx-842.c | |
3775 | F: include/linux/nx842.h | |
3776 | ||
1da177e4 | 3777 | IBM Power Linux RAID adapter |
8b58be88 | 3778 | M: Brian King <[email protected]> |
1da177e4 | 3779 | S: Supported |
679655da | 3780 | F: drivers/scsi/ipr.* |
1da177e4 | 3781 | |
9d348af4 SL |
3782 | IBM Power Virtual Ethernet Device Driver |
3783 | M: Santiago Leon <[email protected]> | |
3784 | L: [email protected] | |
3785 | S: Supported | |
9aa32835 | 3786 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 3787 | |
4b7652cc RJ |
3788 | IBM Power Virtual SCSI/FC Device Drivers |
3789 | M: Robert Jennings <[email protected]> | |
3790 | L: [email protected] | |
3791 | S: Supported | |
3792 | F: drivers/scsi/ibmvscsi/ | |
3793 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
3794 | ||
1da177e4 LT |
3795 | IBM ServeRAID RAID DRIVER |
3796 | P: Jack Hammer | |
8b58be88 | 3797 | M: Dave Jeffery <[email protected]> |
1da177e4 | 3798 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 3799 | S: Supported |
679655da | 3800 | F: drivers/scsi/ips.* |
1da177e4 | 3801 | |
6ed9f9c4 PT |
3802 | ICH LPC AND GPIO DRIVER |
3803 | M: Peter Tyser <[email protected]> | |
3804 | S: Maintained | |
3805 | F: drivers/mfd/lpc_ich.c | |
3806 | F: drivers/gpio/gpio-ich.c | |
3807 | ||
1e7106fc | 3808 | IDE SUBSYSTEM |
8b58be88 | 3809 | M: "David S. Miller" <[email protected]> |
1da177e4 | 3810 | L: [email protected] |
8a6e2535 | 3811 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 3812 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 3813 | S: Maintained |
679655da JP |
3814 | F: Documentation/ide/ |
3815 | F: drivers/ide/ | |
3816 | F: include/linux/ide.h | |
1da177e4 | 3817 | |
6cb8c13d IP |
3818 | IDEAPAD LAPTOP EXTRAS DRIVER |
3819 | M: Ike Panhc <[email protected]> | |
3820 | L: [email protected] | |
3821 | W: http://launchpad.net/ideapad-laptop | |
3822 | S: Maintained | |
3823 | F: drivers/platform/x86/ideapad-laptop.c | |
3824 | ||
0f861e8c | 3825 | IDE/ATAPI DRIVERS |
487ba8e8 | 3826 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 3827 | L: [email protected] |
c404c199 | 3828 | S: Maintained |
679655da JP |
3829 | F: Documentation/cdrom/ide-cd |
3830 | F: drivers/ide/ide-cd* | |
1da177e4 | 3831 | |
27471fdb | 3832 | IDLE-I7300 |
8b58be88 | 3833 | M: Andy Henroid <[email protected]> |
bf1c138e | 3834 | L: [email protected] |
27471fdb | 3835 | S: Supported |
679655da | 3836 | F: drivers/idle/i7300_idle.c |
27471fdb | 3837 | |
02cf2286 | 3838 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 3839 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 3840 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 3841 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 3842 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 3843 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
3844 | S: Maintained |
3845 | F: net/ieee802154/ | |
68653359 | 3846 | F: net/mac802154/ |
a26c4463 | 3847 | F: drivers/ieee802154/ |
02cf2286 | 3848 | |
40ad4a30 SY |
3849 | IGUANAWORKS USB IR TRANSCEIVER |
3850 | M: Sean Young <[email protected]> | |
3851 | L: [email protected] | |
3852 | S: Maintained | |
3853 | F: drivers/media/rc/iguanair.c | |
3854 | ||
9545f86e AP |
3855 | IIO SUBSYSTEM AND DRIVERS |
3856 | M: Jonathan Cameron <[email protected]> | |
3857 | L: [email protected] | |
3858 | S: Maintained | |
03e7c251 | 3859 | F: drivers/iio/ |
9545f86e AP |
3860 | F: drivers/staging/iio/ |
3861 | ||
65519263 SG |
3862 | IKANOS/ADI EAGLE ADSL USB DRIVER |
3863 | M: Matthieu Castet <[email protected]> | |
3864 | M: Stanislaw Gruszka <[email protected]> | |
3865 | S: Maintained | |
3866 | F: drivers/usb/atm/ueagle-atm.c | |
3867 | ||
aa7168f4 | 3868 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 3869 | M: Mimi Zohar <[email protected]> |
aa7168f4 | 3870 | S: Supported |
679655da | 3871 | F: security/integrity/ima/ |
aa7168f4 | 3872 | |
1da177e4 | 3873 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 3874 | L: [email protected] |
843393d3 | 3875 | S: Orphan |
679655da | 3876 | F: drivers/video/imsttfb.c |
1da177e4 LT |
3877 | |
3878 | INFINIBAND SUBSYSTEM | |
db9fd848 | 3879 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
3880 | M: Sean Hefty <[email protected]> |
3881 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 3882 | L: [email protected] |
605841f5 | 3883 | W: http://www.openfabrics.org/ |
8a6e2535 | 3884 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 3885 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 3886 | S: Supported |
679655da JP |
3887 | F: Documentation/infiniband/ |
3888 | F: drivers/infiniband/ | |
3889 | F: include/linux/if_infiniband.h | |
1da177e4 | 3890 | |
c9f04f58 | 3891 | INOTIFY |
8b58be88 JP |
3892 | M: John McCutchan <[email protected]> |
3893 | M: Robert Love <[email protected]> | |
3894 | M: Eric Paris <[email protected]> | |
c9f04f58 | 3895 | S: Maintained |
679655da JP |
3896 | F: Documentation/filesystems/inotify.txt |
3897 | F: fs/notify/inotify/ | |
3898 | F: include/linux/inotify.h | |
c9f04f58 | 3899 | |
e2d1d6c0 | 3900 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
3901 | M: Dmitry Torokhov <[email protected]> |
3902 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 3903 | L: [email protected] |
8a6e2535 | 3904 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 3905 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 3906 | S: Maintained |
679655da | 3907 | F: drivers/input/ |
f4eea7e2 DT |
3908 | F: include/linux/input.h |
3909 | F: include/linux/input/ | |
e2d1d6c0 | 3910 | |
3267a87f HR |
3911 | INPUT MULTITOUCH (MT) PROTOCOL |
3912 | M: Henrik Rydberg <[email protected]> | |
3913 | L: [email protected] | |
7f9c2454 | 3914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
3915 | S: Maintained |
3916 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 3917 | F: drivers/input/input-mt.c |
3267a87f HR |
3918 | K: \b(ABS|SYN)_MT_ |
3919 | ||
4ac13e17 DJ |
3920 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
3921 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
3922 | M: Lukasz Dorau <[email protected]> |
3923 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 3924 | M: Dave Jiang <[email protected]> |
4ac13e17 | 3925 | L: [email protected] |
7106891a DJ |
3926 | T: git git://git.code.sf.net/p/intel-sas/isci |
3927 | S: Supported | |
4ac13e17 DJ |
3928 | F: drivers/scsi/isci/ |
3929 | F: firmware/isci/ | |
3930 | ||
26717172 LB |
3931 | INTEL IDLE DRIVER |
3932 | M: Len Brown <[email protected]> | |
bf1c138e | 3933 | L: [email protected] |
08deed1e | 3934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
3935 | S: Supported |
3936 | F: drivers/idle/intel_idle.c | |
3937 | ||
9eb8ef74 | 3938 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 3939 | M: Maik Broemme <[email protected]> |
c69f677c | 3940 | L: [email protected] |
ce00f85c | 3941 | S: Maintained |
679655da JP |
3942 | F: Documentation/fb/intelfb.txt |
3943 | F: drivers/video/intelfb/ | |
9eb8ef74 | 3944 | |
1da177e4 | 3945 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 3946 | M: Antonino Daplas <[email protected]> |
c69f677c | 3947 | L: [email protected] |
ce00f85c | 3948 | S: Maintained |
679655da | 3949 | F: drivers/video/i810/ |
1da177e4 | 3950 | |
f4a9bc4c | 3951 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 3952 | M: Sujith Thomas <[email protected]> |
d0944853 | 3953 | L: [email protected] |
f4a9bc4c TS |
3954 | W: http://www.lesswatts.org/projects/acpi/ |
3955 | S: Supported | |
679655da | 3956 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 3957 | |
1da177e4 | 3958 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 3959 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 3960 | S: Maintained |
679655da JP |
3961 | F: arch/x86/kernel/microcode_core.c |
3962 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 3963 | |
248a9dc3 | 3964 | INTEL I/OAT DMA DRIVER |
1dd8372d DW |
3965 | M: Dan Williams <[email protected]> |
3966 | S: Maintained | |
679655da | 3967 | F: drivers/dma/ioat* |
248a9dc3 | 3968 | |
6c8909b4 | 3969 | INTEL IOMMU (VT-d) |
8b58be88 | 3970 | M: David Woodhouse <[email protected]> |
6c8909b4 | 3971 | L: [email protected] |
54e5881d | 3972 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 3973 | S: Supported |
3fb39615 | 3974 | F: drivers/iommu/intel-iommu.c |
679655da | 3975 | F: include/linux/intel-iommu.h |
6c8909b4 | 3976 | |
b3e5f263 | 3977 | INTEL IOP-ADMA DMA DRIVER |
1dd8372d DW |
3978 | M: Dan Williams <[email protected]> |
3979 | S: Odd fixes | |
679655da | 3980 | F: drivers/dma/iop-adma.c |
b3e5f263 | 3981 | |
9251ce95 | 3982 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 3983 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 3984 | S: Maintained |
679655da JP |
3985 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
3986 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
3987 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
3988 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 3989 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 3990 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 3991 | |
844dd05f | 3992 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 3993 | M: Deepak Saxena <[email protected]> |
844dd05f | 3994 | S: Maintained |
679655da | 3995 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 3996 | |
0d164401 | 3997 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
3998 | M: Jeff Kirsher <[email protected]> |
3999 | M: Jesse Brandeburg <[email protected]> | |
4000 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4001 | M: Carolyn Wyborny <[email protected]> |
4002 | M: Don Skidmore <[email protected]> | |
4003 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4004 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4005 | M: Alex Duyck <[email protected]> |
8b58be88 | 4006 | M: John Ronciak <[email protected]> |
dcd01faf | 4007 | L: [email protected] |
d94e6fed | 4008 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4009 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4010 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4011 | S: Supported |
0d164401 JK |
4012 | F: Documentation/networking/e100.txt |
4013 | F: Documentation/networking/e1000.txt | |
4014 | F: Documentation/networking/e1000e.txt | |
4015 | F: Documentation/networking/igb.txt | |
4016 | F: Documentation/networking/igbvf.txt | |
4017 | F: Documentation/networking/ixgb.txt | |
4018 | F: Documentation/networking/ixgbe.txt | |
4019 | F: Documentation/networking/ixgbevf.txt | |
dee1ad47 | 4020 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4021 | |
6dccf9c5 LB |
4022 | INTEL MRST PMU DRIVER |
4023 | M: Len Brown <[email protected]> | |
bf1c138e | 4024 | L: [email protected] |
6dccf9c5 LB |
4025 | S: Supported |
4026 | F: arch/x86/platform/mrst/pmu.* | |
4027 | ||
ca907a90 SY |
4028 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4029 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4030 | L: [email protected] |
ca907a90 | 4031 | S: Maintained |
679655da | 4032 | F: Documentation/networking/README.ipw2100 |
679655da | 4033 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4034 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4035 | |
4bd96a7a | 4036 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4037 | M: Richard L Maliszewski <[email protected]> |
4038 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4039 | M: Shane Wang <[email protected]> |
4040 | L: [email protected] | |
4041 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4042 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4043 | S: Supported |
4044 | F: Documentation/intel_txt.txt | |
4045 | F: include/linux/tboot.h | |
4046 | F: arch/x86/kernel/tboot.c | |
4047 | ||
8a70da82 | 4048 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4049 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4050 | M: [email protected] |
4051 | L: [email protected] | |
4052 | S: Supported | |
4053 | W: http://linuxwimax.org | |
679655da JP |
4054 | F: Documentation/wimax/README.i2400m |
4055 | F: drivers/net/wimax/i2400m/ | |
4056 | F: include/linux/wimax/i2400m.h | |
8a70da82 | 4057 | |
1c0ce89c SG |
4058 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4059 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4060 | L: [email protected] |
1c0ce89c | 4061 | S: Supported |
efa3144e WYG |
4062 | F: drivers/net/wireless/iwlegacy/ |
4063 | ||
b481de9c | 4064 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4065 | M: Johannes Berg <[email protected]> |
9edc71b7 | 4066 | M: Wey-Yi Guy <[email protected]> |
a0bf797f | 4067 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4068 | L: [email protected] |
b481de9c | 4069 | W: http://intellinuxwireless.org |
b62ff718 | 4070 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4071 | S: Supported |
679655da | 4072 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4073 | |
de8fe023 TW |
4074 | INTEL MANAGEMENT ENGINE (mei) |
4075 | M: Tomas Winkler <[email protected]> | |
4076 | L: [email protected] | |
4077 | S: Supported | |
4078 | F: include/linux/mei.h | |
4079 | F: drivers/misc/mei/* | |
4080 | F: Documentation/mei/* | |
4081 | ||
cb109a0e | 4082 | IOC3 ETHERNET DRIVER |
8b58be88 | 4083 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4084 | L: [email protected] |
4085 | S: Maintained | |
8862bf1e | 4086 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4087 | |
cb109a0e | 4088 | IOC3 SERIAL DRIVER |
8b58be88 | 4089 | M: Pat Gefre <[email protected]> |
d39e0721 | 4090 | L: [email protected] |
cb109a0e | 4091 | S: Maintained |
df621252 | 4092 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4093 | |
4480f15b | 4094 | IP MASQUERADING |
8b58be88 | 4095 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4096 | S: Maintained |
679655da | 4097 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4098 | |
1202d6ff | 4099 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4100 | M: Francois Romieu <[email protected]> |
4101 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4102 | L: [email protected] |
4103 | S: Maintained | |
7443713a | 4104 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4105 | |
4480f15b | 4106 | IPATH DRIVER |
8473c603 | 4107 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4108 | L: [email protected] |
52a09a04 | 4109 | S: Maintained |
679655da | 4110 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4111 | |
4409ebe9 | 4112 | IPMI SUBSYSTEM |
8b58be88 | 4113 | M: Corey Minyard <[email protected]> |
b0c90653 | 4114 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4115 | W: http://openipmi.sourceforge.net/ |
4116 | S: Supported | |
679655da JP |
4117 | F: Documentation/IPMI.txt |
4118 | F: drivers/char/ipmi/ | |
4119 | F: include/linux/ipmi* | |
4409ebe9 | 4120 | |
e2d1d6c0 | 4121 | IPS SCSI RAID DRIVER |
8b58be88 | 4122 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4123 | L: [email protected] |
4124 | W: http://www.adaptec.com/ | |
4125 | S: Maintained | |
679655da | 4126 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4127 | |
4128 | IPVS | |
8b58be88 JP |
4129 | M: Wensong Zhang <[email protected]> |
4130 | M: Simon Horman <[email protected]> | |
4131 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4132 | L: [email protected] |
e2d1d6c0 | 4133 | L: [email protected] |
1da177e4 | 4134 | S: Maintained |
679655da | 4135 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 HE |
4136 | F: include/net/ip_vs.h |
4137 | F: include/linux/ip_vs.h | |
679655da | 4138 | F: net/netfilter/ipvs/ |
1da177e4 | 4139 | |
e7839f25 | 4140 | IPWIRELESS DRIVER |
8b58be88 JP |
4141 | M: Jiri Kosina <[email protected]> |
4142 | M: David Sterba <[email protected]> | |
92094aa0 | 4143 | S: Odd Fixes |
282361a0 | 4144 | F: drivers/tty/ipwireless/ |
099dc4fb | 4145 | |
e2d1d6c0 | 4146 | IPX NETWORK LAYER |
8b58be88 | 4147 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4148 | L: [email protected] |
4149 | S: Maintained | |
679655da JP |
4150 | F: include/linux/ipx.h |
4151 | F: include/net/ipx.h | |
4152 | F: net/ipx/ | |
e2d1d6c0 | 4153 | |
1da177e4 | 4154 | IRDA SUBSYSTEM |
8b58be88 | 4155 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4156 | L: [email protected] (subscribers-only) |
ced649ea | 4157 | L: [email protected] |
1da177e4 | 4158 | W: http://irda.sourceforge.net/ |
f353976d | 4159 | S: Maintained |
e0057975 | 4160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4161 | F: Documentation/networking/irda.txt |
4162 | F: drivers/net/irda/ | |
4163 | F: include/net/irda/ | |
4164 | F: net/irda/ | |
1da177e4 | 4165 | |
a800c7cc TG |
4166 | IRQ SUBSYSTEM |
4167 | M: Thomas Gleixner <[email protected]> | |
4168 | S: Maintained | |
75fc2d37 | 4169 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc TG |
4170 | F: kernel/irq/ |
4171 | ||
7ab3a837 GL |
4172 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4173 | M: Benjamin Herrenschmidt <[email protected]> | |
4174 | M: Grant Likely <[email protected]> | |
4175 | T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next | |
4176 | S: Maintained | |
4177 | F: Documentation/IRQ-domain.txt | |
4178 | F: include/linux/irqdomain.h | |
4179 | F: kernel/irq/irqdomain.c | |
4180 | ||
e2d1d6c0 | 4181 | ISAPNP |
8b58be88 | 4182 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4183 | S: Maintained |
679655da JP |
4184 | F: Documentation/isapnp.txt |
4185 | F: drivers/pnp/isapnp/ | |
4186 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4187 | |
71a6d0af HW |
4188 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4189 | M: Peter Jones <[email protected]> | |
4190 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4191 | S: Maintained | |
4192 | F: drivers/firmware/iscsi_ibft* | |
4193 | ||
14816b1e | 4194 | ISCSI |
8b58be88 | 4195 | M: Mike Christie <[email protected]> |
14816b1e MC |
4196 | L: [email protected] |
4197 | W: www.open-iscsi.org | |
54e5881d | 4198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4199 | S: Maintained |
679655da JP |
4200 | F: drivers/scsi/*iscsi* |
4201 | F: include/scsi/*iscsi* | |
14816b1e | 4202 | |
1da177e4 | 4203 | ISDN SUBSYSTEM |
8b58be88 | 4204 | M: Karsten Keil <[email protected]> |
d5d52273 | 4205 | L: [email protected] (subscribers-only) |
3da0ae62 | 4206 | L: [email protected] |
1da177e4 | 4207 | W: http://www.isdn4linux.de |
54e5881d | 4208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4209 | S: Maintained |
679655da JP |
4210 | F: Documentation/isdn/ |
4211 | F: drivers/isdn/ | |
4212 | F: include/linux/isdn.h | |
4213 | F: include/linux/isdn/ | |
1da177e4 LT |
4214 | |
4215 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4216 | M: Armin Schindler <[email protected]> |
d5d52273 | 4217 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4218 | W: http://www.melware.de |
4219 | S: Maintained | |
679655da | 4220 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4221 | |
d624870f JD |
4222 | IT87 HARDWARE MONITORING DRIVER |
4223 | M: Jean Delvare <[email protected]> | |
4224 | L: [email protected] | |
4225 | S: Maintained | |
4226 | F: Documentation/hwmon/it87 | |
4227 | F: drivers/hwmon/it87.c | |
4228 | ||
68620bdd MP |
4229 | IT913X MEDIA DRIVER |
4230 | M: Malcolm Priestley <[email protected]> | |
4231 | L: [email protected] | |
4232 | W: http://linuxtv.org/ | |
4233 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4234 | S: Maintained | |
4235 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4236 | ||
4237 | IT913X FE MEDIA DRIVER | |
4238 | M: Malcolm Priestley <[email protected]> | |
4239 | L: [email protected] | |
4240 | W: http://linuxtv.org/ | |
4241 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4242 | S: Maintained | |
4243 | F: drivers/media/dvb-frontends/it913x-fe* | |
4244 | ||
91821ff3 | 4245 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4246 | M: Andy Walls <[email protected]> |
c4240509 | 4247 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4248 | L: [email protected] |
275ffde4 | 4249 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4250 | W: http://www.ivtvdriver.org |
4251 | S: Maintained | |
679655da | 4252 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4253 | F: drivers/media/pci/ivtv/ |
679655da | 4254 | F: include/linux/ivtv* |
91821ff3 | 4255 | |
68620bdd MP |
4256 | IX2505V MEDIA DRIVER |
4257 | M: Malcolm Priestley <[email protected]> | |
4258 | L: [email protected] | |
4259 | W: http://linuxtv.org/ | |
4260 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4261 | S: Maintained | |
4262 | F: drivers/media/dvb-frontends/ix2505v* | |
4263 | ||
4453d736 GR |
4264 | JC42.4 TEMPERATURE SENSOR DRIVER |
4265 | M: Guenter Roeck <[email protected]> | |
4266 | L: [email protected] | |
4267 | S: Maintained | |
4268 | F: drivers/hwmon/jc42.c | |
4269 | F: Documentation/hwmon/jc42 | |
4270 | ||
e2d1d6c0 | 4271 | JFS FILESYSTEM |
3256f80f | 4272 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4273 | L: [email protected] |
4274 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4276 | S: Maintained |
679655da JP |
4277 | F: Documentation/filesystems/jfs.txt |
4278 | F: fs/jfs/ | |
e2d1d6c0 | 4279 | |
95252236 | 4280 | JME NETWORK DRIVER |
8b58be88 | 4281 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4282 | L: [email protected] |
4283 | S: Maintained | |
63d24a0e | 4284 | F: drivers/net/ethernet/jme.* |
95252236 | 4285 | |
1da177e4 | 4286 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4287 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4288 | L: [email protected] |
4289 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4290 | S: Maintained |
679655da JP |
4291 | F: fs/jffs2/ |
4292 | F: include/linux/jffs2.h | |
1da177e4 | 4293 | |
de456d37 | 4294 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4295 | M: Andrew Morton <[email protected]> |
19003c18 | 4296 | M: Jan Kara <[email protected]> |
72be2ccf | 4297 | L: [email protected] |
ae0718f8 | 4298 | S: Maintained |
d183e11a TT |
4299 | F: fs/jbd/ |
4300 | F: include/linux/ext3_jbd.h | |
4301 | F: include/linux/jbd.h | |
4302 | ||
4303 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4304 | M: "Theodore Ts'o" <[email protected]> | |
4305 | L: [email protected] | |
4306 | S: Maintained | |
4307 | F: fs/jbd2/ | |
4308 | F: include/linux/jbd2.h | |
ae0718f8 | 4309 | |
fd8b6cb4 | 4310 | JSM Neo PCI based serial card |
52b3bfc6 | 4311 | M: Lucas Tavares <[email protected]> |
fd8b6cb4 BL |
4312 | L: [email protected] |
4313 | S: Maintained | |
df621252 | 4314 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4315 | |
af39917d CL |
4316 | K10TEMP HARDWARE MONITORING DRIVER |
4317 | M: Clemens Ladisch <[email protected]> | |
4318 | L: [email protected] | |
4319 | S: Maintained | |
4320 | F: Documentation/hwmon/k10temp | |
4321 | F: drivers/hwmon/k10temp.c | |
4322 | ||
4660cb35 | 4323 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4324 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4325 | L: [email protected] |
ae0718f8 | 4326 | S: Maintained |
679655da JP |
4327 | F: Documentation/hwmon/k8temp |
4328 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4329 | |
1da177e4 | 4330 | KCONFIG |
76ce94a3 | 4331 | M: Michal Marek <[email protected]> |
347d12d7 | 4332 | L: [email protected] |
76ce94a3 | 4333 | S: Odd Fixes |
679655da JP |
4334 | F: Documentation/kbuild/kconfig-language.txt |
4335 | F: scripts/kconfig/ | |
1da177e4 | 4336 | |
ea6c2089 | 4337 | KDUMP |
8b58be88 JP |
4338 | M: Vivek Goyal <[email protected]> |
4339 | M: Haren Myneni <[email protected]> | |
34633993 | 4340 | L: [email protected] |
ea6c2089 VG |
4341 | W: http://lse.sourceforge.net/kdump/ |
4342 | S: Maintained | |
80811493 | 4343 | F: Documentation/kdump/ |
ea6c2089 | 4344 | |
1da177e4 | 4345 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4346 | M: Ian Kent <[email protected]> |
f694fc97 | 4347 | L: [email protected] |
1da177e4 | 4348 | S: Maintained |
679655da | 4349 | F: fs/autofs4/ |
1da177e4 | 4350 | |
70fb7ba6 | 4351 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4352 | M: Michal Marek <[email protected]> |
08deed1e JP |
4353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4355 | L: [email protected] |
5ce45962 | 4356 | S: Maintained |
679655da JP |
4357 | F: Documentation/kbuild/ |
4358 | F: Makefile | |
4359 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4360 | F: scripts/basic/ |
4361 | F: scripts/mk* | |
4362 | F: scripts/package/ | |
1da177e4 LT |
4363 | |
4364 | KERNEL JANITORS | |
c3000e03 | 4365 | L: [email protected] |
10466f5a | 4366 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4367 | S: Odd Fixes |
1da177e4 | 4368 | |
e8b43555 | 4369 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4370 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4371 | L: [email protected] |
1da177e4 | 4372 | W: http://nfs.sourceforge.net/ |
98fac23f | 4373 | S: Supported |
679655da JP |
4374 | F: fs/nfsd/ |
4375 | F: include/linux/nfsd/ | |
4376 | F: fs/lockd/ | |
4377 | F: fs/nfs_common/ | |
4378 | F: net/sunrpc/ | |
4379 | F: include/linux/lockd/ | |
4380 | F: include/linux/sunrpc/ | |
1da177e4 | 4381 | |
426d62e2 | 4382 | KERNEL VIRTUAL MACHINE (KVM) |
8e616fc8 | 4383 | M: Marcelo Tosatti <[email protected]> |
484cbfd2 | 4384 | M: Gleb Natapov <[email protected]> |
1fc9d2bf AK |
4385 | L: [email protected] |
4386 | W: http://kvm.qumranet.com | |
426d62e2 | 4387 | S: Supported |
679655da JP |
4388 | F: Documentation/*/kvm.txt |
4389 | F: arch/*/kvm/ | |
4390 | F: arch/*/include/asm/kvm* | |
4391 | F: include/linux/kvm* | |
4392 | F: virt/kvm/ | |
426d62e2 | 4393 | |
ad8003d3 | 4394 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
8b58be88 | 4395 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4396 | L: [email protected] |
4397 | W: http://kvm.qumranet.com | |
426d62e2 | 4398 | S: Supported |
679655da | 4399 | F: arch/x86/include/asm/svm.h |
679655da | 4400 | F: arch/x86/kvm/svm.c |
426d62e2 | 4401 | |
513014b7 | 4402 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4403 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4404 | L: [email protected] |
4405 | W: http://kvm.qumranet.com | |
513014b7 | 4406 | S: Supported |
679655da JP |
4407 | F: arch/powerpc/include/asm/kvm* |
4408 | F: arch/powerpc/kvm/ | |
513014b7 | 4409 | |
1fc9d2bf | 4410 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4411 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4412 | L: [email protected] |
4413 | W: http://kvm.qumranet.com | |
920ed9f1 | 4414 | S: Supported |
679655da JP |
4415 | F: Documentation/ia64/kvm.txt |
4416 | F: arch/ia64/include/asm/kvm* | |
4417 | F: arch/ia64/kvm/ | |
920ed9f1 | 4418 | |
85f8fffe | 4419 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4420 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4421 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4422 | M: [email protected] |
4423 | L: [email protected] | |
4424 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4425 | S: Supported | |
679655da JP |
4426 | F: Documentation/s390/kvm.txt |
4427 | F: arch/s390/include/asm/kvm* | |
80811493 | 4428 | F: arch/s390/kvm/ |
a968cd3e | 4429 | F: drivers/s390/kvm/ |
85f8fffe | 4430 | |
dc009d92 | 4431 | KEXEC |
8b58be88 | 4432 | M: Eric Biederman <[email protected]> |
2f327dad | 4433 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4434 | L: [email protected] |
dc009d92 | 4435 | S: Maintained |
679655da JP |
4436 | F: include/linux/kexec.h |
4437 | F: kernel/kexec.c | |
dc009d92 | 4438 | |
e971461f DH |
4439 | KEYS/KEYRINGS: |
4440 | M: David Howells <[email protected]> | |
4441 | L: [email protected] | |
4442 | S: Maintained | |
d410fa4e | 4443 | F: Documentation/security/keys.txt |
e971461f DH |
4444 | F: include/linux/key.h |
4445 | F: include/linux/key-type.h | |
4446 | F: include/keys/ | |
4447 | F: security/keys/ | |
4448 | ||
7f3c68be MZ |
4449 | KEYS-TRUSTED |
4450 | M: David Safford <[email protected]> | |
4451 | M: Mimi Zohar <[email protected]> | |
4452 | L: [email protected] | |
4453 | L: [email protected] | |
4454 | S: Supported | |
d410fa4e | 4455 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4456 | F: include/keys/trusted-type.h |
4457 | F: security/keys/trusted.c | |
4458 | F: security/keys/trusted.h | |
4459 | ||
4460 | KEYS-ENCRYPTED | |
4461 | M: Mimi Zohar <[email protected]> | |
4462 | M: David Safford <[email protected]> | |
4463 | L: [email protected] | |
4464 | L: [email protected] | |
4465 | S: Supported | |
d410fa4e | 4466 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4467 | F: include/keys/encrypted-type.h |
19c90aa6 | 4468 | F: security/keys/encrypted-keys/ |
7f3c68be | 4469 | |
5b778dad | 4470 | KGDB / KDB /debug_core |
8b58be88 | 4471 | M: Jason Wessel <[email protected]> |
4063eb5f | 4472 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4473 | L: [email protected] |
4474 | S: Maintained | |
679655da JP |
4475 | F: Documentation/DocBook/kgdb.tmpl |
4476 | F: drivers/misc/kgdbts.c | |
df621252 | 4477 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4478 | F: include/linux/kdb.h |
679655da | 4479 | F: include/linux/kgdb.h |
4063eb5f | 4480 | F: kernel/debug/ |
e3e2aaf7 | 4481 | |
456db8cc | 4482 | KMEMCHECK |
8b58be88 | 4483 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 4484 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 4485 | S: Maintained |
410d7a97 JP |
4486 | F: Documentation/kmemcheck.txt |
4487 | F: arch/x86/include/asm/kmemcheck.h | |
4488 | F: arch/x86/mm/kmemcheck/ | |
4489 | F: include/linux/kmemcheck.h | |
4490 | F: mm/kmemcheck.c | |
b9ce08c0 | 4491 | |
c3bb4d24 | 4492 | KMEMLEAK |
8b58be88 | 4493 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
4494 | S: Maintained |
4495 | F: Documentation/kmemleak.txt | |
4496 | F: include/linux/kmemleak.h | |
4497 | F: mm/kmemleak.c | |
4498 | F: mm/kmemleak-test.c | |
4499 | ||
89559a61 | 4500 | KPROBES |
8b58be88 JP |
4501 | M: Ananth N Mavinakayanahalli <[email protected]> |
4502 | M: Anil S Keshavamurthy <[email protected]> | |
4503 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 4504 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 4505 | S: Maintained |
679655da JP |
4506 | F: Documentation/kprobes.txt |
4507 | F: include/linux/kprobes.h | |
4508 | F: kernel/kprobes.c | |
89559a61 | 4509 | |
70e84049 | 4510 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4511 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
4512 | W: http://miguelojeda.es/auxdisplay.htm |
4513 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4514 | S: Maintained |
679655da JP |
4515 | F: Documentation/auxdisplay/ks0108 |
4516 | F: drivers/auxdisplay/ks0108.c | |
4517 | F: include/linux/ks0108.h | |
70e84049 | 4518 | |
1da177e4 | 4519 | LAPB module |
1da177e4 | 4520 | L: [email protected] |
bf9915cc | 4521 | S: Orphan |
679655da JP |
4522 | F: Documentation/networking/lapb-module.txt |
4523 | F: include/*/lapb.h | |
4524 | F: net/lapb/ | |
1da177e4 LT |
4525 | |
4526 | LASI 53c700 driver for PARISC | |
8b58be88 | 4527 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4528 | L: [email protected] |
4529 | S: Maintained | |
679655da JP |
4530 | F: Documentation/scsi/53c700.txt |
4531 | F: drivers/scsi/53c700* | |
1da177e4 | 4532 | |
263de9b5 | 4533 | LED SUBSYSTEM |
c772fc26 | 4534 | M: Bryan Wu <[email protected]> |
8b58be88 | 4535 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
4536 | L: [email protected] |
4537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4538 | S: Maintained |
679655da JP |
4539 | F: drivers/leds/ |
4540 | F: include/linux/leds.h | |
263de9b5 | 4541 | |
b0461a44 JD |
4542 | LEGACY EEPROM DRIVER |
4543 | M: Jean Delvare <[email protected]> | |
4544 | S: Maintained | |
4545 | F: Documentation/misc-devices/eeprom | |
4546 | F: drivers/misc/eeprom/eeprom.c | |
4547 | ||
1da177e4 | 4548 | LEGO USB Tower driver |
8b58be88 | 4549 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
4550 | L: [email protected] |
4551 | W: http://legousb.sourceforge.net/ | |
4552 | S: Maintained | |
679655da | 4553 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4554 | |
055616a8 MK |
4555 | LG2160 MEDIA DRIVER |
4556 | M: Michael Krufky <[email protected]> | |
4557 | L: [email protected] | |
4558 | W: http://linuxtv.org/ | |
4559 | W: http://github.com/mkrufky | |
4560 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4561 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4562 | S: Maintained | |
4563 | F: drivers/media/dvb-frontends/lg2160.* | |
4564 | ||
6f0e7725 MK |
4565 | LGDT3305 MEDIA DRIVER |
4566 | M: Michael Krufky <[email protected]> | |
4567 | L: [email protected] | |
4568 | W: http://linuxtv.org/ | |
4569 | W: http://github.com/mkrufky | |
4570 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4571 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4572 | S: Maintained | |
4573 | F: drivers/media/dvb-frontends/lgdt3305.* | |
4574 | ||
568a17ff | 4575 | LGUEST |
8b58be88 | 4576 | M: Rusty Russell <[email protected]> |
a4724ed6 | 4577 | L: [email protected] |
568a17ff | 4578 | W: http://lguest.ozlabs.org/ |
72e91863 | 4579 | S: Odd Fixes |
070f420b | 4580 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
4581 | F: arch/x86/lguest/ |
4582 | F: drivers/lguest/ | |
4583 | F: include/linux/lguest*.h | |
070f420b | 4584 | F: tools/lguest/ |
568a17ff | 4585 | |
1da177e4 | 4586 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 4587 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
4588 | W: http://www.ibm.com/linux/ltc/projects/ppc |
4589 | S: Supported | |
11c34c7d | 4590 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 4591 | |
852bb9f5 | 4592 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
4593 | M: Benjamin Herrenschmidt <[email protected]> |
4594 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 4595 | W: http://www.penguinppc.org/ |
a4724ed6 | 4596 | L: [email protected] |
8a6e2535 | 4597 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 4598 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 4599 | S: Supported |
11c34c7d JP |
4600 | F: Documentation/powerpc/ |
4601 | F: arch/powerpc/ | |
1da177e4 LT |
4602 | |
4603 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 4604 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 4605 | W: http://www.penguinppc.org/ |
a4724ed6 | 4606 | L: [email protected] |
1da177e4 | 4607 | S: Maintained |
11c34c7d JP |
4608 | F: arch/powerpc/platforms/powermac/ |
4609 | F: drivers/macintosh/ | |
1da177e4 | 4610 | |
77a76369 | 4611 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 4612 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 4613 | L: [email protected] |
a149507b | 4614 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 4615 | S: Maintained |
11c34c7d JP |
4616 | F: arch/powerpc/platforms/512x/ |
4617 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
4618 | |
4619 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 4620 | M: Josh Boyer <[email protected]> |
8b58be88 | 4621 | M: Matt Porter <[email protected]> |
1da177e4 | 4622 | W: http://www.penguinppc.org/ |
a4724ed6 | 4623 | L: [email protected] |
645609c0 | 4624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 4625 | S: Maintained |
11c34c7d JP |
4626 | F: arch/powerpc/platforms/40x/ |
4627 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 4628 | |
260c02a9 | 4629 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
8b58be88 | 4630 | M: Grant Likely <[email protected]> |
f210d43c | 4631 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
a4724ed6 | 4632 | L: [email protected] |
9d37a90f | 4633 | T: git git://git.secretlab.ca/git/linux-2.6.git |
1da177e4 | 4634 | S: Maintained |
11c34c7d JP |
4635 | F: arch/powerpc/*/*virtex* |
4636 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 4637 | |
e93adf1e | 4638 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
4639 | M: Vitaly Bordug <[email protected]> |
4640 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 4641 | W: http://www.penguinppc.org/ |
a4724ed6 | 4642 | L: [email protected] |
e93adf1e | 4643 | S: Maintained |
a2b1f7c8 | 4644 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 4645 | |
1da177e4 | 4646 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 4647 | M: Kumar Gala <[email protected]> |
ce00f85c | 4648 | W: http://www.penguinppc.org/ |
a4724ed6 | 4649 | L: [email protected] |
ce00f85c | 4650 | S: Maintained |
11c34c7d | 4651 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 4652 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 4653 | |
ab06ff3a | 4654 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 4655 | M: Olof Johansson <[email protected]> |
a4724ed6 | 4656 | L: [email protected] |
92e19709 | 4657 | S: Maintained |
11c34c7d JP |
4658 | F: arch/powerpc/platforms/pasemi/ |
4659 | F: drivers/*/*pasemi* | |
4660 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 4661 | |
1da177e4 | 4662 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 4663 | M: Chris Wright <[email protected]> |
1a4520be | 4664 | L: [email protected] |
1da177e4 LT |
4665 | S: Supported |
4666 | ||
a23ce6da HW |
4667 | LIS3LV02D ACCELEROMETER DRIVER |
4668 | M: Eric Piel <[email protected]> | |
4669 | S: Maintained | |
ff606677 JD |
4670 | F: Documentation/misc-devices/lis3lv02d |
4671 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 4672 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 4673 | |
e2d1d6c0 | 4674 | LLC (802.2) |
8b58be88 | 4675 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 4676 | S: Maintained |
679655da JP |
4677 | F: include/linux/llc.h |
4678 | F: include/net/llc* | |
4679 | F: net/llc/ | |
e2d1d6c0 | 4680 | |
4e233cbe AD |
4681 | LM73 HARDWARE MONITOR DRIVER |
4682 | M: Guillaume Ligneul <[email protected]> | |
4683 | L: [email protected] | |
4684 | S: Maintained | |
4685 | F: drivers/hwmon/lm73.c | |
4686 | ||
156e2d1a JD |
4687 | LM78 HARDWARE MONITOR DRIVER |
4688 | M: Jean Delvare <[email protected]> | |
4689 | L: [email protected] | |
4690 | S: Maintained | |
4691 | F: Documentation/hwmon/lm78 | |
4692 | F: drivers/hwmon/lm78.c | |
4693 | ||
1da177e4 | 4694 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 4695 | M: Jean Delvare <[email protected]> |
cc0b07ed | 4696 | L: [email protected] |
1da177e4 | 4697 | S: Maintained |
679655da JP |
4698 | F: Documentation/hwmon/lm83 |
4699 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
4700 | |
4701 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 4702 | M: Jean Delvare <[email protected]> |
cc0b07ed | 4703 | L: [email protected] |
1da177e4 | 4704 | S: Maintained |
679655da JP |
4705 | F: Documentation/hwmon/lm90 |
4706 | F: drivers/hwmon/lm90.c | |
1da177e4 | 4707 | |
68620bdd MP |
4708 | LME2510 MEDIA DRIVER |
4709 | M: Malcolm Priestley <[email protected]> | |
4710 | L: [email protected] | |
4711 | W: http://linuxtv.org/ | |
4712 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4713 | S: Maintained | |
4714 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
4715 | ||
512e67f9 | 4716 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
4717 | M: Peter Zijlstra <[email protected]> |
4718 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 4719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 4720 | S: Maintained |
679655da JP |
4721 | F: Documentation/lockdep*.txt |
4722 | F: Documentation/lockstat.txt | |
4723 | F: include/linux/lockdep.h | |
4724 | F: kernel/lockdep* | |
512e67f9 | 4725 | |
dde33348 | 4726 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 4727 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
4728 | L: [email protected] |
4729 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 4730 | S: Maintained |
679655da | 4731 | F: Documentation/ldm.txt |
20d16fef | 4732 | F: block/partitions/ldm.* |
1da177e4 | 4733 | |
ef6ada3d JE |
4734 | LogFS |
4735 | M: Joern Engel <[email protected]> | |
756ccb3c | 4736 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
4737 | L: [email protected] |
4738 | W: logfs.org | |
4739 | S: Maintained | |
4740 | F: fs/logfs/ | |
4741 | ||
c87e34ef | 4742 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
8b58be88 | 4743 | M: Eric Moore <[email protected]> |
d8a82d7b | 4744 | M: [email protected] |
cec744fb | 4745 | L: [email protected] |
c87e34ef MED |
4746 | L: [email protected] |
4747 | W: http://www.lsilogic.com/support | |
4748 | S: Supported | |
679655da | 4749 | F: drivers/message/fusion/ |
c87e34ef | 4750 | |
1da177e4 | 4751 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 4752 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
4753 | L: [email protected] |
4754 | S: Maintained | |
679655da | 4755 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 4756 | |
e5f5c99a GR |
4757 | LTC4261 HARDWARE MONITOR DRIVER |
4758 | M: Guenter Roeck <[email protected]> | |
4759 | L: [email protected] | |
4760 | S: Maintained | |
4761 | F: Documentation/hwmon/ltc4261 | |
4762 | F: drivers/hwmon/ltc4261.c | |
4763 | ||
81365c31 | 4764 | LTP (Linux Test Project) |
7d1ae8a8 | 4765 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 4766 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
4767 | M: Cyril Hrubis <[email protected]> |
4768 | M: Caspar Zhang <[email protected]> | |
4769 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
4770 | L: [email protected] (subscribers-only) |
4771 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 4772 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 4773 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
4774 | S: Maintained |
4775 | ||
c12a54b3 | 4776 | M32R ARCHITECTURE |
8b58be88 | 4777 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 4778 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
4779 | L: [email protected] (in Japanese) |
4780 | W: http://www.linux-m32r.org/ | |
4781 | S: Maintained | |
679655da | 4782 | F: arch/m32r/ |
c12a54b3 | 4783 | |
1da177e4 | 4784 | M68K ARCHITECTURE |
8b58be88 | 4785 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
4786 | L: [email protected] |
4787 | W: http://www.linux-m68k.org/ | |
54e5881d | 4788 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 4789 | S: Maintained |
679655da | 4790 | F: arch/m68k/ |
9db35182 | 4791 | F: drivers/zorro/ |
1da177e4 LT |
4792 | |
4793 | M68K ON APPLE MACINTOSH | |
8b58be88 | 4794 | M: Joshua Thompson <[email protected]> |
1da177e4 | 4795 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 4796 | L: [email protected] |
1da177e4 | 4797 | S: Maintained |
9db35182 | 4798 | F: arch/m68k/mac/ |
1da177e4 LT |
4799 | |
4800 | M68K ON HP9000/300 | |
8b58be88 | 4801 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
4802 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
4803 | S: Maintained | |
679655da | 4804 | F: arch/m68k/hp300/ |
1da177e4 | 4805 | |
68620bdd MP |
4806 | M88RS2000 MEDIA DRIVER |
4807 | M: Malcolm Priestley <[email protected]> | |
4808 | L: [email protected] | |
4809 | W: http://linuxtv.org/ | |
4810 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4811 | S: Maintained | |
4812 | F: drivers/media/dvb-frontends/m88rs2000* | |
4813 | ||
64a327a7 | 4814 | MAC80211 |
8b58be88 | 4815 | M: Johannes Berg <[email protected]> |
64a327a7 | 4816 | L: [email protected] |
491b26b4 | 4817 | W: http://wireless.kernel.org/ |
ce466579 JB |
4818 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
4819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 4820 | S: Maintained |
679655da JP |
4821 | F: Documentation/networking/mac80211-injection.txt |
4822 | F: include/net/mac80211.h | |
4823 | F: net/mac80211/ | |
64a327a7 | 4824 | |
1036d864 | 4825 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
4826 | M: Stefano Brivio <[email protected]> |
4827 | M: Mattias Nissler <[email protected]> | |
1036d864 | 4828 | L: [email protected] |
491b26b4 | 4829 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
4830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
4831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 4832 | S: Maintained |
679655da | 4833 | F: net/mac80211/rc80211_pid* |
1036d864 | 4834 | |
b863ceb7 | 4835 | MACVLAN DRIVER |
8b58be88 | 4836 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
4837 | L: [email protected] |
4838 | S: Maintained | |
679655da JP |
4839 | F: drivers/net/macvlan.c |
4840 | F: include/linux/if_macvlan.h | |
b863ceb7 | 4841 | |
faf1668c | 4842 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 4843 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 4844 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 4845 | L: [email protected] |
1b53dc74 | 4846 | S: Maintained |
faf1668c | 4847 | |
44c14c1d | 4848 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
4849 | M: Mirko Lindner <[email protected]> | |
4850 | M: Stephen Hemminger <[email protected]> | |
4851 | L: [email protected] | |
4852 | S: Maintained | |
4853 | F: drivers/net/ethernet/marvell/sk* | |
4854 | ||
74cda169 | 4855 | MARVELL LIBERTAS WIRELESS DRIVER |
8b58be88 | 4856 | M: Dan Williams <[email protected]> |
74cda169 SB |
4857 | L: [email protected] |
4858 | S: Maintained | |
679655da | 4859 | F: drivers/net/wireless/libertas/ |
74cda169 | 4860 | |
b60d6975 | 4861 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 4862 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 4863 | L: [email protected] |
f5ca8502 | 4864 | S: Maintained |
527a6266 | 4865 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 4866 | F: include/linux/mv643xx.h |
1da177e4 | 4867 | |
fcad584d BZ |
4868 | MARVELL MWIFIEX WIRELESS DRIVER |
4869 | M: Bing Zhao <[email protected]> | |
4870 | L: [email protected] | |
4871 | S: Maintained | |
4872 | F: drivers/net/wireless/mwifiex/ | |
4873 | ||
a2c3f656 | 4874 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 4875 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 4876 | L: [email protected] |
16345910 | 4877 | S: Odd Fixes |
a2c3f656 LB |
4878 | F: drivers/net/wireless/mwl8k.c |
4879 | ||
2a69567b | 4880 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 4881 | M: Nicolas Pitre <[email protected]> |
18e2842b | 4882 | S: Odd Fixes |
1fa7e547 | 4883 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 4884 | |
1da177e4 | 4885 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 4886 | L: [email protected] |
52653199 | 4887 | S: Orphan |
679655da JP |
4888 | F: drivers/video/matrox/matroxfb_* |
4889 | F: include/linux/matroxfb.h | |
1da177e4 | 4890 | |
ca462085 GR |
4891 | MAX16065 HARDWARE MONITOR DRIVER |
4892 | M: Guenter Roeck <[email protected]> | |
4893 | L: [email protected] | |
4894 | S: Maintained | |
4895 | F: Documentation/hwmon/max16065 | |
4896 | F: drivers/hwmon/max16065.c | |
4897 | ||
d20620de | 4898 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 4899 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
4900 | L: [email protected] |
4901 | S: Maintained | |
679655da JP |
4902 | F: Documentation/hwmon/max6650 |
4903 | F: drivers/hwmon/max6650.c | |
d20620de | 4904 | |
127c49ae | 4905 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
275ffde4 | 4906 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
4907 | P: LinuxTV.org Project |
4908 | L: [email protected] | |
4909 | W: http://linuxtv.org | |
8a6e2535 | 4910 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 4911 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
4912 | S: Maintained |
4913 | F: Documentation/dvb/ | |
4914 | F: Documentation/video4linux/ | |
ffe06198 | 4915 | F: Documentation/DocBook/media/ |
127c49ae | 4916 | F: drivers/media/ |
ffe06198 | 4917 | F: drivers/staging/media/ |
127c49ae | 4918 | F: include/media/ |
6c0f0359 MCC |
4919 | F: include/uapi/linux/dvb/ |
4920 | F: include/uapi/linux/videodev2.h | |
4921 | F: include/uapi/linux/media.h | |
4922 | F: include/uapi/linux/v4l2-* | |
4923 | F: include/uapi/linux/meye.h | |
4924 | F: include/uapi/linux/ivtv* | |
4925 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 4926 | |
757e0108 | 4927 | MEGARAID SCSI DRIVERS |
8b58be88 | 4928 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 4929 | L: [email protected] |
ce00f85c JC |
4930 | W: http://megaraid.lsilogic.com |
4931 | S: Maintained | |
679655da JP |
4932 | F: Documentation/scsi/megaraid.txt |
4933 | F: drivers/scsi/megaraid.* | |
4934 | F: drivers/scsi/megaraid/ | |
757e0108 | 4935 | |
70ea91f1 SR |
4936 | MEMORY MANAGEMENT |
4937 | L: [email protected] | |
70ea91f1 SR |
4938 | W: http://www.linux-mm.org |
4939 | S: Maintained | |
679655da JP |
4940 | F: include/linux/mm.h |
4941 | F: mm/ | |
70ea91f1 | 4942 | |
938a9204 | 4943 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
4944 | M: Johannes Weiner <[email protected]> |
4945 | M: Michal Hocko <[email protected]> | |
185e595f | 4946 | M: Balbir Singh <[email protected]> |
8b58be88 | 4947 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 4948 | L: [email protected] |
938a9204 | 4949 | L: [email protected] |
938a9204 | 4950 | S: Maintained |
679655da | 4951 | F: mm/memcontrol.c |
4e4c941c | 4952 | F: mm/page_cgroup.c |
938a9204 | 4953 | |
f4e9ce66 | 4954 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 4955 | M: David Woodhouse <[email protected]> |
1da177e4 | 4956 | L: [email protected] |
8a6e2535 JP |
4957 | W: http://www.linux-mtd.infradead.org/ |
4958 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 4959 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 4960 | S: Maintained |
679655da JP |
4961 | F: drivers/mtd/ |
4962 | F: include/linux/mtd/ | |
4963 | F: include/mtd/ | |
1da177e4 | 4964 | |
c6375b0a | 4965 | MICROBLAZE ARCHITECTURE |
8b58be88 | 4966 | M: Michal Simek <[email protected]> |
f3cb0e31 | 4967 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
4968 | W: http://www.monstr.eu/fdt/ |
4969 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
4970 | S: Supported | |
0a8c7914 | 4971 | F: arch/microblaze/ |
1da177e4 LT |
4972 | |
4973 | MICROTEK X6 SCANNER | |
61eee9a7 | 4974 | M: Oliver Neukum <[email protected]> |
1da177e4 | 4975 | S: Maintained |
679655da | 4976 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
4977 | |
4978 | MIPS | |
8b58be88 | 4979 | M: Ralf Baechle <[email protected]> |
1da177e4 | 4980 | L: [email protected] |
6097050d | 4981 | W: http://www.linux-mips.org/ |
b05e988e | 4982 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 4983 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 4984 | S: Supported |
679655da JP |
4985 | F: Documentation/mips/ |
4986 | F: arch/mips/ | |
1da177e4 | 4987 | |
1da177e4 | 4988 | MODULE SUPPORT |
8b58be88 | 4989 | M: Rusty Russell <[email protected]> |
1da177e4 | 4990 | S: Maintained |
679655da JP |
4991 | F: include/linux/module.h |
4992 | F: kernel/module.c | |
1da177e4 LT |
4993 | |
4994 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 4995 | W: http://popies.net/meye/ |
b7788e13 | 4996 | S: Orphan |
679655da | 4997 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 4998 | F: drivers/media/pci/meye/ |
6c0f0359 | 4999 | F: include/uapi/linux/meye.h |
1da177e4 | 5000 | |
c58ff04a | 5001 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 5002 | M: Pavel Pisa <[email protected]> |
efc03ecb | 5003 | L: [email protected] (moderated for non-subscribers) |
c58ff04a | 5004 | S: Maintained |
679655da | 5005 | F: drivers/mmc/host/imxmmc.* |
c58ff04a | 5006 | |
b9705b60 | 5007 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5008 | M: Jiri Slaby <[email protected]> |
d735410a | 5009 | S: Maintained |
679655da | 5010 | F: Documentation/serial/moxa-smartio |
c897401b | 5011 | F: drivers/tty/mxser.* |
d735410a | 5012 | |
889b2f87 AK |
5013 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5014 | M: Alexey Klimov <[email protected]> | |
5015 | L: [email protected] | |
5016 | T: git git://linuxtv.org/media_tree.git | |
5017 | S: Maintained | |
5018 | F: drivers/media/radio/radio-mr800.c | |
5019 | ||
8c4c731a | 5020 | MSI LAPTOP SUPPORT |
706e69d6 | 5021 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5022 | L: [email protected] |
8c4c731a | 5023 | S: Maintained |
679655da | 5024 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5025 | |
0f1006b1 AA |
5026 | MSI WMI SUPPORT |
5027 | M: Anisse Astier <[email protected]> | |
d0944853 | 5028 | L: [email protected] |
0f1006b1 AA |
5029 | S: Supported |
5030 | F: drivers/platform/x86/msi-wmi.c | |
5031 | ||
4e0d13cb | 5032 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5033 | M: Samuel Ortiz <[email protected]> |
54e5881d | 5034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
4e0d13cb | 5035 | S: Supported |
679655da | 5036 | F: drivers/mfd/ |
4e0d13cb | 5037 | |
5c4e6f13 | 5038 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5039 | M: Chris Ball <[email protected]> |
b2503a94 | 5040 | L: [email protected] |
245feaa6 CB |
5041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5042 | S: Maintained | |
679655da JP |
5043 | F: drivers/mmc/ |
5044 | F: include/linux/mmc/ | |
baca2da4 | 5045 | |
15a0580c | 5046 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5047 | S: Orphan |
679655da JP |
5048 | F: drivers/mmc/host/mmc_spi.c |
5049 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5050 | |
1da177e4 | 5051 | MULTISOUND SOUND DRIVER |
8b58be88 | 5052 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5053 | S: Maintained |
679655da JP |
5054 | F: Documentation/sound/oss/MultiSound |
5055 | F: sound/oss/msnd* | |
1da177e4 | 5056 | |
d735410a | 5057 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5058 | S: Orphan |
c897401b | 5059 | F: drivers/tty/isicom.c |
679655da | 5060 | F: include/linux/isicom.h |
d735410a | 5061 | |
550a7375 | 5062 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5063 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5064 | L: [email protected] |
43b416e5 | 5065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5066 | S: Maintained |
679655da | 5067 | F: drivers/usb/musb/ |
550a7375 | 5068 | |
ea0af5f6 MK |
5069 | MXL5007T MEDIA DRIVER |
5070 | M: Michael Krufky <[email protected]> | |
5071 | L: [email protected] | |
5072 | W: http://linuxtv.org/ | |
5073 | W: http://github.com/mkrufky | |
5074 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5075 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5076 | S: Maintained | |
5077 | F: drivers/media/tuners/mxl5007t.* | |
5078 | ||
2d3cf588 | 5079 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
8b58be88 | 5080 | M: Andrew Gallatin <[email protected]> |
2d3cf588 BG |
5081 | L: [email protected] |
5082 | W: http://www.myri.com/scs/download-Myri10GE.html | |
5083 | S: Supported | |
93f7848b | 5084 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5085 | |
1da177e4 | 5086 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5087 | S: Orphan |
d9fb9f38 | 5088 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5089 | |
23dc05a3 DM |
5090 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5091 | M: Daniel Mack <[email protected]> | |
5092 | S: Maintained | |
5093 | L: [email protected] | |
5094 | W: http://www.native-instruments.com | |
5095 | F: sound/usb/caiaq/ | |
5096 | ||
1da177e4 | 5097 | NCP FILESYSTEM |
52653199 PV |
5098 | M: Petr Vandrovec <[email protected]> |
5099 | S: Odd Fixes | |
679655da | 5100 | F: fs/ncpfs/ |
1da177e4 LT |
5101 | |
5102 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5103 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5104 | L: [email protected] |
5105 | S: Maintained | |
679655da | 5106 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5107 | |
3c2d774c | 5108 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5109 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5110 | L: [email protected] |
e3d33cb1 | 5111 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5112 | S: Supported |
5113 | F: drivers/infiniband/hw/nes/ | |
5114 | ||
be2f2e84 | 5115 | NETEM NETWORK EMULATOR |
377a4673 | 5116 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5117 | L: [email protected] |
be2f2e84 | 5118 | S: Maintained |
679655da | 5119 | F: net/sched/sch_netem.c |
be2f2e84 | 5120 | |
b2f5a051 | 5121 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5122 | M: Jon Mason <[email protected]> |
4a58448b | 5123 | L: [email protected] |
4a58448b | 5124 | S: Supported |
679655da | 5125 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5126 | F: Documentation/networking/vxge.txt |
86387e1a | 5127 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5128 | |
1da177e4 | 5129 | NETFILTER/IPTABLES/IPCHAINS |
1da177e4 LT |
5130 | P: Harald Welte |
5131 | P: Jozsef Kadlecsik | |
0e05e192 | 5132 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5133 | M: Patrick McHardy <[email protected]> |
1a03b81d PM |
5134 | L: [email protected] |
5135 | L: [email protected] | |
82b98543 | 5136 | L: [email protected] |
1da177e4 LT |
5137 | W: http://www.netfilter.org/ |
5138 | W: http://www.iptables.org/ | |
a2da3998 PNA |
5139 | T: git git://1984.lsi.us.es/nf |
5140 | T: git git://1984.lsi.us.es/nf-next | |
1da177e4 | 5141 | S: Supported |
679655da JP |
5142 | F: include/linux/netfilter* |
5143 | F: include/linux/netfilter/ | |
5144 | F: include/net/netfilter/ | |
5145 | F: net/*/netfilter.c | |
5146 | F: net/*/netfilter/ | |
5147 | F: net/netfilter/ | |
1da177e4 | 5148 | |
4cc67735 | 5149 | NETLABEL |
87a0874c | 5150 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5151 | W: http://netlabel.sf.net |
5152 | L: [email protected] | |
87a0874c | 5153 | S: Maintained |
80811493 | 5154 | F: Documentation/netlabel/ |
679655da JP |
5155 | F: include/net/netlabel.h |
5156 | F: net/netlabel/ | |
4cc67735 | 5157 | |
1da177e4 | 5158 | NETROM NETWORK LAYER |
8b58be88 | 5159 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5160 | L: [email protected] |
d34cb28a | 5161 | W: http://www.linux-ax25.org/ |
1da177e4 | 5162 | S: Maintained |
679655da JP |
5163 | F: include/linux/netrom.h |
5164 | F: include/net/netrom.h | |
5165 | F: net/netrom/ | |
1da177e4 | 5166 | |
5ddb88c0 | 5167 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5168 | M: Paul Clements <[email protected]> |
1da177e4 | 5169 | S: Maintained |
679655da JP |
5170 | F: Documentation/blockdev/nbd.txt |
5171 | F: drivers/block/nbd.c | |
5172 | F: include/linux/nbd.h | |
1da177e4 | 5173 | |
6e43650c NH |
5174 | NETWORK DROP MONITOR |
5175 | M: Neil Horman <[email protected]> | |
5176 | L: [email protected] | |
5177 | S: Maintained | |
5178 | W: https://fedorahosted.org/dropwatch/ | |
5179 | F: net/core/drop_monitor.c | |
5180 | ||
1da177e4 | 5181 | NETWORKING [GENERAL] |
8b58be88 | 5182 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5183 | L: [email protected] |
b1e8fd54 | 5184 | W: http://www.linuxfoundation.org/en/Net |
d1f6803a | 5185 | W: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5188 | S: Maintained |
679655da JP |
5189 | F: net/ |
5190 | F: include/net/ | |
018d21ed JP |
5191 | F: include/linux/in.h |
5192 | F: include/linux/net.h | |
5193 | F: include/linux/netdevice.h | |
1da177e4 LT |
5194 | |
5195 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5196 | M: "David S. Miller" <[email protected]> |
5197 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5198 | M: James Morris <[email protected]> |
5199 | M: Hideaki YOSHIFUJI <[email protected]> | |
5200 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5201 | L: [email protected] |
08deed1e | 5202 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5203 | S: Maintained |
679655da JP |
5204 | F: net/ipv4/ |
5205 | F: net/ipv6/ | |
5206 | F: include/net/ip* | |
0a14842f | 5207 | F: arch/x86/net/* |
1da177e4 | 5208 | |
73b7656c DM |
5209 | NETWORKING [IPSEC] |
5210 | M: Steffen Klassert <[email protected]> | |
5211 | M: Herbert Xu <[email protected]> | |
5212 | M: "David S. Miller" <[email protected]> | |
5213 | L: [email protected] | |
5214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5215 | S: Maintained | |
5216 | F: net/xfrm/ | |
5217 | F: net/key/ | |
5218 | F: net/ipv4/xfrm* | |
5219 | F: net/ipv6/xfrm* | |
5220 | F: include/uapi/linux/xfrm.h | |
5221 | F: include/net/xfrm.h | |
5222 | ||
10e2ff1c | 5223 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5224 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5225 | L: [email protected] |
5226 | S: Maintained | |
5227 | ||
29f8f632 | 5228 | NETWORKING [WIRELESS] |
8b58be88 | 5229 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5230 | L: [email protected] |
8a6e2535 | 5231 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5233 | S: Maintained |
34b921cf JP |
5234 | F: net/mac80211/ |
5235 | F: net/rfkill/ | |
679655da JP |
5236 | F: net/wireless/ |
5237 | F: include/net/ieee80211* | |
cc8b4a2b | 5238 | F: include/linux/wireless.h |
c984e24d | 5239 | F: include/net/iw_handler.h |
34b921cf | 5240 | F: drivers/net/wireless/ |
29f8f632 | 5241 | |
788873ac JP |
5242 | NETWORKING DRIVERS |
5243 | L: [email protected] | |
5244 | W: http://www.linuxfoundation.org/en/Net | |
08deed1e JP |
5245 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5246 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5247 | S: Odd Fixes |
5248 | F: drivers/net/ | |
018d21ed | 5249 | F: include/linux/if_* |
0b63bf1f JD |
5250 | F: include/linux/netdevice.h |
5251 | F: include/linux/arcdevice.h | |
5252 | F: include/linux/etherdevice.h | |
5253 | F: include/linux/fcdevice.h | |
5254 | F: include/linux/fddidevice.h | |
5255 | F: include/linux/hippidevice.h | |
5256 | F: include/linux/inetdevice.h | |
788873ac | 5257 | |
3d396eb1 | 5258 | NETXEN (1/10) GbE SUPPORT |
83c07dde AKS |
5259 | M: Sony Chacko <[email protected]> |
5260 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5261 | L: [email protected] |
9c2b5bde | 5262 | W: http://www.qlogic.com |
3d396eb1 | 5263 | S: Supported |
aa43c215 | 5264 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5265 | |
6423d30f AAJ |
5266 | NFC SUBSYSTEM |
5267 | M: Lauro Ramos Venancio <[email protected]> | |
5268 | M: Aloisio Almeida Jr <[email protected]> | |
5269 | M: Samuel Ortiz <[email protected]> | |
5270 | L: [email protected] | |
5adf54de | 5271 | L: [email protected] (moderated for non-subscribers) |
6423d30f AAJ |
5272 | S: Maintained |
5273 | F: net/nfc/ | |
5274 | F: include/linux/nfc.h | |
55eb94f9 | 5275 | F: include/net/nfc/ |
6423d30f | 5276 | F: drivers/nfc/ |
3d396eb1 | 5277 | |
e8b43555 | 5278 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5279 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5280 | L: [email protected] |
5281 | W: http://client.linux-nfs.org | |
5282 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5283 | S: Maintained |
679655da JP |
5284 | F: fs/lockd/ |
5285 | F: fs/nfs/ | |
5286 | F: fs/nfs_common/ | |
5287 | F: net/sunrpc/ | |
5288 | F: include/linux/lockd/ | |
5289 | F: include/linux/nfs* | |
5290 | F: include/linux/sunrpc/ | |
1da177e4 LT |
5291 | |
5292 | NI5010 NETWORK DRIVER | |
8b58be88 JP |
5293 | M: Jan-Pascal van Best <[email protected]> |
5294 | M: Andreas Mohr <[email protected]> | |
979b6c13 | 5295 | L: [email protected] |
1da177e4 | 5296 | S: Maintained |
8efc9125 | 5297 | F: drivers/net/ethernet/racal/ni5010.* |
1da177e4 | 5298 | |
85ef9cea | 5299 | NILFS2 FILESYSTEM |
8b58be88 | 5300 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 5301 | L: [email protected] |
85ef9cea | 5302 | W: http://www.nilfs.org/en/ |
af1761f2 | 5303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5304 | S: Supported |
679655da JP |
5305 | F: Documentation/filesystems/nilfs2.txt |
5306 | F: fs/nilfs2/ | |
5307 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5308 | |
1da177e4 | 5309 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5310 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
5311 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5312 | S: Maintained | |
679655da JP |
5313 | F: Documentation/scsi/NinjaSCSI.txt |
5314 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5315 | |
5316 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5317 | M: GOTO Masanori <[email protected]> |
5318 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
5319 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5320 | S: Maintained | |
679655da JP |
5321 | F: Documentation/scsi/NinjaSCSI.txt |
5322 | F: drivers/scsi/nsp32* | |
1da177e4 | 5323 | |
1da177e4 | 5324 | NTFS FILESYSTEM |
2818ef50 | 5325 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 5326 | L: [email protected] |
2818ef50 | 5327 | W: http://www.tuxera.com/ |
e6f4dee7 | 5328 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5329 | S: Supported |
679655da JP |
5330 | F: Documentation/filesystems/ntfs.txt |
5331 | F: fs/ntfs/ | |
1da177e4 | 5332 | |
9eb8ef74 | 5333 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5334 | M: Antonino Daplas <[email protected]> |
c69f677c | 5335 | L: [email protected] |
ce00f85c | 5336 | S: Maintained |
679655da JP |
5337 | F: drivers/video/riva/ |
5338 | F: drivers/video/nvidia/ | |
1da177e4 | 5339 | |
f5525786 | 5340 | OMAP SUPPORT |
0e24bdd4 | 5341 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
5342 | L: [email protected] |
5343 | W: http://www.muru.com/linux/omap/ | |
5344 | W: http://linux.omap.com/ | |
8a6e2535 | 5345 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5347 | S: Maintained |
4e04d5a3 | 5348 | F: arch/arm/*omap*/ |
046d0a37 JD |
5349 | F: drivers/i2c/busses/i2c-omap.c |
5350 | F: include/linux/i2c-omap.h | |
f5525786 TL |
5351 | |
5352 | OMAP CLOCK FRAMEWORK SUPPORT | |
8b58be88 | 5353 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
5354 | L: [email protected] |
5355 | S: Maintained | |
5356 | F: arch/arm/*omap*/*clock* | |
5357 | ||
5358 | OMAP POWER MANAGEMENT SUPPORT | |
126f7e29 | 5359 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
5360 | L: [email protected] |
5361 | S: Maintained | |
5362 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5363 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5364 | |
692ab1f3 PW |
5365 | OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT |
5366 | M: Rajendra Nayak <[email protected]> | |
5367 | M: Paul Walmsley <[email protected]> | |
5368 | L: [email protected] | |
5369 | S: Maintained | |
5370 | F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |
5371 | F: arch/arm/mach-omap2/powerdomain44xx.c | |
5372 | F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |
5373 | F: arch/arm/mach-omap2/clockdomain44xx.c | |
5374 | ||
f5525786 | 5375 | OMAP AUDIO SUPPORT |
6c284903 | 5376 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 5377 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
5378 | L: [email protected] (subscribers-only) |
5379 | L: [email protected] | |
5380 | S: Maintained | |
5381 | F: sound/soc/omap/ | |
5382 | ||
5383 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5384 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 5385 | L: [email protected] |
f5525786 TL |
5386 | L: [email protected] |
5387 | S: Maintained | |
5388 | F: drivers/video/omap/ | |
5389 | ||
676eec0d | 5390 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5391 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 5392 | L: [email protected] |
676eec0d | 5393 | L: [email protected] |
178ff4c9 | 5394 | S: Maintained |
676eec0d | 5395 | F: drivers/video/omap2/ |
178ff4c9 TV |
5396 | F: Documentation/arm/OMAP/DSS |
5397 | ||
8b37fcfc OBC |
5398 | OMAP HARDWARE SPINLOCK SUPPORT |
5399 | M: Ohad Ben-Cohen <[email protected]> | |
5400 | L: [email protected] | |
5401 | S: Maintained | |
5402 | F: drivers/hwspinlock/omap_hwspinlock.c | |
5403 | F: arch/arm/mach-omap2/hwspinlock.c | |
5404 | ||
f5525786 | 5405 | OMAP MMC SUPPORT |
8b58be88 | 5406 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
5407 | L: [email protected] |
5408 | S: Maintained | |
653f41b5 MC |
5409 | F: drivers/mmc/host/omap.c |
5410 | ||
5411 | OMAP HS MMC SUPPORT | |
0a4585c6 V |
5412 | M: Venkatraman S <[email protected]> |
5413 | L: [email protected] | |
653f41b5 | 5414 | L: [email protected] |
0a4585c6 | 5415 | S: Maintained |
653f41b5 | 5416 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
5417 | |
5418 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 5419 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
5420 | S: Maintained |
5421 | F: drivers/char/hw_random/omap-rng.c | |
5422 | ||
f400c82e PW |
5423 | OMAP HWMOD SUPPORT |
5424 | M: Benoît Cousson <[email protected]> | |
5425 | M: Paul Walmsley <[email protected]> | |
5426 | L: [email protected] | |
5427 | S: Maintained | |
5428 | F: arch/arm/mach-omap2/omap_hwmod.c | |
5429 | F: arch/arm/plat-omap/include/plat/omap_hwmod.h | |
5430 | ||
5431 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
5432 | M: Benoît Cousson <[email protected]> | |
5433 | L: [email protected] | |
5434 | S: Maintained | |
5435 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
5436 | ||
7e8970e1 LP |
5437 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
5438 | M: Laurent Pinchart <[email protected]> | |
5439 | L: [email protected] | |
5440 | S: Maintained | |
90d72ac6 | 5441 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 5442 | |
f5525786 | 5443 | OMAP USB SUPPORT |
f299470a | 5444 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
5445 | L: [email protected] |
5446 | L: [email protected] | |
43b416e5 | 5447 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 5448 | S: Maintained |
a16fbd65 JP |
5449 | F: drivers/usb/*/*omap* |
5450 | F: arch/arm/*omap*/usb* | |
f5525786 | 5451 | |
6d994710 KH |
5452 | OMAP GPIO DRIVER |
5453 | M: Santosh Shilimkar <[email protected]> | |
5454 | M: Kevin Hilman <[email protected]> | |
5455 | L: [email protected] | |
5456 | S: Maintained | |
5457 | F: drivers/gpio/gpio-omap.c | |
5458 | ||
0ad122d9 | 5459 | OMFS FILESYSTEM |
8b58be88 | 5460 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
5461 | L: [email protected] |
5462 | S: Maintained | |
679655da JP |
5463 | F: Documentation/filesystems/omfs.txt |
5464 | F: fs/omfs/ | |
0ad122d9 | 5465 | |
c1986ee9 | 5466 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 5467 | M: Harald Welte <[email protected]> |
c1986ee9 | 5468 | S: Maintained |
679655da JP |
5469 | F: drivers/char/pcmcia/cm4000_cs.c |
5470 | F: include/linux/cm4000_cs.h | |
c1986ee9 | 5471 | |
77c44ab1 | 5472 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 5473 | M: Harald Welte <[email protected]> |
77c44ab1 | 5474 | S: Maintained |
679655da | 5475 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 5476 | |
77d5140f | 5477 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 5478 | M: Jonathan Corbet <[email protected]> |
661263b5 | 5479 | L: [email protected] |
275ffde4 | 5480 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 5481 | S: Maintained |
90d72ac6 | 5482 | F: drivers/media/i2c/ov7670.c |
77d5140f | 5483 | |
431bca73 | 5484 | ONENAND FLASH DRIVER |
8b58be88 | 5485 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
5486 | L: [email protected] |
5487 | S: Maintained | |
679655da JP |
5488 | F: drivers/mtd/onenand/ |
5489 | F: include/linux/mtd/onenand*.h | |
431bca73 | 5490 | |
1da177e4 | 5491 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 5492 | M: Willem Riede <[email protected]> |
1da177e4 LT |
5493 | L: [email protected] |
5494 | L: [email protected] | |
5495 | S: Maintained | |
679655da JP |
5496 | F: drivers/scsi/osst* |
5497 | F: drivers/scsi/st* | |
1da177e4 | 5498 | |
e2d1d6c0 | 5499 | OPENCORES I2C BUS DRIVER |
8b58be88 | 5500 | M: Peter Korsgaard <[email protected]> |
846557d3 | 5501 | L: [email protected] |
e2d1d6c0 | 5502 | S: Maintained |
679655da JP |
5503 | F: Documentation/i2c/busses/i2c-ocores |
5504 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 5505 | |
860c44c1 GL |
5506 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5507 | M: Grant Likely <[email protected]> | |
f910b831 | 5508 | M: Rob Herring <[email protected]> |
78bba987 | 5509 | L: [email protected] (moderated for non-subscribers) |
860c44c1 | 5510 | W: http://fdt.secretlab.ca |
3bbf9b9b | 5511 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 5512 | S: Maintained |
f910b831 | 5513 | F: Documentation/devicetree |
860c44c1 GL |
5514 | F: drivers/of |
5515 | F: include/linux/of*.h | |
36165f55 | 5516 | F: scripts/dtc |
860c44c1 | 5517 | K: of_get_property |
d945fa0d | 5518 | K: of_match_table |
860c44c1 | 5519 | |
19f9d392 JB |
5520 | OPENRISC ARCHITECTURE |
5521 | M: Jonas Bonn <[email protected]> | |
5522 | W: http://openrisc.net | |
eab7c1c0 | 5523 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
5524 | S: Maintained |
5525 | T: git git://openrisc.net/~jonas/linux | |
5526 | F: arch/openrisc | |
5527 | ||
ccb1352e JG |
5528 | OPENVSWITCH |
5529 | M: Jesse Gross <[email protected]> | |
5530 | L: [email protected] | |
5531 | W: http://openvswitch.org | |
5532 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
5533 | S: Maintained | |
5534 | F: net/openvswitch/ | |
5535 | ||
af39917d CL |
5536 | OPL4 DRIVER |
5537 | M: Clemens Ladisch <[email protected]> | |
5538 | L: [email protected] (moderated for non-subscribers) | |
5539 | T: git git://git.alsa-project.org/alsa-kernel.git | |
5540 | S: Maintained | |
5541 | F: sound/drivers/opl4/ | |
5542 | ||
1da177e4 | 5543 | OPROFILE |
4cf7e718 | 5544 | M: Robert Richter <[email protected]> |
1da177e4 LT |
5545 | L: [email protected] |
5546 | S: Maintained | |
81c4a8a6 | 5547 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
5548 | F: arch/*/oprofile/ |
5549 | F: drivers/oprofile/ | |
5550 | F: include/linux/oprofile.h | |
1da177e4 | 5551 | |
e2d1d6c0 | 5552 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 5553 | M: Mark Fasheh <[email protected]> |
d6351db2 | 5554 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
5555 | L: [email protected] (moderated for non-subscribers) |
5556 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 5557 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 5558 | S: Supported |
679655da JP |
5559 | F: Documentation/filesystems/ocfs2.txt |
5560 | F: Documentation/filesystems/dlmfs.txt | |
5561 | F: fs/ocfs2/ | |
e2d1d6c0 | 5562 | |
1da177e4 | 5563 | ORINOCO DRIVER |
724c6b35 | 5564 | L: [email protected] |
491b26b4 | 5565 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 5566 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 5567 | S: Orphan |
679655da | 5568 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 5569 | |
42c55aa8 | 5570 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 5571 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 5572 | M: Benny Halevy <[email protected]> |
68274794 BH |
5573 | L: [email protected] |
5574 | W: http://open-osd.org | |
54e5881d | 5575 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 5576 | S: Maintained |
42c55aa8 | 5577 | F: drivers/scsi/osd/ |
6b6f0b6c | 5578 | F: include/scsi/osd_* |
42c55aa8 | 5579 | F: fs/exofs/ |
68274794 | 5580 | |
e2d1d6c0 | 5581 | P54 WIRELESS DRIVER |
084cb0fe | 5582 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 5583 | L: [email protected] |
084cb0fe | 5584 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 5585 | S: Maintained |
679655da | 5586 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 5587 | |
f5cd7872 | 5588 | PA SEMI ETHERNET DRIVER |
8b58be88 | 5589 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
5590 | L: [email protected] |
5591 | S: Maintained | |
ded19add | 5592 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 5593 | |
beb58aa3 | 5594 | PA SEMI SMBUS DRIVER |
8b58be88 | 5595 | M: Olof Johansson <[email protected]> |
846557d3 | 5596 | L: [email protected] |
beb58aa3 | 5597 | S: Maintained |
679655da | 5598 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 5599 | |
48fc267e SK |
5600 | PADATA PARALLEL EXECUTION MECHANISM |
5601 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
5602 | L: [email protected] |
5603 | S: Maintained | |
5604 | F: kernel/padata.c | |
5605 | F: include/linux/padata.h | |
5606 | F: Documentation/padata.txt | |
5607 | ||
709ee531 | 5608 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 5609 | M: Harald Welte <[email protected]> |
d0944853 | 5610 | L: [email protected] |
709ee531 | 5611 | S: Maintained |
679655da | 5612 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 5613 | |
368dd5ac | 5614 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
5615 | M: David Howells <[email protected]> |
5616 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
5617 | L: [email protected] (moderated for non-subscribers) |
5618 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
5619 | S: Maintained | |
679655da JP |
5620 | F: Documentation/mn10300/ |
5621 | F: arch/mn10300/ | |
4fa97181 | 5622 | |
1da177e4 | 5623 | PARALLEL PORT SUPPORT |
3dd1a329 | 5624 | L: [email protected] (subscribers-only) |
5fdc2abe | 5625 | S: Orphan |
679655da JP |
5626 | F: drivers/parport/ |
5627 | F: include/linux/parport*.h | |
5628 | F: drivers/char/ppdev.c | |
5629 | F: include/linux/ppdev.h | |
1da177e4 | 5630 | |
4cdf6bc2 | 5631 | PARAVIRT_OPS INTERFACE |
d633180c | 5632 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
5633 | M: Chris Wright <[email protected]> |
5634 | M: Alok Kataria <[email protected]> | |
5635 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 5636 | L: [email protected] |
4cdf6bc2 | 5637 | S: Supported |
679655da JP |
5638 | F: Documentation/ia64/paravirt_ops.txt |
5639 | F: arch/*/kernel/paravirt* | |
5640 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 5641 | |
e2d1d6c0 | 5642 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 5643 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
5644 | L: [email protected] (subscribers-only) |
5645 | W: http://www.torque.net/linux-pp.html | |
5646 | S: Maintained | |
679655da JP |
5647 | F: Documentation/blockdev/paride.txt |
5648 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
5649 | |
5650 | PARISC ARCHITECTURE | |
b8828770 | 5651 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 5652 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
5653 | L: [email protected] |
5654 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 5655 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 5656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
e2d1d6c0 | 5657 | S: Maintained |
679655da JP |
5658 | F: arch/parisc/ |
5659 | F: drivers/parisc/ | |
e2d1d6c0 | 5660 | |
1662d32c | 5661 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 5662 | M: Jim Cromie <[email protected]> |
1662d32c JC |
5663 | L: [email protected] |
5664 | S: Maintained | |
679655da JP |
5665 | F: Documentation/hwmon/pc87360 |
5666 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
5667 | |
5668 | PC8736x GPIO DRIVER | |
8b58be88 | 5669 | M: Jim Cromie <[email protected]> |
1662d32c | 5670 | S: Maintained |
679655da | 5671 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 5672 | |
1ad107fd JD |
5673 | PC87427 HARDWARE MONITORING DRIVER |
5674 | M: Jean Delvare <[email protected]> | |
5675 | L: [email protected] | |
5676 | S: Maintained | |
5677 | F: Documentation/hwmon/pc87427 | |
5678 | F: drivers/hwmon/pc87427.c | |
5679 | ||
b26e0ed4 | 5680 | PCA9532 LED DRIVER |
8b58be88 | 5681 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 5682 | S: Maintained |
d5ca6918 JP |
5683 | F: drivers/leds/leds-pca9532.c |
5684 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 5685 | |
5ce914a8 | 5686 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 5687 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
5688 | L: [email protected] |
5689 | S: Maintained | |
b4f0b74e | 5690 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 5691 | |
a1867d36 WS |
5692 | PCA9564/PCA9665 I2C BUS DRIVER |
5693 | M: Wolfram Sang <[email protected]> | |
5694 | L: [email protected] | |
5695 | S: Maintained | |
5696 | F: drivers/i2c/algos/i2c-algo-pca.c | |
5697 | F: drivers/i2c/busses/i2c-pca-* | |
5698 | F: include/linux/i2c-algo-pca.h | |
5699 | F: include/linux/i2c-pca-platform.h | |
5700 | ||
3971dae5 | 5701 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 5702 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
5703 | S: Maintained |
5704 | F: drivers/firmware/pcdp.* | |
5705 | ||
065c6359 | 5706 | PCI ERROR RECOVERY |
6305902c | 5707 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 5708 | L: [email protected] |
065c6359 | 5709 | S: Supported |
679655da JP |
5710 | F: Documentation/PCI/pci-error-recovery.txt |
5711 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
065c6359 | 5712 | |
1da177e4 | 5713 | PCI SUBSYSTEM |
5ac3a6d2 | 5714 | M: Bjorn Helgaas <[email protected]> |
2905474d | 5715 | L: [email protected] |
99662dd1 | 5716 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 5717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 5718 | S: Supported |
679655da JP |
5719 | F: Documentation/PCI/ |
5720 | F: drivers/pci/ | |
5721 | F: include/linux/pci* | |
1da177e4 | 5722 | |
1da177e4 | 5723 | PCMCIA SUBSYSTEM |
4230dfc9 | 5724 | P: Linux PCMCIA Team |
f5df5881 | 5725 | L: [email protected] |
6650e0a5 | 5726 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 5727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 5728 | S: Maintained |
679655da JP |
5729 | F: Documentation/pcmcia/ |
5730 | F: drivers/pcmcia/ | |
5731 | F: include/pcmcia/ | |
1da177e4 LT |
5732 | |
5733 | PCNET32 NETWORK DRIVER | |
227fb925 | 5734 | M: Don Fry <[email protected]> |
979b6c13 | 5735 | L: [email protected] |
1da177e4 | 5736 | S: Maintained |
b955f6ca | 5737 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 5738 | |
48fc267e SK |
5739 | PCRYPT PARALLEL CRYPTO ENGINE |
5740 | M: Steffen Klassert <[email protected]> | |
5741 | L: [email protected] | |
5742 | S: Maintained | |
5743 | F: crypto/pcrypt.c | |
5744 | F: include/crypto/pcrypt.h | |
5745 | ||
e72df0b8 TH |
5746 | PER-CPU MEMORY ALLOCATOR |
5747 | M: Tejun Heo <[email protected]> | |
5748 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
5749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
5750 | S: Maintained | |
5751 | F: include/linux/percpu*.h | |
5752 | F: mm/percpu*.c | |
5753 | F: arch/*/include/asm/percpu.h | |
5754 | ||
ad4ecbcb | 5755 | PER-TASK DELAY ACCOUNTING |
185e595f | 5756 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 5757 | S: Maintained |
679655da JP |
5758 | F: include/linux/delayacct.h |
5759 | F: kernel/delayacct.c | |
ad4ecbcb | 5760 | |
57c0c15b | 5761 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
5762 | M: Peter Zijlstra <[email protected]> |
5763 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 5764 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 5765 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 5766 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 5767 | S: Supported |
d53e8365 | 5768 | F: kernel/events/* |
a003236c | 5769 | F: include/linux/perf_event.h |
141c4296 RR |
5770 | F: arch/*/kernel/perf_event*.c |
5771 | F: arch/*/kernel/*/perf_event*.c | |
5772 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 5773 | F: arch/*/include/asm/perf_event.h |
141c4296 | 5774 | F: arch/*/lib/perf_event*.c |
a003236c VL |
5775 | F: arch/*/kernel/perf_callchain.c |
5776 | F: tools/perf/ | |
6c0b3244 | 5777 | |
dd49d0f5 | 5778 | PERSONALITY HANDLING |
8b58be88 | 5779 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
5780 | L: [email protected] |
5781 | S: Maintained | |
679655da | 5782 | F: include/linux/personality.h |
dd49d0f5 | 5783 | |
838e7a03 | 5784 | PHONET PROTOCOL |
2a06b40f | 5785 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
5786 | S: Supported |
5787 | F: Documentation/networking/phonet.txt | |
5788 | F: include/linux/phonet.h | |
5789 | F: include/net/phonet/ | |
5790 | F: net/phonet/ | |
5791 | ||
1da177e4 | 5792 | PHRAM MTD DRIVER |
8b58be88 | 5793 | M: Joern Engel <[email protected]> |
1da177e4 LT |
5794 | L: [email protected] |
5795 | S: Maintained | |
679655da | 5796 | F: drivers/mtd/devices/phram.c |
1da177e4 | 5797 | |
efdbb10e BP |
5798 | PICOLCD HID DRIVER |
5799 | M: Bruno Prémont <[email protected]> | |
5800 | L: [email protected] | |
5801 | S: Maintained | |
5802 | F: drivers/hid/hid-picolcd* | |
5803 | ||
a53bfa07 JI |
5804 | PICOXCELL SUPPORT |
5805 | M: Jamie Iles <[email protected]> | |
5806 | L: [email protected] (moderated for non-subscribers) | |
5807 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
5808 | S: Supported | |
5809 | F: arch/arm/mach-picoxcell | |
5810 | F: drivers/*/picoxcell* | |
5811 | F: drivers/*/*/picoxcell* | |
5812 | ||
2744e8af LW |
5813 | PIN CONTROL SUBSYSTEM |
5814 | M: Linus Walleij <[email protected]> | |
5815 | S: Maintained | |
07f29ba6 | 5816 | F: drivers/pinctrl/ |
8e406fe4 | 5817 | F: include/linux/pinctrl/ |
2744e8af | 5818 | |
deda8287 | 5819 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 5820 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
5821 | L: [email protected] |
5822 | L: [email protected] (moderated for non-subscribers) | |
5823 | W: http://www.st.com/spear | |
5824 | S: Maintained | |
8e406fe4 | 5825 | F: drivers/pinctrl/spear/ |
deda8287 | 5826 | |
249a6771 | 5827 | PKTCDVD DRIVER |
dbd47133 | 5828 | M: Jiri Kosina <[email protected]> |
249a6771 | 5829 | S: Maintained |
679655da JP |
5830 | F: drivers/block/pktcdvd.c |
5831 | F: include/linux/pktcdvd.h | |
249a6771 | 5832 | |
b31d8273 G |
5833 | PKUNITY SOC DRIVERS |
5834 | M: Guan Xuetao <[email protected]> | |
5835 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
5836 | S: Maintained | |
5837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
5838 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 5839 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 5840 | F: drivers/video/fb-puv3.c |
2809e80b | 5841 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 5842 | |
9d2ecfb7 | 5843 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 5844 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
5845 | L: [email protected] |
5846 | W: http://www.lm-sensors.org/ | |
5847 | W: http://www.roeck-us.net/linux/drivers/ | |
5848 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
5849 | S: Maintained | |
5850 | F: Documentation/hwmon/pmbus | |
5851 | F: drivers/hwmon/pmbus/ | |
5852 | F: include/linux/i2c/pmbus.h | |
5853 | ||
89a36810 | 5854 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 5855 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
5856 | L: [email protected] |
5857 | W: http://www.pmc-sierra.com/ | |
5858 | S: Supported | |
5859 | F: drivers/scsi/pmcraid.* | |
5860 | ||
dbf9bfe6 | 5861 | PMC SIERRA PM8001 DRIVER |
5862 | M: [email protected] | |
5863 | M: [email protected] | |
5864 | L: [email protected] | |
5865 | S: Supported | |
5866 | F: drivers/scsi/pm8001/ | |
5867 | ||
1da177e4 | 5868 | POSIX CLOCKS and TIMERS |
8b58be88 | 5869 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 5870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 5871 | S: Supported |
679655da JP |
5872 | F: fs/timerfd.c |
5873 | F: include/linux/timer* | |
5874 | F: kernel/*timer* | |
1da177e4 | 5875 | |
3be86148 | 5876 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
8b58be88 JP |
5877 | M: Anton Vorontsov <[email protected]> |
5878 | M: David Woodhouse <[email protected]> | |
54e5881d | 5879 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 5880 | S: Maintained |
679655da | 5881 | F: include/linux/power_supply.h |
8cd725a1 | 5882 | F: drivers/power/ |
3be86148 | 5883 | |
1da177e4 | 5884 | PNP SUPPORT |
8b58be88 | 5885 | M: Adam Belay <[email protected]> |
c2d197e8 | 5886 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 5887 | S: Maintained |
679655da | 5888 | F: drivers/pnp/ |
1da177e4 | 5889 | |
999445d4 | 5890 | PNXxxxx I2C DRIVER |
8b58be88 | 5891 | M: Vitaly Wool <[email protected]> |
846557d3 | 5892 | L: [email protected] |
999445d4 | 5893 | S: Maintained |
679655da | 5894 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 5895 | |
1da177e4 | 5896 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 5897 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5898 | L: [email protected] |
5899 | S: Maintained | |
224cf5ad | 5900 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
5901 | |
5902 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 5903 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 5904 | S: Maintained |
679655da JP |
5905 | F: net/atm/pppoatm.c |
5906 | F: include/linux/atmppp.h | |
1da177e4 LT |
5907 | |
5908 | PPP OVER ETHERNET | |
8b58be88 | 5909 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 5910 | S: Maintained |
224cf5ad JK |
5911 | F: drivers/net/ppp/pppoe.c |
5912 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 5913 | |
a6d2370b | 5914 | PPP OVER L2TP |
8b58be88 | 5915 | M: James Chapman <[email protected]> |
a6d2370b | 5916 | S: Maintained |
90ca28d1 | 5917 | F: net/l2tp/l2tp_ppp.c |
679655da | 5918 | F: include/linux/if_pppol2tp.h |
a6d2370b | 5919 | |
eae9d2ba | 5920 | PPS SUPPORT |
8b58be88 | 5921 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
5922 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
5923 | L: [email protected] (subscribers-only) | |
5924 | S: Maintained | |
cabaaf41 JP |
5925 | F: Documentation/pps/ |
5926 | F: drivers/pps/ | |
5927 | F: include/linux/pps*.h | |
eae9d2ba | 5928 | |
71a6d0af HW |
5929 | PPTP DRIVER |
5930 | M: Dmitry Kozlov <[email protected]> | |
5931 | L: [email protected] | |
5932 | S: Maintained | |
224cf5ad | 5933 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
5934 | W: http://sourceforge.net/projects/accel-pptp |
5935 | ||
1da177e4 | 5936 | PREEMPTIBLE KERNEL |
8b58be88 | 5937 | M: Robert Love <[email protected]> |
1da177e4 LT |
5938 | L: [email protected] |
5939 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
5940 | S: Supported | |
679655da JP |
5941 | F: Documentation/preempt-locking.txt |
5942 | F: include/linux/preempt.h | |
1da177e4 LT |
5943 | |
5944 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 5945 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 5946 | L: [email protected] |
9ef80804 | 5947 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 5948 | S: Obsolete |
679655da | 5949 | F: drivers/net/wireless/prism54/ |
1da177e4 | 5950 | |
b3277dfa | 5951 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 5952 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
5953 | L: [email protected] |
5954 | S: Maintained | |
679655da | 5955 | F: drivers/ata/sata_promise.* |
b3277dfa | 5956 | |
02c18891 | 5957 | PS3 NETWORK SUPPORT |
b809b9ca | 5958 | M: Geoff Levand <[email protected]> |
02c18891 | 5959 | L: [email protected] |
a4724ed6 | 5960 | L: [email protected] |
b809b9ca | 5961 | S: Maintained |
8df158ac | 5962 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 5963 | |
f58a9d17 | 5964 | PS3 PLATFORM SUPPORT |
b809b9ca | 5965 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
5966 | L: [email protected] |
5967 | L: [email protected] | |
b809b9ca | 5968 | S: Maintained |
679655da JP |
5969 | F: arch/powerpc/boot/ps3* |
5970 | F: arch/powerpc/include/asm/lv1call.h | |
5971 | F: arch/powerpc/include/asm/ps3*.h | |
5972 | F: arch/powerpc/platforms/ps3/ | |
5973 | F: drivers/*/ps3* | |
5974 | F: drivers/ps3/ | |
fec629b8 | 5975 | F: drivers/rtc/rtc-ps3.c |
679655da | 5976 | F: drivers/usb/host/*ps3.c |
fec629b8 | 5977 | F: sound/ppc/snd_ps3* |
f58a9d17 | 5978 | |
cffb4add | 5979 | PS3VRAM DRIVER |
8b58be88 | 5980 | M: Jim Paris <[email protected]> |
a4724ed6 | 5981 | L: [email protected] |
cffb4add | 5982 | S: Maintained |
8a3977cb | 5983 | F: drivers/block/ps3vram.c |
cffb4add | 5984 | |
8defe599 AV |
5985 | PSTORE FILESYSTEM |
5986 | M: Anton Vorontsov <[email protected]> | |
5987 | M: Colin Cross <[email protected]> | |
5988 | M: Kees Cook <[email protected]> | |
5989 | M: Tony Luck <[email protected]> | |
5990 | S: Maintained | |
5991 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
5992 | F: fs/pstore/ | |
5993 | F: include/linux/pstore* | |
5994 | F: drivers/firmware/efivars.c | |
5995 | F: drivers/acpi/apei/erst.c | |
5996 | ||
7fbc415d RC |
5997 | PTP HARDWARE CLOCK SUPPORT |
5998 | M: Richard Cochran <[email protected]> | |
5999 | S: Maintained | |
6000 | W: http://linuxptp.sourceforge.net/ | |
6001 | F: Documentation/ABI/testing/sysfs-ptp | |
6002 | F: Documentation/ptp/* | |
0ecb3cdd | 6003 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6004 | F: drivers/net/phy/dp83640* |
6005 | F: drivers/ptp/* | |
6006 | F: include/linux/ptp_cl* | |
6007 | ||
cf94a4d1 | 6008 | PTRACE SUPPORT |
8b58be88 JP |
6009 | M: Roland McGrath <[email protected]> |
6010 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6011 | S: Maintained |
6012 | F: include/asm-generic/syscall.h | |
6013 | F: include/linux/ptrace.h | |
6014 | F: include/linux/regset.h | |
6015 | F: include/linux/tracehook.h | |
6016 | F: kernel/ptrace.c | |
6017 | ||
8320204a | 6018 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6019 | M: Mike Isely <[email protected]> |
16e9495d | 6020 | L: [email protected] (subscribers-only) |
661263b5 | 6021 | L: [email protected] |
8320204a | 6022 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6023 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6024 | S: Maintained |
679655da | 6025 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6026 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6027 | |
39532e6c HG |
6028 | PWC WEBCAM DRIVER |
6029 | M: Hans de Goede <[email protected]> | |
6030 | L: [email protected] | |
6031 | T: git git://linuxtv.org/media_tree.git | |
6032 | S: Maintained | |
6033 | F: drivers/media/usb/pwc/* | |
6034 | ||
200efedd TR |
6035 | PWM SUBSYSTEM |
6036 | M: Thierry Reding <[email protected]> | |
0c2498f1 SH |
6037 | L: [email protected] |
6038 | S: Maintained | |
200efedd TR |
6039 | W: http://gitorious.org/linux-pwm |
6040 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6041 | F: Documentation/pwm.txt | |
6042 | F: Documentation/devicetree/bindings/pwm/ | |
6043 | F: include/linux/pwm.h | |
6044 | F: include/linux/of_pwm.h | |
0c2498f1 | 6045 | F: drivers/pwm/ |
a140b98d TR |
6046 | F: drivers/video/backlight/pwm_bl.c |
6047 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6048 | |
30ec261e | 6049 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6050 | M: Eric Miao <[email protected]> |
6051 | M: Russell King <[email protected]> | |
a323f664 | 6052 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6053 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6054 | T: git git://github.com/hzhuang1/linux.git |
6055 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6056 | S: Maintained |
679655da JP |
6057 | F: arch/arm/mach-pxa/ |
6058 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6059 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6060 | F: drivers/usb/gadget/pxa2* |
6061 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
6062 | F: sound/arm/pxa* |
6063 | F: sound/soc/pxa | |
1da177e4 | 6064 | |
3f640c61 | 6065 | MMP SUPPORT |
8b58be88 | 6066 | M: Eric Miao <[email protected]> |
a323f664 | 6067 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6068 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6069 | T: git git://github.com/hzhuang1/linux.git |
6070 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6071 | S: Maintained |
3f640c61 | 6072 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6073 | |
272f133a PO |
6074 | PXA MMCI DRIVER |
6075 | S: Orphan | |
6076 | ||
57f63bc8 | 6077 | PXA RTC DRIVER |
8b58be88 | 6078 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6079 | L: [email protected] |
6080 | S: Maintained | |
6081 | ||
52a09a04 | 6082 | QIB DRIVER |
8473c603 | 6083 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6084 | L: [email protected] |
6085 | S: Supported | |
6086 | F: drivers/infiniband/hw/qib/ | |
6087 | ||
5e9772b9 JS |
6088 | QLOGIC QLA1280 SCSI DRIVER |
6089 | M: Michael Reed <[email protected]> | |
6090 | L: [email protected] | |
6091 | S: Maintained | |
6092 | F: drivers/scsi/qla1280.[ch] | |
6093 | ||
1da177e4 | 6094 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6095 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6096 | M: [email protected] |
1da177e4 LT |
6097 | L: [email protected] |
6098 | S: Supported | |
679655da JP |
6099 | F: Documentation/scsi/LICENSE.qla2xxx |
6100 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6101 | |
883c98fe RA |
6102 | QLOGIC QLA4XXX iSCSI DRIVER |
6103 | M: Ravi Anand <[email protected]> | |
6104 | M: Vikas Chaudhary <[email protected]> | |
6105 | M: [email protected] | |
6106 | L: [email protected] | |
6107 | S: Supported | |
6108 | F: drivers/scsi/qla4xxx/ | |
6109 | ||
5a4faa87 | 6110 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6111 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6112 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6113 | M: [email protected] |
6114 | L: [email protected] | |
6115 | S: Supported | |
679655da | 6116 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6117 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6118 | |
0ec00f03 | 6119 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
2ab1c24b | 6120 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6121 | M: Sony Chacko <[email protected]> |
0ec00f03 AKS |
6122 | M: [email protected] |
6123 | L: [email protected] | |
6124 | S: Supported | |
aa43c215 | 6125 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6126 | |
c4e84bde | 6127 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
b997d79a | 6128 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6129 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6130 | M: [email protected] |
c4e84bde RM |
6131 | L: [email protected] |
6132 | S: Supported | |
aa43c215 | 6133 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6134 | |
1da177e4 | 6135 | QNX4 FILESYSTEM |
8b58be88 | 6136 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6137 | W: http://www.alarsen.net/linux/qnx4fs/ |
6138 | S: Maintained | |
80811493 | 6139 | F: fs/qnx4/ |
679655da JP |
6140 | F: include/linux/qnx4_fs.h |
6141 | F: include/linux/qnxtypes.h | |
1da177e4 | 6142 | |
91952bc0 AP |
6143 | QT1010 MEDIA DRIVER |
6144 | M: Antti Palosaari <[email protected]> | |
6145 | L: [email protected] | |
6146 | W: http://linuxtv.org/ | |
6147 | W: http://palosaari.fi/linux/ | |
6148 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6149 | T: git git://linuxtv.org/anttip/media_tree.git | |
6150 | S: Maintained | |
6151 | F: drivers/media/tuners/qt1010* | |
6152 | ||
4f4567cf RK |
6153 | QUALCOMM HEXAGON ARCHITECTURE |
6154 | M: Richard Kuo <[email protected]> | |
6155 | L: [email protected] | |
6156 | S: Supported | |
6157 | F: arch/hexagon/ | |
6158 | ||
602adf40 | 6159 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6160 | M: Yehuda Sadeh <[email protected]> |
6161 | M: Sage Weil <[email protected]> | |
6162 | M: Alex Elder <[email protected]> | |
602adf40 | 6163 | M: [email protected] |
09d90327 SW |
6164 | W: http://ceph.com/ |
6165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6166 | S: Supported |
6167 | F: drivers/block/rbd.c | |
6168 | F: drivers/block/rbd_types.h | |
6169 | ||
1da177e4 | 6170 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6171 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6172 | L: [email protected] |
1da177e4 | 6173 | S: Maintained |
679655da JP |
6174 | F: drivers/video/aty/radeon* |
6175 | F: include/linux/radeonfb.h | |
1da177e4 | 6176 | |
c6c9b34c HG |
6177 | RADIOSHARK RADIO DRIVER |
6178 | M: Hans de Goede <[email protected]> | |
6179 | L: [email protected] | |
6180 | T: git git://linuxtv.org/media_tree.git | |
6181 | S: Maintained | |
6182 | F: drivers/media/radio/radio-shark.c | |
6183 | ||
6184 | RADIOSHARK2 RADIO DRIVER | |
6185 | M: Hans de Goede <[email protected]> | |
6186 | L: [email protected] | |
6187 | T: git git://linuxtv.org/media_tree.git | |
6188 | S: Maintained | |
6189 | F: drivers/media/radio/radio-shark2.c | |
6190 | F: drivers/media/radio/radio-tea5777.c | |
6191 | ||
1da177e4 | 6192 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6193 | M: Paul Mackerras <[email protected]> |
c69f677c | 6194 | L: [email protected] |
1da177e4 | 6195 | S: Maintained |
679655da | 6196 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6197 | |
e7839f25 | 6198 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6199 | P: rt2x00 project |
e1a6542f | 6200 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 6201 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 6202 | M: Helmut Schaa <[email protected]> |
95ea3627 | 6203 | L: [email protected] |
83fc9c89 | 6204 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
6205 | W: http://rt2x00.serialmonkey.com/ |
6206 | S: Maintained | |
54e5881d | 6207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6208 | F: drivers/net/wireless/rt2x00/ |
6209 | ||
9db5579b | 6210 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6211 | M: Nick Piggin <[email protected]> |
9db5579b | 6212 | S: Maintained |
679655da JP |
6213 | F: Documentation/blockdev/ramdisk.txt |
6214 | F: drivers/block/brd.c | |
9db5579b | 6215 | |
9e95ce27 | 6216 | RANDOM NUMBER DRIVER |
330e0a01 | 6217 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 6218 | S: Maintained |
679655da | 6219 | F: drivers/char/random.c |
9e95ce27 | 6220 | |
394b701c | 6221 | RAPIDIO SUBSYSTEM |
8b58be88 | 6222 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 6223 | M: Alexandre Bounine <[email protected]> |
394b701c | 6224 | S: Maintained |
679655da | 6225 | F: drivers/rapidio/ |
394b701c | 6226 | |
e2d1d6c0 | 6227 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6228 | L: [email protected] |
f52a5490 | 6229 | S: Orphan |
679655da | 6230 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6231 | |
6232 | RCUTORTURE MODULE | |
8b58be88 JP |
6233 | M: Josh Triplett <[email protected]> |
6234 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 6235 | S: Supported |
08deed1e | 6236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6237 | F: Documentation/RCU/torture.txt |
6238 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6239 | |
c1f766b5 | 6240 | RDC R-321X SoC |
8b58be88 | 6241 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
6242 | S: Maintained |
6243 | ||
db17f395 | 6244 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6245 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
6246 | L: [email protected] |
6247 | S: Maintained | |
58565a35 | 6248 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6249 | |
a09ed661 | 6250 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6251 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 6252 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 6253 | S: Supported |
679655da | 6254 | F: net/rds/ |
a09ed661 | 6255 | |
595182bc | 6256 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6257 | M: Dipankar Sarma <[email protected]> |
6258 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 6259 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6260 | S: Supported |
08deed1e | 6261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6262 | F: Documentation/RCU/ |
9fab9787 | 6263 | X: Documentation/RCU/torture.txt |
f9094d8e | 6264 | F: include/linux/rcu* |
f9094d8e | 6265 | F: kernel/rcu* |
f9094d8e | 6266 | X: kernel/rcutorture.c |
595182bc | 6267 | |
0c86edc0 | 6268 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6269 | M: Alessandro Zummo <[email protected]> |
76465493 | 6270 | L: [email protected] |
8a6e2535 | 6271 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6272 | S: Maintained |
679655da JP |
6273 | F: Documentation/rtc.txt |
6274 | F: drivers/rtc/ | |
6275 | F: include/linux/rtc.h | |
0c86edc0 | 6276 | |
1da177e4 | 6277 | REISERFS FILE SYSTEM |
76c4e5ea | 6278 | L: [email protected] |
1da177e4 | 6279 | S: Supported |
679655da | 6280 | F: fs/reiserfs/ |
1da177e4 | 6281 | |
b83a313b MB |
6282 | REGISTER MAP ABSTRACTION |
6283 | M: Mark Brown <[email protected]> | |
6284 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git | |
6285 | S: Supported | |
6286 | F: drivers/base/regmap/ | |
6287 | F: include/linux/regmap.h | |
6288 | ||
400e64df OBC |
6289 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6290 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 6291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6292 | S: Maintained |
6293 | F: drivers/remoteproc/ | |
6294 | F: Documentation/remoteproc.txt | |
6fc26488 | 6295 | F: include/linux/remoteproc.h |
400e64df | 6296 | |
e0897645 | 6297 | RFKILL |
8b58be88 | 6298 | M: Johannes Berg <[email protected]> |
19d337df | 6299 | L: [email protected] |
ce466579 JB |
6300 | W: http://wireless.kernel.org/ |
6301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6303 | S: Maintained |
505c9247 | 6304 | F: Documentation/rfkill.txt |
80811493 | 6305 | F: net/rfkill/ |
e0897645 | 6306 | |
67e054e9 ML |
6307 | RICOH SMARTMEDIA/XD DRIVER |
6308 | M: Maxim Levitsky <[email protected]> | |
6309 | S: Maintained | |
21c26f50 JP |
6310 | F: drivers/mtd/nand/r852.c |
6311 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6312 | |
92634125 ML |
6313 | RICOH R5C592 MEMORYSTICK DRIVER |
6314 | M: Maxim Levitsky <[email protected]> | |
6315 | S: Maintained | |
6316 | F: drivers/memstick/host/r592.* | |
6317 | ||
1da177e4 LT |
6318 | ROCKETPORT DRIVER |
6319 | P: Comtrol Corp. | |
1da177e4 LT |
6320 | W: http://www.comtrol.com |
6321 | S: Maintained | |
679655da | 6322 | F: Documentation/serial/rocket.txt |
c897401b | 6323 | F: drivers/tty/rocket* |
1da177e4 LT |
6324 | |
6325 | ROSE NETWORK LAYER | |
8b58be88 | 6326 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6327 | L: [email protected] |
d34cb28a | 6328 | W: http://www.linux-ax25.org/ |
1da177e4 | 6329 | S: Maintained |
679655da JP |
6330 | F: include/linux/rose.h |
6331 | F: include/net/rose.h | |
6332 | F: net/rose/ | |
1da177e4 | 6333 | |
91952bc0 AP |
6334 | RTL2830 MEDIA DRIVER |
6335 | M: Antti Palosaari <[email protected]> | |
6336 | L: [email protected] | |
6337 | W: http://linuxtv.org/ | |
6338 | W: http://palosaari.fi/linux/ | |
6339 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6340 | T: git git://linuxtv.org/anttip/media_tree.git | |
6341 | S: Maintained | |
6342 | F: drivers/media/dvb-frontends/rtl2830* | |
6343 | ||
59840488 | 6344 | RTL8180 WIRELESS DRIVER |
8b58be88 | 6345 | M: "John W. Linville" <[email protected]> |
605bebe2 | 6346 | L: [email protected] |
491b26b4 | 6347 | W: http://wireless.kernel.org/ |
54e5881d | 6348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 6349 | S: Maintained |
3cfeb0c3 | 6350 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 6351 | |
59840488 | 6352 | RTL8187 WIRELESS DRIVER |
9f0939bf | 6353 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
6354 | M: Hin-Tak Leung <[email protected]> |
6355 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 6356 | L: [email protected] |
491b26b4 | 6357 | W: http://wireless.kernel.org/ |
54e5881d | 6358 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 6359 | S: Maintained |
3cfeb0c3 | 6360 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 6361 | |
3cf0c8ad LF |
6362 | RTL8192CE WIRELESS DRIVER |
6363 | M: Larry Finger <[email protected]> | |
6364 | M: Chaoming Li <[email protected]> | |
6365 | L: [email protected] | |
491b26b4 | 6366 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
6367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
6368 | S: Maintained | |
6369 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 6370 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 6371 | |
9eb8ef74 | 6372 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 6373 | M: Antonino Daplas <[email protected]> |
c69f677c | 6374 | L: [email protected] |
ce00f85c | 6375 | S: Maintained |
679655da | 6376 | F: drivers/video/savage/ |
9eb8ef74 | 6377 | |
1da177e4 | 6378 | S390 |
8b58be88 JP |
6379 | M: Martin Schwidefsky <[email protected]> |
6380 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 6381 | M: [email protected] |
d58140cc | 6382 | L: [email protected] |
5238da45 HC |
6383 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6384 | S: Supported | |
679655da | 6385 | F: arch/s390/ |
a968cd3e | 6386 | F: drivers/s390/ |
20d16fef | 6387 | F: block/partitions/ibm.c |
3bfe6858 JN |
6388 | F: Documentation/s390/ |
6389 | F: Documentation/DocBook/s390* | |
5238da45 HC |
6390 | |
6391 | S390 NETWORK DRIVERS | |
8b58be88 JP |
6392 | M: Ursula Braun <[email protected]> |
6393 | M: Frank Blaschka <[email protected]> | |
5238da45 | 6394 | M: [email protected] |
d58140cc | 6395 | L: [email protected] |
5238da45 HC |
6396 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6397 | S: Supported | |
679655da | 6398 | F: drivers/s390/net/ |
5238da45 | 6399 | |
feed9b62 | 6400 | S390 ZCRYPT DRIVER |
51120c2c | 6401 | M: Holger Dengler <[email protected]> |
feed9b62 FB |
6402 | M: [email protected] |
6403 | L: [email protected] | |
a968cd3e | 6404 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 6405 | S: Supported |
d5ca6918 | 6406 | F: drivers/s390/crypto/ |
feed9b62 | 6407 | |
5238da45 | 6408 | S390 ZFCP DRIVER |
d38e19d0 | 6409 | M: Steffen Maier <[email protected]> |
5238da45 | 6410 | M: [email protected] |
d58140cc | 6411 | L: [email protected] |
5238da45 | 6412 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 6413 | S: Supported |
679655da | 6414 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 6415 | |
dd96df2c | 6416 | S390 IUCV NETWORK LAYER |
8b58be88 | 6417 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
6418 | M: [email protected] |
6419 | L: [email protected] | |
6420 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
6421 | S: Supported | |
679655da JP |
6422 | F: drivers/s390/net/*iucv* |
6423 | F: include/net/iucv/ | |
6424 | F: net/iucv/ | |
dd96df2c | 6425 | |
4dde7f75 | 6426 | S3C24XX SD/MMC Driver |
8b58be88 | 6427 | M: Ben Dooks <[email protected]> |
efc03ecb | 6428 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 6429 | S: Supported |
679655da | 6430 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 6431 | |
98ed12e6 MCC |
6432 | SAA7134 VIDEO4LINUX DRIVER |
6433 | M: Mauro Carvalho Chehab <[email protected]> | |
6434 | L: [email protected] | |
6435 | W: http://linuxtv.org | |
6436 | T: git git://linuxtv.org/media_tree.git | |
6437 | S: Odd fixes | |
6438 | F: Documentation/video4linux/saa7134/ | |
6439 | F: drivers/media/pci/saa7134/ | |
6440 | ||
1da177e4 | 6441 | SAA7146 VIDEO4LINUX-2 DRIVER |
8b58be88 | 6442 | M: Michael Hunold <[email protected]> |
661263b5 | 6443 | L: [email protected] |
275ffde4 | 6444 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
6445 | W: http://www.mihu.de/linux/saa7146 |
6446 | S: Maintained | |
90d72ac6 MCC |
6447 | F: drivers/media/common/saa7146/ |
6448 | F: drivers/media/pci/saa7146/ | |
6449 | F: include/media/saa7146* | |
1da177e4 | 6450 | |
92304a40 CC |
6451 | SAMSUNG LAPTOP DRIVER |
6452 | M: Corentin Chary <[email protected]> | |
6453 | L: [email protected] | |
6454 | S: Maintained | |
6455 | F: drivers/platform/x86/samsung-laptop.c | |
6456 | ||
4a109cc0 | 6457 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 6458 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
6459 | L: [email protected] (moderated for non-subscribers) |
6460 | S: Supported | |
7a939419 | 6461 | F: sound/soc/samsung |
4a109cc0 | 6462 | |
0d89a28b JH |
6463 | SAMSUNG FRAMEBUFFER DRIVER |
6464 | M: Jingoo Han <[email protected]> | |
6465 | L: [email protected] | |
6466 | S: Maintained | |
6467 | F: drivers/video/s3c-fb.c | |
6468 | ||
f69d3a17 SK |
6469 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
6470 | M: Sangbeom Kim <[email protected]> | |
6471 | L: [email protected] | |
6472 | S: Supported | |
6473 | F: drivers/mfd/sec*.c | |
6474 | F: drivers/regulator/s2m*.c | |
6475 | F: drivers/regulator/s5m*.c | |
6476 | F: drivers/rtc/rtc-sec.c | |
6477 | F: include/linux/mfd/samsung/ | |
6478 | ||
6fd86ab2 SN |
6479 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
6480 | M: Sylwester Nawrocki <[email protected]> | |
6481 | L: [email protected] | |
6482 | L: [email protected] (moderated for non-subscribers) | |
6483 | S: Maintained | |
6484 | F: drivers/media/platform/s3c-camif/ | |
6485 | F: include/media/s3c_camif.h | |
6486 | ||
ca749e2a AC |
6487 | SERIAL DRIVERS |
6488 | M: Alan Cox <[email protected]> | |
6489 | L: [email protected] | |
6490 | S: Maintained | |
6491 | F: drivers/tty/serial | |
6492 | ||
aecb7b64 | 6493 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 6494 | M: Viresh Kumar <[email protected]> |
aecb7b64 VK |
6495 | S: Maintained |
6496 | F: include/linux/dw_dmac.h | |
6497 | F: drivers/dma/dw_dmac_regs.h | |
6498 | F: drivers/dma/dw_dmac.c | |
6499 | ||
88606e80 TG |
6500 | TIMEKEEPING, NTP |
6501 | M: John Stultz <[email protected]> | |
6502 | M: Thomas Gleixner <[email protected]> | |
75fc2d37 | 6503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
6504 | S: Supported |
6505 | F: include/linux/clocksource.h | |
6506 | F: include/linux/time.h | |
6507 | F: include/linux/timex.h | |
88606e80 TG |
6508 | F: kernel/time/clocksource.c |
6509 | F: kernel/time/time*.c | |
6510 | F: kernel/time/ntp.c | |
bbe7b8be | 6511 | F: drivers/clocksource |
88606e80 | 6512 | |
5b3f03f0 | 6513 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 JP |
6514 | M: Huang Shijie <[email protected]> |
6515 | M: Kang Yong <[email protected]> | |
6516 | M: Zhang Xiaobing <[email protected]> | |
5b3f03f0 | 6517 | S: Supported |
0c0d06ca | 6518 | F: drivers/media/usb/tlg2300 |
5b3f03f0 | 6519 | |
1da177e4 | 6520 | SC1200 WDT DRIVER |
8b58be88 | 6521 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 6522 | S: Maintained |
679655da | 6523 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
6524 | |
6525 | SCHEDULER | |
dd9b238c | 6526 | M: Ingo Molnar <[email protected]> |
8b58be88 | 6527 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 6528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 6529 | S: Maintained |
95c0d71d | 6530 | F: kernel/sched/ |
679655da | 6531 | F: include/linux/sched.h |
1da177e4 | 6532 | |
6bcf6737 | 6533 | SCORE ARCHITECTURE |
a2681a75 JP |
6534 | M: Chen Liqin <[email protected]> |
6535 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
6536 | W: http://www.sunplusct.com |
6537 | S: Supported | |
a2681a75 | 6538 | F: arch/score/ |
6bcf6737 | 6539 | |
1da177e4 | 6540 | SCSI CDROM DRIVER |
8b58be88 | 6541 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
6542 | L: [email protected] |
6543 | W: http://www.kernel.dk | |
6544 | S: Maintained | |
679655da | 6545 | F: drivers/scsi/sr* |
1da177e4 | 6546 | |
fb50a83d RD |
6547 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
6548 | M: David Dillow <[email protected]> | |
6549 | L: [email protected] | |
6550 | S: Supported | |
6551 | W: http://www.openfabrics.org | |
6552 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
6553 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
6554 | F: drivers/infiniband/ulp/srp/ | |
6555 | F: include/scsi/srp.h | |
6556 | ||
1da177e4 | 6557 | SCSI SG DRIVER |
8b58be88 | 6558 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
6559 | L: [email protected] |
6560 | W: http://www.torque.net/sg | |
6561 | S: Maintained | |
679655da JP |
6562 | F: drivers/scsi/sg.c |
6563 | F: include/scsi/sg.h | |
1da177e4 LT |
6564 | |
6565 | SCSI SUBSYSTEM | |
c95286d8 | 6566 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 6567 | L: [email protected] |
54e5881d JP |
6568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
6569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
6570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 6571 | S: Maintained |
679655da JP |
6572 | F: drivers/scsi/ |
6573 | F: include/scsi/ | |
1da177e4 LT |
6574 | |
6575 | SCSI TAPE DRIVER | |
8b58be88 | 6576 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
6577 | L: [email protected] |
6578 | S: Maintained | |
679655da JP |
6579 | F: Documentation/scsi/st.txt |
6580 | F: drivers/scsi/st* | |
1da177e4 LT |
6581 | |
6582 | SCTP PROTOCOL | |
8b6efb75 | 6583 | M: Vlad Yasevich <[email protected]> |
8b58be88 | 6584 | M: Sridhar Samudrala <[email protected]> |
1a418796 | 6585 | L: [email protected] |
5f85813c | 6586 | W: http://lksctp.sourceforge.net |
8b6efb75 | 6587 | S: Maintained |
679655da JP |
6588 | F: Documentation/networking/sctp.txt |
6589 | F: include/linux/sctp.h | |
6590 | F: include/net/sctp/ | |
6591 | F: net/sctp/ | |
1da177e4 LT |
6592 | |
6593 | SCx200 CPU SUPPORT | |
8b58be88 | 6594 | M: Jim Cromie <[email protected]> |
1662d32c | 6595 | S: Odd Fixes |
679655da | 6596 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 6597 | F: arch/x86/platform/scx200/ |
679655da JP |
6598 | F: drivers/watchdog/scx200_wdt.c |
6599 | F: drivers/i2c/busses/scx200* | |
6600 | F: drivers/mtd/maps/scx200_docflash.c | |
6601 | F: include/linux/scx200.h | |
1662d32c JC |
6602 | |
6603 | SCx200 GPIO DRIVER | |
8b58be88 | 6604 | M: Jim Cromie <[email protected]> |
1662d32c | 6605 | S: Maintained |
679655da JP |
6606 | F: drivers/char/scx200_gpio.c |
6607 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
6608 | |
6609 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 6610 | M: Jim Cromie <[email protected]> |
1662d32c | 6611 | S: Maintained |
679655da | 6612 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 6613 | |
6a36913a | 6614 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 6615 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
6616 | L: [email protected] (subscribers-only) |
6617 | S: Maintained | |
679655da | 6618 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 6619 | |
e7839f25 | 6620 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 6621 | M: Chris Ball <[email protected]> |
7a241d6e | 6622 | L: [email protected] |
245feaa6 CB |
6623 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
6624 | S: Maintained | |
7a241d6e | 6625 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 6626 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 6627 | |
3085e9c1 | 6628 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
8b58be88 | 6629 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 6630 | L: [email protected] |
7a241d6e | 6631 | L: [email protected] |
e2d1d6c0 | 6632 | S: Maintained |
d4a45787 | 6633 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 6634 | |
0d1bb41a | 6635 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 6636 | M: Ben Dooks <[email protected]> |
7a241d6e | 6637 | L: [email protected] |
0d1bb41a BD |
6638 | S: Maintained |
6639 | F: drivers/mmc/host/sdhci-s3c.c | |
6640 | ||
c63b3cba | 6641 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 6642 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 6643 | L: [email protected] |
c63b3cba VK |
6644 | L: [email protected] |
6645 | S: Maintained | |
6646 | F: drivers/mmc/host/sdhci-spear.c | |
6647 | ||
8711cca2 | 6648 | SECURITY SUBSYSTEM |
9b45c0d2 | 6649 | M: James Morris <[email protected]> |
8711cca2 | 6650 | L: [email protected] (suggested Cc:) |
89879a7e | 6651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 6652 | W: http://kernsec.org/ |
8711cca2 | 6653 | S: Supported |
7d2c86b5 | 6654 | F: security/ |
8711cca2 | 6655 | |
1da177e4 | 6656 | SECURITY CONTACT |
8b58be88 | 6657 | M: Security Officers <[email protected]> |
1da177e4 LT |
6658 | S: Supported |
6659 | ||
6660 | SELINUX SECURITY MODULE | |
8b58be88 | 6661 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 6662 | M: James Morris <[email protected]> |
8b58be88 | 6663 | M: Eric Paris <[email protected]> |
7d2c86b5 | 6664 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 6665 | W: http://selinuxproject.org |
6bde95ce | 6666 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 6667 | S: Supported |
679655da JP |
6668 | F: include/linux/selinux* |
6669 | F: security/selinux/ | |
6bde95ce | 6670 | F: scripts/selinux/ |
1da177e4 | 6671 | |
c1c124e9 JJ |
6672 | APPARMOR SECURITY MODULE |
6673 | M: John Johansen <[email protected]> | |
6674 | L: [email protected] (subscribers-only, general discussion) | |
6675 | W: apparmor.wiki.kernel.org | |
6676 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
6677 | S: Supported | |
6678 | F: security/apparmor/ | |
6679 | ||
cef2cf07 | 6680 | SENSABLE PHANTOM |
8b58be88 | 6681 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 6682 | S: Maintained |
679655da JP |
6683 | F: drivers/misc/phantom.c |
6684 | F: include/linux/phantom.h | |
cef2cf07 | 6685 | |
4480f15b | 6686 | SERIAL ATA (SATA) SUBSYSTEM |
8b58be88 | 6687 | M: Jeff Garzik <[email protected]> |
1da177e4 | 6688 | L: [email protected] |
54e5881d | 6689 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
1da177e4 | 6690 | S: Supported |
d5ca6918 JP |
6691 | F: drivers/ata/ |
6692 | F: include/linux/ata.h | |
6693 | F: include/linux/libata.h | |
1da177e4 | 6694 | |
6733b39a | 6695 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 6696 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 6697 | L: [email protected] |
0ca43cc0 | 6698 | W: http://www.emulex.com |
3387f656 JP |
6699 | S: Supported |
6700 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 6701 | |
6b7c5b94 | 6702 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
6703 | M: Sathya Perla <[email protected]> |
6704 | M: Subbu Seetharaman <[email protected]> | |
6705 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 6706 | L: [email protected] |
fea3af67 | 6707 | W: http://www.emulex.com |
7d2c86b5 | 6708 | S: Supported |
9aebddd1 | 6709 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 6710 | |
8ceee660 | 6711 | SFC NETWORK DRIVER |
c06f51ea | 6712 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
6713 | M: Ben Hutchings <[email protected]> |
6714 | L: [email protected] | |
8ceee660 | 6715 | S: Supported |
874aeea5 | 6716 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 6717 | |
e2d1d6c0 | 6718 | SGI GRU DRIVER |
8b58be88 | 6719 | M: Jack Steiner <[email protected]> |
e2d1d6c0 | 6720 | S: Maintained |
679655da | 6721 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
6722 | |
6723 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 6724 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
6725 | L: [email protected] |
6726 | S: Supported | |
679655da | 6727 | F: Documentation/ia64/serial.txt |
df621252 | 6728 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 6729 | F: include/linux/ioc?.h |
e2d1d6c0 | 6730 | |
1da177e4 | 6731 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 6732 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
6733 | L: [email protected] |
6734 | W: http://linux-visws.sf.net | |
6735 | S: Maintained for 2.6. | |
679655da | 6736 | F: Documentation/sgi-visws.txt |
1da177e4 | 6737 | |
75312619 | 6738 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 6739 | M: Robin Holt <[email protected]> |
75312619 | 6740 | S: Maintained |
679655da | 6741 | F: drivers/misc/sgi-xp/ |
75312619 | 6742 | |
6349d997 | 6743 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 6744 | M: Len Brown <[email protected]> |
6349d997 LB |
6745 | L: [email protected] |
6746 | W: http://simplefirmware.org/ | |
6747 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 6748 | S: Supported |
943fc810 | 6749 | F: arch/x86/platform/sfi/ |
6349d997 LB |
6750 | F: drivers/sfi/ |
6751 | F: include/linux/sfi*.h | |
e2d1d6c0 | 6752 | |
1da177e4 LT |
6753 | SIMTEC EB110ATX (Chalice CATS) |
6754 | P: Ben Dooks | |
b16957c6 BD |
6755 | P: Vincent Sanders <[email protected]> |
6756 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
6757 | W: http://www.simtec.co.uk/products/EB110ATX/ |
6758 | S: Supported | |
6759 | ||
6760 | SIMTEC EB2410ITX (BAST) | |
6761 | P: Ben Dooks | |
b16957c6 BD |
6762 | P: Vincent Sanders <[email protected]> |
6763 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
6764 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
6765 | S: Supported | |
58322038 BD |
6766 | F: arch/arm/mach-s3c2410/mach-bast.c |
6767 | F: arch/arm/mach-s3c2410/bast-ide.c | |
6768 | F: arch/arm/mach-s3c2410/bast-irq.c | |
1da177e4 | 6769 | |
4c5adde7 | 6770 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 KH |
6771 | M: Sekhar Nori <[email protected]> |
6772 | M: Kevin Hilman <[email protected]> | |
f296ed78 | 6773 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 6774 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 6775 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
6776 | S: Supported |
6777 | F: arch/arm/mach-davinci | |
046d0a37 | 6778 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 6779 | |
8d4b3f08 LP |
6780 | TI DAVINCI SERIES MEDIA DRIVER |
6781 | M: Manjunath Hadli <[email protected]> | |
6782 | M: Prabhakar Lad <[email protected]> | |
6783 | L: [email protected] | |
6784 | L: [email protected] (moderated for non-subscribers) | |
6785 | W: http://linuxtv.org/ | |
6786 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6787 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
6788 | S: Supported | |
6789 | F: drivers/media/platform/davinci/ | |
6790 | F: include/media/davinci/ | |
6791 | ||
92aab3c0 | 6792 | SIS 190 ETHERNET DRIVER |
8b58be88 | 6793 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
6794 | L: [email protected] |
6795 | S: Maintained | |
8c7de408 | 6796 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 6797 | |
1da177e4 | 6798 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 6799 | M: Daniele Venzano <[email protected]> |
1da177e4 | 6800 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 6801 | L: [email protected] |
1da177e4 | 6802 | S: Maintained |
8c7de408 | 6803 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 | 6804 | |
6ea884db | 6805 | SIS 96X I2C/SMBUS DRIVER |
8b58be88 | 6806 | M: "Mark M. Hoffman" <[email protected]> |
846557d3 | 6807 | L: [email protected] |
6ea884db | 6808 | S: Maintained |
679655da JP |
6809 | F: Documentation/i2c/busses/i2c-sis96x |
6810 | F: drivers/i2c/busses/i2c-sis96x.c | |
6ea884db | 6811 | |
1da177e4 | 6812 | SIS FRAMEBUFFER DRIVER |
8b58be88 | 6813 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 6814 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 6815 | S: Maintained |
679655da JP |
6816 | F: Documentation/fb/sisfb.txt |
6817 | F: drivers/video/sis/ | |
6818 | F: include/video/sisfb.h | |
1da177e4 LT |
6819 | |
6820 | SIS USB2VGA DRIVER | |
8b58be88 | 6821 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
6822 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
6823 | S: Maintained | |
679655da | 6824 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 6825 | |
415ad26d | 6826 | SLAB ALLOCATOR |
8b58be88 | 6827 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 6828 | M: Pekka Enberg <[email protected]> |
8b58be88 | 6829 | M: Matt Mackall <[email protected]> |
415ad26d CL |
6830 | L: [email protected] |
6831 | S: Maintained | |
679655da JP |
6832 | F: include/linux/sl?b*.h |
6833 | F: mm/sl?b.c | |
415ad26d | 6834 | |
9fab9787 PM |
6835 | SLEEPABLE READ-COPY UPDATE (SRCU) |
6836 | M: Lai Jiangshan <[email protected]> | |
6837 | M: "Paul E. McKenney" <[email protected]> | |
6838 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
6839 | S: Supported | |
6840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
6841 | F: include/linux/srcu* | |
6842 | F: kernel/srcu* | |
6843 | ||
66372841 CS |
6844 | SMACK SECURITY MODULE |
6845 | M: Casey Schaufler <[email protected]> | |
6846 | L: [email protected] | |
6847 | W: http://schaufler-ca.com | |
6848 | T: git git://git.gitorious.org/smack-next/kernel.git | |
6849 | S: Maintained | |
6850 | F: Documentation/security/Smack.txt | |
6851 | F: security/smack/ | |
6852 | ||
1da177e4 | 6853 | SMC91x ETHERNET DRIVER |
2f82af08 | 6854 | M: Nicolas Pitre <[email protected]> |
18e2842b | 6855 | S: Odd Fixes |
ae150435 | 6856 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 6857 | |
e8e31622 SA |
6858 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
6859 | M: Sakari Ailus <[email protected]> | |
6860 | L: [email protected] | |
6861 | S: Maintained | |
6862 | F: drivers/media/i2c/smiapp | |
6863 | F: include/media/smiapp.h | |
6864 | F: drivers/media/i2c/smiapp-pll.c | |
6865 | F: drivers/media/i2c/smiapp-pll.h | |
6866 | ||
920fa1ff GR |
6867 | SMM665 HARDWARE MONITOR DRIVER |
6868 | M: Guenter Roeck <[email protected]> | |
6869 | L: [email protected] | |
6870 | S: Maintained | |
6871 | F: Documentation/hwmon/smm665 | |
6872 | F: drivers/hwmon/smm665.c | |
6873 | ||
9df7305b | 6874 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 6875 | M: Steve Glendinning <[email protected]> |
9df7305b | 6876 | L: [email protected] |
90b24cfb | 6877 | S: Maintained |
9df7305b SG |
6878 | F: Documentation/hwmon/emc2103 |
6879 | F: drivers/hwmon/emc2103.c | |
6880 | ||
a98d506c HG |
6881 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
6882 | M: Hans de Goede <[email protected]> | |
6883 | L: [email protected] | |
6884 | S: Supported | |
6885 | F: Documentation/hwmon/sch5627 | |
6886 | F: drivers/hwmon/sch5627.c | |
6887 | ||
6ea884db | 6888 | SMSC47B397 HARDWARE MONITOR DRIVER |
8b58be88 | 6889 | M: "Mark M. Hoffman" <[email protected]> |
6ea884db MH |
6890 | L: [email protected] |
6891 | S: Maintained | |
679655da JP |
6892 | F: Documentation/hwmon/smsc47b397 |
6893 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 6894 | |
fd9abb3d | 6895 | SMSC911x ETHERNET DRIVER |
90b24cfb | 6896 | M: Steve Glendinning <[email protected]> |
2cb37728 | 6897 | L: [email protected] |
90b24cfb | 6898 | S: Maintained |
679655da | 6899 | F: include/linux/smsc911x.h |
ae150435 | 6900 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
6901 | |
6902 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 6903 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 6904 | L: [email protected] |
90b24cfb | 6905 | S: Maintained |
ae150435 | 6906 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 6907 | |
3c8a63e2 | 6908 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 6909 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 6910 | L: [email protected] |
90b24cfb | 6911 | S: Maintained |
3c8a63e2 SG |
6912 | F: drivers/video/smscufx.c |
6913 | ||
e2d1d6c0 | 6914 | SN-IA64 (Itanium) SUB-PLATFORM |
8b58be88 | 6915 | M: Jes Sorensen <[email protected]> |
e2d1d6c0 RD |
6916 | L: [email protected] |
6917 | L: [email protected] | |
6918 | W: http://www.sgi.com/altix | |
6919 | S: Maintained | |
679655da | 6920 | F: arch/ia64/sn/ |
e2d1d6c0 | 6921 | |
668acf32 | 6922 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 6923 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 6924 | L: [email protected] |
275ffde4 | 6925 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 6926 | S: Maintained |
90d72ac6 MCC |
6927 | F: include/media/soc* |
6928 | F: drivers/media/i2c/soc_camera/ | |
6929 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 6930 | |
e2d1d6c0 | 6931 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 6932 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 6933 | S: Maintained |
679655da | 6934 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 6935 | |
1da177e4 | 6936 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 6937 | M: Neil Brown <[email protected]> |
1da177e4 | 6938 | L: [email protected] |
524418bb | 6939 | S: Supported |
679655da JP |
6940 | F: drivers/md/ |
6941 | F: include/linux/raid/ | |
1da177e4 | 6942 | |
1da177e4 | 6943 | SONIC NETWORK DRIVER |
8b58be88 | 6944 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 6945 | L: [email protected] |
1da177e4 | 6946 | S: Maintained |
d9fb9f38 | 6947 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 6948 | |
61e115a5 | 6949 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 6950 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
6951 | L: [email protected] |
6952 | S: Maintained | |
679655da JP |
6953 | F: drivers/ssb/ |
6954 | F: include/linux/ssb/ | |
61e115a5 | 6955 | |
1da177e4 | 6956 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 6957 | M: Mattia Dongili <[email protected]> |
d0944853 | 6958 | L: [email protected] |
5b18167d | 6959 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 6960 | S: Maintained |
679655da JP |
6961 | F: Documentation/laptops/sony-laptop.txt |
6962 | F: drivers/char/sonypi.c | |
6963 | F: drivers/platform/x86/sony-laptop.c | |
6964 | F: include/linux/sony-laptop.h | |
1da177e4 | 6965 | |
baf8532a | 6966 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 6967 | M: Alex Dubov <[email protected]> |
baf8532a AD |
6968 | W: http://tifmxx.berlios.de/ |
6969 | S: Maintained | |
679655da | 6970 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 6971 | |
1da177e4 | 6972 | SOUND |
8b58be88 JP |
6973 | M: Jaroslav Kysela <[email protected]> |
6974 | M: Takashi Iwai <[email protected]> | |
93711660 | 6975 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 6976 | W: http://www.alsa-project.org/ |
dde7ad8d | 6977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 6978 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 6979 | S: Maintained |
3126a179 JP |
6980 | F: Documentation/sound/ |
6981 | F: include/sound/ | |
679655da | 6982 | F: sound/ |
1da177e4 | 6983 | |
bd903bde | 6984 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
63405ce8 | 6985 | M: Liam Girdwood <[email protected]> |
8b58be88 | 6986 | M: Mark Brown <[email protected]> |
86f14df8 | 6987 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 6988 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 6989 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 6990 | S: Supported |
679655da | 6991 | F: sound/soc/ |
e6e55122 | 6992 | F: include/sound/soc* |
eb1a6af3 | 6993 | |
473321fc | 6994 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 6995 | M: "David S. Miller" <[email protected]> |
1da177e4 | 6996 | L: [email protected] |
8a6e2535 | 6997 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
6998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
6999 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7000 | S: Maintained |
679655da | 7001 | F: arch/sparc/ |
7765b8bb | 7002 | F: drivers/sbus/ |
1da177e4 | 7003 | |
6404fcca DM |
7004 | SPARC SERIAL DRIVERS |
7005 | M: "David S. Miller" <[email protected]> | |
7006 | L: [email protected] | |
08deed1e JP |
7007 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7008 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7009 | S: Maintained |
6816383a | 7010 | F: include/linux/sunserialcore.h |
df621252 | 7011 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7012 | F: drivers/tty/serial/sunhv.c |
7013 | F: drivers/tty/serial/sunsab.c | |
7014 | F: drivers/tty/serial/sunsab.h | |
7015 | F: drivers/tty/serial/sunsu.c | |
7016 | F: drivers/tty/serial/sunzilog.c | |
7017 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7018 | |
389325b4 CL |
7019 | SPARSE CHECKER |
7020 | M: "Christopher Li" <[email protected]> | |
7021 | L: [email protected] | |
7022 | W: https://sparse.wiki.kernel.org/ | |
7023 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7024 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7025 | S: Maintained | |
7026 | F: include/linux/compiler.h | |
7027 | ||
fc0c195a | 7028 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7029 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7030 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7031 | L: [email protected] |
7032 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7033 | W: http://www.st.com/spear |
7034 | S: Maintained | |
7035 | F: arch/arm/plat-spear/ | |
7036 | ||
71e09a9e | 7037 | SPEAR13XX MACHINE SUPPORT |
2d8a3b3d | 7038 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7039 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7040 | L: [email protected] |
7041 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7042 | W: http://www.st.com/spear |
7043 | S: Maintained | |
71e09a9e | 7044 | F: arch/arm/mach-spear13xx/ |
fc0c195a | 7045 | |
fc0c195a | 7046 | SPEAR3XX MACHINE SUPPORT |
2d8a3b3d | 7047 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7048 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7049 | L: [email protected] |
7050 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7051 | W: http://www.st.com/spear |
7052 | S: Maintained | |
7053 | F: arch/arm/mach-spear3xx/ | |
7054 | ||
7055 | SPEAR6XX MACHINE SUPPORT | |
7056 | M: Rajeev Kumar <[email protected]> | |
71e09a9e | 7057 | M: Shiraz Hashim <[email protected]> |
2d8a3b3d | 7058 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7059 | L: [email protected] |
7060 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7061 | W: http://www.st.com/spear |
7062 | S: Maintained | |
7063 | F: arch/arm/mach-spear6xx/ | |
7064 | ||
7065 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7066 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7067 | L: [email protected] |
7068 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7069 | W: http://www.st.com/spear |
7070 | S: Maintained | |
5df33a62 | 7071 | F: drivers/clk/spear/ |
fc0c195a | 7072 | |
e2d1d6c0 | 7073 | SPI SUBSYSTEM |
d33c861e | 7074 | M: Grant Likely <[email protected]> |
e2d1d6c0 | 7075 | L: [email protected] |
8a6e2535 | 7076 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
3bbf9b9b | 7077 | T: git git://git.secretlab.ca/git/linux-2.6.git |
e2d1d6c0 | 7078 | S: Maintained |
679655da JP |
7079 | F: Documentation/spi/ |
7080 | F: drivers/spi/ | |
7081 | F: include/linux/spi/ | |
e2d1d6c0 | 7082 | |
2752e401 | 7083 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7084 | M: Ishizaki Kou <[email protected]> |
7085 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
7086 | L: [email protected] |
7087 | S: Supported | |
679655da | 7088 | F: Documentation/networking/spider_net.txt |
8df158ac | 7089 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7090 | |
e2d1d6c0 | 7091 | SPU FILE SYSTEM |
8b58be88 | 7092 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
7093 | L: [email protected] |
7094 | L: [email protected] | |
e2d1d6c0 RD |
7095 | W: http://www.ibm.com/developerworks/power/cell/ |
7096 | S: Supported | |
679655da JP |
7097 | F: Documentation/filesystems/spufs.txt |
7098 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7099 | |
fc555841 | 7100 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7101 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
7102 | L: [email protected] (subscribers-only) |
7103 | W: http://squashfs.org.uk | |
7104 | S: Maintained | |
679655da JP |
7105 | F: Documentation/filesystems/squashfs.txt |
7106 | F: fs/squashfs/ | |
fc555841 | 7107 | |
1da177e4 | 7108 | SRM (Alpha) environment access |
8b58be88 | 7109 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 7110 | S: Maintained |
679655da | 7111 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7112 | |
26e9a397 | 7113 | STABLE BRANCH |
879a5a00 | 7114 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 7115 | L: [email protected] |
879a5a00 | 7116 | S: Supported |
e2d1d6c0 | 7117 | |
26e9a397 | 7118 | STAGING SUBSYSTEM |
879a5a00 | 7119 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 7120 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7121 | L: [email protected] |
879a5a00 | 7122 | S: Supported |
679655da | 7123 | F: drivers/staging/ |
dbc6c2cc | 7124 | |
c8c8b105 JP |
7125 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7126 | M: Henk de Groot <[email protected]> | |
7127 | S: Odd Fixes | |
7128 | F: drivers/staging/wlags49_h2/ | |
7129 | F: drivers/staging/wlags49_h25/ | |
7130 | ||
c9555159 JP |
7131 | STAGING - ASUS OLED |
7132 | M: Jakub Schmidtke <[email protected]> | |
7133 | S: Odd Fixes | |
7134 | F: drivers/staging/asus_oled/ | |
7135 | ||
ebd3d010 JP |
7136 | STAGING - COMEDI |
7137 | M: Ian Abbott <[email protected]> | |
7138 | M: Mori Hess <[email protected]> | |
7139 | S: Odd Fixes | |
7140 | F: drivers/staging/comedi/ | |
7141 | ||
8ca572c9 JP |
7142 | STAGING - CRYSTAL HD VIDEO DECODER |
7143 | M: Naren Sankar <[email protected]> | |
7144 | M: Jarod Wilson <[email protected]> | |
7145 | M: Scott Davilla <[email protected]> | |
7146 | M: Manu Abraham <[email protected]> | |
7147 | S: Odd Fixes | |
7148 | F: drivers/staging/crystalhd/ | |
7149 | ||
0f16ffc4 JP |
7150 | STAGING - ECHO CANCELLER |
7151 | M: Steve Underwood <[email protected]> | |
7152 | M: David Rowe <[email protected]> | |
7153 | S: Odd Fixes | |
7154 | F: drivers/staging/echo/ | |
7155 | ||
8dc2bbe7 ME |
7156 | STAGING - ET131X NETWORK DRIVER |
7157 | M: Mark Einon <[email protected]> | |
7158 | S: Odd Fixes | |
7159 | F: drivers/staging/et131x/ | |
7160 | ||
a0138163 JP |
7161 | STAGING - FLARION FT1000 DRIVERS |
7162 | M: Marek Belisko <[email protected]> | |
7163 | S: Odd Fixes | |
7164 | F: drivers/staging/ft1000/ | |
7165 | ||
ec3fab92 JP |
7166 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7167 | M: David Täht <[email protected]> | |
7168 | S: Odd Fixes | |
7169 | F: drivers/staging/frontier/ | |
7170 | ||
6c1bb424 JP |
7171 | STAGING - INDUSTRIAL IO |
7172 | M: Jonathan Cameron <[email protected]> | |
a0138163 | 7173 | L: [email protected] |
6c1bb424 JP |
7174 | S: Odd Fixes |
7175 | F: drivers/staging/iio/ | |
7176 | ||
a0138163 JP |
7177 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7178 | M: Jarod Wilson <[email protected]> | |
7179 | W: http://www.lirc.org/ | |
7180 | S: Odd Fixes | |
b2b0186d | 7181 | F: drivers/staging/media/lirc/ |
a0138163 | 7182 | |
7c6b6c71 | 7183 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7184 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
7185 | M: Marc Dietrich <[email protected]> |
7186 | L: [email protected] (moderated for non-subscribers) | |
7187 | S: Maintained | |
7188 | F: drivers/staging/nvec/ | |
7189 | ||
a0138163 JP |
7190 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
7191 | M: Andres Salomon <[email protected]> | |
7192 | M: Chris Ball <[email protected]> | |
7193 | M: Jon Nettleton <[email protected]> | |
7194 | W: http://wiki.laptop.org/go/DCON | |
7195 | S: Odd Fixes | |
7196 | F: drivers/staging/olpc_dcon/ | |
7197 | ||
94cfdd15 | 7198 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
678b7c17 | 7199 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
7200 | M: Chris Kelly <[email protected]> |
7201 | S: Maintained | |
7202 | F: drivers/staging/ozwpan/ | |
7203 | ||
a0138163 | 7204 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7205 | M: Willy Tarreau <[email protected]> |
7206 | S: Odd Fixes | |
7207 | F: drivers/staging/panel/ | |
7208 | ||
a0138163 JP |
7209 | STAGING - REALTEK RTL8712U DRIVERS |
7210 | M: Larry Finger <[email protected]> | |
7211 | M: Florian Schilhabel <[email protected]>. | |
7212 | S: Odd Fixes | |
7213 | F: drivers/staging/rtl8712/ | |
7214 | ||
9629fa86 JP |
7215 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7216 | M: Teddy Wang <[email protected]> | |
7217 | S: Odd Fixes | |
7218 | F: drivers/staging/sm7xx/ | |
7219 | ||
a0138163 JP |
7220 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
7221 | M: Ben Collins <[email protected]> | |
7222 | S: Odd Fixes | |
b2b0186d | 7223 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
7224 | |
7225 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
7226 | M: William Hubbs <[email protected]> | |
7227 | M: Chris Brannon <[email protected]> | |
7228 | M: Kirk Reiser <[email protected]> | |
7229 | M: Samuel Thibault <[email protected]> | |
7230 | L: [email protected] | |
7231 | W: http://www.linux-speakup.org/ | |
7232 | S: Odd Fixes | |
7233 | F: drivers/staging/speakup/ | |
7234 | ||
7235 | STAGING - TI DSP BRIDGE DRIVERS | |
7236 | M: Omar Ramirez Luna <[email protected]> | |
7237 | S: Odd Fixes | |
7238 | F: drivers/staging/tidspbridge/ | |
7239 | ||
a0138163 JP |
7240 | STAGING - USB ENE SM/MS CARD READER DRIVER |
7241 | M: Al Cho <[email protected]> | |
7242 | S: Odd Fixes | |
7243 | F: drivers/staging/keucr/ | |
7244 | ||
b3e871ce JP |
7245 | STAGING - VIA VT665X DRIVERS |
7246 | M: Forest Bond <[email protected]> | |
7247 | S: Odd Fixes | |
7248 | F: drivers/staging/vt665?/ | |
7249 | ||
81a9a526 JP |
7250 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
7251 | M: Pavel Machek <[email protected]> | |
7252 | S: Odd Fixes | |
7253 | F: drivers/staging/winbond/ | |
7254 | ||
709bcb07 | 7255 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 7256 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
7257 | S: Odd Fixes |
7258 | F: drivers/staging/xgifb/ | |
7259 | ||
1da177e4 | 7260 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 7261 | M: Ion Badulescu <[email protected]> |
b4f90189 | 7262 | S: Odd Fixes |
9bba23b0 | 7263 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 7264 | |
e2d1d6c0 | 7265 | SUN3/3X |
8b58be88 | 7266 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
7267 | W: http://sammy.net/sun3/ |
7268 | S: Maintained | |
679655da JP |
7269 | F: arch/m68k/kernel/*sun3* |
7270 | F: arch/m68k/sun3*/ | |
7271 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 7272 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 7273 | |
2cbb12a4 | 7274 | SUPERH |
8b58be88 | 7275 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 7276 | L: [email protected] |
1da177e4 | 7277 | W: http://www.linux-sh.org |
8a6e2535 | 7278 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 7279 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 7280 | S: Supported |
066069e1 | 7281 | F: Documentation/sh/ |
679655da | 7282 | F: arch/sh/ |
066069e1 | 7283 | F: drivers/sh/ |
1da177e4 | 7284 | |
4480f15b | 7285 | SUSPEND TO RAM |
8b58be88 JP |
7286 | M: Len Brown <[email protected]> |
7287 | M: Pavel Machek <[email protected]> | |
7288 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 7289 | L: [email protected] |
e2d1d6c0 | 7290 | S: Supported |
679655da JP |
7291 | F: Documentation/power/ |
7292 | F: arch/x86/kernel/acpi/ | |
7293 | F: drivers/base/power/ | |
7294 | F: kernel/power/ | |
7295 | F: include/linux/suspend.h | |
7296 | F: include/linux/freezer.h | |
7297 | F: include/linux/pm.h | |
1da177e4 LT |
7298 | |
7299 | SVGA HANDLING | |
8b58be88 | 7300 | M: Martin Mares <[email protected]> |
1da177e4 LT |
7301 | L: [email protected] |
7302 | S: Maintained | |
679655da JP |
7303 | F: Documentation/svga.txt |
7304 | F: arch/x86/boot/video* | |
1da177e4 | 7305 | |
6e28b761 KRW |
7306 | SWIOTLB SUBSYSTEM |
7307 | M: Konrad Rzeszutek Wilk <[email protected]> | |
7308 | L: [email protected] | |
7309 | S: Supported | |
7310 | F: lib/swiotlb.c | |
7311 | F: arch/*/kernel/pci-swiotlb.c | |
7312 | F: include/linux/swiotlb.h | |
7313 | ||
1da177e4 | 7314 | SYSV FILESYSTEM |
8b58be88 | 7315 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 7316 | S: Maintained |
679655da JP |
7317 | F: Documentation/filesystems/sysv-fs.txt |
7318 | F: fs/sysv/ | |
7319 | F: include/linux/sysv_fs.h | |
1da177e4 | 7320 | |
86cfa7fc NB |
7321 | TARGET SUBSYSTEM |
7322 | M: Nicholas A. Bellinger <[email protected]> | |
7323 | L: [email protected] | |
b9f5edc2 | 7324 | L: [email protected] |
86cfa7fc NB |
7325 | L: http://groups.google.com/group/linux-iscsi-target-dev |
7326 | W: http://www.linux-iscsi.org | |
08deed1e | 7327 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master |
86cfa7fc NB |
7328 | S: Supported |
7329 | F: drivers/target/ | |
7330 | F: include/target/ | |
7331 | F: Documentation/target/ | |
7332 | ||
4e68852d | 7333 | TASKSTATS STATISTICS INTERFACE |
185e595f | 7334 | M: Balbir Singh <[email protected]> |
4e68852d | 7335 | S: Maintained |
679655da JP |
7336 | F: Documentation/accounting/taskstats* |
7337 | F: include/linux/taskstats* | |
7338 | F: kernel/taskstats.c | |
4e68852d | 7339 | |
781b456a | 7340 | TC CLASSIFIER |
f935f3f8 | 7341 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
7342 | L: [email protected] |
7343 | S: Maintained | |
679655da JP |
7344 | F: include/linux/pkt_cls.h |
7345 | F: include/net/pkt_cls.h | |
7346 | F: net/sched/ | |
781b456a | 7347 | |
5067f08a | 7348 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
7349 | M: "Wong Hoi Sing, Edison" <[email protected]> |
7350 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
7351 | W: http://tcp-lp-mod.sourceforge.net/ |
7352 | S: Maintained | |
679655da | 7353 | F: net/ipv4/tcp_lp.c |
5067f08a | 7354 | |
91952bc0 AP |
7355 | TDA10071 MEDIA DRIVER |
7356 | M: Antti Palosaari <[email protected]> | |
7357 | L: [email protected] | |
7358 | W: http://linuxtv.org/ | |
7359 | W: http://palosaari.fi/linux/ | |
7360 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7361 | T: git git://linuxtv.org/anttip/media_tree.git | |
7362 | S: Maintained | |
7363 | F: drivers/media/dvb-frontends/tda10071* | |
7364 | ||
7365 | TDA18212 MEDIA DRIVER | |
7366 | M: Antti Palosaari <[email protected]> | |
7367 | L: [email protected] | |
7368 | W: http://linuxtv.org/ | |
7369 | W: http://palosaari.fi/linux/ | |
7370 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7371 | T: git git://linuxtv.org/anttip/media_tree.git | |
7372 | S: Maintained | |
7373 | F: drivers/media/tuners/tda18212* | |
7374 | ||
7375 | TDA18218 MEDIA DRIVER | |
7376 | M: Antti Palosaari <[email protected]> | |
7377 | L: [email protected] | |
7378 | W: http://linuxtv.org/ | |
7379 | W: http://palosaari.fi/linux/ | |
7380 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7381 | T: git git://linuxtv.org/anttip/media_tree.git | |
7382 | S: Maintained | |
7383 | F: drivers/media/tuners/tda18218* | |
7384 | ||
3b2f6aba MK |
7385 | TDA18271 MEDIA DRIVER |
7386 | M: Michael Krufky <[email protected]> | |
7387 | L: [email protected] | |
7388 | W: http://linuxtv.org/ | |
7389 | W: http://github.com/mkrufky | |
7390 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7391 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7392 | S: Maintained | |
7393 | F: drivers/media/tuners/tda18271* | |
7394 | ||
e48307a9 MK |
7395 | TDA827x MEDIA DRIVER |
7396 | M: Michael Krufky <[email protected]> | |
7397 | L: [email protected] | |
7398 | W: http://linuxtv.org/ | |
7399 | W: http://github.com/mkrufky | |
7400 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7401 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7402 | S: Maintained | |
7403 | F: drivers/media/tuners/tda8290.* | |
7404 | ||
66cf9212 MK |
7405 | TDA8290 MEDIA DRIVER |
7406 | M: Michael Krufky <[email protected]> | |
7407 | L: [email protected] | |
7408 | W: http://linuxtv.org/ | |
7409 | W: http://github.com/mkrufky | |
7410 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7411 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7412 | S: Maintained | |
7413 | F: drivers/media/tuners/tda8290.* | |
7414 | ||
2cb654fd MCC |
7415 | TEA5761 TUNER DRIVER |
7416 | M: Mauro Carvalho Chehab <[email protected]> | |
7417 | L: [email protected] | |
7418 | W: http://linuxtv.org | |
7419 | T: git git://linuxtv.org/media_tree.git | |
7420 | S: Odd fixes | |
7421 | F: drivers/media/tuners/tea5761.* | |
7422 | ||
7423 | TEA5767 TUNER DRIVER | |
7424 | M: Mauro Carvalho Chehab <[email protected]> | |
7425 | L: [email protected] | |
7426 | W: http://linuxtv.org | |
7427 | T: git git://linuxtv.org/media_tree.git | |
7428 | S: Maintained | |
7429 | F: drivers/media/tuners/tea5767.* | |
7430 | ||
3d249d4c JP |
7431 | TEAM DRIVER |
7432 | M: Jiri Pirko <[email protected]> | |
7433 | L: [email protected] | |
7434 | S: Supported | |
7435 | F: drivers/net/team/ | |
7436 | F: include/linux/if_team.h | |
7437 | ||
40ad4a30 SY |
7438 | TECHNOTREND USB IR RECEIVER |
7439 | M: Sean Young <[email protected]> | |
7440 | L: [email protected] | |
7441 | S: Maintained | |
7442 | F: drivers/media/rc/ttusbir.c | |
7443 | ||
84b9414b | 7444 | TEGRA SUPPORT |
243d58ec | 7445 | M: Stephen Warren <[email protected]> |
84b9414b | 7446 | L: [email protected] |
fd117cd1 OJ |
7447 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
7448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b EG |
7449 | S: Supported |
7450 | F: arch/arm/mach-tegra | |
d5703bd3 | 7451 | F: arch/arm/boot/dts/tegra* |
3d75861f | 7452 | F: arch/arm/configs/tegra_defconfig |
84b9414b | 7453 | |
1a348ccc | 7454 | TEHUTI ETHERNET DRIVER |
8b58be88 | 7455 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
7456 | L: [email protected] |
7457 | S: Supported | |
ef7f5429 | 7458 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 7459 | |
4e68852d | 7460 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 7461 | M: Mark Gross <[email protected]> |
4e68852d | 7462 | S: Supported |
679655da | 7463 | F: drivers/char/tlclk.c |
4e68852d | 7464 | |
4480f15b | 7465 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 7466 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
7467 | M: Max Filippov <[email protected]> |
7468 | L: [email protected] | |
4e68852d | 7469 | S: Maintained |
679655da | 7470 | F: arch/xtensa/ |
4e68852d | 7471 | |
d3fb6955 ZR |
7472 | THERMAL |
7473 | M: Zhang Rui <[email protected]> | |
7474 | L: [email protected] | |
7475 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
7476 | S: Supported | |
7477 | F: drivers/thermal/ | |
7478 | F: include/linux/thermal.h | |
7479 | ||
4e68852d | 7480 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 7481 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 7482 | L: [email protected] |
d0944853 | 7483 | L: [email protected] |
4e68852d AC |
7484 | W: http://ibm-acpi.sourceforge.net |
7485 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 7486 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 7487 | S: Maintained |
679655da | 7488 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 7489 | |
4020f2d7 | 7490 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 7491 | M: Alex Dubov <[email protected]> |
795fb7e7 | 7492 | S: Maintained |
679655da JP |
7493 | F: drivers/misc/tifm* |
7494 | F: drivers/mmc/host/tifm_sd.c | |
7495 | F: include/linux/tifm.h | |
4020f2d7 | 7496 | |
152ad442 SR |
7497 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
7498 | M: M R Swami Reddy <[email protected]> | |
d392dead | 7499 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
7500 | L: [email protected] (moderated for non-subscribers) |
7501 | S: Maintained | |
7502 | F: sound/soc/codecs/lm49453* | |
d392dead | 7503 | F: sound/soc/codecs/isabelle* |
152ad442 | 7504 | |
dd5e8e6b | 7505 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 7506 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
7507 | L: [email protected] (moderated for non-subscribers) |
7508 | S: Maintained | |
7509 | F: sound/soc/codecs/twl4030* | |
7510 | ||
90921014 LC |
7511 | TI WILINK WIRELESS DRIVERS |
7512 | M: Luciano Coelho <[email protected]> | |
7513 | L: [email protected] | |
7514 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
7515 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
7516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
7517 | S: Maintained | |
7518 | F: drivers/net/wireless/ti/ | |
7519 | F: include/linux/wl12xx.h | |
7520 | ||
e86eaa3a | 7521 | TIPC NETWORK LAYER |
8b58be88 JP |
7522 | M: Jon Maloy <[email protected]> |
7523 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
7524 | L: [email protected] (core kernel code) |
7525 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 7526 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 7527 | S: Maintained |
679655da | 7528 | F: include/linux/tipc*.h |
679655da | 7529 | F: net/tipc/ |
e86eaa3a | 7530 | |
867e359b CM |
7531 | TILE ARCHITECTURE |
7532 | M: Chris Metcalf <[email protected]> | |
7533 | W: http://www.tilera.com/scm/ | |
7534 | S: Supported | |
7535 | F: arch/tile/ | |
a2e6093c | 7536 | F: drivers/tty/hvc/hvc_tile.c |
cdd80bd4 | 7537 | F: drivers/net/ethernet/tile/ |
5c770755 | 7538 | F: drivers/edac/tile_edac.c |
867e359b | 7539 | |
1da177e4 | 7540 | TLAN NETWORK DRIVER |
8b58be88 | 7541 | M: Samuel Chessman <[email protected]> |
88c07dde | 7542 | L: [email protected] (subscribers-only) |
1da177e4 LT |
7543 | W: http://sourceforge.net/projects/tlan/ |
7544 | S: Maintained | |
679655da | 7545 | F: Documentation/networking/tlan.txt |
b544dbac | 7546 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 7547 | |
d74db3b2 | 7548 | TOMOYO SECURITY MODULE |
8b58be88 JP |
7549 | M: Kentaro Takeda <[email protected]> |
7550 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
7551 | L: [email protected] (subscribers-only, for developers in English) |
7552 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
7553 | L: [email protected] (subscribers-only, for developers in Japanese) |
7554 | L: [email protected] (subscribers-only, for users in Japanese) | |
7555 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 7556 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 7557 | S: Maintained |
679655da | 7558 | F: security/tomoyo/ |
d74db3b2 | 7559 | |
9caeb532 | 7560 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 7561 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 7562 | L: [email protected] |
9caeb532 HRK |
7563 | S: Maintained |
7564 | F: drivers/platform/x86/topstar-laptop.c | |
7565 | ||
1da177e4 | 7566 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 7567 | L: [email protected] |
15065531 | 7568 | S: Orphan |
679655da | 7569 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
7570 | |
7571 | TOSHIBA SMM DRIVER | |
8b58be88 | 7572 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
7573 | L: [email protected] |
7574 | W: http://www.buzzard.org.uk/toshiba/ | |
7575 | S: Maintained | |
679655da JP |
7576 | F: drivers/char/toshiba.c |
7577 | F: include/linux/toshiba.h | |
1da177e4 | 7578 | |
d719f900 | 7579 | TMIO MMC DRIVER |
d1057c40 | 7580 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 7581 | M: Ian Molton <[email protected]> |
d1057c40 | 7582 | L: [email protected] |
d719f900 | 7583 | S: Maintained |
d1057c40 GL |
7584 | F: drivers/mmc/host/tmio_mmc* |
7585 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
7586 | F: include/linux/mmc/tmio.h | |
7587 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 7588 | |
98f32602 | 7589 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 7590 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
7591 | L: [email protected] |
7592 | S: Maintained | |
7593 | F: include/linux/shmem_fs.h | |
7594 | F: mm/shmem.c | |
7595 | ||
45f95b53 MCC |
7596 | TM6000 VIDEO4LINUX DRIVER |
7597 | M: Mauro Carvalho Chehab <[email protected]> | |
7598 | L: [email protected] | |
7599 | W: http://linuxtv.org | |
7600 | T: git git://linuxtv.org/media_tree.git | |
7601 | S: Odd fixes | |
7602 | F: drivers/media/usb/tm6000/ | |
7603 | ||
4e68852d | 7604 | TPM DEVICE DRIVER |
cbb2d5e4 RA |
7605 | M: Kent Yoder <[email protected]> |
7606 | M: Rajiv Andrade <[email protected]> | |
4e68852d | 7607 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
7608 | M: Marcel Selhorst <[email protected]> |
7609 | M: Sirrix AG <[email protected]> | |
7dcce133 | 7610 | W: http://www.sirrix.com |
63a10dfd | 7611 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 7612 | S: Maintained |
679655da | 7613 | F: drivers/char/tpm/ |
4e68852d | 7614 | |
d6f005a1 JP |
7615 | TRACING |
7616 | M: Steven Rostedt <[email protected]> | |
7617 | M: Frederic Weisbecker <[email protected]> | |
7618 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 7619 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
7620 | S: Maintained |
7621 | F: Documentation/trace/ftrace.txt | |
7622 | F: arch/*/*/*/ftrace.h | |
7623 | F: arch/*/kernel/ftrace.c | |
7624 | F: include/*/ftrace.h | |
7625 | F: include/linux/trace*.h | |
7626 | F: include/trace/ | |
7627 | F: kernel/trace/ | |
7628 | ||
1da177e4 | 7629 | TRIVIAL PATCHES |
8b58be88 | 7630 | M: Jiri Kosina <[email protected]> |
54e5881d | 7631 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 7632 | S: Maintained |
86ef925f | 7633 | K: ^Subject:.*(?i)trivial |
1da177e4 | 7634 | |
4e68852d | 7635 | TTY LAYER |
879a5a00 GK |
7636 | M: Greg Kroah-Hartman <[email protected]> |
7637 | S: Supported | |
08deed1e | 7638 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 7639 | F: drivers/tty/ |
df621252 | 7640 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
7641 | F: include/linux/serial_core.h |
7642 | F: include/linux/serial.h | |
7643 | F: include/linux/tty.h | |
4e68852d | 7644 | |
91952bc0 AP |
7645 | TUA9001 MEDIA DRIVER |
7646 | M: Antti Palosaari <[email protected]> | |
7647 | L: [email protected] | |
7648 | W: http://linuxtv.org/ | |
7649 | W: http://palosaari.fi/linux/ | |
7650 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7651 | T: git git://linuxtv.org/anttip/media_tree.git | |
7652 | S: Maintained | |
7653 | F: drivers/media/tuners/tua9001* | |
7654 | ||
740db6d7 | 7655 | TULIP NETWORK DRIVERS |
8b58be88 | 7656 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
7657 | L: [email protected] |
7658 | S: Maintained | |
0f04e2aa | 7659 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
7660 | |
7661 | TUN/TAP driver | |
8b58be88 | 7662 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
7663 | L: [email protected] |
7664 | W: http://vtun.sourceforge.net/tun | |
7665 | S: Maintained | |
679655da JP |
7666 | F: Documentation/networking/tuntap.txt |
7667 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 7668 | |
b454cc66 | 7669 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 7670 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 7671 | S: Maintained |
679655da JP |
7672 | F: drivers/tc/ |
7673 | F: include/linux/tc.h | |
b454cc66 | 7674 | |
1da177e4 | 7675 | U14-34F SCSI DRIVER |
8b58be88 | 7676 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
7677 | L: [email protected] |
7678 | S: Maintained | |
679655da | 7679 | F: drivers/scsi/u14-34f.c |
1da177e4 | 7680 | |
e2d1d6c0 | 7681 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 7682 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 7683 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 7684 | L: [email protected] |
e2966cbe | 7685 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
7686 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
7687 | S: Maintained | |
679655da JP |
7688 | F: Documentation/filesystems/ubifs.txt |
7689 | F: fs/ubifs/ | |
e2d1d6c0 | 7690 | |
cc2020e6 | 7691 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 7692 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
7693 | W: http://www.uclinux.org/ |
7694 | L: [email protected] (subscribers-only) | |
7695 | S: Maintained | |
61bc02bb JP |
7696 | F: arch/m68k/*/*_no.* |
7697 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 7698 | |
14fadca7 | 7699 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 7700 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
7701 | W: http://uclinux-h8.sourceforge.jp/ |
7702 | S: Supported | |
a7e4fd93 JP |
7703 | F: arch/h8300/ |
7704 | F: drivers/ide/ide-h8300.c | |
644570b8 | 7705 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 7706 | |
1da177e4 | 7707 | UDF FILESYSTEM |
8b58be88 | 7708 | M: Jan Kara <[email protected]> |
1da177e4 | 7709 | S: Maintained |
679655da JP |
7710 | F: Documentation/filesystems/udf.txt |
7711 | F: fs/udf/ | |
1da177e4 | 7712 | |
cc2020e6 | 7713 | UFS FILESYSTEM |
8b58be88 | 7714 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 7715 | S: Maintained |
679655da JP |
7716 | F: Documentation/filesystems/ufs.txt |
7717 | F: fs/ufs/ | |
cc2020e6 | 7718 | |
0a09d3ab DR |
7719 | UHID USERSPACE HID IO DRIVER: |
7720 | M: David Herrmann <[email protected]> | |
7721 | L: [email protected] | |
7722 | S: Maintained | |
7723 | F: drivers/hid/uhid.c | |
7724 | F: include/linux/uhid.h | |
7725 | ||
18332a80 | 7726 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 7727 | L: [email protected] |
10c6c9c9 | 7728 | S: Orphan |
355ffe69 | 7729 | F: drivers/uwb/ |
679655da JP |
7730 | F: include/linux/uwb.h |
7731 | F: include/linux/uwb/ | |
18332a80 | 7732 | |
b31d8273 G |
7733 | UNICORE32 ARCHITECTURE: |
7734 | M: Guan Xuetao <[email protected]> | |
7735 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
7736 | S: Maintained | |
7737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
7738 | F: arch/unicore32/ | |
7739 | ||
d8379ab1 TF |
7740 | UNIFDEF |
7741 | M: Tony Finch <[email protected]> | |
7742 | W: http://dotat.at/prog/unifdef | |
7743 | S: Maintained | |
7744 | F: scripts/unifdef.c | |
7745 | ||
1da177e4 | 7746 | UNIFORM CDROM DRIVER |
8b58be88 | 7747 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7748 | W: http://www.kernel.dk |
7749 | S: Maintained | |
679655da JP |
7750 | F: Documentation/cdrom/ |
7751 | F: drivers/cdrom/cdrom.c | |
7752 | F: include/linux/cdrom.h | |
1da177e4 | 7753 | |
9941fa6e VH |
7754 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
7755 | M: Vinayak Holikatti <[email protected]> | |
7756 | M: Santosh Y <[email protected]> | |
7757 | L: [email protected] | |
7758 | S: Supported | |
7759 | F: Documentation/scsi/ufs.txt | |
7760 | F: drivers/scsi/ufs/ | |
7761 | ||
e2d1d6c0 | 7762 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 7763 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
7764 | W: http://www.linux-mtd.infradead.org/ |
7765 | L: [email protected] | |
e2966cbe | 7766 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 7767 | S: Maintained |
80811493 | 7768 | F: drivers/mtd/ubi/ |
679655da JP |
7769 | F: include/linux/mtd/ubi.h |
7770 | F: include/mtd/ubi-user.h | |
e2d1d6c0 | 7771 | |
76ac66e4 RW |
7772 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
7773 | M: Richard Weinberger <[email protected]> | |
7774 | L: [email protected] | |
7775 | S: Maintained | |
7776 | F: drivers/mtd/ubi/fastmap.c | |
7777 | ||
1da177e4 | 7778 | USB ACM DRIVER |
61eee9a7 | 7779 | M: Oliver Neukum <[email protected]> |
6372594a | 7780 | L: [email protected] |
1da177e4 | 7781 | S: Maintained |
679655da JP |
7782 | F: Documentation/usb/acm.txt |
7783 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 7784 | |
115bb1ff MW |
7785 | USB ATTACHED SCSI |
7786 | M: Matthew Wilcox <[email protected]> | |
7787 | M: Sarah Sharp <[email protected]> | |
7788 | L: [email protected] | |
7789 | L: [email protected] | |
7790 | S: Supported | |
7791 | F: drivers/usb/storage/uas.c | |
7792 | ||
1da177e4 | 7793 | USB BLOCK DRIVER (UB ub) |
8b58be88 | 7794 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 7795 | L: [email protected] |
1da177e4 | 7796 | S: Supported |
679655da | 7797 | F: drivers/block/ub.c |
1da177e4 | 7798 | |
1da177e4 | 7799 | USB CDC ETHERNET DRIVER |
61eee9a7 | 7800 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 7801 | L: [email protected] |
1da177e4 | 7802 | S: Maintained |
679655da JP |
7803 | F: drivers/net/usb/cdc_*.c |
7804 | F: include/linux/usb/cdc.h | |
1da177e4 | 7805 | |
b02b371e | 7806 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 7807 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
7808 | L: [email protected] |
7809 | S: Maintained | |
679655da | 7810 | F: drivers/usb/c67x00/ |
b02b371e | 7811 | |
d0374f4f | 7812 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 7813 | M: Peter Korsgaard <[email protected]> |
043600a6 | 7814 | L: [email protected] |
d0374f4f PK |
7815 | W: http://www.linux-usb.org/usbnet |
7816 | S: Maintained | |
679655da | 7817 | F: drivers/net/usb/dm9601.c |
d0374f4f | 7818 | |
cc2020e6 | 7819 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 7820 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
7821 | L: [email protected] |
7822 | W: http://rio500.sourceforge.net | |
7823 | S: Maintained | |
679655da | 7824 | F: drivers/usb/misc/rio500* |
cc2020e6 | 7825 | |
1da177e4 | 7826 | USB EHCI DRIVER |
578333ab | 7827 | M: Alan Stern <[email protected]> |
795fb7e7 | 7828 | L: [email protected] |
578333ab | 7829 | S: Maintained |
679655da JP |
7830 | F: Documentation/usb/ehci.txt |
7831 | F: drivers/usb/host/ehci* | |
1da177e4 | 7832 | |
69ae9e3e | 7833 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 7834 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 7835 | L: [email protected] |
69ae9e3e | 7836 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
7837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
7838 | S: Maintained | |
679655da JP |
7839 | F: drivers/usb/gadget/ |
7840 | F: include/linux/usb/gadget* | |
69ae9e3e | 7841 | |
2dea64b4 | 7842 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 7843 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 7844 | L: [email protected] |
54e5881d | 7845 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 7846 | S: Maintained |
c2f01971 | 7847 | F: Documentation/hid/hiddev.txt |
679655da | 7848 | F: drivers/hid/usbhid/ |
1da177e4 | 7849 | |
857aab34 | 7850 | USB/IP DRIVERS |
7851 | M: Matt Mooney <[email protected]> | |
7852 | L: [email protected] | |
7853 | S: Maintained | |
7854 | F: drivers/staging/usbip/ | |
7855 | ||
959eea21 | 7856 | USB ISP116X DRIVER |
8b58be88 | 7857 | M: Olav Kongas <[email protected]> |
795fb7e7 | 7858 | L: [email protected] |
959eea21 | 7859 | S: Maintained |
679655da JP |
7860 | F: drivers/usb/host/isp116x* |
7861 | F: include/linux/usb/isp116x.h | |
959eea21 | 7862 | |
1da177e4 | 7863 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 7864 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 7865 | L: [email protected] |
1da177e4 | 7866 | S: Maintained |
679655da | 7867 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
7868 | |
7869 | USB MASS STORAGE DRIVER | |
8b58be88 | 7870 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 7871 | L: [email protected] |
8836aeb8 | 7872 | L: [email protected] |
1da177e4 LT |
7873 | S: Maintained |
7874 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 7875 | F: drivers/usb/storage/ |
1da177e4 | 7876 | |
af39917d CL |
7877 | USB MIDI DRIVER |
7878 | M: Clemens Ladisch <[email protected]> | |
7879 | L: [email protected] (moderated for non-subscribers) | |
7880 | T: git git://git.alsa-project.org/alsa-kernel.git | |
7881 | S: Maintained | |
7882 | F: sound/usb/midi.* | |
7883 | ||
1da177e4 | 7884 | USB OHCI DRIVER |
578333ab | 7885 | M: Alan Stern <[email protected]> |
795fb7e7 | 7886 | L: [email protected] |
578333ab | 7887 | S: Maintained |
679655da JP |
7888 | F: Documentation/usb/ohci.txt |
7889 | F: drivers/usb/host/ohci* | |
1da177e4 | 7890 | |
ba460e48 | 7891 | USB OPTION-CARD DRIVER |
8b58be88 | 7892 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 7893 | L: [email protected] |
ba460e48 | 7894 | S: Maintained |
679655da | 7895 | F: drivers/usb/serial/option.c |
ba460e48 | 7896 | |
1da177e4 | 7897 | USB PEGASUS DRIVER |
8b58be88 | 7898 | M: Petko Manolov <[email protected]> |
795fb7e7 | 7899 | L: [email protected] |
043600a6 | 7900 | L: [email protected] |
1da177e4 LT |
7901 | W: http://pegasus2.sourceforge.net/ |
7902 | S: Maintained | |
679655da | 7903 | F: drivers/net/usb/pegasus.* |
1da177e4 | 7904 | |
d3ad558f FB |
7905 | USB PHY LAYER |
7906 | M: Felipe Balbi <[email protected]> | |
7907 | L: [email protected] | |
7908 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
7909 | S: Maintained | |
7910 | F: drivers/usb/phy/ | |
7911 | F: drivers/usb/otg/ | |
7912 | ||
73e4fb3f | 7913 | USB PRINTER DRIVER (usblp) |
8b58be88 | 7914 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 7915 | L: [email protected] |
73e4fb3f | 7916 | S: Supported |
679655da | 7917 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
7918 | |
7919 | USB RTL8150 DRIVER | |
8b58be88 | 7920 | M: Petko Manolov <[email protected]> |
795fb7e7 | 7921 | L: [email protected] |
043600a6 | 7922 | L: [email protected] |
1da177e4 LT |
7923 | W: http://pegasus2.sourceforge.net/ |
7924 | S: Maintained | |
679655da | 7925 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 7926 | |
4e68852d | 7927 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 7928 | M: William Greathouse <[email protected]> |
795fb7e7 | 7929 | L: [email protected] |
4e68852d | 7930 | S: Maintained |
679655da | 7931 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
7932 | |
7933 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 7934 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 7935 | L: [email protected] |
4e68852d AC |
7936 | S: Maintained |
7937 | W: http://geocities.com/i0xox0i | |
7938 | W: http://firstlight.net/cvs | |
679655da | 7939 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 7940 | |
1da177e4 | 7941 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 7942 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
7943 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
7944 | S: Maintained | |
679655da | 7945 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
7946 | |
7947 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
7948 | M: Peter Berger <[email protected]> |
7949 | M: Al Borchers <[email protected]> | |
795fb7e7 | 7950 | L: [email protected] |
1da177e4 | 7951 | S: Maintained |
679655da | 7952 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
7953 | |
7954 | USB SERIAL DRIVER | |
879a5a00 | 7955 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 7956 | L: [email protected] |
1da177e4 | 7957 | S: Supported |
679655da JP |
7958 | F: Documentation/usb/usb-serial.txt |
7959 | F: drivers/usb/serial/generic.c | |
7960 | F: drivers/usb/serial/usb-serial.c | |
7961 | F: include/linux/usb/serial.h | |
1da177e4 | 7962 | |
1da177e4 | 7963 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 7964 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 7965 | L: [email protected] |
1da177e4 | 7966 | S: Maintained |
679655da | 7967 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
7968 | |
7969 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 7970 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 7971 | L: [email protected] |
1da177e4 | 7972 | S: Maintained |
679655da | 7973 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
7974 | |
7975 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 7976 | M: Support Department <[email protected]> |
795fb7e7 | 7977 | L: [email protected] |
1da177e4 LT |
7978 | W: http://www.connecttech.com |
7979 | S: Supported | |
679655da | 7980 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 7981 | |
b3f0db1c SG |
7982 | USB SMSC75XX ETHERNET DRIVER |
7983 | M: Steve Glendinning <[email protected]> | |
7984 | L: [email protected] | |
7985 | S: Maintained | |
7986 | F: drivers/net/usb/smsc75xx.* | |
7987 | ||
2f7ca802 | 7988 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 7989 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 7990 | L: [email protected] |
90b24cfb | 7991 | S: Maintained |
679655da | 7992 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 7993 | |
f423b9a8 | 7994 | USB SN9C1xx DRIVER |
8b58be88 | 7995 | M: Luca Risolia <[email protected]> |
795fb7e7 | 7996 | L: [email protected] |
661263b5 | 7997 | L: [email protected] |
275ffde4 | 7998 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
7999 | W: http://www.linux-projects.org |
8000 | S: Maintained | |
679655da | 8001 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8002 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8003 | |
8004 | USB SUBSYSTEM | |
879a5a00 | 8005 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8006 | L: [email protected] |
1da177e4 | 8007 | W: http://www.linux-usb.org |
08deed1e | 8008 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8009 | S: Supported |
679655da JP |
8010 | F: Documentation/usb/ |
8011 | F: drivers/net/usb/ | |
8012 | F: drivers/usb/ | |
8013 | F: include/linux/usb.h | |
8014 | F: include/linux/usb/ | |
1da177e4 LT |
8015 | |
8016 | USB UHCI DRIVER | |
8b58be88 | 8017 | M: Alan Stern <[email protected]> |
795fb7e7 | 8018 | L: [email protected] |
1da177e4 | 8019 | S: Maintained |
679655da | 8020 | F: drivers/usb/host/uhci* |
1da177e4 | 8021 | |
69ae9e3e | 8022 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8023 | M: Oliver Neukum <[email protected]> |
043600a6 | 8024 | L: [email protected] |
69ae9e3e | 8025 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8026 | S: Maintained |
679655da JP |
8027 | F: drivers/net/usb/usbnet.c |
8028 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8029 | |
c0efd232 | 8030 | USB VIDEO CLASS |
c53ac071 | 8031 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 8032 | L: [email protected] (subscribers-only) |
661263b5 | 8033 | L: [email protected] |
275ffde4 | 8034 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8035 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8036 | S: Maintained |
0c0d06ca | 8037 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8038 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8039 | |
8282da47 LP |
8040 | USB WEBCAM GADGET |
8041 | M: Laurent Pinchart <[email protected]> | |
8042 | L: [email protected] | |
8043 | S: Maintained | |
8044 | F: drivers/usb/gadget/*uvc*.c | |
8045 | F: drivers/usb/gadget/webcam.c | |
8046 | ||
bf164cc0 | 8047 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
8b58be88 | 8048 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
8049 | L: [email protected] |
8050 | S: Maintained | |
679655da | 8051 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8052 | |
eb6bab13 | 8053 | USB XHCI DRIVER |
36d0344c | 8054 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
8055 | L: [email protected] |
8056 | S: Supported | |
36d0344c SS |
8057 | F: drivers/usb/host/xhci* |
8058 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8059 | |
1da177e4 | 8060 | USB ZD1201 DRIVER |
4086b9ca | 8061 | L: [email protected] |
1da177e4 | 8062 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8063 | S: Orphan |
679655da | 8064 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8065 | |
b7eee616 | 8066 | USB ZR364XX DRIVER |
8b58be88 | 8067 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 8068 | L: [email protected] |
661263b5 | 8069 | L: [email protected] |
275ffde4 | 8070 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8071 | W: http://royale.zerezo.com/zr364xx/ |
8072 | S: Maintained | |
679655da | 8073 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8074 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8075 | |
e7839f25 | 8076 | USER-MODE LINUX (UML) |
8b58be88 | 8077 | M: Jeff Dike <[email protected]> |
b15194b7 | 8078 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
8079 | L: [email protected] |
8080 | L: [email protected] | |
8081 | W: http://user-mode-linux.sourceforge.net | |
8082 | S: Maintained | |
61516587 | 8083 | F: Documentation/virtual/uml/ |
679655da | 8084 | F: arch/um/ |
b070989a | 8085 | F: arch/x86/um/ |
679655da JP |
8086 | F: fs/hostfs/ |
8087 | F: fs/hppfs/ | |
b7eee616 | 8088 | |
e5f114e9 | 8089 | USERSPACE I/O (UIO) |
6a534c9d | 8090 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 8091 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 8092 | S: Maintained |
679655da JP |
8093 | F: Documentation/DocBook/uio-howto.tmpl |
8094 | F: drivers/uio/ | |
8095 | F: include/linux/uio*.h | |
e5f114e9 | 8096 | |
256cccbe | 8097 | UTIL-LINUX PACKAGE |
8b58be88 | 8098 | M: Karel Zak <[email protected]> |
256cccbe KZ |
8099 | L: [email protected] |
8100 | W: http://en.wikipedia.org/wiki/Util-linux | |
8101 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8102 | S: Maintained |
8103 | ||
c1fd1c07 | 8104 | UVESAFB DRIVER |
8b58be88 | 8105 | M: Michal Januszewski <[email protected]> |
c69f677c | 8106 | L: [email protected] |
c1fd1c07 MJ |
8107 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8108 | S: Maintained | |
679655da JP |
8109 | F: Documentation/fb/uvesafb.txt |
8110 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 8111 | |
4480f15b | 8112 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 8113 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 8114 | S: Maintained |
679655da JP |
8115 | F: Documentation/filesystems/vfat.txt |
8116 | F: fs/fat/ | |
1da177e4 | 8117 | |
cba3345c AW |
8118 | VFIO DRIVER |
8119 | M: Alex Williamson <[email protected]> | |
8120 | L: [email protected] | |
8121 | S: Maintained | |
8122 | F: Documentation/vfio.txt | |
8123 | F: drivers/vfio/ | |
8124 | F: include/linux/vfio.h | |
8125 | ||
9e6f3438 PO |
8126 | VIDEOBUF2 FRAMEWORK |
8127 | M: Pawel Osciak <[email protected]> | |
8128 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 8129 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
8130 | L: [email protected] |
8131 | S: Maintained | |
90d72ac6 | 8132 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
8133 | F: include/media/videobuf2-* |
8134 | ||
9a82446b AS |
8135 | VIRTIO CONSOLE DRIVER |
8136 | M: Amit Shah <[email protected]> | |
8137 | L: [email protected] | |
8138 | S: Maintained | |
8139 | F: drivers/char/virtio_console.c | |
8140 | F: include/linux/virtio_console.h | |
8141 | ||
2426ec8f MT |
8142 | VIRTIO CORE, NET AND BLOCK DRIVERS |
8143 | M: Rusty Russell <[email protected]> | |
8144 | M: "Michael S. Tsirkin" <[email protected]> | |
8145 | L: [email protected] | |
8146 | S: Maintained | |
8147 | F: drivers/virtio/ | |
8148 | F: drivers/net/virtio_net.c | |
8149 | F: drivers/block/virtio_blk.c | |
8150 | F: include/linux/virtio_*.h | |
8151 | ||
3a4d5c94 MT |
8152 | VIRTIO HOST (VHOST) |
8153 | M: "Michael S. Tsirkin" <[email protected]> | |
8154 | L: [email protected] | |
c996d8b9 | 8155 | L: [email protected] |
3a4d5c94 MT |
8156 | L: [email protected] |
8157 | S: Maintained | |
8158 | F: drivers/vhost/ | |
8159 | F: include/linux/vhost.h | |
8160 | ||
1da177e4 | 8161 | VIA RHINE NETWORK DRIVER |
8b58be88 | 8162 | M: Roger Luethi <[email protected]> |
1da177e4 | 8163 | S: Maintained |
f2148a47 | 8164 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 8165 | |
f0bf7f61 | 8166 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 8167 | M: Bruce Chang <[email protected]> |
8b58be88 | 8168 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
8169 | S: Maintained |
8170 | F: drivers/mmc/host/via-sdmmc.c | |
8171 | ||
69e4a7c2 | 8172 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 8173 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 8174 | L: [email protected] |
69e4a7c2 | 8175 | S: Maintained |
c7babebd FTS |
8176 | F: include/linux/via-core.h |
8177 | F: include/linux/via-gpio.h | |
8178 | F: include/linux/via_i2c.h | |
679655da | 8179 | F: drivers/video/via/ |
69e4a7c2 | 8180 | |
01f20734 | 8181 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 8182 | M: Francois Romieu <[email protected]> |
01f20734 FR |
8183 | L: [email protected] |
8184 | S: Maintained | |
f2148a47 | 8185 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 8186 | |
be7f8273 | 8187 | VLAN (802.1Q) |
8b58be88 | 8188 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
8189 | L: [email protected] |
8190 | S: Maintained | |
679655da JP |
8191 | F: drivers/net/macvlan.c |
8192 | F: include/linux/if_*vlan.h | |
8193 | F: net/8021q/ | |
be7f8273 | 8194 | |
55e331cf | 8195 | VLYNQ BUS |
8b58be88 | 8196 | M: Florian Fainelli <[email protected]> |
8578d7af | 8197 | L: [email protected] (subscribers-only) |
55e331cf FF |
8198 | S: Maintained |
8199 | F: drivers/vlynq/vlynq.c | |
8200 | F: include/linux/vlynq.h | |
8201 | ||
390beae4 MW |
8202 | VME SUBSYSTEM |
8203 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 8204 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
8205 | M: Greg Kroah-Hartman <[email protected]> |
8206 | L: [email protected] | |
8207 | S: Maintained | |
8208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
8209 | F: Documentation/vme_api.txt | |
8210 | F: drivers/staging/vme/ | |
8211 | F: drivers/vme/ | |
8212 | F: include/linux/vme* | |
8213 | ||
d1a890fa | 8214 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
8215 | M: Shreyas Bhatewara <[email protected]> |
8216 | M: "VMware, Inc." <[email protected]> | |
8217 | L: [email protected] | |
8218 | S: Maintained | |
8219 | F: drivers/net/vmxnet3/ | |
d1a890fa | 8220 | |
851b1642 | 8221 | VMware PVSCSI driver |
f2d7e40e | 8222 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
8223 | M: VMware PV-Drivers <[email protected]> |
8224 | L: [email protected] | |
8225 | S: Maintained | |
8226 | F: drivers/scsi/vmw_pvscsi.c | |
8227 | F: drivers/scsi/vmw_pvscsi.h | |
8228 | ||
e53e86c7 | 8229 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
63405ce8 | 8230 | M: Liam Girdwood <[email protected]> |
8b58be88 | 8231 | M: Mark Brown <[email protected]> |
e53e86c7 | 8232 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 8233 | W: http://www.slimlogic.co.uk/?p=48 |
08deed1e | 8234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git |
e53e86c7 | 8235 | S: Supported |
679655da JP |
8236 | F: drivers/regulator/ |
8237 | F: include/linux/regulator/ | |
e53e86c7 | 8238 | |
ab41319e | 8239 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 8240 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
8241 | L: [email protected] |
8242 | S: Maintained | |
679655da JP |
8243 | F: Documentation/hwmon/vt1211 |
8244 | F: drivers/hwmon/vt1211.c | |
ab41319e | 8245 | |
1de9e371 | 8246 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 8247 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
8248 | L: [email protected] |
8249 | S: Maintained | |
679655da | 8250 | F: drivers/hwmon/vt8231.c |
1de9e371 | 8251 | |
88095e7b TO |
8252 | VUB300 USB to SDIO/SD/MMC bridge chip |
8253 | M: Tony Olech <[email protected]> | |
8254 | L: [email protected] | |
8255 | L: [email protected] | |
8256 | S: Supported | |
8257 | F: drivers/mmc/host/vub300.c | |
8258 | ||
1da177e4 | 8259 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 8260 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 8261 | S: Maintained |
679655da JP |
8262 | F: Documentation/w1/ |
8263 | F: drivers/w1/ | |
1da177e4 | 8264 | |
13927079 | 8265 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 8266 | M: Marc Hulsman <[email protected]> |
13927079 | 8267 | L: [email protected] |
25845c22 | 8268 | S: Maintained |
679655da JP |
8269 | F: Documentation/hwmon/w83791d |
8270 | F: drivers/hwmon/w83791d.c | |
13927079 | 8271 | |
61db011d | 8272 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 8273 | M: Rudolf Marek <[email protected]> |
61db011d RM |
8274 | L: [email protected] |
8275 | S: Maintained | |
679655da JP |
8276 | F: Documentation/hwmon/w83793 |
8277 | F: drivers/hwmon/w83793.c | |
61db011d | 8278 | |
e3760b43 JD |
8279 | W83795 HARDWARE MONITORING DRIVER |
8280 | M: Jean Delvare <[email protected]> | |
8281 | L: [email protected] | |
8282 | S: Maintained | |
8283 | F: drivers/hwmon/w83795.c | |
8284 | ||
1da177e4 | 8285 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 8286 | M: Pierre Ossman <[email protected]> |
1da177e4 | 8287 | S: Maintained |
679655da | 8288 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 8289 | |
3527761c | 8290 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 8291 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
8292 | L: [email protected] |
8293 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 8294 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 8295 | S: Maintained |
679655da JP |
8296 | F: Documentation/watchdog/ |
8297 | F: drivers/watchdog/ | |
8298 | F: include/linux/watchdog.h | |
3527761c | 8299 | |
1da177e4 | 8300 | WD7000 SCSI DRIVER |
8b58be88 | 8301 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
8302 | L: [email protected] |
8303 | S: Maintained | |
679655da | 8304 | F: drivers/scsi/wd7000.c |
1da177e4 | 8305 | |
b22e00f3 DR |
8306 | WIIMOTE HID DRIVER |
8307 | M: David Herrmann <[email protected]> | |
8308 | L: [email protected] | |
8309 | S: Maintained | |
8310 | F: drivers/hid/hid-wiimote* | |
8311 | ||
e258b80e | 8312 | WINBOND CIR DRIVER |
364e9e18 | 8313 | M: David Härdeman <[email protected]> |
e258b80e | 8314 | S: Maintained |
116ab806 | 8315 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 8316 | |
8a70da82 | 8317 | WIMAX STACK |
8b58be88 | 8318 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
8319 | M: [email protected] |
8320 | L: [email protected] | |
8321 | S: Supported | |
8322 | W: http://linuxwimax.org | |
315987dc JP |
8323 | F: Documentation/wimax/README.wimax |
8324 | F: include/linux/wimax.h | |
8325 | F: include/linux/wimax/debug.h | |
8326 | F: include/net/wimax.h | |
8327 | F: net/wimax/ | |
8a70da82 | 8328 | |
5fc14680 | 8329 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 8330 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 8331 | S: Maintained |
679655da | 8332 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 8333 | |
1da177e4 | 8334 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 8335 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 8336 | L: [email protected] |
926554c4 | 8337 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 8338 | S: Maintained |
679655da | 8339 | F: drivers/net/wireless/wl3501* |
1da177e4 | 8340 | |
febf1dff | 8341 | WM97XX TOUCHSCREEN DRIVERS |
8b58be88 JP |
8342 | M: Mark Brown <[email protected]> |
8343 | M: Liam Girdwood <[email protected]> | |
febf1dff MB |
8344 | L: [email protected] |
8345 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
8346 | W: http://opensource.wolfsonmicro.com/node/7 | |
8347 | S: Supported | |
679655da JP |
8348 | F: drivers/input/touchscreen/*wm97* |
8349 | F: include/linux/wm97xx.h | |
febf1dff | 8350 | |
055bcbcb | 8351 | WOLFSON MICROELECTRONICS DRIVERS |
27480ccc | 8352 | M: Mark Brown <[email protected]> |
fef95164 | 8353 | L: [email protected] |
cf8eda3e | 8354 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 8355 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 8356 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 8357 | S: Supported |
3768f0b1 | 8358 | F: Documentation/hwmon/wm83?? |
af1c5386 | 8359 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 8360 | F: drivers/clk/clk-wm83*.c |
9c309598 | 8361 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 8362 | F: drivers/leds/leds-wm83*.c |
25b273ba | 8363 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 8364 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 8365 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
8366 | F: drivers/input/misc/wm831x-on.c |
8367 | F: drivers/input/touchscreen/wm831x-ts.c | |
8368 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
8369 | F: drivers/mfd/arizona* |
8370 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
8371 | F: drivers/power/wm83*.c |
8372 | F: drivers/rtc/rtc-wm83*.c | |
8373 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 8374 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 8375 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 8376 | F: include/linux/mfd/arizona/ |
3860e6c4 | 8377 | F: include/linux/mfd/wm831x/ |
b75ea16a | 8378 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 8379 | F: include/linux/mfd/wm8400* |
59ec6da2 | 8380 | F: include/linux/wm97xx.h |
055bcbcb | 8381 | F: include/sound/wm????.h |
9c309598 | 8382 | F: sound/soc/codecs/arizona.? |
055bcbcb | 8383 | F: sound/soc/codecs/wm* |
b75ea16a | 8384 | |
3e6cd7a4 TH |
8385 | WORKQUEUE |
8386 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
8387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
8388 | S: Maintained | |
8389 | F: include/linux/workqueue.h | |
8390 | F: kernel/workqueue.c | |
8391 | F: Documentation/workqueue.txt | |
8392 | ||
1da177e4 | 8393 | X.25 NETWORK LAYER |
8bf28059 | 8394 | M: Andrew Hendry <[email protected]> |
1da177e4 | 8395 | L: [email protected] |
8bf28059 | 8396 | S: Odd Fixes |
679655da JP |
8397 | F: Documentation/networking/x25* |
8398 | F: include/net/x25* | |
8399 | F: net/x25/ | |
1da177e4 | 8400 | |
e2d1d6c0 | 8401 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
8402 | M: Thomas Gleixner <[email protected]> |
8403 | M: Ingo Molnar <[email protected]> | |
8404 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 8405 | M: [email protected] |
75fc2d37 | 8406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 8407 | S: Maintained |
679655da JP |
8408 | F: Documentation/x86/ |
8409 | F: arch/x86/ | |
e2d1d6c0 | 8410 | |
d0944853 MG |
8411 | X86 PLATFORM DRIVERS |
8412 | M: Matthew Garrett <[email protected]> | |
8413 | L: [email protected] | |
28b8e8d4 | 8414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
8415 | S: Maintained |
8416 | F: drivers/platform/x86 | |
8417 | ||
c1f5c54b IM |
8418 | X86 MCE INFRASTRUCTURE |
8419 | M: Tony Luck <[email protected]> | |
487ba8e8 | 8420 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
8421 | L: [email protected] |
8422 | S: Maintained | |
8423 | F: arch/x86/kernel/cpu/mcheck/* | |
8424 | ||
d6fad502 MCC |
8425 | XC2028/3028 TUNER DRIVER |
8426 | M: Mauro Carvalho Chehab <[email protected]> | |
8427 | L: [email protected] | |
8428 | W: http://linuxtv.org | |
8429 | T: git git://linuxtv.org/media_tree.git | |
8430 | S: Maintained | |
8431 | F: drivers/media/tuners/tuner-xc2028.* | |
8432 | ||
c4468085 | 8433 | XEN HYPERVISOR INTERFACE |
c4468085 | 8434 | M: Konrad Rzeszutek Wilk <[email protected]> |
d633180c | 8435 | M: Jeremy Fitzhardinge <[email protected]> |
c4468085 IC |
8436 | L: [email protected] (moderated for non-subscribers) |
8437 | L: [email protected] | |
8438 | S: Supported | |
8439 | F: arch/x86/xen/ | |
8440 | F: drivers/*/xen-*front.c | |
8441 | F: drivers/xen/ | |
8442 | F: arch/x86/include/asm/xen/ | |
8443 | F: include/xen/ | |
8444 | ||
77bfb479 SS |
8445 | XEN HYPERVISOR ARM |
8446 | M: Stefano Stabellini <[email protected]> | |
8447 | L: [email protected] (moderated for non-subscribers) | |
8448 | S: Supported | |
8449 | F: arch/arm/xen/ | |
8450 | F: arch/arm/include/asm/xen/ | |
8451 | ||
9b57e1a7 IC |
8452 | XEN NETWORK BACKEND DRIVER |
8453 | M: Ian Campbell <[email protected]> | |
8454 | L: [email protected] (moderated for non-subscribers) | |
8455 | L: [email protected] | |
8456 | S: Supported | |
8457 | F: drivers/net/xen-netback/* | |
8458 | ||
c5f8e29d KRW |
8459 | XEN PCI SUBSYSTEM |
8460 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 8461 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
8462 | S: Supported |
8463 | F: arch/x86/pci/*xen* | |
8464 | F: drivers/pci/*xen* | |
8465 | ||
8466 | XEN SWIOTLB SUBSYSTEM | |
8467 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 8468 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
8469 | S: Supported |
8470 | F: arch/x86/xen/*swiotlb* | |
8471 | F: drivers/xen/*swiotlb* | |
8472 | ||
1da177e4 LT |
8473 | XFS FILESYSTEM |
8474 | P: Silicon Graphics Inc | |
c8891329 AE |
8475 | M: Ben Myers <[email protected]> |
8476 | M: Alex Elder <[email protected]> | |
18caa67a | 8477 | M: [email protected] |
d7ede1aa | 8478 | L: [email protected] |
1da177e4 | 8479 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 8480 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 8481 | S: Supported |
679655da JP |
8482 | F: Documentation/filesystems/xfs.txt |
8483 | F: fs/xfs/ | |
1da177e4 | 8484 | |
8a3b7a25 | 8485 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
8486 | M: Anirudha Sarangi <[email protected]> |
8487 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
8488 | S: Maintained |
8489 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
8490 | ||
c9d3d8ec | 8491 | XILINX SYSTEMACE DRIVER |
8b58be88 | 8492 | M: Grant Likely <[email protected]> |
c9d3d8ec | 8493 | W: http://www.secretlab.ca/ |
c9d3d8ec | 8494 | S: Maintained |
679655da | 8495 | F: drivers/block/xsysace.c |
c9d3d8ec | 8496 | |
238b8721 | 8497 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 8498 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
8499 | L: [email protected] |
8500 | S: Maintained | |
df621252 | 8501 | F: drivers/tty/serial/uartlite.c |
238b8721 | 8502 | |
1da177e4 | 8503 | YAM DRIVER FOR AX.25 |
8b58be88 | 8504 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
8505 | L: [email protected] |
8506 | S: Maintained | |
679655da JP |
8507 | F: drivers/net/hamradio/yam* |
8508 | F: include/linux/yam.h | |
1da177e4 | 8509 | |
af64a5eb | 8510 | YEALINK PHONE DRIVER |
8b58be88 | 8511 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
8512 | L: [email protected] |
8513 | S: Maintained | |
679655da JP |
8514 | F: Documentation/input/yealink.txt |
8515 | F: drivers/input/misc/yealink.* | |
af64a5eb | 8516 | |
1da177e4 | 8517 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 8518 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
8519 | W: http://yaina.de/jreuter/ |
8520 | W: http://www.qsl.net/dl1bke/ | |
8521 | L: [email protected] | |
8522 | S: Maintained | |
679655da JP |
8523 | F: Documentation/networking/z8530drv.txt |
8524 | F: drivers/net/hamradio/*scc.c | |
8525 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 8526 | |
7c0c3afb | 8527 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
8528 | M: Daniel Drake <[email protected]> |
8529 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 8530 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 8531 | L: [email protected] |
7c0c3afb DD |
8532 | L: [email protected] (subscribers-only) |
8533 | S: Maintained | |
679655da | 8534 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 8535 | |
1da177e4 | 8536 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 8537 | L: [email protected] |
f63145e2 | 8538 | L: [email protected] |
1da177e4 | 8539 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
8540 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
8541 | S: Odd Fixes | |
90d72ac6 | 8542 | F: drivers/media/pci/zoran/ |
1da177e4 | 8543 | |
8b4a4080 | 8544 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 8545 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 8546 | S: Maintained |
df621252 | 8547 | F: drivers/tty/serial/zs.* |
8b4a4080 | 8548 | |
1da177e4 | 8549 | THE REST |
8b58be88 | 8550 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 8551 | L: [email protected] |
8a6e2535 | 8552 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 8553 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 8554 | S: Buried alive in reporters |
34d03cc1 JP |
8555 | F: * |
8556 | F: */ |