]>
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. | |
bbbe96ed SW |
93 | N: Files and directories with regex patterns. |
94 | N: [^a-z]tegra all files whose path contains the word tegra | |
95 | One pattern per line. Multiple N: lines acceptable. | |
c7c4fb18 JP |
96 | X: Files and directories that are NOT maintained, same rules as F: |
97 | Files exclusions are tested before file matches. | |
98 | Can be useful for excluding a specific subdirectory, for instance: | |
99 | F: net/ | |
100 | X: net/ipv6/ | |
101 | matches all files in and below net excluding net/ipv6/ | |
102 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 103 | patch or file. For instance: |
c7c4fb18 | 104 | K: of_get_profile |
bbbe96ed | 105 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 106 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
107 | matches patches or files that contain one or more of the words |
108 | printk, pr_info or pr_err | |
c7c4fb18 | 109 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
110 | |
111 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
112 | order. If you could add yourselves to it in alphabetical order that would be | |
113 | so much easier [Ed] | |
114 | ||
c7c4fb18 | 115 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 116 | |
c7c4fb18 | 117 | ----------------------------------- |
679655da | 118 | |
a6d89915 | 119 | 3C59X NETWORK DRIVER |
8b58be88 | 120 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
121 | L: [email protected] |
122 | S: Maintained | |
679655da | 123 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 124 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 125 | |
1da177e4 | 126 | 3CR990 NETWORK DRIVER |
8b58be88 | 127 | M: David Dillow <[email protected]> |
979b6c13 | 128 | L: [email protected] |
1da177e4 | 129 | S: Maintained |
ca7a8e85 | 130 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 131 | |
c4de0ceb AR |
132 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
133 | M: Adam Radford <[email protected]> | |
1da177e4 | 134 | L: [email protected] |
c4de0ceb | 135 | W: http://www.lsi.com |
1da177e4 | 136 | S: Supported |
c4de0ceb | 137 | F: drivers/scsi/3w-* |
1da177e4 LT |
138 | |
139 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 140 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
141 | L: [email protected] |
142 | S: Maintained | |
679655da | 143 | F: drivers/scsi/53c700* |
1da177e4 LT |
144 | |
145 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 146 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
147 | L: [email protected] |
148 | S: Maintained | |
679655da | 149 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 150 | |
1da177e4 | 151 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 152 | M: Realtek linux nic maintainers <[email protected]> |
8b58be88 | 153 | M: Francois Romieu <[email protected]> |
979b6c13 | 154 | L: [email protected] |
1da177e4 | 155 | S: Maintained |
a8fe65b8 | 156 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
157 | |
158 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 159 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
160 | L: [email protected] |
161 | W: http://serial.sourceforge.net | |
8ee16a1b | 162 | S: Maintained |
08deed1e | 163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 164 | F: drivers/tty/serial/8250* |
679655da | 165 | F: include/linux/serial_8250.h |
1da177e4 LT |
166 | |
167 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 168 | L: [email protected] |
0cf445ce | 169 | S: Orphan / Obsolete |
644570b8 | 170 | F: drivers/net/ethernet/8390/ |
1da177e4 | 171 | |
67543e50 | 172 | 9P FILE SYSTEM |
8b58be88 JP |
173 | M: Eric Van Hensbergen <[email protected]> |
174 | M: Ron Minnich <[email protected]> | |
175 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 176 | L: [email protected] |
27a2a5ff | 177 | W: http://swik.net/v9fs |
8a6e2535 | 178 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 180 | S: Maintained |
679655da JP |
181 | F: Documentation/filesystems/9p.txt |
182 | F: fs/9p/ | |
67543e50 | 183 | |
91952bc0 AP |
184 | A8293 MEDIA DRIVER |
185 | M: Antti Palosaari <[email protected]> | |
186 | L: [email protected] | |
187 | W: http://linuxtv.org/ | |
188 | W: http://palosaari.fi/linux/ | |
189 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
190 | T: git git://linuxtv.org/anttip/media_tree.git | |
191 | S: Maintained | |
192 | F: drivers/media/dvb-frontends/a8293* | |
193 | ||
e2d1d6c0 | 194 | AACRAID SCSI RAID DRIVER |
8b58be88 | 195 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
196 | L: [email protected] |
197 | W: http://www.adaptec.com/ | |
1da177e4 | 198 | S: Supported |
679655da JP |
199 | F: Documentation/scsi/aacraid.txt |
200 | F: drivers/scsi/aacraid/ | |
1da177e4 | 201 | |
249e3c85 | 202 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 203 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
204 | L: [email protected] |
205 | S: Maintained | |
679655da | 206 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 207 | |
249e3c85 | 208 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 209 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
210 | L: [email protected] |
211 | S: Maintained | |
679655da | 212 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 213 | |
1da177e4 | 214 | ACENIC DRIVER |
8b58be88 | 215 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
216 | L: [email protected] |
217 | S: Maintained | |
531c4f89 | 218 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 219 | |
e86435eb | 220 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 221 | M: Peter Feuerer <[email protected]> |
d0944853 | 222 | L: [email protected] |
4fc26e36 JP |
223 | W: http://piie.net/?section=acerhdf |
224 | S: Maintained | |
225 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 226 | |
745a5d21 | 227 | ACER WMI LAPTOP EXTRAS |
182ae55c | 228 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 229 | L: [email protected] |
745a5d21 | 230 | S: Maintained |
679655da | 231 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 232 | |
1da177e4 | 233 | ACPI |
8b58be88 | 234 | M: Len Brown <[email protected]> |
ea26d0cf | 235 | M: Rafael J. Wysocki <[email protected]> |
6968e50c | 236 | L: [email protected] |
38e09d83 | 237 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 238 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
aaef292a | 239 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux |
8b59a454 | 240 | S: Supported |
679655da JP |
241 | F: drivers/acpi/ |
242 | F: drivers/pnp/pnpacpi/ | |
243 | F: include/linux/acpi.h | |
43368e74 | 244 | F: include/acpi/ |
8b59a454 | 245 | |
8b59a454 | 246 | ACPI FAN DRIVER |
8b58be88 | 247 | M: Zhang Rui <[email protected]> |
8b59a454 | 248 | L: [email protected] |
0638bc8d | 249 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 250 | S: Supported |
679655da | 251 | F: drivers/acpi/fan.c |
1da177e4 | 252 | |
8b59a454 | 253 | ACPI THERMAL DRIVER |
8b58be88 | 254 | M: Zhang Rui <[email protected]> |
8b59a454 | 255 | L: [email protected] |
0638bc8d | 256 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 257 | S: Supported |
679655da | 258 | F: drivers/acpi/*thermal* |
998be20f | 259 | |
359acec8 | 260 | ACPI VIDEO DRIVER |
8b58be88 | 261 | M: Zhang Rui <[email protected]> |
8b59a454 | 262 | L: [email protected] |
0638bc8d | 263 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 264 | S: Supported |
679655da | 265 | F: drivers/acpi/video.c |
998be20f | 266 | |
bff431e4 | 267 | ACPI WMI DRIVER |
d0944853 | 268 | L: [email protected] |
5b927259 | 269 | S: Orphan |
679655da | 270 | F: drivers/platform/x86/wmi.c |
bff431e4 | 271 | |
2f39d519 | 272 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 273 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
274 | W: http://wiki.parisc-linux.org/AD1889 |
275 | L: [email protected] | |
276 | S: Maintained | |
679655da | 277 | F: sound/pci/ad1889.* |
2f39d519 | 278 | |
527a1a83 MH |
279 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
280 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 281 | L: [email protected] |
a3f531ac | 282 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
283 | S: Supported |
284 | F: drivers/misc/ad525x_dpot.c | |
285 | ||
286 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
287 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 288 | L: [email protected] |
a3f531ac | 289 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
290 | S: Supported |
291 | F: drivers/regulator/ad5398.c | |
292 | ||
293 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
294 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 295 | L: [email protected] |
a3f531ac | 296 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
297 | S: Supported |
298 | F: drivers/input/misc/ad714x.c | |
299 | ||
300 | AD7877 TOUCHSCREEN DRIVER | |
301 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 302 | L: [email protected] |
a3f531ac | 303 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
304 | S: Supported |
305 | F: drivers/input/touchscreen/ad7877.c | |
306 | ||
307 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
308 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 309 | L: [email protected] |
a3f531ac | 310 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
311 | S: Supported |
312 | F: drivers/input/touchscreen/ad7879.c | |
313 | ||
1330b0dc JK |
314 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
315 | M: Jiri Kosina <[email protected]> | |
316 | S: Maintained | |
317 | ||
1da177e4 | 318 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 319 | M: Jean Delvare <[email protected]> |
cc0b07ed | 320 | L: [email protected] |
1da177e4 | 321 | S: Maintained |
679655da JP |
322 | F: Documentation/hwmon/adm1025 |
323 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 324 | |
cae2caae | 325 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 326 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
327 | L: [email protected] |
328 | S: Maintained | |
679655da | 329 | F: drivers/hwmon/adm1029.c |
cae2caae | 330 | |
cc0b88cf | 331 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 332 | L: [email protected] |
491b26b4 | 333 | W: http://wireless.kernel.org/ |
e71bcbd0 | 334 | S: Orphan |
679655da | 335 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 336 | |
e8e31622 SA |
337 | ADP1653 FLASH CONTROLLER DRIVER |
338 | M: Sakari Ailus <[email protected]> | |
339 | L: [email protected] | |
340 | S: Maintained | |
341 | F: drivers/media/i2c/adp1653.c | |
342 | F: include/media/adp1653.h | |
343 | ||
527a1a83 MH |
344 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
345 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 346 | L: [email protected] |
a3f531ac | 347 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
348 | S: Supported |
349 | F: drivers/mfd/adp5520.c | |
350 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 351 | F: drivers/leds/leds-adp5520.c |
77278d50 | 352 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
353 | F: drivers/input/keyboard/adp5520-keys.c |
354 | ||
355 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
356 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 357 | L: [email protected] |
a3f531ac | 358 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
359 | S: Supported |
360 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 361 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
362 | |
363 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
364 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 365 | L: [email protected] |
a3f531ac | 366 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
367 | S: Supported |
368 | F: drivers/video/backlight/adp8860_bl.c | |
369 | ||
8c22a8f5 DE |
370 | ADS1015 HARDWARE MONITOR DRIVER |
371 | M: Dirk Eibach <[email protected]> | |
372 | L: [email protected] | |
373 | S: Maintained | |
374 | F: Documentation/hwmon/ads1015 | |
375 | F: drivers/hwmon/ads1015.c | |
376 | F: include/linux/i2c/ads1015.h | |
377 | ||
1da177e4 | 378 | ADT746X FAN DRIVER |
8b58be88 | 379 | M: Colin Leroy <[email protected]> |
1da177e4 | 380 | S: Maintained |
679655da | 381 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 382 | |
b058b859 JD |
383 | ADT7475 HARDWARE MONITOR DRIVER |
384 | M: Jean Delvare <[email protected]> | |
385 | L: [email protected] | |
386 | S: Maintained | |
387 | F: Documentation/hwmon/adt7475 | |
388 | F: drivers/hwmon/adt7475.c | |
389 | ||
527a1a83 MH |
390 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
391 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 392 | L: [email protected] |
a3f531ac | 393 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
394 | S: Supported |
395 | F: drivers/input/misc/adxl34x.c | |
396 | ||
8c6af9e1 | 397 | ADVANSYS SCSI DRIVER |
8b58be88 | 398 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
399 | L: [email protected] |
400 | S: Maintained | |
679655da JP |
401 | F: Documentation/scsi/advansys.txt |
402 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 403 | |
1da177e4 | 404 | AEDSP16 DRIVER |
8b58be88 | 405 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 406 | S: Maintained |
679655da | 407 | F: sound/oss/aedsp16.c |
1da177e4 | 408 | |
91952bc0 AP |
409 | AF9013 MEDIA DRIVER |
410 | M: Antti Palosaari <[email protected]> | |
411 | L: [email protected] | |
412 | W: http://linuxtv.org/ | |
413 | W: http://palosaari.fi/linux/ | |
414 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
415 | T: git git://linuxtv.org/anttip/media_tree.git | |
416 | S: Maintained | |
417 | F: drivers/media/dvb-frontends/af9013* | |
418 | ||
419 | AF9033 MEDIA DRIVER | |
420 | M: Antti Palosaari <[email protected]> | |
421 | L: [email protected] | |
422 | W: http://linuxtv.org/ | |
423 | W: http://palosaari.fi/linux/ | |
424 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
425 | T: git git://linuxtv.org/anttip/media_tree.git | |
426 | S: Maintained | |
427 | F: drivers/media/dvb-frontends/af9033* | |
428 | ||
1da177e4 | 429 | AFFS FILE SYSTEM |
6cf515e1 GU |
430 | L: [email protected] |
431 | S: Orphan | |
679655da JP |
432 | F: Documentation/filesystems/affs.txt |
433 | F: fs/affs/ | |
1da177e4 | 434 | |
e2d1d6c0 | 435 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 436 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
437 | L: [email protected] |
438 | S: Supported | |
679655da JP |
439 | F: fs/afs/ |
440 | F: include/net/af_rxrpc.h | |
441 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 442 | |
1da177e4 | 443 | AGPGART DRIVER |
8b58be88 | 444 | M: David Airlie <[email protected]> |
54e5881d | 445 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 446 | S: Maintained |
679655da JP |
447 | F: drivers/char/agp/ |
448 | F: include/linux/agp* | |
c117ab84 | 449 | F: include/uapi/linux/agp* |
1da177e4 LT |
450 | |
451 | AHA152X SCSI DRIVER | |
8b58be88 | 452 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
453 | L: [email protected] |
454 | S: Maintained | |
679655da JP |
455 | F: drivers/scsi/aha152x* |
456 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 457 | |
64624d4f | 458 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 459 | M: Hannes Reinecke <[email protected]> |
64624d4f | 460 | L: [email protected] |
1da177e4 | 461 | S: Maintained |
679655da JP |
462 | F: drivers/scsi/aic7xxx/ |
463 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 464 | |
450500ad HV |
465 | AIMSLAB FM RADIO RECEIVER DRIVER |
466 | M: Hans Verkuil <[email protected]> | |
467 | L: [email protected] | |
468 | T: git git://linuxtv.org/media_tree.git | |
469 | W: http://linuxtv.org | |
470 | S: Maintained | |
471 | F: drivers/media/radio/radio-aimslab* | |
472 | ||
e2d1d6c0 | 473 | AIO |
8b58be88 | 474 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
475 | L: [email protected] |
476 | S: Supported | |
679655da JP |
477 | F: fs/aio.c |
478 | F: include/linux/*aio*.h | |
e2d1d6c0 | 479 | |
1da177e4 | 480 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 481 | M: Duncan Sands <[email protected]> |
6372594a | 482 | L: [email protected] |
1da177e4 LT |
483 | W: http://www.linux-usb.org/SpeedTouch/ |
484 | S: Maintained | |
679655da JP |
485 | F: drivers/usb/atm/speedtch.c |
486 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 487 | |
272f133a | 488 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 489 | M: Manuel Lauss <[email protected]> |
08fcb720 | 490 | S: Maintained |
679655da | 491 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 492 | |
4a4e5787 | 493 | ALI1563 I2C DRIVER |
8b58be88 | 494 | M: Rudolf Marek <[email protected]> |
846557d3 | 495 | L: [email protected] |
4a4e5787 | 496 | S: Maintained |
679655da JP |
497 | F: Documentation/i2c/busses/i2c-ali1563 |
498 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 499 | |
1da177e4 | 500 | ALPHA PORT |
8b58be88 | 501 | M: Richard Henderson <[email protected]> |
8b58be88 | 502 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 503 | M: Matt Turner <[email protected]> |
c89f4f9a | 504 | S: Odd Fixes |
a9406699 | 505 | L: [email protected] |
679655da | 506 | F: arch/alpha/ |
1da177e4 | 507 | |
adf9251f TK |
508 | ALTERA UART/JTAG UART SERIAL DRIVERS |
509 | M: Tobias Klauser <[email protected]> | |
510 | L: [email protected] | |
511 | L: [email protected] (moderated for non-subscribers) | |
512 | S: Maintained | |
513 | F: drivers/tty/serial/altera_uart.c | |
514 | F: drivers/tty/serial/altera_jtaguart.c | |
515 | F: include/linux/altera_uart.h | |
516 | F: include/linux/altera_jtaguart.h | |
517 | ||
512d1027 | 518 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 519 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
520 | L: [email protected] |
521 | S: Maintained | |
522 | F: Documentation/hwmon/fam15h_power | |
523 | F: drivers/hwmon/fam15h_power.c | |
524 | ||
167a675a | 525 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 526 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 527 | L: [email protected] (moderated for non-subscribers) |
167a675a | 528 | S: Supported |
679655da | 529 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 530 | |
f90b8116 | 531 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 532 | P: Andres Salomon <[email protected]> |
67d76710 | 533 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
534 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
535 | S: Supported | |
679655da JP |
536 | F: drivers/char/hw_random/geode-rng.c |
537 | F: drivers/crypto/geode* | |
538 | F: drivers/video/geode/ | |
539 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 540 | |
919ee7dd | 541 | AMD IOMMU (AMD-VI) |
e4110568 | 542 | M: Joerg Roedel <[email protected]> |
919ee7dd | 543 | L: [email protected] |
525b233c | 544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 545 | S: Maintained |
b2c16391 JP |
546 | F: drivers/iommu/amd_iommu*.[ch] |
547 | F: include/linux/amd-iommu.h | |
919ee7dd | 548 | |
e7f5b309 | 549 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 550 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 551 | L: [email protected] |
943482d0 | 552 | S: Maintained |
679655da | 553 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 554 | |
284f42b6 | 555 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 556 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 557 | S: Supported |
bd5f47ec | 558 | F: drivers/macintosh/ams/ |
284f42b6 | 559 | |
f94b533d | 560 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
561 | M: Tom Tucker <[email protected]> |
562 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 563 | L: [email protected] |
f94b533d | 564 | S: Maintained |
679655da | 565 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 566 | |
531fca16 HV |
567 | ANALOG DEVICES INC AD9389B DRIVER |
568 | M: Hans Verkuil <[email protected]> | |
569 | L: [email protected] | |
570 | S: Maintained | |
571 | F: drivers/media/i2c/ad9389b* | |
572 | ||
573 | ANALOG DEVICES INC ADV7604 DRIVER | |
574 | M: Hans Verkuil <[email protected]> | |
575 | L: [email protected] | |
576 | S: Maintained | |
577 | F: drivers/media/i2c/adv7604* | |
578 | ||
527a1a83 | 579 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 580 | M: Lars-Peter Clausen <[email protected]> |
f8bd42b8 | 581 | L: [email protected] |
4bdef3bd | 582 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 583 | W: http://wiki.analog.com/ |
4bdef3bd | 584 | S: Supported |
39c9d199 | 585 | F: sound/soc/codecs/adau* |
cc52688a | 586 | F: sound/soc/codecs/adav* |
4bdef3bd | 587 | F: sound/soc/codecs/ad1* |
4bdef3bd | 588 | F: sound/soc/codecs/ssm* |
40216ce7 | 589 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 590 | |
527a1a83 MH |
591 | ANALOG DEVICES INC ASOC DRIVERS |
592 | L: [email protected] | |
593 | L: [email protected] (moderated for non-subscribers) | |
594 | W: http://blackfin.uclinux.org/ | |
595 | S: Supported | |
596 | F: sound/soc/blackfin/* | |
597 | ||
42269063 | 598 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 599 | M: Johannes Berg <[email protected]> |
a4724ed6 | 600 | L: [email protected] |
93711660 | 601 | L: [email protected] (moderated for non-subscribers) |
42269063 | 602 | S: Maintained |
679655da | 603 | F: sound/aoa/ |
42269063 | 604 | |
1da177e4 | 605 | APM DRIVER |
81024fc4 JK |
606 | M: Jiri Kosina <[email protected]> |
607 | S: Odd fixes | |
679655da JP |
608 | F: arch/x86/kernel/apm_32.c |
609 | F: include/linux/apm_bios.h | |
c117ab84 | 610 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 611 | F: drivers/char/apm-emulation.c |
1da177e4 | 612 | |
bd7aa4b2 | 613 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 614 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
615 | L: [email protected] |
616 | S: Maintained | |
679655da | 617 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 618 | |
6f2fad74 | 619 | APPLE SMC DRIVER |
d618540f HR |
620 | M: Henrik Rydberg <[email protected]> |
621 | L: [email protected] | |
6f2fad74 | 622 | S: Maintained |
679655da | 623 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 624 | |
1da177e4 | 625 | APPLETALK NETWORK LAYER |
8b58be88 | 626 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 627 | S: Maintained |
679655da JP |
628 | F: drivers/net/appletalk/ |
629 | F: net/appletalk/ | |
1da177e4 | 630 | |
a480167b | 631 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 632 | M: Viresh Kumar <[email protected]> |
a480167b VK |
633 | L: [email protected] |
634 | S: Maintained | |
635 | F: include/linux/pata_arasan_cf_data.h | |
636 | F: drivers/ata/pata_arasan_cf.c | |
637 | ||
1154ea7d | 638 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 639 | M: Jaya Kumar <[email protected]> |
1154ea7d | 640 | S: Maintained |
679655da JP |
641 | F: drivers/video/arcfb.c |
642 | F: drivers/video/fb_defio.c | |
1154ea7d | 643 | |
1da177e4 | 644 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 645 | M: Ian Molton <[email protected]> |
1da177e4 | 646 | S: Maintained |
679655da JP |
647 | F: arch/arm/lib/floppydma.S |
648 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 649 | |
6f96521f WD |
650 | ARM PMU PROFILING AND DEBUGGING |
651 | M: Will Deacon <[email protected]> | |
652 | S: Maintained | |
653 | F: arch/arm/kernel/perf_event* | |
654 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
655 | F: arch/arm/include/asm/pmu.h |
656 | F: arch/arm/kernel/hw_breakpoint.c | |
657 | F: arch/arm/include/asm/hw_breakpoint.h | |
658 | ||
d4275354 | 659 | ARM PORT |
8b58be88 | 660 | M: Russell King <[email protected]> |
efc03ecb | 661 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
662 | W: http://www.arm.linux.org.uk/ |
663 | S: Maintained | |
664 | F: arch/arm/ | |
665 | ||
d323c243 SB |
666 | ARM SUB-ARCHITECTURES |
667 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 668 | S: Maintained |
d323c243 SB |
669 | F: arch/arm/mach-*/ |
670 | F: arch/arm/plat-*/ | |
671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
672 | ||
cefbf4ea RK |
673 | ARM PRIMECELL AACI PL041 DRIVER |
674 | M: Russell King <[email protected]> | |
675 | S: Maintained | |
676 | F: sound/arm/aaci.* | |
677 | ||
678 | ARM PRIMECELL CLCD PL110 DRIVER | |
679 | M: Russell King <[email protected]> | |
680 | S: Maintained | |
681 | F: drivers/video/amba-clcd.* | |
682 | ||
683 | ARM PRIMECELL KMI PL050 DRIVER | |
684 | M: Russell King <[email protected]> | |
685 | S: Maintained | |
686 | F: drivers/input/serio/ambakmi.* | |
687 | F: include/linux/amba/kmi.h | |
688 | ||
2761f5c2 | 689 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
690 | M: Russell King <[email protected]> |
691 | S: Maintained | |
679655da | 692 | F: drivers/mmc/host/mmci.* |
2f748aaa | 693 | F: include/linux/amba/mmci.h |
2761f5c2 | 694 | |
1b4304e5 RK |
695 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
696 | M: Russell King <[email protected]> | |
697 | S: Maintained | |
698 | F: drivers/tty/serial/amba-pl01*.c | |
699 | F: include/linux/amba/serial.h | |
2761f5c2 | 700 | |
cefbf4ea RK |
701 | ARM PRIMECELL BUS SUPPORT |
702 | M: Russell King <[email protected]> | |
703 | S: Maintained | |
704 | F: drivers/amba/ | |
705 | F: include/linux/amba/bus.h | |
706 | ||
2b7a52a4 | 707 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 708 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 709 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
710 | S: Maintained |
711 | ||
9c784f95 | 712 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 713 | M: Sergey Lapin <[email protected]> |
efc03ecb | 714 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
715 | S: Maintained |
716 | ||
2b7a52a4 | 717 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 718 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 719 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
720 | S: Maintained |
721 | ||
1b106699 MR |
722 | ARM/Allwinner A1X SoC support |
723 | M: Maxime Ripard <[email protected]> | |
724 | L: [email protected] (moderated for non-subscribers) | |
725 | S: Maintained | |
726 | F: arch/arm/mach-sunxi/ | |
727 | ||
c1fc8675 | 728 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 729 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
730 | M: Nicolas Ferre <[email protected]> |
731 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 732 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 733 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
734 | W: http://www.linux4sam.org |
735 | S: Supported | |
736 | F: arch/arm/mach-at91/ | |
d4a89c7d | 737 | |
986cf2e9 RH |
738 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
739 | M: Rob Herring <[email protected]> | |
740 | L: [email protected] (moderated for non-subscribers) | |
741 | S: Maintained | |
742 | F: arch/arm/mach-highbank/ | |
743 | ||
d94f944e AV |
744 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
745 | M: Anton Vorontsov <[email protected]> | |
746 | S: Maintained | |
747 | F: arch/arm/mach-cns3xxx/ | |
748 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
749 | ||
386ab516 AS |
750 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
751 | M: Alexander Shiyan <[email protected]> | |
752 | L: [email protected] (moderated for non-subscribers) | |
753 | S: Odd Fixes | |
754 | F: arch/arm/mach-clps711x/ | |
755 | ||
2b7a52a4 | 756 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 757 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 758 | M: Ryan Mallon <[email protected]> |
efc03ecb | 759 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 760 | S: Maintained |
d19d3667 HS |
761 | F: arch/arm/mach-ep93xx/ |
762 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
763 | |
764 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 765 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 766 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
767 | S: Maintained |
768 | ||
d4275354 | 769 | ARM/CLKDEV SUPPORT |
8b58be88 | 770 | M: Russell King <[email protected]> |
efc03ecb | 771 | L: [email protected] (moderated for non-subscribers) |
37417046 | 772 | S: Maintained |
d4275354 | 773 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 774 | F: drivers/clk/clkdev.c |
d4275354 | 775 | |
d48134e7 | 776 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 777 | M: Mike Rapoport <[email protected]> |
efc03ecb | 778 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
779 | S: Maintained |
780 | ||
94150095 HF |
781 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
782 | M: Hubert Feurstein <[email protected]> | |
783 | S: Maintained | |
784 | F: arch/arm/mach-ep93xx/micro9.c | |
785 | ||
1da177e4 | 786 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 787 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
788 | S: Maintained |
789 | ||
881a95f9 | 790 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 791 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 792 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
793 | T: git git://git.berlios.de/gemini-board |
794 | S: Maintained | |
f49afbb5 | 795 | F: arch/arm/mach-gemini/ |
881a95f9 | 796 | |
a990cbd8 BS |
797 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
798 | M: Barry Song <[email protected]> | |
799 | L: [email protected] (moderated for non-subscribers) | |
85529d14 | 800 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
801 | S: Maintained |
802 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
803 | F: drivers/dma/sirf-dma.c |
804 | F: drivers/i2c/busses/i2c-sirf.c | |
b3b665b0 | 805 | F: drivers/mmc/host/sdhci-sirf.c |
47ac3e44 BS |
806 | F: drivers/pinctrl/pinctrl-sirf.c |
807 | F: drivers/spi/spi-sirf.c | |
a990cbd8 | 808 | |
d4275354 | 809 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 810 | M: Russell King <[email protected]> |
efc03ecb | 811 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
812 | W: http://www.arm.linux.org.uk/ |
813 | S: Maintained | |
814 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 815 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 816 | |
a9da4f7e | 817 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
818 | M: Daniel Ribeiro <[email protected]> |
819 | M: Stefan Schmidt <[email protected]> | |
820 | M: Harald Welte <[email protected]> | |
d66f1886 | 821 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
822 | W: http://www.openezx.org/ |
823 | S: Maintained | |
cafc2265 SS |
824 | T: topgit git://git.openezx.org/openezx.git |
825 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 826 | |
6a915af9 | 827 | ARM/FARADAY FA526 PORT |
162500b3 | 828 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 829 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 830 | S: Maintained |
1fa7e547 | 831 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 832 | F: arch/arm/mm/*-fa* |
6a915af9 | 833 | |
d4275354 | 834 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 835 | M: Russell King <[email protected]> |
efc03ecb | 836 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
837 | W: http://www.arm.linux.org.uk/ |
838 | S: Maintained | |
839 | F: arch/arm/include/asm/hardware/dec21285.h | |
840 | F: arch/arm/mach-footbridge/ | |
841 | ||
86183a5f | 842 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 843 | M: Sascha Hauer <[email protected]> |
efc03ecb | 844 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 845 | S: Maintained |
1fa7e547 | 846 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 847 | F: arch/arm/mach-imx/ |
e5dafa22 | 848 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 849 | |
8bcb9765 SG |
850 | ARM/FREESCALE IMX6 |
851 | M: Shawn Guo <[email protected]> | |
852 | L: [email protected] (moderated for non-subscribers) | |
853 | S: Maintained | |
854 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
855 | F: arch/arm/mach-imx/*imx6* | |
856 | ||
a9866a09 SG |
857 | ARM/FREESCALE MXS ARM ARCHITECTURE |
858 | M: Shawn Guo <[email protected]> | |
859 | L: [email protected] (moderated for non-subscribers) | |
860 | S: Maintained | |
861 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
862 | F: arch/arm/mach-mxs/ | |
863 | ||
2b7a52a4 | 864 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 865 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 866 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
867 | S: Maintained |
868 | ||
90b8fc34 | 869 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 870 | M: Steve Sakoman <[email protected]> |
efc03ecb | 871 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
872 | S: Maintained |
873 | ||
ef47d5f0 | 874 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 875 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
876 | M: Paul Parsons <[email protected]> |
877 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
878 | S: Maintained |
879 | F: arch/arm/mach-pxa/hx4700.c | |
880 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 881 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 882 | |
21f37bc3 | 883 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 884 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
885 | W: www.jlime.com |
886 | S: Maintained | |
084bad91 KE |
887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
888 | F: arch/arm/mach-sa1100/jornada720.c | |
889 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 890 | |
5e767ab9 JMC |
891 | ARM/IGEP MACHINE SUPPORT |
892 | M: Enric Balletbo i Serra <[email protected]> | |
893 | M: Javier Martinez Canillas <[email protected]> | |
894 | L: [email protected] | |
895 | L: [email protected] (moderated for non-subscribers) | |
896 | S: Maintained | |
897 | F: arch/arm/mach-omap2/board-igep0020.c | |
898 | ||
403d2971 MV |
899 | ARM/INCOME PXA270 SUPPORT |
900 | M: Marek Vasut <[email protected]> | |
901 | L: [email protected] (moderated for non-subscribers) | |
902 | S: Maintained | |
ec154082 | 903 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 904 | |
2b7a52a4 | 905 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 906 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 907 | M: Dan Williams <[email protected]> |
efc03ecb | 908 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 909 | S: Maintained |
e2bdb176 DW |
910 | |
911 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
1dd8372d | 912 | M: Dan Williams <[email protected]> |
efc03ecb | 913 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 914 | S: Maintained |
2b7a52a4 LB |
915 | |
916 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 917 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 918 | M: Dan Williams <[email protected]> |
efc03ecb | 919 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 920 | S: Maintained |
2b7a52a4 LB |
921 | |
922 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 923 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 924 | M: Dan Williams <[email protected]> |
efc03ecb | 925 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 926 | S: Maintained |
2b7a52a4 | 927 | |
2b7a52a4 | 928 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 929 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 930 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
931 | S: Maintained |
932 | ||
dfdd8cc9 KH |
933 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
934 | M: Imre Kaloz <[email protected]> | |
935 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 936 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
937 | S: Maintained |
938 | F: arch/arm/mach-ixp4xx/ | |
939 | ||
838553c5 | 940 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
941 | M: Jonathan Cameron <[email protected]> |
942 | L: [email protected] (moderated for non-subscribers) | |
943 | S: Maintained | |
944 | F: arch/arm/mach-pxa/stargate2.c | |
945 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
946 | ||
2b7a52a4 | 947 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 948 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 949 | M: Dan Williams <[email protected]> |
efc03ecb | 950 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 951 | S: Maintained |
2b7a52a4 LB |
952 | |
953 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 954 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 955 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
956 | S: Maintained |
957 | ||
958 | ARM/LOGICPD PXA270 MACHINE SUPPORT | |
8b58be88 | 959 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 960 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
961 | S: Maintained |
962 | ||
3b886171 | 963 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 964 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
965 | S: Maintained |
966 | ||
75f41273 TP |
967 | ARM/Marvell Armada 370 and Armada XP SOC support |
968 | M: Jason Cooper <[email protected]> | |
969 | M: Andrew Lunn <[email protected]> | |
970 | M: Gregory Clement <[email protected]> | |
971 | L: [email protected] (moderated for non-subscribers) | |
972 | S: Maintained | |
973 | F: arch/arm/mach-mvebu/ | |
974 | ||
4f1312b0 NP |
975 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
976 | M: Jason Cooper <[email protected]> | |
977 | M: Andrew Lunn <[email protected]> | |
efc03ecb | 978 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
979 | S: Maintained |
980 | F: arch/arm/mach-dove/ | |
54a246ff NP |
981 | F: arch/arm/mach-kirkwood/ |
982 | F: arch/arm/mach-mv78xx0/ | |
983 | F: arch/arm/mach-orion5x/ | |
984 | F: arch/arm/plat-orion/ | |
3b886171 | 985 | |
d69ac131 AC |
986 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
987 | M: Alexander Clouter <[email protected]> | |
988 | L: [email protected] (moderated for non-subscribers) | |
989 | W: http://www.digriz.org.uk/ts78xx/kernel | |
990 | S: Maintained | |
991 | F: arch/arm/mach-orion5x/ts78xx-* | |
992 | ||
adcb079f AB |
993 | ARM/MICREL KS8695 ARCHITECTURE |
994 | M: Greg Ungerer <[email protected]> | |
995 | L: [email protected] (moderated for non-subscribers) | |
996 | F: arch/arm/mach-ks8695 | |
997 | S: Odd Fixes | |
998 | ||
d78ff0a5 | 999 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1000 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1001 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1002 | F: arch/arm/mach-pxa/mioa701.c |
1003 | S: Maintained | |
1004 | ||
9624dfe6 | 1005 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1006 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1007 | S: Maintained |
1008 | ||
e0ee9851 | 1009 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1010 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1011 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1012 | M: STEricsson <[email protected]> |
1013 | L: [email protected] (moderated for non-subscribers) | |
1014 | S: Maintained | |
1015 | F: arch/arm/mach-nomadik/ | |
1016 | F: arch/arm/plat-nomadik/ | |
87572880 | 1017 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1019 | |
9d76295a | 1020 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1021 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1022 | L: [email protected] (subscribers-only) |
1023 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1024 | S: Supported | |
1025 | ||
0c19d21e DW |
1026 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1027 | M: David Brown <[email protected]> | |
b4c9bfab | 1028 | M: Daniel Walker <[email protected]> |
0c19d21e | 1029 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1030 | L: [email protected] |
0c19d21e DW |
1031 | F: arch/arm/mach-msm/ |
1032 | F: drivers/video/msm/ | |
1033 | F: drivers/mmc/host/msm_sdcc.c | |
1034 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1035 | F: drivers/tty/serial/msm_serial.h |
1036 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1037 | F: drivers/*/pm8???-* |
cd9a8fb5 | 1038 | F: drivers/ssbi/ |
ea91db52 | 1039 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1040 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1041 | S: Maintained |
1042 | ||
8459c159 | 1043 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1044 | M: Dmitry Eremin-Solenikov <[email protected]> |
1045 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1046 | S: Maintained |
1047 | ||
5d783a2d | 1048 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1049 | M: Marek Vasut <[email protected]> |
75280787 | 1050 | L: [email protected] |
b5e4ad57 MV |
1051 | W: http://hackndev.com |
1052 | S: Maintained | |
933d35f0 JP |
1053 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1054 | F: arch/arm/mach-pxa/palmtx.c | |
1055 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1056 | F: arch/arm/mach-pxa/palmt5.c | |
1057 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1058 | F: arch/arm/mach-pxa/palmld.c | |
1059 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1060 | F: arch/arm/mach-pxa/palmte2.c | |
1061 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1062 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1063 | |
b57fe924 | 1064 | ARM/PALM TREO SUPPORT |
8b58be88 | 1065 | M: Tomas Cech <[email protected]> |
75280787 | 1066 | L: [email protected] |
90af5811 TSC |
1067 | W: http://hackndev.com |
1068 | S: Maintained | |
b57fe924 JP |
1069 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1070 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1071 | |
c49e1e63 | 1072 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1073 | M: Sergey Lapin <[email protected]> |
75280787 | 1074 | L: [email protected] |
7d2c86b5 JP |
1075 | W: http://hackndev.com |
1076 | S: Maintained | |
933d35f0 JP |
1077 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1078 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1079 | |
1da177e4 | 1080 | ARM/PLEB SUPPORT |
8b58be88 | 1081 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1082 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1083 | S: Maintained | |
1084 | ||
1085 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1086 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1087 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1088 | W: http://www.arm.linux.org.uk/ |
1089 | S: Maintained | |
1090 | ||
2b7a52a4 | 1091 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1092 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1093 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1094 | S: Maintained |
1095 | ||
d4275354 | 1096 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1097 | M: Russell King <[email protected]> |
efc03ecb | 1098 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1099 | W: http://www.arm.linux.org.uk/ |
1100 | S: Maintained | |
d4275354 RK |
1101 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1102 | F: arch/arm/include/asm/hardware/ioc.h | |
1103 | F: arch/arm/include/asm/hardware/iomd.h | |
1104 | F: arch/arm/include/asm/hardware/memc.h | |
1105 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1106 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1107 | F: drivers/net/ethernet/i825xx/ether1* |
1108 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1109 | F: drivers/scsi/arm/ |
1110 | ||
1da177e4 | 1111 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1112 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
1113 | W: http://www.shark-linux.de/shark.html |
1114 | S: Maintained | |
1115 | ||
b21477f9 | 1116 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1117 | M: Ben Dooks <[email protected]> |
482ce512 | 1118 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1119 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1120 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1121 | W: http://www.fluff.org/ben/linux/ |
1122 | S: Maintained | |
482ce512 | 1123 | F: arch/arm/plat-samsung/ |
b21477f9 | 1124 | F: arch/arm/plat-s3c24xx/ |
769bbb63 HS |
1125 | F: arch/arm/mach-s3c24*/ |
1126 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1127 | F: drivers/*/*s3c2410* |
1128 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1129 | F: drivers/spi/spi-s3c* |
1130 | F: sound/soc/samsung/* | |
1da177e4 | 1131 | |
0dcecae2 | 1132 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1133 | M: Kukjin Kim <[email protected]> |
1134 | L: [email protected] (moderated for non-subscribers) | |
1135 | L: [email protected] (moderated for non-subscribers) | |
1136 | S: Maintained | |
1137 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1138 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1139 | N: exynos |
f556cb07 | 1140 | |
10ffa964 KP |
1141 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1142 | M: Kyungmin Park <[email protected]> | |
1143 | L: [email protected] (moderated for non-subscribers) | |
1144 | S: Maintained | |
1145 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1146 | F: arch/arm/mach-s5pv210/mach-goni.c | |
38f1b4c5 JP |
1147 | F: arch/arm/mach-exynos/mach-universal_c210.c |
1148 | F: arch/arm/mach-exynos/mach-nuri.c | |
10ffa964 | 1149 | |
3ce4ccb6 KD |
1150 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1151 | M: Kyungmin Park <[email protected]> | |
1152 | M: Kamil Debski <[email protected]> | |
1153 | L: [email protected] | |
1154 | L: [email protected] | |
1155 | S: Maintained | |
1156 | F: drivers/media/platform/s5p-g2d/ | |
1157 | ||
aaac7d9e KP |
1158 | ARM/SAMSUNG S5P SERIES FIMC SUPPORT |
1159 | M: Kyungmin Park <[email protected]> | |
1160 | M: Sylwester Nawrocki <[email protected]> | |
1161 | L: [email protected] | |
1162 | L: [email protected] | |
1163 | S: Maintained | |
aaac7d9e | 1164 | F: arch/arm/plat-samsung/include/plat/*fimc* |
90d72ac6 | 1165 | F: drivers/media/platform/s5p-fimc/ |
aaac7d9e | 1166 | |
e6a476fd MS |
1167 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1168 | M: Kyungmin Park <[email protected]> | |
1169 | M: Kamil Debski <[email protected]> | |
6305902c | 1170 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1171 | L: [email protected] |
1172 | L: [email protected] | |
1173 | S: Maintained | |
934455d7 | 1174 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1175 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1176 | |
1177 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1178 | M: Kyungmin Park <[email protected]> | |
1179 | M: Tomasz Stanislawski <[email protected]> | |
1180 | L: [email protected] | |
1181 | L: [email protected] | |
1182 | S: Maintained | |
90d72ac6 | 1183 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1184 | |
d48d38e8 | 1185 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1186 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1187 | M: Magnus Damm <[email protected]> |
1188 | L: [email protected] | |
d48d38e8 | 1189 | W: http://oss.renesas.com |
bbff48f5 | 1190 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1191 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1192 | S: Supported |
1193 | F: arch/arm/mach-shmobile/ | |
1194 | F: drivers/sh/ | |
1195 | ||
66314223 DN |
1196 | ARM/SOCFPGA ARCHITECTURE |
1197 | M: Dinh Nguyen <[email protected]> | |
1198 | S: Maintained | |
1199 | F: arch/arm/mach-socfpga/ | |
1200 | ||
1201 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1202 | M: Dinh Nguyen <[email protected]> | |
1203 | S: Maintained | |
1204 | F: drivers/clk/socfpga/ | |
1205 | ||
65ebcc11 SK |
1206 | ARM/STI ARCHITECTURE |
1207 | M: Srinivas Kandagatla <[email protected]> | |
1208 | M: Stuart Menefy <[email protected]> | |
1209 | L: [email protected] (moderated for non-subscribers) | |
1210 | L: [email protected] | |
1211 | W: http://www.stlinux.com | |
1212 | S: Maintained | |
1213 | F: arch/arm/mach-sti/ | |
1214 | ||
2b7a52a4 | 1215 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1216 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1217 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1218 | S: Maintained |
1219 | ||
1bbd7089 | 1220 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1221 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1222 | L: [email protected] (moderated for non-subscribers) |
1223 | S: Maintained | |
1224 | ||
2b7a52a4 | 1225 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1226 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1227 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1228 | S: Maintained |
1229 | ||
98ad6e3b | 1230 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1231 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1232 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1233 | W: http://www.mcuos.com |
1234 | S: Maintained | |
4e89e8f6 | 1235 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1236 | F: drivers/input/keyboard/w90p910_keypad.c |
1237 | F: drivers/input/touchscreen/w90p910_ts.c | |
1238 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1239 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1240 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1241 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1242 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1243 | F: drivers/usb/host/ehci-w90x900.c |
1244 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1245 | |
54274d71 | 1246 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1247 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1248 | L: [email protected] (moderated for non-subscribers) |
1249 | S: Supported | |
1250 | F: arch/arm/mach-u300/ | |
1251 | F: drivers/i2c/busses/i2c-stu300.c | |
1252 | F: drivers/rtc/rtc-coh901331.c | |
1253 | F: drivers/watchdog/coh901327_wdt.c | |
1254 | F: drivers/dma/coh901318* | |
87572880 LW |
1255 | F: drivers/mfd/ab3100* |
1256 | F: drivers/rtc/rtc-ab3100.c | |
1257 | F: drivers/rtc/rtc-coh901331.c | |
1258 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1259 | |
87572880 | 1260 | ARM/Ux500 ARM ARCHITECTURE |
870725d9 | 1261 | M: Srinidhi Kasagar <[email protected]> |
e4651a9f | 1262 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1263 | L: [email protected] (moderated for non-subscribers) |
1264 | S: Maintained | |
1265 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1266 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1267 | F: drivers/dma/ste_dma40* |
e4651a9f | 1268 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1269 | F: drivers/mfd/abx500* |
1270 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1271 | F: drivers/mfd/dbx500* |
1272 | F: drivers/mfd/db8500* | |
1273 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1274 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1275 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1277 | |
d4275354 | 1278 | ARM/VFP SUPPORT |
8b58be88 | 1279 | M: Russell King <[email protected]> |
efc03ecb | 1280 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1281 | W: http://www.arm.linux.org.uk/ |
1282 | S: Maintained | |
1283 | F: arch/arm/vfp/ | |
1284 | ||
e66b6d8e MV |
1285 | ARM/VOIPAC PXA270 SUPPORT |
1286 | M: Marek Vasut <[email protected]> | |
1287 | L: [email protected] (moderated for non-subscribers) | |
1288 | S: Maintained | |
1289 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1290 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1291 | |
04529fe2 TP |
1292 | ARM/VT8500 ARM ARCHITECTURE |
1293 | M: Tony Prisk <[email protected]> | |
1294 | L: [email protected] (moderated for non-subscribers) | |
1295 | S: Maintained | |
1296 | F: arch/arm/mach-vt8500/ | |
41fd91b4 TP |
1297 | F: drivers/clocksource/vt8500_timer.c |
1298 | F: drivers/gpio/gpio-vt8500.c | |
1299 | F: drivers/mmc/host/wmt-sdmmc.c | |
1300 | F: drivers/pwm/pwm-vt8500.c | |
1301 | F: drivers/rtc/rtc-vt8500.c | |
1302 | F: drivers/tty/serial/vt8500_serial.c | |
1303 | F: drivers/usb/host/ehci-vt8500.c | |
1304 | F: drivers/usb/host/uhci-platform.c | |
04529fe2 TP |
1305 | F: drivers/video/vt8500lcdfb.* |
1306 | F: drivers/video/wm8505fb* | |
1307 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1308 | |
e66b6d8e MV |
1309 | ARM/ZIPIT Z2 SUPPORT |
1310 | M: Marek Vasut <[email protected]> | |
1311 | L: [email protected] (moderated for non-subscribers) | |
1312 | S: Maintained | |
1313 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1314 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1315 | |
51f29d44 MS |
1316 | ARM/ZYNQ ARCHITECTURE |
1317 | M: Michal Simek <[email protected]> | |
1318 | L: [email protected] (moderated for non-subscribers) | |
1319 | W: http://wiki.xilinx.com | |
1320 | T: git git://git.xilinx.com/linux-xlnx.git | |
1321 | S: Supported | |
1322 | F: arch/arm/mach-zynq/ | |
1323 | ||
38074229 CM |
1324 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1325 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1326 | M: Will Deacon <[email protected]> |
38074229 CM |
1327 | L: [email protected] (moderated for non-subscribers) |
1328 | S: Maintained | |
1329 | F: arch/arm64/ | |
d19766ec | 1330 | F: Documentation/arm64/ |
38074229 | 1331 | |
9d7005f9 LP |
1332 | AS3645A LED FLASH CONTROLLER DRIVER |
1333 | M: Laurent Pinchart <[email protected]> | |
1334 | L: [email protected] | |
1335 | T: git git://linuxtv.org/media_tree.git | |
1336 | S: Maintained | |
1337 | F: drivers/media/i2c/as3645a.c | |
1338 | F: include/media/as3645a.h | |
1339 | ||
d58de038 GJ |
1340 | ASC7621 HARDWARE MONITOR DRIVER |
1341 | M: George Joseph <[email protected]> | |
1342 | L: [email protected] | |
1343 | S: Maintained | |
1344 | F: Documentation/hwmon/asc7621 | |
1345 | F: drivers/hwmon/asc7621.c | |
1346 | ||
b229ece9 | 1347 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1348 | M: Corentin Chary <[email protected]> |
1da177e4 | 1349 | L: [email protected] |
d0944853 | 1350 | L: [email protected] |
76593d6f | 1351 | W: http://acpi4asus.sf.net |
85091b71 | 1352 | S: Maintained |
b229ece9 CC |
1353 | F: drivers/platform/x86/asus*.c |
1354 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1355 | |
953a6479 | 1356 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1dd8372d | 1357 | M: Dan Williams <[email protected]> |
b3e5f263 | 1358 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1359 | S: Maintained |
679655da JP |
1360 | F: Documentation/crypto/async-tx-api.txt |
1361 | F: crypto/async_tx/ | |
1362 | F: drivers/dma/ | |
1363 | F: include/linux/dmaengine.h | |
1364 | F: include/linux/async_tx.h | |
b3e5f263 | 1365 | |
a1867d36 | 1366 | AT24 EEPROM DRIVER |
14d77c4d | 1367 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1368 | L: [email protected] |
1369 | S: Maintained | |
1370 | F: drivers/misc/eeprom/at24.c | |
1371 | F: include/linux/i2c/at24.h | |
1372 | ||
e7839f25 | 1373 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1374 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1375 | W: http://support.coraid.com/support/linux |
1da177e4 | 1376 | S: Supported |
679655da JP |
1377 | F: Documentation/aoe/ |
1378 | F: drivers/block/aoe/ | |
1da177e4 | 1379 | |
9a10a870 | 1380 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1381 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1382 | L: [email protected] |
1383 | S: Supported | |
1384 | F: drivers/net/wireless/ath/* | |
1385 | ||
fa1c114f | 1386 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1387 | M: Jiri Slaby <[email protected]> |
1388 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1389 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1390 | L: [email protected] |
1391 | L: [email protected] | |
72c706b7 | 1392 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1393 | S: Maintained |
fa451753 | 1394 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1395 | |
12e62d6f KV |
1396 | ATHEROS ATH6KL WIRELESS DRIVER |
1397 | M: Kalle Valo <[email protected]> | |
1398 | L: [email protected] | |
1399 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
1400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git | |
1401 | S: Supported | |
1402 | F: drivers/net/wireless/ath/ath6kl/ | |
1403 | ||
f078f209 | 1404 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1405 | M: "Luis R. Rodriguez" <[email protected]> |
1406 | M: Jouni Malinen <[email protected]> | |
1407 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1408 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1409 | L: [email protected] |
1410 | L: [email protected] | |
72c706b7 | 1411 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1412 | S: Supported |
fa451753 | 1413 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1414 | |
2be7d22f VK |
1415 | WILOCITY WIL6210 WIRELESS DRIVER |
1416 | M: Vladimir Kondratiev <[email protected]> | |
1417 | L: [email protected] | |
1418 | L: [email protected] | |
1419 | S: Supported | |
1420 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1421 | F: drivers/net/wireless/ath/wil6210/ | |
1422 | ||
1d7e1e6b CL |
1423 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1424 | M: Christian Lamparter <[email protected]> | |
1425 | L: [email protected] | |
1426 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1427 | S: Maintained | |
1428 | F: drivers/net/wireless/ath/carl9170/ | |
1429 | ||
2c2a6172 LT |
1430 | ATK0110 HWMON DRIVER |
1431 | M: Luca Tettamanti <[email protected]> | |
1432 | L: [email protected] | |
1433 | S: Maintained | |
1434 | F: drivers/hwmon/asus_atk0110.c | |
1435 | ||
6f69a6d7 | 1436 | ATI_REMOTE2 DRIVER |
8b58be88 | 1437 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1438 | S: Maintained |
679655da | 1439 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1440 | |
7ae115b4 | 1441 | ATLX ETHERNET DRIVERS |
8b58be88 | 1442 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1443 | M: Chris Snook <[email protected]> |
e443e383 | 1444 | L: [email protected] |
8d5ca6ec JC |
1445 | W: http://sourceforge.net/projects/atl1 |
1446 | W: http://atl1.sourceforge.net | |
1447 | S: Maintained | |
2b133ad6 | 1448 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1449 | |
1da177e4 | 1450 | ATM |
8b58be88 | 1451 | M: Chas Williams <[email protected]> |
476604de | 1452 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1453 | L: [email protected] |
1da177e4 LT |
1454 | W: http://linux-atm.sourceforge.net |
1455 | S: Maintained | |
679655da JP |
1456 | F: drivers/atm/ |
1457 | F: include/linux/atm* | |
c117ab84 | 1458 | F: include/uapi/linux/atm* |
1da177e4 | 1459 | |
04ac2f46 | 1460 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1461 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1462 | S: Maintained |
1463 | F: drivers/mmc/host/atmel-mci.c | |
1464 | F: drivers/mmc/host/atmel-mci-regs.h | |
1465 | ||
a1cfac48 | 1466 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1467 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1468 | S: Supported |
df621252 | 1469 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1470 | |
b414dc16 NF |
1471 | ATMEL DMA DRIVER |
1472 | M: Nicolas Ferre <[email protected]> | |
1473 | L: [email protected] (moderated for non-subscribers) | |
1474 | S: Supported | |
1475 | F: drivers/dma/at_hdmac.c | |
1476 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1477 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1478 | |
888f2804 LD |
1479 | ATMEL I2C DRIVER |
1480 | M: Ludovic Desroches <[email protected]> | |
1481 | L: [email protected] | |
1482 | S: Supported | |
1483 | F: drivers/i2c/busses/i2c-at91.c | |
1484 | ||
15515545 JW |
1485 | ATMEL ISI DRIVER |
1486 | M: Josh Wu <[email protected]> | |
1487 | L: [email protected] | |
1488 | S: Supported | |
f2294c2d | 1489 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1490 | F: include/media/atmel-isi.h |
1491 | ||
8f4c79ce | 1492 | ATMEL LCDFB DRIVER |
8b58be88 | 1493 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1494 | L: [email protected] |
8f4c79ce | 1495 | S: Maintained |
679655da JP |
1496 | F: drivers/video/atmel_lcdfb.c |
1497 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1498 | |
89e5785f | 1499 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1500 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1501 | S: Supported |
9f2f381f | 1502 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1503 | |
754ce4f2 | 1504 | ATMEL SPI DRIVER |
a02875a6 | 1505 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1506 | S: Supported |
9df92e6c | 1507 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1508 | |
e9cb1c5a NF |
1509 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1510 | M: Nicolas Ferre <[email protected]> | |
1511 | L: [email protected] (moderated for non-subscribers) | |
1512 | S: Supported | |
1513 | F: drivers/misc/atmel_tclib.c | |
1514 | F: drivers/clocksource/tcb_clksrc.c | |
1515 | ||
ff2675d6 JW |
1516 | ATMEL TSADCC DRIVER |
1517 | M: Josh Wu <[email protected]> | |
1518 | L: [email protected] | |
1519 | S: Supported | |
1520 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1521 | ||
914a3f3b | 1522 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1523 | M: Nicolas Ferre <[email protected]> |
1524 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1525 | S: Supported |
679655da | 1526 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1527 | |
1da177e4 | 1528 | ATMEL WIRELESS DRIVER |
8b58be88 | 1529 | M: Simon Kelley <[email protected]> |
724c6b35 | 1530 | L: [email protected] |
1da177e4 LT |
1531 | W: http://www.thekelleys.org.uk/atmel |
1532 | W: http://atmelwlandriver.sourceforge.net/ | |
1533 | S: Maintained | |
679655da | 1534 | F: drivers/net/wireless/atmel* |
1da177e4 | 1535 | |
a92b7b80 | 1536 | AUDIT SUBSYSTEM |
8b58be88 JP |
1537 | M: Al Viro <[email protected]> |
1538 | M: Eric Paris <[email protected]> | |
b9a06207 | 1539 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1540 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1542 | S: Maintained |
679655da | 1543 | F: include/linux/audit.h |
c117ab84 | 1544 | F: include/uapi/linux/audit.h |
679655da | 1545 | F: kernel/audit* |
a92b7b80 | 1546 | |
70e84049 | 1547 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1548 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1549 | W: http://miguelojeda.es/auxdisplay.htm |
1550 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1551 | S: Maintained |
679655da JP |
1552 | F: drivers/auxdisplay/ |
1553 | F: include/linux/cfag12864b.h | |
70e84049 | 1554 | |
5f97f7f9 | 1555 | AVR32 ARCHITECTURE |
e336f61f HCE |
1556 | M: Haavard Skinnemoen <[email protected]> |
1557 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1558 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1559 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1560 | W: http://avrfreaks.net/ |
e336f61f | 1561 | S: Maintained |
679655da | 1562 | F: arch/avr32/ |
5f97f7f9 HS |
1563 | |
1564 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1565 | M: Haavard Skinnemoen <[email protected]> |
1566 | M: Hans-Christian Egtvedt <[email protected]> | |
1567 | S: Maintained | |
679655da | 1568 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1569 | |
1da177e4 | 1570 | AX.25 NETWORK LAYER |
8b58be88 | 1571 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1572 | L: [email protected] |
d34cb28a | 1573 | W: http://www.linux-ax25.org/ |
1da177e4 | 1574 | S: Maintained |
c117ab84 | 1575 | F: include/uapi/linux/ax25.h |
679655da JP |
1576 | F: include/net/ax25.h |
1577 | F: net/ax25/ | |
1da177e4 | 1578 | |
d5269395 MCC |
1579 | AZ6007 DVB DRIVER |
1580 | M: Mauro Carvalho Chehab <[email protected]> | |
1581 | L: [email protected] | |
1582 | W: http://linuxtv.org | |
1583 | T: git git://linuxtv.org/media_tree.git | |
1584 | S: Maintained | |
1585 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1586 | ||
6777376e HV |
1587 | AZTECH FM RADIO RECEIVER DRIVER |
1588 | M: Hans Verkuil <[email protected]> | |
1589 | L: [email protected] | |
1590 | T: git git://linuxtv.org/media_tree.git | |
1591 | W: http://linuxtv.org | |
1592 | S: Maintained | |
1593 | F: drivers/media/radio/radio-aztech* | |
1594 | ||
e2d1d6c0 | 1595 | B43 WIRELESS DRIVER |
8b58be88 | 1596 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1597 | L: [email protected] |
ed072f9e | 1598 | L: [email protected] |
491b26b4 | 1599 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1600 | S: Maintained |
679655da | 1601 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1602 | |
1603 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1604 | M: Larry Finger <[email protected]> |
1605 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1606 | L: [email protected] |
ed072f9e | 1607 | L: [email protected] |
491b26b4 | 1608 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1609 | S: Maintained |
679655da | 1610 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1611 | |
300abeb5 | 1612 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1613 | M: Richard Purdie <[email protected]> |
6212de88 | 1614 | M: Jingoo Han <[email protected]> |
300abeb5 | 1615 | S: Maintained |
679655da JP |
1616 | F: drivers/video/backlight/ |
1617 | F: include/linux/backlight.h | |
300abeb5 | 1618 | |
c6c8fea2 SE |
1619 | BATMAN ADVANCED |
1620 | M: Marek Lindner <[email protected]> | |
1621 | M: Simon Wunderlich <[email protected]> | |
cf9ab887 | 1622 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1623 | L: [email protected] |
1624 | W: http://www.open-mesh.org/ | |
1625 | S: Maintained | |
1626 | F: net/batman-adv/ | |
1627 | ||
e2d1d6c0 | 1628 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1629 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1630 | L: [email protected] |
1631 | W: http://www.baycom.org/~tom/ham/ham.html | |
1632 | S: Maintained | |
679655da | 1633 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1634 | |
cafe5635 KO |
1635 | BCACHE (BLOCK LAYER CACHE) |
1636 | M: Kent Overstreet <[email protected]> | |
1637 | L: [email protected] | |
1638 | W: http://bcache.evilpiepirate.org | |
1639 | S: Maintained: | |
1640 | F: drivers/md/bcache/ | |
1641 | ||
e2d1d6c0 | 1642 | BEFS FILE SYSTEM |
55817d3d | 1643 | S: Orphan |
679655da JP |
1644 | F: Documentation/filesystems/befs.txt |
1645 | F: fs/befs/ | |
e2d1d6c0 RD |
1646 | |
1647 | BFS FILE SYSTEM | |
8b58be88 | 1648 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1649 | S: Maintained |
679655da JP |
1650 | F: Documentation/filesystems/bfs.txt |
1651 | F: fs/bfs/ | |
c117ab84 | 1652 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1653 | |
1394f032 | 1654 | BLACKFIN ARCHITECTURE |
8b58be88 | 1655 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1656 | L: [email protected] |
e3b2d3f3 BW |
1657 | W: http://blackfin.uclinux.org |
1658 | S: Supported | |
679655da | 1659 | F: arch/blackfin/ |
566da5b2 | 1660 | |
e190d6b1 | 1661 | BLACKFIN EMAC DRIVER |
49afa609 | 1662 | L: [email protected] |
e190d6b1 BW |
1663 | W: http://blackfin.uclinux.org |
1664 | S: Supported | |
7b35f033 | 1665 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1666 | |
566da5b2 | 1667 | BLACKFIN RTC DRIVER |
8b58be88 | 1668 | M: Mike Frysinger <[email protected]> |
49afa609 | 1669 | L: [email protected] |
566da5b2 MF |
1670 | W: http://blackfin.uclinux.org |
1671 | S: Supported | |
679655da | 1672 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1673 | |
936ed49a | 1674 | BLACKFIN SDH DRIVER |
109ec8c3 | 1675 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1676 | L: [email protected] |
1677 | W: http://blackfin.uclinux.org | |
1678 | S: Supported | |
1679 | F: drivers/mmc/host/bfin_sdh.c | |
1680 | ||
1394f032 | 1681 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1682 | M: Sonic Zhang <[email protected]> |
49afa609 | 1683 | L: [email protected] |
e3b2d3f3 BW |
1684 | W: http://blackfin.uclinux.org |
1685 | S: Supported | |
8460241e | 1686 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1687 | |
1e6d320f | 1688 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1689 | M: Mike Frysinger <[email protected]> |
49afa609 | 1690 | L: [email protected] |
1e6d320f BW |
1691 | W: http://blackfin.uclinux.org |
1692 | S: Supported | |
679655da | 1693 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1694 | |
d24ecfcc | 1695 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1696 | M: Sonic Zhang <[email protected]> |
49afa609 | 1697 | L: [email protected] |
d24ecfcc BW |
1698 | W: http://blackfin.uclinux.org/ |
1699 | S: Supported | |
679655da | 1700 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1701 | |
1e204377 SJ |
1702 | BLACKFIN MEDIA DRIVER |
1703 | M: Scott Jiang <[email protected]> | |
1704 | L: [email protected] | |
1705 | W: http://blackfin.uclinux.org/ | |
1706 | S: Supported | |
1707 | F: drivers/media/platform/blackfin/ | |
1708 | F: drivers/media/i2c/adv7183* | |
1709 | F: drivers/media/i2c/vs6624* | |
1710 | ||
b54cf35a JSM |
1711 | BLINKM RGB LED DRIVER |
1712 | M: Jan-Simon Moeller <[email protected]> | |
1713 | S: Maintained | |
1714 | F: drivers/leds/leds-blinkm.c | |
1715 | ||
1da177e4 | 1716 | BLOCK LAYER |
8b58be88 | 1717 | M: Jens Axboe <[email protected]> |
08deed1e | 1718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1719 | S: Maintained |
679655da | 1720 | F: block/ |
1da177e4 | 1721 | |
2b54aaef | 1722 | BLOCK2MTD DRIVER |
8b58be88 | 1723 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1724 | L: [email protected] |
1725 | S: Maintained | |
679655da | 1726 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1727 | |
63fbd24e | 1728 | BLUETOOTH DRIVERS |
8b58be88 | 1729 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1730 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1731 | M: Johan Hedberg <[email protected]> |
781c2844 | 1732 | L: [email protected] |
63fbd24e | 1733 | W: http://www.bluez.org/ |
22e7a424 MH |
1734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1736 | S: Maintained |
679655da | 1737 | F: drivers/bluetooth/ |
1da177e4 | 1738 | |
63fbd24e | 1739 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1740 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1741 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1742 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1743 | L: [email protected] |
1744 | W: http://www.bluez.org/ | |
22e7a424 MH |
1745 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1746 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1747 | S: Maintained |
679655da JP |
1748 | F: net/bluetooth/ |
1749 | F: include/net/bluetooth/ | |
1da177e4 LT |
1750 | |
1751 | BONDING DRIVER | |
8b58be88 | 1752 | M: Jay Vosburgh <[email protected]> |
4cd72c6e | 1753 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1754 | L: [email protected] |
ce00f85c JC |
1755 | W: http://sourceforge.net/projects/bonding/ |
1756 | S: Supported | |
679655da | 1757 | F: drivers/net/bonding/ |
c117ab84 | 1758 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1759 | |
39105890 | 1760 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1761 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1762 | L: [email protected] |
1763 | S: Supported | |
adfc5217 | 1764 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1765 | |
948c51e6 | 1766 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1767 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1768 | L: [email protected] |
1769 | S: Supported | |
adfc5217 JK |
1770 | F: drivers/net/ethernet/broadcom/bnx2.* |
1771 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1772 | |
4d9d2cb0 | 1773 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1774 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1775 | L: [email protected] |
1776 | S: Supported | |
adfc5217 | 1777 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1778 | |
f680f25c SW |
1779 | BROADCOM BCM2835 ARM ARCHICTURE |
1780 | M: Stephen Warren <[email protected]> | |
1781 | L: [email protected] (moderated for non-subscribers) | |
1782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1783 | S: Maintained | |
1784 | F: arch/arm/mach-bcm2835/ | |
1785 | F: arch/arm/boot/dts/bcm2835* | |
1786 | F: arch/arm/configs/bcm2835_defconfig | |
1787 | F: drivers/*/*bcm2835* | |
1788 | ||
948c51e6 | 1789 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1790 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1791 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1792 | L: [email protected] |
1793 | S: Supported | |
adfc5217 | 1794 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1795 | |
a9533e7e HP |
1796 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1797 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1798 | M: Arend van Spriel <[email protected]> |
85d63686 | 1799 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1800 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1801 | L: [email protected] |
5615171c | 1802 | L: [email protected] |
a9533e7e | 1803 | S: Supported |
f62ebdd5 | 1804 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1805 | |
9958d6f9 BPG |
1806 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1807 | M: Bhanu Prakash Gollapudi <[email protected]> | |
1808 | L: [email protected] | |
1809 | S: Supported | |
1810 | F: drivers/scsi/bnx2fc/ | |
1811 | ||
c9678d86 RM |
1812 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1813 | M: Rafał Miłecki <[email protected]> | |
1814 | L: [email protected] | |
1815 | S: Maintained | |
1816 | F: drivers/bcma/ | |
1817 | F: include/linux/bcma/ | |
1818 | ||
7725ccfd | 1819 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1820 | M: Anil Gurumurthy <[email protected]> |
1821 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1822 | L: [email protected] |
1823 | S: Supported | |
1824 | F: drivers/scsi/bfa/ | |
7725ccfd | 1825 | |
8b230ed8 RM |
1826 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1827 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1828 | L: [email protected] |
1829 | S: Supported | |
f844a0ea | 1830 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1831 | |
5cdf7f76 | 1832 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1833 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1834 | L: [email protected] |
1835 | S: Supported | |
679655da JP |
1836 | F: block/bsg.c |
1837 | F: include/linux/bsg.h | |
c117ab84 | 1838 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1839 | |
af39917d CL |
1840 | BT87X AUDIO DRIVER |
1841 | M: Clemens Ladisch <[email protected]> | |
1842 | L: [email protected] (moderated for non-subscribers) | |
1843 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1844 | S: Maintained | |
1845 | F: Documentation/sound/alsa/Bt87x.txt | |
1846 | F: sound/pci/bt87x.c | |
1847 | ||
ff1d5c2f | 1848 | BT8XXGPIO DRIVER |
eb032b98 | 1849 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1850 | W: http://bu3sch.de/btgpio.php |
1851 | S: Maintained | |
72dbb705 | 1852 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1853 | |
eb1eb04f | 1854 | BTRFS FILE SYSTEM |
9c106405 | 1855 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1856 | L: [email protected] |
1857 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1858 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1860 | S: Maintained |
679655da JP |
1861 | F: Documentation/filesystems/btrfs.txt |
1862 | F: fs/btrfs/ | |
eb1eb04f | 1863 | |
1da177e4 | 1864 | BTTV VIDEO4LINUX DRIVER |
275ffde4 | 1865 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1866 | L: [email protected] |
96b6aba0 | 1867 | W: http://linuxtv.org |
275ffde4 | 1868 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1869 | S: Odd fixes |
679655da | 1870 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1871 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1872 | |
af39917d CL |
1873 | C-MEDIA CMI8788 DRIVER |
1874 | M: Clemens Ladisch <[email protected]> | |
1875 | L: [email protected] (moderated for non-subscribers) | |
1876 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1877 | S: Maintained | |
1878 | F: sound/pci/oxygen/ | |
1879 | ||
2141355f MS |
1880 | C6X ARCHITECTURE |
1881 | M: Mark Salter <[email protected]> | |
1882 | M: Aurelien Jacquiot <[email protected]> | |
1883 | L: [email protected] | |
1884 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1885 | S: Maintained | |
1886 | F: arch/c6x/ | |
1887 | ||
a5432f5a | 1888 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1889 | M: David Howells <[email protected]> |
a5432f5a DH |
1890 | L: [email protected] |
1891 | S: Supported | |
1892 | F: Documentation/filesystems/caching/cachefiles.txt | |
1893 | F: fs/cachefiles/ | |
1894 | ||
c815ca39 HV |
1895 | CADET FM/AM RADIO RECEIVER DRIVER |
1896 | M: Hans Verkuil <[email protected]> | |
1897 | L: [email protected] | |
1898 | T: git git://linuxtv.org/media_tree.git | |
1899 | W: http://linuxtv.org | |
1900 | S: Maintained | |
1901 | F: drivers/media/radio/radio-cadet* | |
1902 | ||
77d5140f | 1903 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1904 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1905 | L: [email protected] |
275ffde4 | 1906 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1907 | S: Maintained |
679655da | 1908 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1909 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1910 | |
201b6bab | 1911 | CAIF NETWORK LAYER |
5c574f50 | 1912 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
1913 | L: [email protected] |
1914 | S: Supported | |
1915 | F: Documentation/networking/caif/ | |
1916 | F: drivers/net/caif/ | |
c117ab84 | 1917 | F: include/uapi/linux/caif/ |
201b6bab JP |
1918 | F: include/net/caif/ |
1919 | F: net/caif/ | |
1920 | ||
77dac90f | 1921 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1922 | M: Muli Ben-Yehuda <[email protected]> |
1923 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1924 | L: [email protected] |
1925 | S: Maintained | |
679655da JP |
1926 | F: arch/x86/kernel/pci-calgary_64.c |
1927 | F: arch/x86/kernel/tce_64.c | |
1928 | F: arch/x86/include/asm/calgary.h | |
1929 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1930 | |
e2d1d6c0 | 1931 | CAN NETWORK LAYER |
8d15d386 | 1932 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 1933 | L: [email protected] |
ec78213a | 1934 | W: http://gitorious.org/linux-can |
405cc273 | 1935 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1936 | S: Maintained |
8d15d386 | 1937 | F: net/can/ |
8d15d386 | 1938 | F: include/linux/can/core.h |
c117ab84 CEB |
1939 | F: include/uapi/linux/can.h |
1940 | F: include/uapi/linux/can/bcm.h | |
1941 | F: include/uapi/linux/can/raw.h | |
1942 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 1943 | |
4261a204 | 1944 | CAN NETWORK DRIVERS |
8b58be88 | 1945 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 1946 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 1947 | L: [email protected] |
ec78213a | 1948 | W: http://gitorious.org/linux-can |
405cc273 | 1949 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 1950 | S: Maintained |
8d15d386 OH |
1951 | F: drivers/net/can/ |
1952 | F: include/linux/can/dev.h | |
8d15d386 | 1953 | F: include/linux/can/platform/ |
c117ab84 CEB |
1954 | F: include/uapi/linux/can/error.h |
1955 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 1956 | |
95d16c72 JM |
1957 | CAPABILITIES |
1958 | M: Serge Hallyn <[email protected]> | |
1959 | L: [email protected] | |
6305902c | 1960 | S: Supported |
95d16c72 | 1961 | F: include/linux/capability.h |
c117ab84 | 1962 | F: include/uapi/linux/capability.h |
95d16c72 | 1963 | F: security/capability.c |
6305902c | 1964 | F: security/commoncap.c |
38a94118 | 1965 | F: kernel/capability.c |
95d16c72 | 1966 | |
b8154542 | 1967 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1968 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
1969 | L: [email protected] |
1970 | L: [email protected] | |
b8154542 AB |
1971 | W: http://www.ibm.com/developerworks/power/cell/ |
1972 | S: Supported | |
679655da | 1973 | F: arch/powerpc/include/asm/cell*.h |
679655da | 1974 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 1975 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
1976 | F: arch/powerpc/oprofile/*cell* |
1977 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1978 | |
9030aaf9 | 1979 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 1980 | M: Sage Weil <[email protected]> |
82593f87 | 1981 | L: [email protected] |
09d90327 | 1982 | W: http://ceph.com/ |
fb99f881 | 1983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
1984 | S: Supported |
1985 | F: Documentation/filesystems/ceph.txt | |
1986 | F: fs/ceph | |
3d14c5d2 YS |
1987 | F: net/ceph |
1988 | F: include/linux/ceph | |
09d90327 | 1989 | F: include/linux/crush |
9030aaf9 | 1990 | |
18332a80 | 1991 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 1992 | L: [email protected] |
10c6c9c9 | 1993 | S: Orphan |
679655da JP |
1994 | F: Documentation/usb/WUSB-Design-overview.txt |
1995 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
1996 | F: drivers/usb/host/hwa-hc.c |
1997 | F: drivers/usb/host/whci/ | |
679655da JP |
1998 | F: drivers/usb/wusbcore/ |
1999 | F: include/linux/usb/wusb* | |
18332a80 | 2000 | |
70e84049 | 2001 | CFAG12864B LCD DRIVER |
8b58be88 | 2002 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2003 | W: http://miguelojeda.es/auxdisplay.htm |
2004 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2005 | S: Maintained |
679655da JP |
2006 | F: drivers/auxdisplay/cfag12864b.c |
2007 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2008 | |
2009 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2010 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2011 | W: http://miguelojeda.es/auxdisplay.htm |
2012 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2013 | S: Maintained |
679655da JP |
2014 | F: drivers/auxdisplay/cfag12864bfb.c |
2015 | F: include/linux/cfag12864b.h | |
70e84049 | 2016 | |
704232c2 | 2017 | CFG80211 and NL80211 |
8b58be88 | 2018 | M: Johannes Berg <[email protected]> |
704232c2 | 2019 | L: [email protected] |
ce466579 JB |
2020 | W: http://wireless.kernel.org/ |
2021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2023 | S: Maintained |
c117ab84 | 2024 | F: include/uapi/linux/nl80211.h |
679655da JP |
2025 | F: include/net/cfg80211.h |
2026 | F: net/wireless/* | |
2027 | X: net/wireless/wext* | |
704232c2 | 2028 | |
46e64261 GKH |
2029 | CHAR and MISC DRIVERS |
2030 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2031 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2032 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2033 | S: Supported |
46e64261 GKH |
2034 | F: drivers/char/* |
2035 | F: drivers/misc/* | |
2036 | ||
0a920b5b | 2037 | CHECKPATCH |
8b58be88 | 2038 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2039 | M: Joe Perches <[email protected]> |
2040 | S: Maintained | |
679655da | 2041 | F: scripts/checkpatch.pl |
0a920b5b | 2042 | |
f8407f26 HW |
2043 | CHINESE DOCUMENTATION |
2044 | M: Harry Wei <[email protected]> | |
9740153c | 2045 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2046 | L: [email protected] (moderated for non-subscribers) |
2047 | S: Maintained | |
2048 | F: Documentation/zh_CN/ | |
2049 | ||
2721ea2c AS |
2050 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2051 | M: Alexander Shishkin <[email protected]> | |
2052 | L: [email protected] | |
2053 | S: Maintained | |
2054 | F: drivers/usb/chipidea/ | |
2055 | ||
641cb85e | 2056 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2057 | M: Christian Benvenuti <[email protected]> |
641cb85e | 2058 | M: Roopa Prabhu <[email protected]> |
5c6652f5 NP |
2059 | M: Neel Patel <[email protected]> |
2060 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2061 | S: Supported |
a6a5580c | 2062 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2063 | |
2b7a52a4 | 2064 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2065 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2066 | L: [email protected] |
2067 | S: Maintained | |
57d0b7a0 | 2068 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2069 | |
2b7a52a4 | 2070 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2071 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2072 | L: [email protected] |
2b7a52a4 | 2073 | S: Maintained |
679655da | 2074 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2075 | |
d9e9d82c | 2076 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2077 | M: Timur Tabi <[email protected]> |
93711660 | 2078 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2079 | S: Odd Fixes |
679655da | 2080 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2081 | |
94574d9a KRW |
2082 | CLEANCACHE API |
2083 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2084 | L: [email protected] | |
2085 | S: Maintained | |
2086 | F: mm/cleancache.c | |
2087 | F: include/linux/cleancache.h | |
2088 | ||
d4275354 | 2089 | CLK API |
8b58be88 | 2090 | M: Russell King <[email protected]> |
37417046 | 2091 | S: Maintained |
d4275354 RK |
2092 | F: include/linux/clk.h |
2093 | ||
5df6d737 | 2094 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2095 | M: Hiral Patel <[email protected]> |
2096 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2097 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2098 | L: [email protected] |
2099 | S: Supported | |
2a99921a | 2100 | F: drivers/scsi/fnic/ |
5df6d737 | 2101 | |
529aa8cb TLSC |
2102 | CMPC ACPI DRIVER |
2103 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2104 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2105 | L: [email protected] |
529aa8cb TLSC |
2106 | S: Supported |
2107 | F: drivers/platform/x86/classmate-laptop.c | |
2108 | ||
74425eee | 2109 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2110 | M: Julia Lawall <[email protected]> |
74425eee | 2111 | M: Gilles Muller <[email protected]> |
26de9c26 NP |
2112 | M: Nicolas Palix <[email protected]> |
2113 | L: [email protected] (moderated for non-subscribers) | |
74425eee NP |
2114 | W: http://coccinelle.lip6.fr/ |
2115 | S: Supported | |
2116 | F: scripts/coccinelle/ | |
2117 | F: scripts/coccicheck | |
2118 | ||
1da177e4 | 2119 | CODA FILE SYSTEM |
8b58be88 | 2120 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2121 | M: [email protected] |
2122 | L: [email protected] | |
2123 | W: http://www.coda.cs.cmu.edu/ | |
2124 | S: Maintained | |
679655da JP |
2125 | F: Documentation/filesystems/coda.txt |
2126 | F: fs/coda/ | |
2127 | F: include/linux/coda*.h | |
c117ab84 | 2128 | F: include/uapi/linux/coda*.h |
1da177e4 | 2129 | |
7704addb | 2130 | COMMON CLK FRAMEWORK |
7704addb MT |
2131 | M: Mike Turquette <[email protected]> |
2132 | L: [email protected] (same as CLK API & CLKDEV) | |
2133 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2134 | S: Maintained | |
2135 | F: drivers/clk/clk.c | |
2136 | F: drivers/clk/clk-* | |
2137 | F: include/linux/clk-pr* | |
2138 | ||
e2d1d6c0 | 2139 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2140 | M: Steve French <[email protected]> |
51223df6 | 2141 | L: [email protected] |
d1f28953 | 2142 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2143 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2144 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2146 | S: Supported |
679655da JP |
2147 | F: Documentation/filesystems/cifs.txt |
2148 | F: fs/cifs/ | |
e2d1d6c0 | 2149 | |
1da177e4 | 2150 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2151 | M: Scott Murray <[email protected]> |
64dab204 | 2152 | L: [email protected] |
82c4dfc7 | 2153 | S: Maintained |
679655da | 2154 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2155 | |
2156 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2157 | M: Scott Murray <[email protected]> |
64dab204 | 2158 | L: [email protected] |
82c4dfc7 | 2159 | S: Maintained |
679655da | 2160 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2161 | |
2162 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2163 | M: Scott Murray <[email protected]> |
64dab204 | 2164 | L: [email protected] |
82c4dfc7 | 2165 | S: Maintained |
679655da | 2166 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2167 | |
5411552c | 2168 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2169 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2170 | L: [email protected] |
5411552c | 2171 | S: Maintained |
679655da | 2172 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2173 | |
949be0f7 | 2174 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2175 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2176 | L: [email protected] |
2177 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2178 | S: Maintained |
679655da | 2179 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2180 | |
e2d1d6c0 | 2181 | CONFIGFS |
d6351db2 JB |
2182 | M: Joel Becker <[email protected]> |
2183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2184 | S: Supported |
679655da JP |
2185 | F: fs/configfs/ |
2186 | F: include/linux/configfs.h | |
e2d1d6c0 | 2187 | |
acb9c1b2 | 2188 | CONNECTOR |
8b58be88 | 2189 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2190 | L: [email protected] |
2191 | S: Maintained | |
2192 | F: drivers/connector/ | |
2193 | ||
fb3a0fb6 | 2194 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2195 | M: Tejun Heo <[email protected]> |
ad50c159 | 2196 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2197 | L: [email protected] |
12340313 | 2198 | L: [email protected] |
860ca0e6 | 2199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2200 | S: Maintained |
679655da JP |
2201 | F: include/linux/cgroup* |
2202 | F: kernel/cgroup* | |
8ca739e3 | 2203 | F: mm/*cgroup* |
fb3a0fb6 | 2204 | |
bebe4678 | 2205 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2206 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2207 | L: [email protected] |
2208 | S: Maintained | |
679655da JP |
2209 | F: Documentation/hwmon/coretemp |
2210 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2211 | |
1da177e4 | 2212 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2213 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2214 | W: http://www.fi.muni.cz/~kas/cosa/ |
2215 | S: Maintained | |
679655da | 2216 | F: drivers/net/wan/cosa* |
1da177e4 | 2217 | |
4371ee35 | 2218 | CPMAC ETHERNET DRIVER |
8b58be88 | 2219 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2220 | L: [email protected] |
2221 | S: Maintained | |
b544dbac | 2222 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2223 | |
1da177e4 | 2224 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2225 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2226 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2227 | L: [email protected] |
a6c072c7 | 2228 | L: [email protected] |
1da177e4 | 2229 | S: Maintained |
45c009a9 | 2230 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
679655da JP |
2231 | F: drivers/cpufreq/ |
2232 | F: include/linux/cpufreq.h | |
1da177e4 | 2233 | |
8a67f0ef VK |
2234 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2235 | M: Viresh Kumar <[email protected]> | |
2236 | M: Sudeep KarkadaNagesha <[email protected]> | |
2237 | L: [email protected] | |
2238 | L: [email protected] | |
2239 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2240 | S: Maintained | |
2241 | F: drivers/cpufreq/arm_big_little.h | |
2242 | F: drivers/cpufreq/arm_big_little.c | |
2243 | F: drivers/cpufreq/arm_big_little_dt.c | |
2244 | ||
a8e39c35 DL |
2245 | CPUIDLE DRIVERS |
2246 | M: Rafael J. Wysocki <[email protected]> | |
2247 | M: Daniel Lezcano <[email protected]> | |
2248 | L: [email protected] | |
2249 | S: Maintained | |
2250 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2251 | F: drivers/cpuidle/* | |
2252 | F: include/linux/cpuidle.h | |
2253 | ||
1da177e4 | 2254 | CPUID/MSR DRIVER |
8b58be88 | 2255 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2256 | S: Maintained |
679655da JP |
2257 | F: arch/x86/kernel/cpuid.c |
2258 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2259 | |
7fe2f639 DB |
2260 | CPU POWER MONITORING SUBSYSTEM |
2261 | M: Dominik Brodowski <[email protected]> | |
2262 | M: Thomas Renninger <[email protected]> | |
2263 | S: Maintained | |
2264 | F: tools/power/cpupower | |
2265 | ||
ed90fb4a | 2266 | CPUSETS |
f47b89c7 | 2267 | M: Li Zefan <[email protected]> |
ed90fb4a | 2268 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2269 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2270 | S: Maintained |
679655da JP |
2271 | F: Documentation/cgroups/cpusets.txt |
2272 | F: include/linux/cpuset.h | |
2273 | F: kernel/cpuset.c | |
ed90fb4a | 2274 | |
1da177e4 | 2275 | CRAMFS FILESYSTEM |
ce00f85c JC |
2276 | W: http://sourceforge.net/projects/cramfs/ |
2277 | S: Orphan | |
679655da JP |
2278 | F: Documentation/filesystems/cramfs.txt |
2279 | F: fs/cramfs/ | |
1da177e4 LT |
2280 | |
2281 | CRIS PORT | |
8b58be88 JP |
2282 | M: Mikael Starvik <[email protected]> |
2283 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2284 | L: [email protected] |
1da177e4 LT |
2285 | W: http://developer.axis.com |
2286 | S: Maintained | |
679655da | 2287 | F: arch/cris/ |
df621252 | 2288 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2289 | |
2290 | CRYPTO API | |
8b58be88 JP |
2291 | M: Herbert Xu <[email protected]> |
2292 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2293 | L: [email protected] |
54e5881d | 2294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2295 | S: Maintained |
679655da JP |
2296 | F: Documentation/crypto/ |
2297 | F: arch/*/crypto/ | |
2298 | F: crypto/ | |
2299 | F: drivers/crypto/ | |
2300 | F: include/crypto/ | |
1da177e4 | 2301 | |
5b07bd57 | 2302 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2303 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2304 | L: [email protected] |
2305 | S: Maintained | |
51a2228a JP |
2306 | F: crypto/ansi_cprng.c |
2307 | F: crypto/rng.c | |
5b07bd57 | 2308 | |
9b4ffa48 | 2309 | CS5535 Audio ALSA driver |
8b58be88 | 2310 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2311 | S: Maintained |
679655da | 2312 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2313 | |
6d8425b1 | 2314 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2315 | M: Andy Walls <[email protected]> |
c4240509 | 2316 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2317 | L: [email protected] |
275ffde4 | 2318 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2319 | W: http://linuxtv.org |
30e10993 | 2320 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2321 | S: Maintained |
679655da | 2322 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2323 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2324 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2325 | |
3f101d91 HV |
2326 | CX2341X MPEG ENCODER HELPER MODULE |
2327 | M: Hans Verkuil <[email protected]> | |
2328 | L: [email protected] | |
2329 | T: git git://linuxtv.org/media_tree.git | |
2330 | W: http://linuxtv.org | |
2331 | S: Maintained | |
c368360b | 2332 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2333 | F: include/media/cx2341x* |
2334 | ||
20357578 MCC |
2335 | CX88 VIDEO4LINUX DRIVER |
2336 | M: Mauro Carvalho Chehab <[email protected]> | |
2337 | L: [email protected] | |
2338 | W: http://linuxtv.org | |
2339 | T: git git://linuxtv.org/media_tree.git | |
2340 | S: Odd fixes | |
2341 | F: Documentation/video4linux/cx88/ | |
2342 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2343 | |
91952bc0 AP |
2344 | CXD2820R MEDIA DRIVER |
2345 | M: Antti Palosaari <[email protected]> | |
2346 | L: [email protected] | |
2347 | W: http://linuxtv.org/ | |
2348 | W: http://palosaari.fi/linux/ | |
2349 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2350 | T: git git://linuxtv.org/anttip/media_tree.git | |
2351 | S: Maintained | |
2352 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2353 | |
e5ec3789 | 2354 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2355 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
2356 | L: [email protected] |
2357 | W: http://www.chelsio.com | |
2358 | S: Supported | |
f7917c00 | 2359 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2360 | |
2361 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2362 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2363 | L: [email protected] |
e5ec3789 SW |
2364 | W: http://www.openfabrics.org |
2365 | S: Supported | |
679655da | 2366 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2367 | |
be4c9bad RD |
2368 | CXGB4 ETHERNET DRIVER (CXGB4) |
2369 | M: Dimitris Michailidis <[email protected]> | |
2370 | L: [email protected] | |
2371 | W: http://www.chelsio.com | |
2372 | S: Supported | |
f7917c00 | 2373 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2374 | |
2375 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2376 | M: Steve Wise <[email protected]> | |
2377 | L: [email protected] | |
2378 | W: http://www.openfabrics.org | |
2379 | S: Supported | |
2380 | F: drivers/infiniband/hw/cxgb4/ | |
2381 | ||
5c20a5c7 CL |
2382 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2383 | M: Casey Leedom <[email protected]> | |
2384 | L: [email protected] | |
2385 | W: http://www.chelsio.com | |
2386 | S: Supported | |
f7917c00 | 2387 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2388 | |
b52b97a3 GC |
2389 | STMMAC ETHERNET DRIVER |
2390 | M: Giuseppe Cavallaro <[email protected]> | |
2391 | L: [email protected] | |
2392 | W: http://www.stlinux.com | |
2393 | S: Supported | |
7ac6653a | 2394 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2395 | |
1da177e4 | 2396 | CYBERPRO FB DRIVER |
8b58be88 | 2397 | M: Russell King <[email protected]> |
efc03ecb | 2398 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2399 | W: http://www.arm.linux.org.uk/ |
2400 | S: Maintained | |
679655da | 2401 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2402 | |
1da177e4 | 2403 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2404 | W: http://www.cyclades.com/ |
d459883e | 2405 | S: Orphan |
c897401b | 2406 | F: drivers/tty/cyclades.c |
679655da | 2407 | F: include/linux/cyclades.h |
c117ab84 | 2408 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2409 | |
2410 | CYCLADES PC300 DRIVER | |
1da177e4 | 2411 | W: http://www.cyclades.com/ |
d459883e | 2412 | S: Orphan |
679655da | 2413 | F: drivers/net/wan/pc300* |
1da177e4 | 2414 | |
402f6ae4 AP |
2415 | CYPRESS_FIRMWARE MEDIA DRIVER |
2416 | M: Antti Palosaari <[email protected]> | |
2417 | L: [email protected] | |
2418 | W: http://linuxtv.org/ | |
2419 | W: http://palosaari.fi/linux/ | |
2420 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2421 | T: git git://linuxtv.org/anttip/media_tree.git | |
2422 | S: Maintained | |
2423 | F: drivers/media/common/cypress_firmware* | |
2424 | ||
e3ae3525 | 2425 | CYTTSP TOUCHSCREEN DRIVER |
6305902c JP |
2426 | M: Javier Martinez Canillas <[email protected]> |
2427 | L: [email protected] | |
2428 | S: Maintained | |
2429 | F: drivers/input/touchscreen/cyttsp* | |
2430 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2431 | |
1da177e4 | 2432 | DAMA SLAVE for AX.25 |
8b58be88 | 2433 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2434 | W: http://yaina.de/jreuter/ |
2435 | W: http://www.qsl.net/dl1bke/ | |
2436 | L: [email protected] | |
2437 | S: Maintained | |
679655da JP |
2438 | F: net/ax25/af_ax25.c |
2439 | F: net/ax25/ax25_dev.c | |
2440 | F: net/ax25/ax25_ds_* | |
2441 | F: net/ax25/ax25_in.c | |
2442 | F: net/ax25/ax25_out.c | |
2443 | F: net/ax25/ax25_timer.c | |
2444 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2445 | |
e2d1d6c0 | 2446 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2447 | L: [email protected] |
5ff77428 | 2448 | S: Orphan |
679655da | 2449 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2450 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2451 | |
2452 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2453 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2454 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2455 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2456 | S: Maintained |
679655da | 2457 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2458 | |
1da177e4 | 2459 | DC395x SCSI driver |
61eee9a7 | 2460 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2461 | M: Ali Akcaagac <[email protected]> |
2462 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2463 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2464 | L: [email protected] |
1da177e4 LT |
2465 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2466 | S: Maintained | |
679655da JP |
2467 | F: Documentation/scsi/dc395x.txt |
2468 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2469 | |
eb8edb08 | 2470 | DCCP PROTOCOL |
a89d030e | 2471 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2472 | L: [email protected] |
c996d8b9 | 2473 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2474 | S: Maintained |
679655da | 2475 | F: include/linux/dccp.h |
c117ab84 | 2476 | F: include/uapi/linux/dccp.h |
679655da JP |
2477 | F: include/linux/tfrc.h |
2478 | F: net/dccp/ | |
eb8edb08 | 2479 | |
1da177e4 | 2480 | DECnet NETWORK LAYER |
1da177e4 LT |
2481 | W: http://linux-decnet.sourceforge.net |
2482 | L: [email protected] | |
f546444d | 2483 | S: Orphan |
679655da JP |
2484 | F: Documentation/networking/decnet.txt |
2485 | F: net/decnet/ | |
1da177e4 LT |
2486 | |
2487 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2488 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2489 | S: Maintained |
33f810b2 | 2490 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2491 | |
ad8f07cc | 2492 | DELL LAPTOP DRIVER |
8b58be88 | 2493 | M: Matthew Garrett <[email protected]> |
d0944853 | 2494 | L: [email protected] |
ad8f07cc | 2495 | S: Maintained |
679655da | 2496 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2497 | |
1da177e4 | 2498 | DELL LAPTOP SMM DRIVER |
c5471462 | 2499 | S: Orphan |
679655da | 2500 | F: drivers/char/i8k.c |
c117ab84 | 2501 | F: include/uapi/linux/i8k.h |
1da177e4 | 2502 | |
90563ec4 | 2503 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2504 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2505 | S: Maintained |
679655da JP |
2506 | F: Documentation/dcdbas.txt |
2507 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2508 | |
0b3f6109 | 2509 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2510 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2511 | S: Maintained |
36b3a96f | 2512 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2513 | |
5efc75e3 PZ |
2514 | DESIGNWARE USB2 DRD IP DRIVER |
2515 | M: Paul Zimmerman <[email protected]> | |
2516 | L: [email protected] | |
2517 | S: Maintained | |
2518 | F: drivers/staging/dwc2/ | |
2519 | ||
94ab23dd FB |
2520 | DESIGNWARE USB3 DRD IP DRIVER |
2521 | M: Felipe Balbi <[email protected]> | |
2522 | L: [email protected] | |
2523 | L: [email protected] | |
2524 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2525 | S: Maintained | |
2526 | F: drivers/usb/dwc3/ | |
2527 | ||
89d07767 KP |
2528 | DEVICE FREQUENCY (DEVFREQ) |
2529 | M: MyungJoo Ham <[email protected]> | |
2530 | M: Kyungmin Park <[email protected]> | |
2531 | L: [email protected] | |
2532 | S: Maintained | |
2533 | F: drivers/devfreq/ | |
2534 | ||
1da177e4 | 2535 | DEVICE NUMBER REGISTRY |
8b58be88 | 2536 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2537 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2538 | S: Maintained |
2539 | ||
e2d1d6c0 | 2540 | DEVICE-MAPPER (LVM) |
854ecaad AK |
2541 | M: Alasdair Kergon <[email protected]> |
2542 | M: [email protected] | |
e2d1d6c0 RD |
2543 | L: [email protected] |
2544 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2545 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2546 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2547 | S: Maintained |
679655da JP |
2548 | F: Documentation/device-mapper/ |
2549 | F: drivers/md/dm* | |
854ecaad | 2550 | F: drivers/md/persistent-data/ |
679655da JP |
2551 | F: include/linux/device-mapper.h |
2552 | F: include/linux/dm-*.h | |
e2d1d6c0 | 2553 | |
335d7c58 | 2554 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2555 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2556 | L: [email protected] |
2557 | S: Maintained | |
2558 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2559 | ||
e7839f25 | 2560 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2561 | M: Eric Paris <[email protected]> |
3c5119c0 | 2562 | S: Maintained |
679655da JP |
2563 | F: Documentation/filesystems/dnotify.txt |
2564 | F: fs/notify/dnotify/ | |
2565 | F: include/linux/dnotify.h | |
1da177e4 LT |
2566 | |
2567 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2568 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2569 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2570 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2571 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2572 | S: Maintained | |
2573 | ||
4480f15b | 2574 | DISKQUOTA |
8b58be88 | 2575 | M: Jan Kara <[email protected]> |
1da177e4 | 2576 | S: Maintained |
679655da JP |
2577 | F: Documentation/filesystems/quota.txt |
2578 | F: fs/quota/ | |
2579 | F: include/linux/quota*.h | |
c117ab84 | 2580 | F: include/uapi/linux/quota*.h |
1da177e4 | 2581 | |
702686ad BT |
2582 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2583 | M: Bernie Thompson <[email protected]> | |
2584 | L: [email protected] | |
2585 | S: Maintained | |
2586 | W: http://plugable.com/category/projects/udlfb/ | |
2587 | F: drivers/video/udlfb.c | |
2588 | F: include/video/udlfb.h | |
2589 | F: Documentation/fb/udlfb.txt | |
2590 | ||
e7839f25 | 2591 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2592 | M: Christine Caulfield <[email protected]> |
2593 | M: David Teigland <[email protected]> | |
a4644184 | 2594 | L: [email protected] |
5be7b50f | 2595 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2597 | S: Supported |
679655da | 2598 | F: fs/dlm/ |
5be7b50f | 2599 | |
53b6b3e0 SS |
2600 | DMA BUFFER SHARING FRAMEWORK |
2601 | M: Sumit Semwal <[email protected]> | |
2602 | S: Maintained | |
2603 | L: [email protected] | |
2604 | L: [email protected] | |
2605 | L: [email protected] | |
2606 | F: drivers/base/dma-buf* | |
2607 | F: include/linux/dma-buf* | |
2608 | F: Documentation/dma-buf-sharing.txt | |
2609 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2610 | ||
b3e5f263 | 2611 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2612 | M: Vinod Koul <[email protected]> |
1dd8372d | 2613 | M: Dan Williams <[email protected]> |
b3e5f263 | 2614 | S: Supported |
679655da JP |
2615 | F: drivers/dma/ |
2616 | F: include/linux/dma* | |
5dbd05d4 VK |
2617 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2618 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2619 | |
b825037d | 2620 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2621 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2622 | L: [email protected] |
2623 | S: Maintained | |
679655da JP |
2624 | F: Documentation/hwmon/dme1737 |
2625 | F: drivers/hwmon/dme1737.c | |
b825037d | 2626 | |
5b9c9bf6 | 2627 | DOCKING STATION DRIVER |
8b58be88 | 2628 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2629 | L: [email protected] |
8b59a454 | 2630 | S: Supported |
679655da | 2631 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2632 | |
7d2c86b5 | 2633 | DOCUMENTATION |
5191d566 | 2634 | M: Rob Landley <[email protected]> |
795fb7e7 | 2635 | L: [email protected] |
5191d566 | 2636 | T: TBD |
795fb7e7 | 2637 | S: Maintained |
679655da | 2638 | F: Documentation/ |
abbaeff3 | 2639 | |
1da177e4 | 2640 | DOUBLETALK DRIVER |
8b58be88 | 2641 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2642 | L: [email protected] |
2643 | S: Maintained | |
679655da JP |
2644 | F: drivers/char/dtlk.c |
2645 | F: include/linux/dtlk.h | |
1da177e4 | 2646 | |
e2d1d6c0 | 2647 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2648 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2649 | L: [email protected] |
2650 | W: http://www.adaptec.com/ | |
2651 | S: Maintained | |
679655da JP |
2652 | F: drivers/scsi/dpt* |
2653 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2654 | |
b411b363 | 2655 | DRBD DRIVER |
28b8e8d4 JP |
2656 | P: Philipp Reisner |
2657 | P: Lars Ellenberg | |
2658 | M: [email protected] | |
2659 | L: [email protected] | |
2660 | W: http://www.drbd.org | |
2661 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2662 | T: git git://git.drbd.org/drbd-8.3.git | |
2663 | S: Supported | |
2664 | F: drivers/block/drbd/ | |
2665 | F: lib/lru_cache.c | |
2666 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2667 | |
87544653 | 2668 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2669 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2671 | S: Supported |
679655da | 2672 | F: Documentation/kobject.txt |
7cfc51b9 | 2673 | F: drivers/base/ |
679655da | 2674 | F: fs/sysfs/ |
87544653 | 2675 | F: fs/debugfs/ |
679655da | 2676 | F: include/linux/kobj* |
87544653 | 2677 | F: include/linux/debugfs.h |
679655da | 2678 | F: lib/kobj* |
1da177e4 LT |
2679 | |
2680 | DRM DRIVERS | |
8b58be88 | 2681 | M: David Airlie <[email protected]> |
4c6a3999 | 2682 | L: [email protected] |
54e5881d | 2683 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2684 | S: Maintained |
679655da | 2685 | F: drivers/gpu/drm/ |
850e9411 | 2686 | F: include/drm/ |
c117ab84 | 2687 | F: include/uapi/drm/ |
1da177e4 | 2688 | |
8daf7473 | 2689 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2690 | M: Daniel Vetter <[email protected]> |
362132d2 | 2691 | L: [email protected] |
8daf7473 | 2692 | L: [email protected] |
38e490fe | 2693 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 CW |
2694 | S: Supported |
2695 | F: drivers/gpu/drm/i915 | |
2696 | F: include/drm/i915* | |
c117ab84 | 2697 | F: include/uapi/drm/i915* |
8daf7473 | 2698 | |
398a6d4a KP |
2699 | DRM DRIVERS FOR EXYNOS |
2700 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2701 | M: Joonyoung Shim <[email protected]> |
2702 | M: Seung-Woo Kim <[email protected]> | |
2703 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2704 | L: [email protected] |
25a58030 | 2705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a KP |
2706 | S: Supported |
2707 | F: drivers/gpu/drm/exynos | |
2708 | F: include/drm/exynos* | |
c117ab84 | 2709 | F: include/uapi/drm/exynos* |
398a6d4a | 2710 | |
bd3b49f2 TR |
2711 | DRM DRIVERS FOR NVIDIA TEGRA |
2712 | M: Thierry Reding <[email protected]> | |
2713 | L: [email protected] | |
2714 | L: [email protected] | |
2715 | T: git git://gitorious.org/thierryreding/linux.git | |
2716 | S: Maintained | |
2717 | F: drivers/gpu/drm/tegra/ | |
2718 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt | |
2719 | ||
598df1ac AK |
2720 | DSBR100 USB FM RADIO DRIVER |
2721 | M: Alexey Klimov <[email protected]> | |
2722 | L: [email protected] | |
2723 | T: git git://linuxtv.org/media_tree.git | |
2724 | S: Maintained | |
2725 | F: drivers/media/radio/dsbr100.c | |
2726 | ||
1da177e4 | 2727 | DSCC4 DRIVER |
8b58be88 | 2728 | M: Francois Romieu <[email protected]> |
01f20734 | 2729 | L: [email protected] |
1da177e4 | 2730 | S: Maintained |
679655da | 2731 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2732 | |
91952bc0 AP |
2733 | DVB_USB_AF9015 MEDIA DRIVER |
2734 | M: Antti Palosaari <[email protected]> | |
2735 | L: [email protected] | |
2736 | W: http://linuxtv.org/ | |
2737 | W: http://palosaari.fi/linux/ | |
2738 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2739 | T: git git://linuxtv.org/anttip/media_tree.git | |
2740 | S: Maintained | |
2741 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2742 | ||
2743 | DVB_USB_AF9035 MEDIA DRIVER | |
2744 | M: Antti Palosaari <[email protected]> | |
2745 | L: [email protected] | |
2746 | W: http://linuxtv.org/ | |
2747 | W: http://palosaari.fi/linux/ | |
2748 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2749 | T: git git://linuxtv.org/anttip/media_tree.git | |
2750 | S: Maintained | |
2751 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2752 | ||
2753 | DVB_USB_ANYSEE MEDIA DRIVER | |
2754 | M: Antti Palosaari <[email protected]> | |
2755 | L: [email protected] | |
2756 | W: http://linuxtv.org/ | |
2757 | W: http://palosaari.fi/linux/ | |
2758 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2759 | T: git git://linuxtv.org/anttip/media_tree.git | |
2760 | S: Maintained | |
2761 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2762 | ||
2763 | DVB_USB_AU6610 MEDIA DRIVER | |
2764 | M: Antti Palosaari <[email protected]> | |
2765 | L: [email protected] | |
2766 | W: http://linuxtv.org/ | |
2767 | W: http://palosaari.fi/linux/ | |
2768 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2769 | T: git git://linuxtv.org/anttip/media_tree.git | |
2770 | S: Maintained | |
2771 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2772 | ||
2773 | DVB_USB_CE6230 MEDIA DRIVER | |
2774 | M: Antti Palosaari <[email protected]> | |
2775 | L: [email protected] | |
2776 | W: http://linuxtv.org/ | |
2777 | W: http://palosaari.fi/linux/ | |
2778 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2779 | T: git git://linuxtv.org/anttip/media_tree.git | |
2780 | S: Maintained | |
2781 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2782 | ||
d099dea2 MK |
2783 | DVB_USB_CXUSB MEDIA DRIVER |
2784 | M: Michael Krufky <[email protected]> | |
2785 | L: [email protected] | |
2786 | W: http://linuxtv.org/ | |
2787 | W: http://github.com/mkrufky | |
2788 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2789 | T: git git://linuxtv.org/media_tree.git | |
2790 | S: Maintained | |
9819da66 | 2791 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2792 | |
91952bc0 | 2793 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2794 | M: Antti Palosaari <[email protected]> |
2795 | L: [email protected] | |
2796 | W: http://linuxtv.org/ | |
2797 | W: http://palosaari.fi/linux/ | |
2798 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2799 | T: git git://linuxtv.org/anttip/media_tree.git | |
2800 | S: Maintained | |
91952bc0 | 2801 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2802 | |
5560983b | 2803 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2804 | M: Antti Palosaari <[email protected]> |
2805 | L: [email protected] | |
2806 | W: http://linuxtv.org/ | |
91952bc0 AP |
2807 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2808 | T: git git://linuxtv.org/anttip/media_tree.git | |
2809 | S: Maintained | |
5560983b | 2810 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2811 | |
8856f5f2 MK |
2812 | DVB_USB_MXL111SF MEDIA DRIVER |
2813 | M: Michael Krufky <[email protected]> | |
2814 | L: [email protected] | |
2815 | W: http://linuxtv.org/ | |
2816 | W: http://github.com/mkrufky | |
2817 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2818 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2819 | S: Maintained | |
2820 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2821 | ||
91952bc0 AP |
2822 | DVB_USB_RTL28XXU MEDIA DRIVER |
2823 | M: Antti Palosaari <[email protected]> | |
2824 | L: [email protected] | |
2825 | W: http://linuxtv.org/ | |
2826 | W: http://palosaari.fi/linux/ | |
2827 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2828 | T: git git://linuxtv.org/anttip/media_tree.git | |
2829 | S: Maintained | |
2830 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2831 | ||
2832 | DVB_USB_V2 MEDIA DRIVER | |
2833 | M: Antti Palosaari <[email protected]> | |
2834 | L: [email protected] | |
2835 | W: http://linuxtv.org/ | |
2836 | W: http://palosaari.fi/linux/ | |
2837 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2838 | T: git git://linuxtv.org/anttip/media_tree.git | |
2839 | S: Maintained | |
2840 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2841 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2842 | ||
ac0ac38f JB |
2843 | DYNAMIC DEBUG |
2844 | M: Jason Baron <[email protected]> | |
2845 | S: Maintained | |
2846 | F: lib/dynamic_debug.c | |
2847 | F: include/linux/dynamic_debug.h | |
2848 | ||
789c7048 | 2849 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2850 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2851 | S: Maintained |
df621252 | 2852 | F: drivers/tty/serial/dz.* |
789c7048 | 2853 | |
91952bc0 AP |
2854 | E4000 MEDIA DRIVER |
2855 | M: Antti Palosaari <[email protected]> | |
2856 | L: [email protected] | |
2857 | W: http://linuxtv.org/ | |
2858 | W: http://palosaari.fi/linux/ | |
2859 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2860 | T: git git://linuxtv.org/anttip/media_tree.git | |
2861 | S: Maintained | |
2862 | F: drivers/media/tuners/e4000* | |
2863 | ||
1da177e4 | 2864 | EATA-DMA SCSI DRIVER |
8b58be88 | 2865 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2866 | L: [email protected] |
2867 | L: [email protected] | |
1da177e4 | 2868 | S: Maintained |
679655da | 2869 | F: drivers/scsi/eata* |
1da177e4 LT |
2870 | |
2871 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2872 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2873 | L: [email protected] |
2874 | S: Maintained | |
679655da | 2875 | F: drivers/scsi/eata.c |
1da177e4 LT |
2876 | |
2877 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2878 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2879 | L: [email protected] |
2880 | L: [email protected] | |
1da177e4 | 2881 | S: Maintained |
679655da | 2882 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2883 | |
2884 | EBTABLES | |
8b58be88 | 2885 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 2886 | L: [email protected] |
1da177e4 LT |
2887 | W: http://ebtables.sourceforge.net/ |
2888 | S: Maintained | |
679655da | 2889 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2890 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2891 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2892 | |
91952bc0 AP |
2893 | EC100 MEDIA DRIVER |
2894 | M: Antti Palosaari <[email protected]> | |
2895 | L: [email protected] | |
2896 | W: http://linuxtv.org/ | |
2897 | W: http://palosaari.fi/linux/ | |
2898 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2899 | T: git git://linuxtv.org/anttip/media_tree.git | |
2900 | S: Maintained | |
2901 | F: drivers/media/dvb-frontends/ec100* | |
2902 | ||
237fead6 | 2903 | ECRYPT FILE SYSTEM |
0de9adf2 | 2904 | M: Tyler Hicks <[email protected]> |
a058bfbb | 2905 | L: [email protected] |
24a923e4 | 2906 | W: http://ecryptfs.org |
6dc7516e | 2907 | W: https://launchpad.net/ecryptfs |
237fead6 | 2908 | S: Supported |
679655da JP |
2909 | F: Documentation/filesystems/ecryptfs.txt |
2910 | F: fs/ecryptfs/ | |
237fead6 | 2911 | |
da9bb1d2 | 2912 | EDAC-CORE |
8b58be88 | 2913 | M: Doug Thompson <[email protected]> |
91445c72 | 2914 | L: [email protected] |
0e438e3f | 2915 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2916 | S: Supported |
679655da | 2917 | F: Documentation/edac.txt |
91445c72 | 2918 | F: drivers/edac/ |
679655da | 2919 | F: include/linux/edac.h |
0e438e3f | 2920 | |
c476c23b | 2921 | EDAC-AMD64 |
8b58be88 | 2922 | M: Doug Thompson <[email protected]> |
487ba8e8 | 2923 | M: Borislav Petkov <[email protected]> |
91445c72 | 2924 | L: [email protected] |
c476c23b | 2925 | W: bluesmoke.sourceforge.net |
487ba8e8 | 2926 | S: Maintained |
c476c23b BP |
2927 | F: drivers/edac/amd64_edac* |
2928 | ||
f65aad41 RB |
2929 | EDAC-CAVIUM |
2930 | M: Ralf Baechle <[email protected]> | |
2931 | M: David Daney <[email protected]> | |
2932 | L: [email protected] | |
2933 | L: [email protected] | |
2934 | W: bluesmoke.sourceforge.net | |
2935 | S: Supported | |
2936 | F: drivers/edac/octeon_edac* | |
2937 | ||
0e438e3f | 2938 | EDAC-E752X |
8b58be88 JP |
2939 | M: Mark Gross <[email protected]> |
2940 | M: Doug Thompson <[email protected]> | |
91445c72 | 2941 | L: [email protected] |
0e438e3f DP |
2942 | W: bluesmoke.sourceforge.net |
2943 | S: Maintained | |
679655da | 2944 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2945 | |
2946 | EDAC-E7XXX | |
8b58be88 | 2947 | M: Doug Thompson <[email protected]> |
91445c72 | 2948 | L: [email protected] |
0e438e3f DP |
2949 | W: bluesmoke.sourceforge.net |
2950 | S: Maintained | |
679655da | 2951 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2952 | |
77c5f5d2 MCC |
2953 | EDAC-GHES |
2954 | M: Mauro Carvalho Chehab <[email protected]> | |
2955 | L: [email protected] | |
2956 | W: bluesmoke.sourceforge.net | |
2957 | S: Maintained | |
2958 | F: drivers/edac/ghes-edac.c | |
2959 | ||
6bc78404 | 2960 | EDAC-I82443BXGX |
8b58be88 | 2961 | M: Tim Small <[email protected]> |
91445c72 | 2962 | L: [email protected] |
6bc78404 DT |
2963 | W: bluesmoke.sourceforge.net |
2964 | S: Maintained | |
679655da | 2965 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
2966 | |
2967 | EDAC-I3000 | |
8b58be88 | 2968 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 2969 | L: [email protected] |
6bc78404 DT |
2970 | W: bluesmoke.sourceforge.net |
2971 | S: Maintained | |
679655da | 2972 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
2973 | |
2974 | EDAC-I5000 | |
8b58be88 | 2975 | M: Doug Thompson <[email protected]> |
91445c72 | 2976 | L: [email protected] |
ba9a5918 DT |
2977 | W: bluesmoke.sourceforge.net |
2978 | S: Maintained | |
679655da | 2979 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 2980 | |
44c12cb2 | 2981 | EDAC-I5400 |
8b58be88 | 2982 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 2983 | L: [email protected] |
44c12cb2 MCC |
2984 | W: bluesmoke.sourceforge.net |
2985 | S: Maintained | |
679655da | 2986 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 2987 | |
3c9c92b6 MCC |
2988 | EDAC-I7300 |
2989 | M: Mauro Carvalho Chehab <[email protected]> | |
2990 | L: [email protected] | |
2991 | W: bluesmoke.sourceforge.net | |
2992 | S: Maintained | |
2993 | F: drivers/edac/i7300_edac.c | |
2994 | ||
67c89316 MCC |
2995 | EDAC-I7CORE |
2996 | M: Mauro Carvalho Chehab <[email protected]> | |
2997 | L: [email protected] | |
2998 | W: bluesmoke.sourceforge.net | |
2999 | S: Maintained | |
70aff0ce | 3000 | F: drivers/edac/i7core_edac.c |
67c89316 | 3001 | |
ba9a5918 | 3002 | EDAC-I82975X |
8b58be88 | 3003 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3004 | M: "Arvind R." <[email protected]> |
91445c72 | 3005 | L: [email protected] |
ba9a5918 DT |
3006 | W: bluesmoke.sourceforge.net |
3007 | S: Maintained | |
679655da | 3008 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
3009 | |
3010 | EDAC-PASEMI | |
8b58be88 | 3011 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3012 | L: [email protected] |
6bc78404 DT |
3013 | W: bluesmoke.sourceforge.net |
3014 | S: Maintained | |
679655da | 3015 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3016 | |
0e438e3f | 3017 | EDAC-R82600 |
8b58be88 | 3018 | M: Tim Small <[email protected]> |
91445c72 | 3019 | L: [email protected] |
0e438e3f DP |
3020 | W: bluesmoke.sourceforge.net |
3021 | S: Maintained | |
679655da | 3022 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3023 | |
4d096ca7 MCC |
3024 | EDAC-SBRIDGE |
3025 | M: Mauro Carvalho Chehab <[email protected]> | |
3026 | L: [email protected] | |
3027 | W: bluesmoke.sourceforge.net | |
3028 | S: Maintained | |
3029 | F: drivers/edac/sb_edac.c | |
3030 | ||
af39917d CL |
3031 | EDIROL UA-101/UA-1000 DRIVER |
3032 | M: Clemens Ladisch <[email protected]> | |
3033 | L: [email protected] (moderated for non-subscribers) | |
3034 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3035 | S: Maintained | |
3036 | F: sound/usb/misc/ua101.c | |
3037 | ||
1f7df953 MF |
3038 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3039 | M: Matt Fleming <[email protected]> | |
3040 | L: [email protected] | |
78bef24e | 3041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3042 | S: Maintained |
3043 | F: Documentation/x86/efi-stub.txt | |
3044 | F: arch/ia64/kernel/efi.c | |
3045 | F: arch/x86/boot/compressed/eboot.[ch] | |
3046 | F: arch/x86/include/asm/efi.h | |
3047 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3048 | F: drivers/firmware/efi/* |
1f7df953 MF |
3049 | F: include/linux/efi*.h |
3050 | ||
d68772b7 MF |
3051 | EFI VARIABLE FILESYSTEM |
3052 | M: Matthew Garrett <[email protected]> | |
3053 | M: Jeremy Kerr <[email protected]> | |
3054 | M: Matt Fleming <[email protected]> | |
3055 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3056 | L: [email protected] | |
3057 | S: Maintained | |
3058 | F: fs/efivarfs/ | |
3059 | ||
85a00d9b PJ |
3060 | EFIFB FRAMEBUFFER DRIVER |
3061 | L: [email protected] | |
3062 | M: Peter Jones <[email protected]> | |
3063 | S: Maintained | |
3064 | F: drivers/video/efifb.c | |
3065 | ||
0bee8d28 JT |
3066 | EFS FILESYSTEM |
3067 | W: http://aeschi.ch.eu.org/efs/ | |
3068 | S: Orphan | |
679655da | 3069 | F: fs/efs/ |
0bee8d28 | 3070 | |
4480f15b | 3071 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3072 | M: Hoang-Nam Nguyen <[email protected]> |
3073 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3074 | L: [email protected] |
fab97220 | 3075 | S: Supported |
679655da | 3076 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3077 | |
aa8a9e25 | 3078 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3079 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3080 | L: [email protected] |
3081 | S: Maintained | |
9aa32835 | 3082 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3083 | |
f0319efe MCC |
3084 | EM28XX VIDEO4LINUX DRIVER |
3085 | M: Mauro Carvalho Chehab <[email protected]> | |
3086 | L: [email protected] | |
3087 | W: http://linuxtv.org | |
3088 | T: git git://linuxtv.org/media_tree.git | |
3089 | S: Maintained | |
3090 | F: drivers/media/usb/em28xx/ | |
3091 | ||
3e3a7d66 | 3092 | EMBEDDED LINUX |
8b58be88 JP |
3093 | M: Paul Gortmaker <[email protected]> |
3094 | M: Matt Mackall <[email protected]> | |
3095 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3096 | L: [email protected] |
3097 | S: Maintained | |
3098 | ||
3a1c1d44 | 3099 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3100 | M: James Smart <[email protected]> |
ce00f85c JC |
3101 | L: [email protected] |
3102 | W: http://sourceforge.net/projects/lpfcxxxx | |
3103 | S: Supported | |
679655da | 3104 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3105 | |
5f5bac82 | 3106 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3107 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3108 | S: Maintained |
3109 | F: drivers/misc/cb710/ | |
3110 | F: drivers/mmc/host/cb710-mmc.* | |
3111 | F: include/linux/cb710.h | |
3112 | ||
931e39a1 ML |
3113 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3114 | M: Maxim Levitsky <[email protected]> | |
3115 | S: Maintained | |
2a837449 | 3116 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3117 | |
d5ca9006 | 3118 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3119 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3120 | S: Maintained |
084bad91 | 3121 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3122 | F: drivers/video/s1d13xxxfb.c |
3123 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3124 | |
1da177e4 | 3125 | ETHERNET BRIDGE |
adbbf69d | 3126 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3127 | L: [email protected] |
4c325313 | 3128 | L: [email protected] |
c996d8b9 | 3129 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3130 | S: Maintained |
679655da JP |
3131 | F: include/linux/netfilter_bridge/ |
3132 | F: net/bridge/ | |
1da177e4 | 3133 | |
1da177e4 | 3134 | EXT2 FILE SYSTEM |
01971952 | 3135 | M: Jan Kara <[email protected]> |
72be2ccf | 3136 | L: [email protected] |
1da177e4 | 3137 | S: Maintained |
679655da JP |
3138 | F: Documentation/filesystems/ext2.txt |
3139 | F: fs/ext2/ | |
3140 | F: include/linux/ext2* | |
1da177e4 LT |
3141 | |
3142 | EXT3 FILE SYSTEM | |
01971952 | 3143 | M: Jan Kara <[email protected]> |
8b58be88 | 3144 | M: Andrew Morton <[email protected]> |
3c373a5f | 3145 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3146 | L: [email protected] |
3147 | S: Maintained | |
679655da JP |
3148 | F: Documentation/filesystems/ext3.txt |
3149 | F: fs/ext3/ | |
72be2ccf EM |
3150 | |
3151 | EXT4 FILE SYSTEM | |
8b58be88 | 3152 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3153 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3154 | L: [email protected] |
08a225f1 | 3155 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3156 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3157 | S: Maintained |
679655da JP |
3158 | F: Documentation/filesystems/ext4.txt |
3159 | F: fs/ext4/ | |
1da177e4 | 3160 | |
c5532b09 MZ |
3161 | Extended Verification Module (EVM) |
3162 | M: Mimi Zohar <[email protected]> | |
3163 | S: Supported | |
3164 | F: security/integrity/evm/ | |
3165 | ||
df6b3cfe MH |
3166 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3167 | M: MyungJoo Ham <[email protected]> | |
3168 | M: Chanwoo Choi <[email protected]> | |
3169 | L: [email protected] | |
3170 | S: Maintained | |
3171 | F: drivers/extcon/ | |
3172 | F: Documentation/extcon/ | |
3173 | ||
0a79951a JH |
3174 | EXYNOS DP DRIVER |
3175 | M: Jingoo Han <[email protected]> | |
3176 | L: [email protected] | |
3177 | S: Maintained | |
3178 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3179 | F: include/video/exynos_dp* |
0a79951a | 3180 | |
33ad3912 DL |
3181 | EXYNOS MIPI DISPLAY DRIVERS |
3182 | M: Inki Dae <[email protected]> | |
3183 | M: Donghwa Lee <[email protected]> | |
3184 | M: Kyungmin Park <[email protected]> | |
3185 | L: [email protected] | |
3186 | S: Maintained | |
3187 | F: drivers/video/exynos/exynos_mipi* | |
3188 | F: include/video/exynos_mipi* | |
3189 | ||
e53004e2 | 3190 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3191 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3192 | L: [email protected] |
3193 | S: Maintained | |
679655da JP |
3194 | F: Documentation/hwmon/f71805f |
3195 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3196 | |
eea977ed MB |
3197 | FC0011 TUNER DRIVER |
3198 | M: Michael Buesch <[email protected]> | |
3199 | L: [email protected] | |
3200 | S: Maintained | |
ccae7af2 MCC |
3201 | F: drivers/media/tuners/fc0011.h |
3202 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3203 | |
91952bc0 AP |
3204 | FC2580 MEDIA DRIVER |
3205 | M: Antti Palosaari <[email protected]> | |
3206 | L: [email protected] | |
3207 | W: http://linuxtv.org/ | |
3208 | W: http://palosaari.fi/linux/ | |
3209 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3210 | T: git git://linuxtv.org/anttip/media_tree.git | |
3211 | S: Maintained | |
3212 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3213 | |
88b2dbdb EP |
3214 | FANOTIFY |
3215 | M: Eric Paris <[email protected]> | |
3216 | S: Maintained | |
3217 | F: fs/notify/fanotify/ | |
3218 | F: include/linux/fanotify.h | |
c117ab84 | 3219 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3220 | |
1da177e4 | 3221 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3222 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3223 | W: http://www.farsite.co.uk/ |
3224 | S: Supported | |
679655da | 3225 | F: drivers/net/wan/farsync.* |
1da177e4 | 3226 | |
c5408b88 | 3227 | FAULT INJECTION SUPPORT |
8b58be88 | 3228 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3229 | S: Supported |
679655da JP |
3230 | F: Documentation/fault-injection/ |
3231 | F: lib/fault-inject.c | |
c5408b88 | 3232 | |
cae727db RL |
3233 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3234 | M: Robert Love <[email protected]> | |
f4aaea6d | 3235 | L: [email protected] |
cae727db RL |
3236 | W: www.Open-FCoE.org |
3237 | S: Supported | |
3238 | F: drivers/scsi/libfc/ | |
3239 | F: drivers/scsi/fcoe/ | |
3240 | F: include/scsi/fc/ | |
3241 | F: include/scsi/libfc.h | |
3242 | F: include/scsi/libfcoe.h | |
c117ab84 | 3243 | F: include/uapi/scsi/fc/ |
cae727db | 3244 | |
e2d1d6c0 | 3245 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3246 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3247 | L: [email protected] |
1da177e4 | 3248 | S: Maintained |
679655da JP |
3249 | F: include/linux/fcntl.h |
3250 | F: include/linux/fs.h | |
c117ab84 CEB |
3251 | F: include/uapi/linux/fcntl.h |
3252 | F: include/uapi/linux/fs.h | |
679655da JP |
3253 | F: fs/fcntl.c |
3254 | F: fs/locks.c | |
1da177e4 | 3255 | |
e2d1d6c0 | 3256 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3257 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3258 | L: [email protected] |
173acc7c | 3259 | S: Maintained |
679655da | 3260 | F: fs/* |
173acc7c | 3261 | |
b26e0ed4 | 3262 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3263 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3264 | L: [email protected] |
3265 | S: Maintained | |
d5ca6918 JP |
3266 | F: drivers/hwmon/f75375s.c |
3267 | F: include/linux/f75375s.h | |
b26e0ed4 | 3268 | |
a331b0c3 CL |
3269 | FIREWIRE AUDIO DRIVERS |
3270 | M: Clemens Ladisch <[email protected]> | |
3271 | L: [email protected] (moderated for non-subscribers) | |
3272 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3273 | S: Maintained | |
3274 | F: sound/firewire/ | |
3275 | ||
eb86ec51 SR |
3276 | FIREWIRE MEDIA DRIVERS (firedtv) |
3277 | M: Stefan Richter <[email protected]> | |
3278 | L: [email protected] | |
3279 | L: [email protected] | |
3280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3281 | S: Maintained | |
3282 | F: drivers/media/firewire/ | |
3283 | ||
a511ce33 CB |
3284 | FIREWIRE SBP-2 TARGET |
3285 | M: Chris Boot <[email protected]> | |
3286 | L: [email protected] | |
3287 | L: [email protected] | |
3288 | L: [email protected] | |
3289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3290 | S: Maintained | |
3291 | F: drivers/target/sbp/ | |
3292 | ||
7d2c86b5 | 3293 | FIREWIRE SUBSYSTEM |
8b58be88 | 3294 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3295 | L: [email protected] |
958a29cb | 3296 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3298 | S: Maintained |
679655da | 3299 | F: drivers/firewire/ |
8f06ce3b SR |
3300 | F: include/linux/firewire.h |
3301 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3302 | F: tools/firewire/ |
e2d1d6c0 RD |
3303 | |
3304 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3305 | M: Ming Lei <[email protected]> |
3306 | L: [email protected] | |
3307 | S: Maintained | |
679655da JP |
3308 | F: Documentation/firmware_class/ |
3309 | F: drivers/base/firmware*.c | |
3310 | F: include/linux/firmware.h | |
e2d1d6c0 | 3311 | |
9bb3c446 PK |
3312 | FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card) |
3313 | M: Joshua Morris <[email protected]> | |
3314 | M: Philip Kelleher <[email protected]> | |
3315 | S: Maintained | |
3316 | F: drivers/block/rsxx/ | |
3317 | ||
8206f664 JK |
3318 | FLOPPY DRIVER |
3319 | M: Jiri Kosina <[email protected]> | |
3320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3321 | S: Odd fixes | |
3322 | F: drivers/block/floppy.c | |
3323 | ||
9c9f32ed AR |
3324 | FMC SUBSYSTEM |
3325 | M: Alessandro Rubini <[email protected]> | |
3326 | W: http://www.ohwr.org/projects/fmc-bus | |
3327 | S: Supported | |
3328 | F: drivers/fmc/ | |
3329 | F: include/linux/fmc*.h | |
3330 | F: include/linux/ipmi-fru.h | |
3331 | K: fmc_d.*register | |
3332 | ||
e2d1d6c0 | 3333 | FPU EMULATOR |
8b58be88 | 3334 | M: Bill Metzenthen <[email protected]> |
e769980f | 3335 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3336 | S: Maintained |
679655da | 3337 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3338 | |
3339 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3340 | L: [email protected] |
c173bfac | 3341 | S: Orphan |
679655da JP |
3342 | F: drivers/net/wan/dlci.c |
3343 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3344 | |
3345 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3346 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3347 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3348 | L: [email protected] |
e2d1d6c0 | 3349 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3350 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3351 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3352 | S: Maintained |
679655da | 3353 | F: Documentation/fb/ |
d958c62c | 3354 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3355 | F: drivers/video/ |
3356 | F: include/video/ | |
679655da | 3357 | F: include/linux/fb.h |
c117ab84 CEB |
3358 | F: include/uapi/video/ |
3359 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3360 | |
a57c188e | 3361 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3362 | M: Timur Tabi <[email protected]> |
a57c188e | 3363 | L: [email protected] |
c4ef9bc4 | 3364 | S: Maintained |
a57c188e TT |
3365 | F: drivers/video/fsl-diu-fb.* |
3366 | ||
e2d1d6c0 | 3367 | FREESCALE DMA DRIVER |
8b58be88 JP |
3368 | M: Li Yang <[email protected]> |
3369 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3370 | L: [email protected] |
e2d1d6c0 | 3371 | S: Maintained |
679655da | 3372 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3373 | |
3374 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3375 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3376 | L: [email protected] |
846557d3 | 3377 | L: [email protected] |
0d2b405a | 3378 | S: Maintained |
679655da | 3379 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3380 | |
60e8c5ab | 3381 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3382 | M: Sascha Hauer <[email protected]> |
c69f677c | 3383 | L: [email protected] |
efc03ecb | 3384 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3385 | S: Maintained |
bad985a1 | 3386 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3387 | F: drivers/video/imxfb.c |
60e8c5ab | 3388 | |
4689a6b1 | 3389 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3390 | M: Pantelis Antoniou <[email protected]> |
3391 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3392 | L: [email protected] |
4689a6b1 PA |
3393 | L: [email protected] |
3394 | S: Maintained | |
ec21e2ec | 3395 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3396 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3397 | |
d9e9d82c | 3398 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3399 | L: [email protected] |
c4ef9bc4 | 3400 | S: Orphan |
679655da JP |
3401 | F: arch/powerpc/sysdev/qe_lib/ |
3402 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3403 | |
b55ef929 | 3404 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3405 | M: Li Yang <[email protected]> |
6372594a | 3406 | L: [email protected] |
a4724ed6 | 3407 | L: [email protected] |
a7205b30 | 3408 | S: Maintained |
5429c731 | 3409 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3410 | |
beaf53bf | 3411 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3412 | M: Li Yang <[email protected]> |
beaf53bf | 3413 | L: [email protected] |
a4724ed6 | 3414 | L: [email protected] |
beaf53bf | 3415 | S: Maintained |
ec21e2ec | 3416 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3417 | |
d9e9d82c | 3418 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3419 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3420 | L: [email protected] |
c4ef9bc4 | 3421 | S: Maintained |
df621252 | 3422 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3423 | |
3424 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3425 | M: Timur Tabi <[email protected]> |
93711660 | 3426 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3427 | L: [email protected] |
c4ef9bc4 | 3428 | S: Maintained |
69aefcea JP |
3429 | F: sound/soc/fsl/fsl* |
3430 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3431 | |
1da177e4 | 3432 | FREEVXFS FILESYSTEM |
8b58be88 | 3433 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3434 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3435 | S: Maintained | |
679655da | 3436 | F: fs/freevxfs/ |
1da177e4 | 3437 | |
71038f52 | 3438 | FREEZER |
8b58be88 JP |
3439 | M: Pavel Machek <[email protected]> |
3440 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3441 | L: [email protected] |
71038f52 | 3442 | S: Supported |
679655da JP |
3443 | F: Documentation/power/freezing-of-tasks.txt |
3444 | F: include/linux/freezer.h | |
3445 | F: kernel/freezer.c | |
71038f52 | 3446 | |
839a1f79 KRW |
3447 | FRONTSWAP API |
3448 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3449 | L: [email protected] | |
3450 | S: Maintained | |
3451 | F: mm/frontswap.c | |
3452 | F: include/linux/frontswap.h | |
3453 | ||
a5432f5a | 3454 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3455 | M: David Howells <[email protected]> |
a5432f5a DH |
3456 | L: [email protected] |
3457 | S: Supported | |
3458 | F: Documentation/filesystems/caching/ | |
3459 | F: fs/fscache/ | |
3460 | F: include/linux/fscache*.h | |
3461 | ||
f58ad8f5 JK |
3462 | F2FS FILE SYSTEM |
3463 | M: Jaegeuk Kim <[email protected]> | |
3464 | L: [email protected] | |
3465 | W: http://en.wikipedia.org/wiki/F2FS | |
3466 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3467 | S: Maintained | |
3468 | F: Documentation/filesystems/f2fs.txt | |
3469 | F: fs/f2fs/ | |
3470 | F: include/linux/f2fs_fs.h | |
3471 | ||
5ab7ffea | 3472 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3473 | M: David Howells <[email protected]> |
1da177e4 | 3474 | S: Maintained |
679655da | 3475 | F: arch/frv/ |
1da177e4 | 3476 | |
20b93734 | 3477 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3478 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3479 | L: [email protected] |
20b93734 | 3480 | S: Maintained |
679655da | 3481 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3482 | |
4da621b6 HK |
3483 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3484 | M: Kyungmin Park <[email protected]> | |
3485 | M: Heungjun Kim <[email protected]> | |
3486 | L: [email protected] | |
3487 | S: Maintained | |
90d72ac6 | 3488 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3489 | F: include/media/m5mols.h |
3490 | ||
2d24c490 RG |
3491 | FUJITSU TABLET EXTRAS |
3492 | M: Robert Gerlach <[email protected]> | |
3493 | L: [email protected] | |
3494 | S: Maintained | |
3495 | F: drivers/platform/x86/fujitsu-tablet.c | |
3496 | ||
04578f17 | 3497 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3498 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3499 | L: [email protected] |
3500 | W: http://fuse.sourceforge.net/ | |
3501 | S: Maintained | |
679655da | 3502 | F: fs/fuse/ |
c117ab84 | 3503 | F: include/uapi/linux/fuse.h |
04578f17 | 3504 | |
1da177e4 | 3505 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3506 | M: Rik Faith <[email protected]> |
1da177e4 | 3507 | L: [email protected] |
baaea1dc | 3508 | S: Odd Fixes (e.g., new signatures) |
679655da | 3509 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3510 | |
3511 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3512 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3513 | L: [email protected] |
3514 | W: http://www.icp-vortex.com/ | |
3515 | S: Supported | |
679655da | 3516 | F: drivers/scsi/gdt* |
1da177e4 | 3517 | |
3169a1c7 HV |
3518 | GEMTEK FM RADIO RECEIVER DRIVER |
3519 | M: Hans Verkuil <[email protected]> | |
3520 | L: [email protected] | |
3521 | T: git git://linuxtv.org/media_tree.git | |
3522 | W: http://linuxtv.org | |
3523 | S: Maintained | |
3524 | F: drivers/media/radio/radio-gemtek* | |
3525 | ||
1c23af90 | 3526 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3527 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3528 | S: Supported |
679655da JP |
3529 | F: drivers/i2c/busses/i2c-gpio.c |
3530 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3531 | |
92ed1a76 PK |
3532 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3533 | M: Peter Korsgaard <[email protected]> | |
3534 | L: [email protected] | |
3535 | S: Supported | |
e7065e20 JD |
3536 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3537 | F: include/linux/i2c-mux-gpio.h | |
3538 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3539 | |
9251ce95 | 3540 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3541 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3542 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3543 | S: Maintained | |
679655da JP |
3544 | F: drivers/net/wan/c101.c |
3545 | F: drivers/net/wan/hd6457* | |
3546 | F: drivers/net/wan/hdlc* | |
3547 | F: drivers/net/wan/n2.c | |
3548 | F: drivers/net/wan/pc300too.c | |
3549 | F: drivers/net/wan/pci200syn.c | |
3550 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3551 | |
1527aab6 | 3552 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3553 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3554 | L: [email protected] |
3555 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3556 | S: Maintained | |
3557 | F: include/asm-generic | |
c117ab84 | 3558 | F: include/uapi/asm-generic |
1527aab6 | 3559 | |
ccb86a69 | 3560 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3561 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3562 | L: [email protected] |
ccb86a69 MT |
3563 | S: Supported |
3564 | F: drivers/uio/uio_pci_generic.c | |
3565 | ||
5be7b50f | 3566 | GFS2 FILE SYSTEM |
8b58be88 | 3567 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3568 | L: [email protected] |
5be7b50f | 3569 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3571 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3572 | S: Supported |
679655da JP |
3573 | F: Documentation/filesystems/gfs2*.txt |
3574 | F: fs/gfs2/ | |
c117ab84 | 3575 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3576 | |
0a34eb8f | 3577 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3578 | M: Hansjoerg Lipp <[email protected]> |
3579 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3580 | L: [email protected] |
3581 | W: http://gigaset307x.sourceforge.net/ | |
3582 | S: Maintained | |
679655da JP |
3583 | F: Documentation/isdn/README.gigaset |
3584 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3585 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3586 | |
a0dc00b4 | 3587 | GPIO SUBSYSTEM |
19624236 | 3588 | M: Grant Likely <[email protected]> |
e4651a9f | 3589 | M: Linus Walleij <[email protected]> |
a0dc00b4 GL |
3590 | S: Maintained |
3591 | T: git git://git.secretlab.ca/git/linux-2.6.git | |
98909cf0 | 3592 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3593 | F: drivers/gpio/ |
3594 | F: include/linux/gpio* | |
9b692346 | 3595 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3596 | |
71a6d0af HW |
3597 | GRE DEMULTIPLEXER DRIVER |
3598 | M: Dmitry Kozlov <[email protected]> | |
3599 | L: [email protected] | |
3600 | S: Maintained | |
3601 | F: net/ipv4/gre.c | |
3602 | F: include/net/gre.h | |
3603 | ||
d4c41139 KG |
3604 | GRETH 10/100/1G Ethernet MAC device driver |
3605 | M: Kristoffer Glembo <[email protected]> | |
3606 | L: [email protected] | |
3607 | S: Maintained | |
a31a96ad | 3608 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3609 | |
e8deeae2 | 3610 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3611 | M: Frank Zago <[email protected]> |
661263b5 | 3612 | L: [email protected] |
275ffde4 | 3613 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3614 | S: Maintained |
0c0d06ca | 3615 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3616 | |
4b3fa3c4 OL |
3617 | GSPCA GL860 SUBDRIVER |
3618 | M: Olivier Lorin <[email protected]> | |
3619 | L: [email protected] | |
275ffde4 | 3620 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3621 | S: Maintained |
0c0d06ca | 3622 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3623 | |
e8deeae2 | 3624 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3625 | M: Erik Andren <[email protected]> |
661263b5 | 3626 | L: [email protected] |
275ffde4 | 3627 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3628 | S: Maintained |
0c0d06ca | 3629 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3630 | |
3631 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3632 | M: Hans de Goede <[email protected]> |
661263b5 | 3633 | L: [email protected] |
275ffde4 | 3634 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3635 | S: Maintained |
0c0d06ca | 3636 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3637 | |
261982f1 | 3638 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3639 | M: Brian Johnson <[email protected]> |
261982f1 | 3640 | L: [email protected] |
275ffde4 | 3641 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3642 | S: Maintained |
0c0d06ca | 3643 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3644 | |
e8deeae2 | 3645 | GSPCA T613 SUBDRIVER |
8b58be88 | 3646 | M: Leandro Costantino <[email protected]> |
661263b5 | 3647 | L: [email protected] |
275ffde4 | 3648 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3649 | S: Maintained |
0c0d06ca | 3650 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3651 | |
3652 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3653 | M: Hans de Goede <[email protected]> |
661263b5 | 3654 | L: [email protected] |
275ffde4 | 3655 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3656 | S: Maintained |
0c0d06ca | 3657 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3658 | |
aa3c598b EG |
3659 | STK1160 USB VIDEO CAPTURE DRIVER |
3660 | M: Ezequiel Garcia <[email protected]> | |
3661 | L: [email protected] | |
275ffde4 | 3662 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3663 | S: Maintained |
3664 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3665 | |
71a6d0af HW |
3666 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3667 | M: Frank Seidel <[email protected]> | |
3668 | L: [email protected] | |
3669 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3670 | S: Maintained | |
3671 | F: drivers/platform/x86/hdaps.c | |
3672 | ||
48fc9e26 HV |
3673 | HDPVR USB VIDEO ENCODER DRIVER |
3674 | M: Hans Verkuil <[email protected]> | |
3675 | L: [email protected] | |
3676 | T: git git://linuxtv.org/media_tree.git | |
3677 | W: http://linuxtv.org | |
3678 | S: Odd Fixes | |
3679 | F: drivers/media/usb/hdpvr | |
3680 | ||
71a6d0af HW |
3681 | HWPOISON MEMORY FAILURE HANDLING |
3682 | M: Andi Kleen <[email protected]> | |
3683 | L: [email protected] | |
3684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3685 | S: Maintained | |
3686 | F: mm/memory-failure.c | |
3687 | F: mm/hwpoison-inject.c | |
3688 | ||
3689 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3690 | L: [email protected] | |
3691 | S: Odd Fixes | |
3692 | F: drivers/tty/hvc/ | |
3693 | ||
5b543965 | 3694 | HARDWARE MONITORING |
9e012c1a | 3695 | M: Jean Delvare <[email protected]> |
ca462085 | 3696 | M: Guenter Roeck <[email protected]> |
5b543965 | 3697 | L: [email protected] |
595142e0 | 3698 | W: http://www.lm-sensors.org/ |
9e012c1a | 3699 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3701 | S: Maintained |
047f4ec2 | 3702 | F: Documentation/hwmon/ |
679655da | 3703 | F: drivers/hwmon/ |
047f4ec2 | 3704 | F: include/linux/hwmon*.h |
5b543965 | 3705 | |
844dd05f | 3706 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3707 | M: Matt Mackall <[email protected]> |
3708 | M: Herbert Xu <[email protected]> | |
3709 | S: Odd fixes | |
679655da JP |
3710 | F: Documentation/hw_random.txt |
3711 | F: drivers/char/hw_random/ | |
3712 | F: include/linux/hw_random.h | |
844dd05f | 3713 | |
8b37fcfc OBC |
3714 | HARDWARE SPINLOCK CORE |
3715 | M: Ohad Ben-Cohen <[email protected]> | |
3716 | S: Maintained | |
3717 | F: Documentation/hwspinlock.txt | |
3718 | F: drivers/hwspinlock/hwspinlock_* | |
3719 | F: include/linux/hwspinlock.h | |
3720 | ||
1da177e4 | 3721 | HARMONY SOUND DRIVER |
ac6aecbf | 3722 | L: [email protected] |
1da177e4 | 3723 | S: Maintained |
679655da | 3724 | F: sound/parisc/harmony.* |
1da177e4 | 3725 | |
91952bc0 AP |
3726 | HD29L2 MEDIA DRIVER |
3727 | M: Antti Palosaari <[email protected]> | |
3728 | L: [email protected] | |
3729 | W: http://linuxtv.org/ | |
3730 | W: http://palosaari.fi/linux/ | |
3731 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3732 | T: git git://linuxtv.org/anttip/media_tree.git | |
3733 | S: Maintained | |
3734 | F: drivers/media/dvb-frontends/hd29l2* | |
3735 | ||
e2d1d6c0 | 3736 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3737 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3738 | L: [email protected] |
3739 | S: Maintained | |
679655da JP |
3740 | F: Documentation/blockdev/cpqarray.txt |
3741 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3742 | |
9257aa49 | 3743 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3744 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3745 | L: [email protected] |
3746 | S: Supported | |
3747 | F: Documentation/scsi/hpsa.txt | |
3748 | F: drivers/scsi/hpsa*.[ch] | |
3749 | F: include/linux/cciss*.h | |
c117ab84 | 3750 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3751 | |
e2d1d6c0 | 3752 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3753 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3754 | L: [email protected] |
3755 | S: Supported | |
679655da JP |
3756 | F: Documentation/blockdev/cciss.txt |
3757 | F: drivers/block/cciss* | |
3758 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3759 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3760 | |
1da177e4 | 3761 | HFS FILESYSTEM |
6cf515e1 GU |
3762 | L: [email protected] |
3763 | S: Orphan | |
679655da JP |
3764 | F: Documentation/filesystems/hfs.txt |
3765 | F: fs/hfs/ | |
1da177e4 LT |
3766 | |
3767 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3768 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3769 | L: [email protected] |
3770 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3771 | S: Maintained | |
679655da | 3772 | F: drivers/video/hgafb.c |
1da177e4 | 3773 | |
4480f15b | 3774 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3775 | M: Pavel Machek <[email protected]> |
3776 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3777 | L: [email protected] |
e2d1d6c0 | 3778 | S: Supported |
679655da JP |
3779 | F: arch/x86/power/ |
3780 | F: drivers/base/power/ | |
3781 | F: kernel/power/ | |
3782 | F: include/linux/suspend.h | |
3783 | F: include/linux/freezer.h | |
3784 | F: include/linux/pm.h | |
679655da | 3785 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3786 | |
4ef4caad | 3787 | HID CORE LAYER |
8b58be88 | 3788 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3789 | L: [email protected] |
54e5881d | 3790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3791 | S: Maintained |
679655da JP |
3792 | F: drivers/hid/ |
3793 | F: include/linux/hid* | |
c117ab84 | 3794 | F: include/uapi/linux/hid* |
4ef4caad | 3795 | |
38bed542 | 3796 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3797 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3799 | S: Maintained |
679655da JP |
3800 | F: Documentation/timers/ |
3801 | F: kernel/hrtimer.c | |
88606e80 TG |
3802 | F: kernel/time/clockevents.c |
3803 | F: kernel/time/tick*.* | |
3804 | F: kernel/time/timer_*.c | |
05ed8490 | 3805 | F: include/linux/clockchips.h |
679655da | 3806 | F: include/linux/hrtimer.h |
38bed542 | 3807 | |
1da177e4 | 3808 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3809 | L: [email protected] |
8b64f2a0 | 3810 | S: Orphan |
679655da JP |
3811 | F: drivers/net/hamradio/dmascc.c |
3812 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3813 | |
ede1e6f8 | 3814 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3815 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3816 | W: http://www.highpoint-tech.com |
3817 | S: Supported | |
679655da JP |
3818 | F: Documentation/scsi/hptiop.txt |
3819 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3820 | |
1da177e4 | 3821 | HIPPI |
8b58be88 | 3822 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
3823 | L: [email protected] |
3824 | S: Maintained | |
679655da | 3825 | F: include/linux/hippidevice.h |
c117ab84 | 3826 | F: include/uapi/linux/if_hippi.h |
679655da | 3827 | F: net/802/hippi.c |
ff5a3b50 | 3828 | F: drivers/net/hippi/ |
1da177e4 | 3829 | |
ff1d2767 | 3830 | HOST AP DRIVER |
8b58be88 | 3831 | M: Jouni Malinen <[email protected]> |
85d32e7b | 3832 | L: [email protected] (subscribers-only) |
724c6b35 | 3833 | L: [email protected] |
ff1d2767 JM |
3834 | W: http://hostap.epitest.fi/ |
3835 | S: Maintained | |
679655da | 3836 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3837 | |
dd8cd779 | 3838 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3839 | L: [email protected] |
95c70215 | 3840 | S: Orphan |
679655da | 3841 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3842 | |
e2d1d6c0 | 3843 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3844 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3845 | S: Maintained |
7e25d724 | 3846 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3847 | |
7d2c86b5 | 3848 | HPET: High Precision Event Timers driver |
8b58be88 | 3849 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 3850 | S: Maintained |
679655da JP |
3851 | F: Documentation/timers/hpet.txt |
3852 | F: drivers/char/hpet.c | |
3853 | F: include/linux/hpet.h | |
c117ab84 | 3854 | F: include/uapi/linux/hpet.h |
b9b0332f | 3855 | |
e07b5d79 | 3856 | HPET: x86 |
9c5fb19a | 3857 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 3858 | S: Maintained |
679655da JP |
3859 | F: arch/x86/kernel/hpet.c |
3860 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3861 | |
1da177e4 | 3862 | HPFS FILESYSTEM |
8b58be88 | 3863 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
3864 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3865 | S: Maintained | |
679655da | 3866 | F: fs/hpfs/ |
1da177e4 | 3867 | |
7d2c86b5 | 3868 | HSO 3G MODEM DRIVER |
8b58be88 | 3869 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
3870 | W: http://www.pharscape.org |
3871 | S: Maintained | |
679655da | 3872 | F: drivers/net/usb/hso.c |
11cd29b0 | 3873 | |
5a18c343 | 3874 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3875 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
3876 | L: [email protected] |
3877 | S: Maintained | |
679655da | 3878 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3879 | |
1da177e4 | 3880 | HUGETLB FILESYSTEM |
6d49e352 | 3881 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 3882 | S: Maintained |
679655da | 3883 | F: fs/hugetlbfs/ |
1da177e4 | 3884 | |
05183189 S |
3885 | Hyper-V CORE AND DRIVERS |
3886 | M: K. Y. Srinivasan <[email protected]> | |
3887 | M: Haiyang Zhang <[email protected]> | |
3888 | L: [email protected] | |
3889 | S: Maintained | |
a4162747 HZ |
3890 | F: arch/x86/include/asm/mshyperv.h |
3891 | F: arch/x86/include/uapi/asm/hyperv.h | |
3892 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 3893 | F: drivers/hid/hid-hyperv.c |
a4162747 | 3894 | F: drivers/hv/ |
05183189 | 3895 | F: drivers/net/hyperv/ |
a4162747 HZ |
3896 | F: drivers/scsi/storvsc_drv.c |
3897 | F: drivers/video/hyperv_fb.c | |
3898 | F: include/linux/hyperv.h | |
3899 | F: tools/hv/ | |
05183189 | 3900 | |
d85c8a6a JD |
3901 | I2C OVER PARALLEL PORT |
3902 | M: Jean Delvare <[email protected]> | |
3903 | L: [email protected] | |
3904 | S: Maintained | |
3905 | F: Documentation/i2c/busses/i2c-parport | |
3906 | F: Documentation/i2c/busses/i2c-parport-light | |
3907 | F: drivers/i2c/busses/i2c-parport.c | |
3908 | F: drivers/i2c/busses/i2c-parport-light.c | |
3909 | ||
3910 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
3911 | M: Jean Delvare <[email protected]> | |
3912 | L: [email protected] | |
3913 | S: Maintained | |
3914 | F: Documentation/i2c/busses/i2c-ali1535 | |
3915 | F: Documentation/i2c/busses/i2c-ali1563 | |
3916 | F: Documentation/i2c/busses/i2c-ali15x3 | |
3917 | F: Documentation/i2c/busses/i2c-amd756 | |
3918 | F: Documentation/i2c/busses/i2c-amd8111 | |
3919 | F: Documentation/i2c/busses/i2c-i801 | |
3920 | F: Documentation/i2c/busses/i2c-nforce2 | |
3921 | F: Documentation/i2c/busses/i2c-piix4 | |
3922 | F: Documentation/i2c/busses/i2c-sis5595 | |
3923 | F: Documentation/i2c/busses/i2c-sis630 | |
3924 | F: Documentation/i2c/busses/i2c-sis96x | |
3925 | F: Documentation/i2c/busses/i2c-via | |
3926 | F: Documentation/i2c/busses/i2c-viapro | |
3927 | F: drivers/i2c/busses/i2c-ali1535.c | |
3928 | F: drivers/i2c/busses/i2c-ali1563.c | |
3929 | F: drivers/i2c/busses/i2c-ali15x3.c | |
3930 | F: drivers/i2c/busses/i2c-amd756.c | |
3931 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
3932 | F: drivers/i2c/busses/i2c-amd8111.c | |
3933 | F: drivers/i2c/busses/i2c-i801.c | |
3934 | F: drivers/i2c/busses/i2c-isch.c | |
3935 | F: drivers/i2c/busses/i2c-nforce2.c | |
3936 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
3937 | F: drivers/i2c/busses/i2c-piix4.c | |
3938 | F: drivers/i2c/busses/i2c-sis5595.c | |
3939 | F: drivers/i2c/busses/i2c-sis630.c | |
3940 | F: drivers/i2c/busses/i2c-sis96x.c | |
3941 | F: drivers/i2c/busses/i2c-via.c | |
3942 | F: drivers/i2c/busses/i2c-viapro.c | |
3943 | ||
cb7f07a4 NH |
3944 | I2C/SMBUS ISMT DRIVER |
3945 | M: Seth Heasley <[email protected]> | |
3946 | M: Neil Horman <[email protected]> | |
3947 | L: [email protected] | |
3948 | F: drivers/i2c/busses/i2c-ismt.c | |
3949 | F: Documentation/i2c/busses/i2c-ismt | |
3950 | ||
6ea884db | 3951 | I2C/SMBUS STUB DRIVER |
94877548 | 3952 | M: Jean Delvare <[email protected]> |
846557d3 | 3953 | L: [email protected] |
6ea884db | 3954 | S: Maintained |
8547a5bc | 3955 | F: drivers/i2c/i2c-stub.c |
6ea884db | 3956 | |
5b543965 | 3957 | I2C SUBSYSTEM |
14d77c4d | 3958 | M: Wolfram Sang <[email protected]> |
846557d3 | 3959 | L: [email protected] |
a01064a9 | 3960 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 3961 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 3962 | S: Maintained |
679655da JP |
3963 | F: Documentation/i2c/ |
3964 | F: drivers/i2c/ | |
3965 | F: include/linux/i2c.h | |
03b70d62 | 3966 | F: include/linux/i2c-*.h |
c117ab84 CEB |
3967 | F: include/uapi/linux/i2c.h |
3968 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 3969 | |
d85c8a6a JD |
3970 | I2C-TAOS-EVM DRIVER |
3971 | M: Jean Delvare <[email protected]> | |
3972 | L: [email protected] | |
3973 | S: Maintained | |
3974 | F: Documentation/i2c/busses/i2c-taos-evm | |
3975 | F: drivers/i2c/busses/i2c-taos-evm.c | |
3976 | ||
e8c76eed | 3977 | I2C-TINY-USB DRIVER |
8b58be88 | 3978 | M: Till Harbaum <[email protected]> |
846557d3 | 3979 | L: [email protected] |
932d1872 | 3980 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 3981 | S: Maintained |
679655da | 3982 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 3983 | |
1da177e4 | 3984 | i386 BOOT CODE |
8b58be88 | 3985 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 3986 | S: Maintained |
679655da | 3987 | F: arch/x86/boot/ |
1da177e4 LT |
3988 | |
3989 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 3990 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 3991 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
3992 | S: Maintained |
3993 | ||
1da177e4 | 3994 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
3995 | M: Tony Luck <[email protected]> |
3996 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 3997 | L: [email protected] |
6b1c70b1 | 3998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 3999 | S: Maintained |
679655da | 4000 | F: arch/ia64/ |
1da177e4 | 4001 | |
956c203c KY |
4002 | IBM Power in-Nest Crypto Acceleration |
4003 | M: Kent Yoder <[email protected]> | |
4004 | L: [email protected] | |
4005 | S: Supported | |
4006 | F: drivers/crypto/nx/ | |
4007 | ||
0e16aafb SJ |
4008 | IBM Power 842 compression accelerator |
4009 | M: Robert Jennings <[email protected]> | |
4010 | S: Supported | |
4011 | F: drivers/crypto/nx/nx-842.c | |
4012 | F: include/linux/nx842.h | |
4013 | ||
1da177e4 | 4014 | IBM Power Linux RAID adapter |
8b58be88 | 4015 | M: Brian King <[email protected]> |
1da177e4 | 4016 | S: Supported |
679655da | 4017 | F: drivers/scsi/ipr.* |
1da177e4 | 4018 | |
9d348af4 SL |
4019 | IBM Power Virtual Ethernet Device Driver |
4020 | M: Santiago Leon <[email protected]> | |
4021 | L: [email protected] | |
4022 | S: Supported | |
9aa32835 | 4023 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4024 | |
4b7652cc RJ |
4025 | IBM Power Virtual SCSI/FC Device Drivers |
4026 | M: Robert Jennings <[email protected]> | |
4027 | L: [email protected] | |
4028 | S: Supported | |
4029 | F: drivers/scsi/ibmvscsi/ | |
4030 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4031 | ||
1da177e4 LT |
4032 | IBM ServeRAID RAID DRIVER |
4033 | P: Jack Hammer | |
8b58be88 | 4034 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4035 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4036 | S: Supported |
679655da | 4037 | F: drivers/scsi/ips.* |
1da177e4 | 4038 | |
6ed9f9c4 PT |
4039 | ICH LPC AND GPIO DRIVER |
4040 | M: Peter Tyser <[email protected]> | |
4041 | S: Maintained | |
4042 | F: drivers/mfd/lpc_ich.c | |
4043 | F: drivers/gpio/gpio-ich.c | |
4044 | ||
1e7106fc | 4045 | IDE SUBSYSTEM |
8b58be88 | 4046 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4047 | L: [email protected] |
8a6e2535 | 4048 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4050 | S: Maintained |
679655da JP |
4051 | F: Documentation/ide/ |
4052 | F: drivers/ide/ | |
4053 | F: include/linux/ide.h | |
1da177e4 | 4054 | |
6cb8c13d IP |
4055 | IDEAPAD LAPTOP EXTRAS DRIVER |
4056 | M: Ike Panhc <[email protected]> | |
4057 | L: [email protected] | |
4058 | W: http://launchpad.net/ideapad-laptop | |
4059 | S: Maintained | |
4060 | F: drivers/platform/x86/ideapad-laptop.c | |
4061 | ||
0f861e8c | 4062 | IDE/ATAPI DRIVERS |
487ba8e8 | 4063 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4064 | L: [email protected] |
c404c199 | 4065 | S: Maintained |
679655da JP |
4066 | F: Documentation/cdrom/ide-cd |
4067 | F: drivers/ide/ide-cd* | |
1da177e4 | 4068 | |
27471fdb | 4069 | IDLE-I7300 |
8b58be88 | 4070 | M: Andy Henroid <[email protected]> |
bf1c138e | 4071 | L: [email protected] |
27471fdb | 4072 | S: Supported |
679655da | 4073 | F: drivers/idle/i7300_idle.c |
27471fdb | 4074 | |
02cf2286 | 4075 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4076 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4077 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4078 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4079 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4080 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4081 | S: Maintained |
4082 | F: net/ieee802154/ | |
68653359 | 4083 | F: net/mac802154/ |
251741b1 | 4084 | F: drivers/net/ieee802154/ |
02cf2286 | 4085 | |
40ad4a30 SY |
4086 | IGUANAWORKS USB IR TRANSCEIVER |
4087 | M: Sean Young <[email protected]> | |
4088 | L: [email protected] | |
4089 | S: Maintained | |
4090 | F: drivers/media/rc/iguanair.c | |
4091 | ||
9545f86e AP |
4092 | IIO SUBSYSTEM AND DRIVERS |
4093 | M: Jonathan Cameron <[email protected]> | |
4094 | L: [email protected] | |
4095 | S: Maintained | |
03e7c251 | 4096 | F: drivers/iio/ |
9545f86e AP |
4097 | F: drivers/staging/iio/ |
4098 | ||
65519263 SG |
4099 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4100 | M: Matthieu Castet <[email protected]> | |
4101 | M: Stanislaw Gruszka <[email protected]> | |
4102 | S: Maintained | |
4103 | F: drivers/usb/atm/ueagle-atm.c | |
4104 | ||
e89ab51f GR |
4105 | INA209 HARDWARE MONITOR DRIVER |
4106 | M: Guenter Roeck <[email protected]> | |
4107 | L: [email protected] | |
4108 | S: Maintained | |
4109 | F: Documentation/hwmon/ina209 | |
4110 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4111 | F: drivers/hwmon/ina209.c | |
4112 | ||
4113 | INA2XX HARDWARE MONITOR DRIVER | |
4114 | M: Guenter Roeck <[email protected]> | |
4115 | L: [email protected] | |
4116 | S: Maintained | |
4117 | F: Documentation/hwmon/ina2xx | |
4118 | F: drivers/hwmon/ina2xx.c | |
4119 | F: include/linux/platform_data/ina2xx.h | |
4120 | ||
14dc124f SIG |
4121 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4122 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4123 | M: Jens Taprogge <[email protected]> | |
4124 | M: Greg Kroah-Hartman <[email protected]> | |
4125 | L: [email protected] | |
4126 | W: http://industrypack.sourceforge.net | |
4127 | S: Maintained | |
4128 | F: drivers/ipack/ | |
4129 | ||
aa7168f4 | 4130 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4131 | M: Mimi Zohar <[email protected]> |
aa7168f4 | 4132 | S: Supported |
679655da | 4133 | F: security/integrity/ima/ |
aa7168f4 | 4134 | |
1da177e4 | 4135 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4136 | L: [email protected] |
843393d3 | 4137 | S: Orphan |
679655da | 4138 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4139 | |
4140 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4141 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4142 | M: Sean Hefty <[email protected]> |
4143 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4144 | L: [email protected] |
605841f5 | 4145 | W: http://www.openfabrics.org/ |
8a6e2535 | 4146 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4148 | S: Supported |
679655da JP |
4149 | F: Documentation/infiniband/ |
4150 | F: drivers/infiniband/ | |
c117ab84 | 4151 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4152 | |
c9f04f58 | 4153 | INOTIFY |
8b58be88 JP |
4154 | M: John McCutchan <[email protected]> |
4155 | M: Robert Love <[email protected]> | |
4156 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4157 | S: Maintained |
679655da JP |
4158 | F: Documentation/filesystems/inotify.txt |
4159 | F: fs/notify/inotify/ | |
4160 | F: include/linux/inotify.h | |
c117ab84 | 4161 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4162 | |
e2d1d6c0 | 4163 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4164 | M: Dmitry Torokhov <[email protected]> |
4165 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4166 | L: [email protected] |
8a6e2535 | 4167 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4169 | S: Maintained |
679655da | 4170 | F: drivers/input/ |
f4eea7e2 | 4171 | F: include/linux/input.h |
c117ab84 | 4172 | F: include/uapi/linux/input.h |
f4eea7e2 | 4173 | F: include/linux/input/ |
e2d1d6c0 | 4174 | |
3267a87f HR |
4175 | INPUT MULTITOUCH (MT) PROTOCOL |
4176 | M: Henrik Rydberg <[email protected]> | |
4177 | L: [email protected] | |
7f9c2454 | 4178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4179 | S: Maintained |
4180 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4181 | F: drivers/input/input-mt.c |
3267a87f HR |
4182 | K: \b(ABS|SYN)_MT_ |
4183 | ||
4ac13e17 DJ |
4184 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4185 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4186 | M: Lukasz Dorau <[email protected]> |
4187 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4188 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4189 | L: [email protected] |
7106891a DJ |
4190 | T: git git://git.code.sf.net/p/intel-sas/isci |
4191 | S: Supported | |
4ac13e17 | 4192 | F: drivers/scsi/isci/ |
4ac13e17 | 4193 | |
26717172 LB |
4194 | INTEL IDLE DRIVER |
4195 | M: Len Brown <[email protected]> | |
bf1c138e | 4196 | L: [email protected] |
08deed1e | 4197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4198 | S: Supported |
4199 | F: drivers/idle/intel_idle.c | |
4200 | ||
9eb8ef74 | 4201 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4202 | M: Maik Broemme <[email protected]> |
c69f677c | 4203 | L: [email protected] |
ce00f85c | 4204 | S: Maintained |
679655da JP |
4205 | F: Documentation/fb/intelfb.txt |
4206 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4207 | |
1da177e4 | 4208 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4209 | M: Antonino Daplas <[email protected]> |
c69f677c | 4210 | L: [email protected] |
ce00f85c | 4211 | S: Maintained |
679655da | 4212 | F: drivers/video/i810/ |
1da177e4 | 4213 | |
f4a9bc4c | 4214 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4215 | M: Sujith Thomas <[email protected]> |
d0944853 | 4216 | L: [email protected] |
f4a9bc4c TS |
4217 | W: http://www.lesswatts.org/projects/acpi/ |
4218 | S: Supported | |
679655da | 4219 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4220 | |
1da177e4 | 4221 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4222 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4223 | S: Maintained |
679655da JP |
4224 | F: arch/x86/kernel/microcode_core.c |
4225 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4226 | |
248a9dc3 | 4227 | INTEL I/OAT DMA DRIVER |
1dd8372d DW |
4228 | M: Dan Williams <[email protected]> |
4229 | S: Maintained | |
679655da | 4230 | F: drivers/dma/ioat* |
248a9dc3 | 4231 | |
6c8909b4 | 4232 | INTEL IOMMU (VT-d) |
8b58be88 | 4233 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4234 | L: [email protected] |
54e5881d | 4235 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4236 | S: Supported |
3fb39615 | 4237 | F: drivers/iommu/intel-iommu.c |
679655da | 4238 | F: include/linux/intel-iommu.h |
6c8909b4 | 4239 | |
b3e5f263 | 4240 | INTEL IOP-ADMA DMA DRIVER |
1dd8372d DW |
4241 | M: Dan Williams <[email protected]> |
4242 | S: Odd fixes | |
679655da | 4243 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4244 | |
9251ce95 | 4245 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4246 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4247 | S: Maintained |
679655da JP |
4248 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4249 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4250 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4251 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4252 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4253 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4254 | |
844dd05f | 4255 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4256 | M: Deepak Saxena <[email protected]> |
844dd05f | 4257 | S: Maintained |
679655da | 4258 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4259 | |
0d164401 | 4260 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
4261 | M: Jeff Kirsher <[email protected]> |
4262 | M: Jesse Brandeburg <[email protected]> | |
4263 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4264 | M: Carolyn Wyborny <[email protected]> |
4265 | M: Don Skidmore <[email protected]> | |
4266 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4267 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4268 | M: Alex Duyck <[email protected]> |
8b58be88 | 4269 | M: John Ronciak <[email protected]> |
f6fde11a | 4270 | M: Tushar Dave <[email protected]> |
dcd01faf | 4271 | L: [email protected] |
f6fde11a | 4272 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4273 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4276 | S: Supported |
0d164401 JK |
4277 | F: Documentation/networking/e100.txt |
4278 | F: Documentation/networking/e1000.txt | |
4279 | F: Documentation/networking/e1000e.txt | |
4280 | F: Documentation/networking/igb.txt | |
4281 | F: Documentation/networking/igbvf.txt | |
4282 | F: Documentation/networking/ixgb.txt | |
4283 | F: Documentation/networking/ixgbe.txt | |
4284 | F: Documentation/networking/ixgbevf.txt | |
dee1ad47 | 4285 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4286 | |
ca907a90 SY |
4287 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4288 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4289 | L: [email protected] |
ca907a90 | 4290 | S: Maintained |
679655da | 4291 | F: Documentation/networking/README.ipw2100 |
679655da | 4292 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4293 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4294 | |
4bd96a7a | 4295 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4296 | M: Richard L Maliszewski <[email protected]> |
4297 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4298 | M: Shane Wang <[email protected]> |
4299 | L: [email protected] | |
4300 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4301 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4302 | S: Supported |
4303 | F: Documentation/intel_txt.txt | |
4304 | F: include/linux/tboot.h | |
4305 | F: arch/x86/kernel/tboot.c | |
4306 | ||
8a70da82 | 4307 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4308 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4309 | M: [email protected] |
4310 | L: [email protected] | |
4311 | S: Supported | |
4312 | W: http://linuxwimax.org | |
679655da JP |
4313 | F: Documentation/wimax/README.i2400m |
4314 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4315 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4316 | |
1c0ce89c SG |
4317 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4318 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4319 | L: [email protected] |
1c0ce89c | 4320 | S: Supported |
efa3144e WYG |
4321 | F: drivers/net/wireless/iwlegacy/ |
4322 | ||
b481de9c | 4323 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4324 | M: Johannes Berg <[email protected]> |
9edc71b7 | 4325 | M: Wey-Yi Guy <[email protected]> |
a0bf797f | 4326 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4327 | L: [email protected] |
b481de9c | 4328 | W: http://intellinuxwireless.org |
b62ff718 | 4329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4330 | S: Supported |
679655da | 4331 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4332 | |
de8fe023 TW |
4333 | INTEL MANAGEMENT ENGINE (mei) |
4334 | M: Tomas Winkler <[email protected]> | |
4335 | L: [email protected] | |
4336 | S: Supported | |
c117ab84 | 4337 | F: include/uapi/linux/mei.h |
de8fe023 | 4338 | F: drivers/misc/mei/* |
e07950a1 | 4339 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4340 | |
cb109a0e | 4341 | IOC3 ETHERNET DRIVER |
8b58be88 | 4342 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4343 | L: [email protected] |
4344 | S: Maintained | |
8862bf1e | 4345 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4346 | |
cb109a0e | 4347 | IOC3 SERIAL DRIVER |
8b58be88 | 4348 | M: Pat Gefre <[email protected]> |
d39e0721 | 4349 | L: [email protected] |
cb109a0e | 4350 | S: Maintained |
df621252 | 4351 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4352 | |
4480f15b | 4353 | IP MASQUERADING |
8b58be88 | 4354 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4355 | S: Maintained |
679655da | 4356 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4357 | |
1202d6ff | 4358 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4359 | M: Francois Romieu <[email protected]> |
4360 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4361 | L: [email protected] |
4362 | S: Maintained | |
7443713a | 4363 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4364 | |
4480f15b | 4365 | IPATH DRIVER |
8473c603 | 4366 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4367 | L: [email protected] |
52a09a04 | 4368 | S: Maintained |
679655da | 4369 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4370 | |
4409ebe9 | 4371 | IPMI SUBSYSTEM |
8b58be88 | 4372 | M: Corey Minyard <[email protected]> |
b0c90653 | 4373 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4374 | W: http://openipmi.sourceforge.net/ |
4375 | S: Supported | |
679655da JP |
4376 | F: Documentation/IPMI.txt |
4377 | F: drivers/char/ipmi/ | |
4378 | F: include/linux/ipmi* | |
c117ab84 | 4379 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4380 | |
e2d1d6c0 | 4381 | IPS SCSI RAID DRIVER |
8b58be88 | 4382 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4383 | L: [email protected] |
4384 | W: http://www.adaptec.com/ | |
4385 | S: Maintained | |
679655da | 4386 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4387 | |
4388 | IPVS | |
8b58be88 JP |
4389 | M: Wensong Zhang <[email protected]> |
4390 | M: Simon Horman <[email protected]> | |
4391 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4392 | L: [email protected] |
e2d1d6c0 | 4393 | L: [email protected] |
1da177e4 | 4394 | S: Maintained |
679655da | 4395 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4396 | F: include/net/ip_vs.h |
c117ab84 | 4397 | F: include/uapi/linux/ip_vs.h |
679655da | 4398 | F: net/netfilter/ipvs/ |
1da177e4 | 4399 | |
e7839f25 | 4400 | IPWIRELESS DRIVER |
8b58be88 JP |
4401 | M: Jiri Kosina <[email protected]> |
4402 | M: David Sterba <[email protected]> | |
92094aa0 | 4403 | S: Odd Fixes |
282361a0 | 4404 | F: drivers/tty/ipwireless/ |
099dc4fb | 4405 | |
e2d1d6c0 | 4406 | IPX NETWORK LAYER |
8b58be88 | 4407 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4408 | L: [email protected] |
4409 | S: Maintained | |
679655da | 4410 | F: include/net/ipx.h |
c117ab84 | 4411 | F: include/uapi/linux/ipx.h |
679655da | 4412 | F: net/ipx/ |
e2d1d6c0 | 4413 | |
1da177e4 | 4414 | IRDA SUBSYSTEM |
8b58be88 | 4415 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4416 | L: [email protected] (subscribers-only) |
ced649ea | 4417 | L: [email protected] |
1da177e4 | 4418 | W: http://irda.sourceforge.net/ |
f353976d | 4419 | S: Maintained |
e0057975 | 4420 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4421 | F: Documentation/networking/irda.txt |
4422 | F: drivers/net/irda/ | |
4423 | F: include/net/irda/ | |
4424 | F: net/irda/ | |
1da177e4 | 4425 | |
a800c7cc TG |
4426 | IRQ SUBSYSTEM |
4427 | M: Thomas Gleixner <[email protected]> | |
4428 | S: Maintained | |
75fc2d37 | 4429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4430 | F: kernel/irq/ |
edd96900 | 4431 | F: drivers/irqchip/ |
a800c7cc | 4432 | |
7ab3a837 GL |
4433 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4434 | M: Benjamin Herrenschmidt <[email protected]> | |
19624236 | 4435 | M: Grant Likely <[email protected]> |
7ab3a837 GL |
4436 | T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next |
4437 | S: Maintained | |
4438 | F: Documentation/IRQ-domain.txt | |
4439 | F: include/linux/irqdomain.h | |
4440 | F: kernel/irq/irqdomain.c | |
4441 | ||
e2d1d6c0 | 4442 | ISAPNP |
8b58be88 | 4443 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4444 | S: Maintained |
679655da JP |
4445 | F: Documentation/isapnp.txt |
4446 | F: drivers/pnp/isapnp/ | |
4447 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4448 | |
d39b8420 HV |
4449 | ISA RADIO MODULE |
4450 | M: Hans Verkuil <[email protected]> | |
4451 | L: [email protected] | |
4452 | T: git git://linuxtv.org/media_tree.git | |
4453 | W: http://linuxtv.org | |
4454 | S: Maintained | |
4455 | F: drivers/media/radio/radio-isa* | |
4456 | ||
71a6d0af HW |
4457 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4458 | M: Peter Jones <[email protected]> | |
4459 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4460 | S: Maintained | |
4461 | F: drivers/firmware/iscsi_ibft* | |
4462 | ||
14816b1e | 4463 | ISCSI |
8b58be88 | 4464 | M: Mike Christie <[email protected]> |
14816b1e MC |
4465 | L: [email protected] |
4466 | W: www.open-iscsi.org | |
54e5881d | 4467 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4468 | S: Maintained |
679655da JP |
4469 | F: drivers/scsi/*iscsi* |
4470 | F: include/scsi/*iscsi* | |
14816b1e | 4471 | |
1e65eb42 OG |
4472 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4473 | M: Or Gerlitz <[email protected]> | |
4474 | M: Roi Dayan <[email protected]> | |
4475 | L: [email protected] | |
4476 | S: Supported | |
4477 | W: http://www.openfabrics.org | |
4478 | W: www.open-iscsi.org | |
4479 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
4480 | F: drivers/infiniband/ulp/iser | |
4481 | ||
1da177e4 | 4482 | ISDN SUBSYSTEM |
8b58be88 | 4483 | M: Karsten Keil <[email protected]> |
d5d52273 | 4484 | L: [email protected] (subscribers-only) |
3da0ae62 | 4485 | L: [email protected] |
1da177e4 | 4486 | W: http://www.isdn4linux.de |
54e5881d | 4487 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4488 | S: Maintained |
679655da JP |
4489 | F: Documentation/isdn/ |
4490 | F: drivers/isdn/ | |
4491 | F: include/linux/isdn.h | |
4492 | F: include/linux/isdn/ | |
c117ab84 CEB |
4493 | F: include/uapi/linux/isdn.h |
4494 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4495 | |
4496 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4497 | M: Armin Schindler <[email protected]> |
d5d52273 | 4498 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4499 | W: http://www.melware.de |
4500 | S: Maintained | |
679655da | 4501 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4502 | |
d624870f JD |
4503 | IT87 HARDWARE MONITORING DRIVER |
4504 | M: Jean Delvare <[email protected]> | |
4505 | L: [email protected] | |
4506 | S: Maintained | |
4507 | F: Documentation/hwmon/it87 | |
4508 | F: drivers/hwmon/it87.c | |
4509 | ||
68620bdd MP |
4510 | IT913X MEDIA DRIVER |
4511 | M: Malcolm Priestley <[email protected]> | |
4512 | L: [email protected] | |
4513 | W: http://linuxtv.org/ | |
4514 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4515 | S: Maintained | |
4516 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4517 | ||
4518 | IT913X FE MEDIA DRIVER | |
4519 | M: Malcolm Priestley <[email protected]> | |
4520 | L: [email protected] | |
4521 | W: http://linuxtv.org/ | |
4522 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4523 | S: Maintained | |
4524 | F: drivers/media/dvb-frontends/it913x-fe* | |
4525 | ||
d7104bff AP |
4526 | IT913X MEDIA DRIVER |
4527 | M: Antti Palosaari <[email protected]> | |
4528 | L: [email protected] | |
4529 | W: http://linuxtv.org/ | |
4530 | W: http://palosaari.fi/linux/ | |
4531 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4532 | T: git git://linuxtv.org/anttip/media_tree.git | |
4533 | S: Maintained | |
4534 | F: drivers/media/tuners/it913x* | |
4535 | ||
91821ff3 | 4536 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4537 | M: Andy Walls <[email protected]> |
c4240509 | 4538 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4539 | L: [email protected] |
275ffde4 | 4540 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4541 | W: http://www.ivtvdriver.org |
4542 | S: Maintained | |
679655da | 4543 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4544 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4545 | F: include/uapi/linux/ivtv* |
91821ff3 | 4546 | |
68620bdd MP |
4547 | IX2505V MEDIA DRIVER |
4548 | M: Malcolm Priestley <[email protected]> | |
4549 | L: [email protected] | |
4550 | W: http://linuxtv.org/ | |
4551 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4552 | S: Maintained | |
4553 | F: drivers/media/dvb-frontends/ix2505v* | |
4554 | ||
4453d736 GR |
4555 | JC42.4 TEMPERATURE SENSOR DRIVER |
4556 | M: Guenter Roeck <[email protected]> | |
4557 | L: [email protected] | |
4558 | S: Maintained | |
4559 | F: drivers/hwmon/jc42.c | |
4560 | F: Documentation/hwmon/jc42 | |
4561 | ||
e2d1d6c0 | 4562 | JFS FILESYSTEM |
3256f80f | 4563 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4564 | L: [email protected] |
4565 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4566 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4567 | S: Maintained |
679655da JP |
4568 | F: Documentation/filesystems/jfs.txt |
4569 | F: fs/jfs/ | |
e2d1d6c0 | 4570 | |
95252236 | 4571 | JME NETWORK DRIVER |
8b58be88 | 4572 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4573 | L: [email protected] |
4574 | S: Maintained | |
63d24a0e | 4575 | F: drivers/net/ethernet/jme.* |
95252236 | 4576 | |
1da177e4 | 4577 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4578 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4579 | L: [email protected] |
4580 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4581 | S: Maintained |
679655da | 4582 | F: fs/jffs2/ |
c117ab84 | 4583 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4584 | |
de456d37 | 4585 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4586 | M: Andrew Morton <[email protected]> |
19003c18 | 4587 | M: Jan Kara <[email protected]> |
72be2ccf | 4588 | L: [email protected] |
ae0718f8 | 4589 | S: Maintained |
d183e11a | 4590 | F: fs/jbd/ |
d183e11a TT |
4591 | F: include/linux/jbd.h |
4592 | ||
4593 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4594 | M: "Theodore Ts'o" <[email protected]> | |
4595 | L: [email protected] | |
4596 | S: Maintained | |
4597 | F: fs/jbd2/ | |
4598 | F: include/linux/jbd2.h | |
ae0718f8 | 4599 | |
fd8b6cb4 | 4600 | JSM Neo PCI based serial card |
9d141cb9 | 4601 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4602 | L: [email protected] |
4603 | S: Maintained | |
df621252 | 4604 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4605 | |
af39917d CL |
4606 | K10TEMP HARDWARE MONITORING DRIVER |
4607 | M: Clemens Ladisch <[email protected]> | |
4608 | L: [email protected] | |
4609 | S: Maintained | |
4610 | F: Documentation/hwmon/k10temp | |
4611 | F: drivers/hwmon/k10temp.c | |
4612 | ||
4660cb35 | 4613 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4614 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4615 | L: [email protected] |
ae0718f8 | 4616 | S: Maintained |
679655da JP |
4617 | F: Documentation/hwmon/k8temp |
4618 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4619 | |
1da177e4 | 4620 | KCONFIG |
76ce94a3 | 4621 | M: Michal Marek <[email protected]> |
347d12d7 | 4622 | L: [email protected] |
76ce94a3 | 4623 | S: Odd Fixes |
679655da JP |
4624 | F: Documentation/kbuild/kconfig-language.txt |
4625 | F: scripts/kconfig/ | |
1da177e4 | 4626 | |
ea6c2089 | 4627 | KDUMP |
8b58be88 JP |
4628 | M: Vivek Goyal <[email protected]> |
4629 | M: Haren Myneni <[email protected]> | |
34633993 | 4630 | L: [email protected] |
ea6c2089 VG |
4631 | W: http://lse.sourceforge.net/kdump/ |
4632 | S: Maintained | |
80811493 | 4633 | F: Documentation/kdump/ |
ea6c2089 | 4634 | |
f41bf02f HV |
4635 | KEENE FM RADIO TRANSMITTER DRIVER |
4636 | M: Hans Verkuil <[email protected]> | |
4637 | L: [email protected] | |
4638 | T: git git://linuxtv.org/media_tree.git | |
4639 | W: http://linuxtv.org | |
4640 | S: Maintained | |
4641 | F: drivers/media/radio/radio-keene* | |
4642 | ||
1da177e4 | 4643 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4644 | M: Ian Kent <[email protected]> |
f694fc97 | 4645 | L: [email protected] |
1da177e4 | 4646 | S: Maintained |
679655da | 4647 | F: fs/autofs4/ |
1da177e4 | 4648 | |
70fb7ba6 | 4649 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4650 | M: Michal Marek <[email protected]> |
08deed1e JP |
4651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4653 | L: [email protected] |
5ce45962 | 4654 | S: Maintained |
679655da JP |
4655 | F: Documentation/kbuild/ |
4656 | F: Makefile | |
4657 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4658 | F: scripts/basic/ |
4659 | F: scripts/mk* | |
4660 | F: scripts/package/ | |
1da177e4 LT |
4661 | |
4662 | KERNEL JANITORS | |
c3000e03 | 4663 | L: [email protected] |
10466f5a | 4664 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4665 | S: Odd Fixes |
1da177e4 | 4666 | |
e8b43555 | 4667 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4668 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4669 | L: [email protected] |
1da177e4 | 4670 | W: http://nfs.sourceforge.net/ |
98fac23f | 4671 | S: Supported |
679655da JP |
4672 | F: fs/nfsd/ |
4673 | F: include/linux/nfsd/ | |
c117ab84 | 4674 | F: include/uapi/linux/nfsd/ |
679655da JP |
4675 | F: fs/lockd/ |
4676 | F: fs/nfs_common/ | |
4677 | F: net/sunrpc/ | |
4678 | F: include/linux/lockd/ | |
4679 | F: include/linux/sunrpc/ | |
c117ab84 | 4680 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4681 | |
426d62e2 | 4682 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4683 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4684 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4685 | L: [email protected] |
c93a64fe | 4686 | W: http://linux-kvm.org |
426d62e2 | 4687 | S: Supported |
c93a64fe PB |
4688 | F: Documentation/*/kvm*.txt |
4689 | F: Documentation/virtual/kvm/ | |
679655da JP |
4690 | F: arch/*/kvm/ |
4691 | F: arch/*/include/asm/kvm* | |
4692 | F: include/linux/kvm* | |
c117ab84 | 4693 | F: include/uapi/linux/kvm* |
679655da | 4694 | F: virt/kvm/ |
426d62e2 | 4695 | |
ad8003d3 | 4696 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4697 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4698 | L: [email protected] |
4699 | W: http://kvm.qumranet.com | |
7de609c8 | 4700 | S: Maintained |
679655da | 4701 | F: arch/x86/include/asm/svm.h |
679655da | 4702 | F: arch/x86/kvm/svm.c |
426d62e2 | 4703 | |
513014b7 | 4704 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4705 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4706 | L: [email protected] |
4707 | W: http://kvm.qumranet.com | |
6a7f972d | 4708 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4709 | S: Supported |
679655da JP |
4710 | F: arch/powerpc/include/asm/kvm* |
4711 | F: arch/powerpc/kvm/ | |
513014b7 | 4712 | |
1fc9d2bf | 4713 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4714 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4715 | L: [email protected] |
4716 | W: http://kvm.qumranet.com | |
920ed9f1 | 4717 | S: Supported |
679655da JP |
4718 | F: Documentation/ia64/kvm.txt |
4719 | F: arch/ia64/include/asm/kvm* | |
4720 | F: arch/ia64/kvm/ | |
920ed9f1 | 4721 | |
85f8fffe | 4722 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4723 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4724 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4725 | M: [email protected] |
4726 | L: [email protected] | |
4727 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4728 | S: Supported | |
679655da JP |
4729 | F: Documentation/s390/kvm.txt |
4730 | F: arch/s390/include/asm/kvm* | |
80811493 | 4731 | F: arch/s390/kvm/ |
a968cd3e | 4732 | F: drivers/s390/kvm/ |
85f8fffe | 4733 | |
a749474d CD |
4734 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
4735 | M: Christoffer Dall <[email protected]> | |
4736 | L: [email protected] | |
4737 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
4738 | S: Maintained | |
4739 | F: arch/arm/include/uapi/asm/kvm* | |
4740 | F: arch/arm/include/asm/kvm* | |
4741 | F: arch/arm/kvm/ | |
4742 | ||
6394a3ec MZ |
4743 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4744 | M: Marc Zyngier <[email protected]> | |
4745 | L: [email protected] (moderated for non-subscribers) | |
4746 | L: [email protected] | |
4747 | S: Maintained | |
4748 | F: arch/arm64/include/uapi/asm/kvm* | |
4749 | F: arch/arm64/include/asm/kvm* | |
4750 | F: arch/arm64/kvm/ | |
4751 | ||
dc009d92 | 4752 | KEXEC |
8b58be88 | 4753 | M: Eric Biederman <[email protected]> |
2f327dad | 4754 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4755 | L: [email protected] |
dc009d92 | 4756 | S: Maintained |
679655da | 4757 | F: include/linux/kexec.h |
c117ab84 | 4758 | F: include/uapi/linux/kexec.h |
679655da | 4759 | F: kernel/kexec.c |
dc009d92 | 4760 | |
e971461f DH |
4761 | KEYS/KEYRINGS: |
4762 | M: David Howells <[email protected]> | |
4763 | L: [email protected] | |
4764 | S: Maintained | |
d410fa4e | 4765 | F: Documentation/security/keys.txt |
e971461f DH |
4766 | F: include/linux/key.h |
4767 | F: include/linux/key-type.h | |
4768 | F: include/keys/ | |
4769 | F: security/keys/ | |
4770 | ||
7f3c68be MZ |
4771 | KEYS-TRUSTED |
4772 | M: David Safford <[email protected]> | |
4773 | M: Mimi Zohar <[email protected]> | |
4774 | L: [email protected] | |
4775 | L: [email protected] | |
4776 | S: Supported | |
d410fa4e | 4777 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4778 | F: include/keys/trusted-type.h |
4779 | F: security/keys/trusted.c | |
4780 | F: security/keys/trusted.h | |
4781 | ||
4782 | KEYS-ENCRYPTED | |
4783 | M: Mimi Zohar <[email protected]> | |
4784 | M: David Safford <[email protected]> | |
4785 | L: [email protected] | |
4786 | L: [email protected] | |
4787 | S: Supported | |
d410fa4e | 4788 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4789 | F: include/keys/encrypted-type.h |
19c90aa6 | 4790 | F: security/keys/encrypted-keys/ |
7f3c68be | 4791 | |
5b778dad | 4792 | KGDB / KDB /debug_core |
8b58be88 | 4793 | M: Jason Wessel <[email protected]> |
4063eb5f | 4794 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4795 | L: [email protected] |
4796 | S: Maintained | |
679655da JP |
4797 | F: Documentation/DocBook/kgdb.tmpl |
4798 | F: drivers/misc/kgdbts.c | |
df621252 | 4799 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4800 | F: include/linux/kdb.h |
679655da | 4801 | F: include/linux/kgdb.h |
4063eb5f | 4802 | F: kernel/debug/ |
e3e2aaf7 | 4803 | |
456db8cc | 4804 | KMEMCHECK |
8b58be88 | 4805 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 4806 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 4807 | S: Maintained |
410d7a97 JP |
4808 | F: Documentation/kmemcheck.txt |
4809 | F: arch/x86/include/asm/kmemcheck.h | |
4810 | F: arch/x86/mm/kmemcheck/ | |
4811 | F: include/linux/kmemcheck.h | |
4812 | F: mm/kmemcheck.c | |
b9ce08c0 | 4813 | |
c3bb4d24 | 4814 | KMEMLEAK |
8b58be88 | 4815 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
4816 | S: Maintained |
4817 | F: Documentation/kmemleak.txt | |
4818 | F: include/linux/kmemleak.h | |
4819 | F: mm/kmemleak.c | |
4820 | F: mm/kmemleak-test.c | |
4821 | ||
89559a61 | 4822 | KPROBES |
8b58be88 JP |
4823 | M: Ananth N Mavinakayanahalli <[email protected]> |
4824 | M: Anil S Keshavamurthy <[email protected]> | |
4825 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 4826 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 4827 | S: Maintained |
679655da JP |
4828 | F: Documentation/kprobes.txt |
4829 | F: include/linux/kprobes.h | |
4830 | F: kernel/kprobes.c | |
89559a61 | 4831 | |
70e84049 | 4832 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4833 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
4834 | W: http://miguelojeda.es/auxdisplay.htm |
4835 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4836 | S: Maintained |
679655da JP |
4837 | F: Documentation/auxdisplay/ks0108 |
4838 | F: drivers/auxdisplay/ks0108.c | |
4839 | F: include/linux/ks0108.h | |
70e84049 | 4840 | |
1da177e4 | 4841 | LAPB module |
1da177e4 | 4842 | L: [email protected] |
bf9915cc | 4843 | S: Orphan |
679655da JP |
4844 | F: Documentation/networking/lapb-module.txt |
4845 | F: include/*/lapb.h | |
4846 | F: net/lapb/ | |
1da177e4 LT |
4847 | |
4848 | LASI 53c700 driver for PARISC | |
8b58be88 | 4849 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4850 | L: [email protected] |
4851 | S: Maintained | |
679655da JP |
4852 | F: Documentation/scsi/53c700.txt |
4853 | F: drivers/scsi/53c700* | |
1da177e4 | 4854 | |
263de9b5 | 4855 | LED SUBSYSTEM |
c772fc26 | 4856 | M: Bryan Wu <[email protected]> |
8b58be88 | 4857 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
4858 | L: [email protected] |
4859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4860 | S: Maintained |
679655da JP |
4861 | F: drivers/leds/ |
4862 | F: include/linux/leds.h | |
263de9b5 | 4863 | |
b0461a44 JD |
4864 | LEGACY EEPROM DRIVER |
4865 | M: Jean Delvare <[email protected]> | |
4866 | S: Maintained | |
4867 | F: Documentation/misc-devices/eeprom | |
4868 | F: drivers/misc/eeprom/eeprom.c | |
4869 | ||
1da177e4 | 4870 | LEGO USB Tower driver |
8b58be88 | 4871 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
4872 | L: [email protected] |
4873 | W: http://legousb.sourceforge.net/ | |
4874 | S: Maintained | |
679655da | 4875 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4876 | |
055616a8 MK |
4877 | LG2160 MEDIA DRIVER |
4878 | M: Michael Krufky <[email protected]> | |
4879 | L: [email protected] | |
4880 | W: http://linuxtv.org/ | |
4881 | W: http://github.com/mkrufky | |
4882 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4883 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4884 | S: Maintained | |
4885 | F: drivers/media/dvb-frontends/lg2160.* | |
4886 | ||
6f0e7725 MK |
4887 | LGDT3305 MEDIA DRIVER |
4888 | M: Michael Krufky <[email protected]> | |
4889 | L: [email protected] | |
4890 | W: http://linuxtv.org/ | |
4891 | W: http://github.com/mkrufky | |
4892 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4893 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4894 | S: Maintained | |
4895 | F: drivers/media/dvb-frontends/lgdt3305.* | |
4896 | ||
568a17ff | 4897 | LGUEST |
8b58be88 | 4898 | M: Rusty Russell <[email protected]> |
a4724ed6 | 4899 | L: [email protected] |
568a17ff | 4900 | W: http://lguest.ozlabs.org/ |
72e91863 | 4901 | S: Odd Fixes |
070f420b | 4902 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
4903 | F: arch/x86/lguest/ |
4904 | F: drivers/lguest/ | |
4905 | F: include/linux/lguest*.h | |
070f420b | 4906 | F: tools/lguest/ |
568a17ff | 4907 | |
1da177e4 | 4908 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 4909 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
4910 | W: http://www.ibm.com/linux/ltc/projects/ppc |
4911 | S: Supported | |
11c34c7d | 4912 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 4913 | |
852bb9f5 | 4914 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
4915 | M: Benjamin Herrenschmidt <[email protected]> |
4916 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 4917 | W: http://www.penguinppc.org/ |
a4724ed6 | 4918 | L: [email protected] |
8a6e2535 | 4919 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 4920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 4921 | S: Supported |
11c34c7d JP |
4922 | F: Documentation/powerpc/ |
4923 | F: arch/powerpc/ | |
1da177e4 LT |
4924 | |
4925 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 4926 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 4927 | W: http://www.penguinppc.org/ |
a4724ed6 | 4928 | L: [email protected] |
1da177e4 | 4929 | S: Maintained |
11c34c7d JP |
4930 | F: arch/powerpc/platforms/powermac/ |
4931 | F: drivers/macintosh/ | |
1da177e4 | 4932 | |
77a76369 | 4933 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 4934 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 4935 | L: [email protected] |
a149507b | 4936 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 4937 | S: Maintained |
11c34c7d JP |
4938 | F: arch/powerpc/platforms/512x/ |
4939 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
4940 | |
4941 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 4942 | M: Josh Boyer <[email protected]> |
8b58be88 | 4943 | M: Matt Porter <[email protected]> |
1da177e4 | 4944 | W: http://www.penguinppc.org/ |
a4724ed6 | 4945 | L: [email protected] |
645609c0 | 4946 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 4947 | S: Maintained |
11c34c7d JP |
4948 | F: arch/powerpc/platforms/40x/ |
4949 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 4950 | |
260c02a9 | 4951 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 4952 | L: [email protected] |
19624236 | 4953 | S: Unmaintained |
11c34c7d JP |
4954 | F: arch/powerpc/*/*virtex* |
4955 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 4956 | |
e93adf1e | 4957 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
4958 | M: Vitaly Bordug <[email protected]> |
4959 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 4960 | W: http://www.penguinppc.org/ |
a4724ed6 | 4961 | L: [email protected] |
e93adf1e | 4962 | S: Maintained |
a2b1f7c8 | 4963 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 4964 | |
1da177e4 | 4965 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 4966 | M: Kumar Gala <[email protected]> |
ce00f85c | 4967 | W: http://www.penguinppc.org/ |
a4724ed6 | 4968 | L: [email protected] |
ce00f85c | 4969 | S: Maintained |
11c34c7d | 4970 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 4971 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 4972 | |
ab06ff3a | 4973 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 4974 | M: Olof Johansson <[email protected]> |
a4724ed6 | 4975 | L: [email protected] |
92e19709 | 4976 | S: Maintained |
11c34c7d JP |
4977 | F: arch/powerpc/platforms/pasemi/ |
4978 | F: drivers/*/*pasemi* | |
4979 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 4980 | |
1da177e4 | 4981 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 4982 | M: Chris Wright <[email protected]> |
1a4520be | 4983 | L: [email protected] |
1da177e4 LT |
4984 | S: Supported |
4985 | ||
a23ce6da HW |
4986 | LIS3LV02D ACCELEROMETER DRIVER |
4987 | M: Eric Piel <[email protected]> | |
4988 | S: Maintained | |
ff606677 JD |
4989 | F: Documentation/misc-devices/lis3lv02d |
4990 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 4991 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 4992 | |
e2d1d6c0 | 4993 | LLC (802.2) |
8b58be88 | 4994 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 4995 | S: Maintained |
679655da | 4996 | F: include/linux/llc.h |
c117ab84 | 4997 | F: include/uapi/linux/llc.h |
679655da JP |
4998 | F: include/net/llc* |
4999 | F: net/llc/ | |
e2d1d6c0 | 5000 | |
4e233cbe AD |
5001 | LM73 HARDWARE MONITOR DRIVER |
5002 | M: Guillaume Ligneul <[email protected]> | |
5003 | L: [email protected] | |
5004 | S: Maintained | |
5005 | F: drivers/hwmon/lm73.c | |
5006 | ||
156e2d1a JD |
5007 | LM78 HARDWARE MONITOR DRIVER |
5008 | M: Jean Delvare <[email protected]> | |
5009 | L: [email protected] | |
5010 | S: Maintained | |
5011 | F: Documentation/hwmon/lm78 | |
5012 | F: drivers/hwmon/lm78.c | |
5013 | ||
1da177e4 | 5014 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5015 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5016 | L: [email protected] |
1da177e4 | 5017 | S: Maintained |
679655da JP |
5018 | F: Documentation/hwmon/lm83 |
5019 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5020 | |
5021 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5022 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5023 | L: [email protected] |
1da177e4 | 5024 | S: Maintained |
679655da JP |
5025 | F: Documentation/hwmon/lm90 |
5026 | F: drivers/hwmon/lm90.c | |
1da177e4 | 5027 | |
917cc4e6 GR |
5028 | LM95234 HARDWARE MONITOR DRIVER |
5029 | M: Guenter Roeck <[email protected]> | |
5030 | L: [email protected] | |
5031 | S: Maintained | |
5032 | F: Documentation/hwmon/lm95234 | |
5033 | F: drivers/hwmon/lm95234.c | |
5034 | ||
68620bdd MP |
5035 | LME2510 MEDIA DRIVER |
5036 | M: Malcolm Priestley <[email protected]> | |
5037 | L: [email protected] | |
5038 | W: http://linuxtv.org/ | |
5039 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5040 | S: Maintained | |
5041 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5042 | ||
512e67f9 | 5043 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5044 | M: Peter Zijlstra <[email protected]> |
5045 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 5046 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5047 | S: Maintained |
679655da JP |
5048 | F: Documentation/lockdep*.txt |
5049 | F: Documentation/lockstat.txt | |
5050 | F: include/linux/lockdep.h | |
5051 | F: kernel/lockdep* | |
512e67f9 | 5052 | |
dde33348 | 5053 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5054 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5055 | L: [email protected] |
5056 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5057 | S: Maintained |
679655da | 5058 | F: Documentation/ldm.txt |
20d16fef | 5059 | F: block/partitions/ldm.* |
1da177e4 | 5060 | |
ef6ada3d JE |
5061 | LogFS |
5062 | M: Joern Engel <[email protected]> | |
756ccb3c | 5063 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5064 | L: [email protected] |
5065 | W: logfs.org | |
5066 | S: Maintained | |
5067 | F: fs/logfs/ | |
5068 | ||
b62d7946 RS |
5069 | LPC32XX MACHINE SUPPORT |
5070 | M: Roland Stigge <[email protected]> | |
5071 | L: [email protected] (moderated for non-subscribers) | |
5072 | S: Maintained | |
5073 | F: arch/arm/mach-lpc32xx/ | |
5074 | ||
c87e34ef | 5075 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5076 | M: Nagalakshmi Nandigama <[email protected]> |
5077 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5078 | M: [email protected] |
cec744fb | 5079 | L: [email protected] |
c87e34ef MED |
5080 | L: [email protected] |
5081 | W: http://www.lsilogic.com/support | |
5082 | S: Supported | |
679655da | 5083 | F: drivers/message/fusion/ |
500c152a | 5084 | F: drivers/scsi/mpt2sas/ |
5085 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5086 | |
1da177e4 | 5087 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5088 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5089 | L: [email protected] |
5090 | S: Maintained | |
679655da | 5091 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5092 | |
e5f5c99a GR |
5093 | LTC4261 HARDWARE MONITOR DRIVER |
5094 | M: Guenter Roeck <[email protected]> | |
5095 | L: [email protected] | |
5096 | S: Maintained | |
5097 | F: Documentation/hwmon/ltc4261 | |
5098 | F: drivers/hwmon/ltc4261.c | |
5099 | ||
81365c31 | 5100 | LTP (Linux Test Project) |
7d1ae8a8 | 5101 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5102 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5103 | M: Cyril Hrubis <[email protected]> |
5104 | M: Caspar Zhang <[email protected]> | |
5105 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5106 | L: [email protected] (subscribers-only) |
5107 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5108 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5109 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5110 | S: Maintained |
5111 | ||
c12a54b3 | 5112 | M32R ARCHITECTURE |
8b58be88 | 5113 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5114 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5115 | L: [email protected] (in Japanese) |
5116 | W: http://www.linux-m32r.org/ | |
5117 | S: Maintained | |
679655da | 5118 | F: arch/m32r/ |
c12a54b3 | 5119 | |
1da177e4 | 5120 | M68K ARCHITECTURE |
8b58be88 | 5121 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5122 | L: [email protected] |
5123 | W: http://www.linux-m68k.org/ | |
54e5881d | 5124 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5125 | S: Maintained |
679655da | 5126 | F: arch/m68k/ |
9db35182 | 5127 | F: drivers/zorro/ |
1da177e4 LT |
5128 | |
5129 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5130 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5131 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5132 | L: [email protected] |
1da177e4 | 5133 | S: Maintained |
9db35182 | 5134 | F: arch/m68k/mac/ |
1da177e4 LT |
5135 | |
5136 | M68K ON HP9000/300 | |
8b58be88 | 5137 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5138 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5139 | S: Maintained | |
679655da | 5140 | F: arch/m68k/hp300/ |
1da177e4 | 5141 | |
68620bdd MP |
5142 | M88RS2000 MEDIA DRIVER |
5143 | M: Malcolm Priestley <[email protected]> | |
5144 | L: [email protected] | |
5145 | W: http://linuxtv.org/ | |
5146 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5147 | S: Maintained | |
5148 | F: drivers/media/dvb-frontends/m88rs2000* | |
5149 | ||
07a092fa AK |
5150 | MA901 MASTERKIT USB FM RADIO DRIVER |
5151 | M: Alexey Klimov <[email protected]> | |
5152 | L: [email protected] | |
5153 | T: git git://linuxtv.org/media_tree.git | |
5154 | S: Maintained | |
5155 | F: drivers/media/radio/radio-ma901.c | |
5156 | ||
64a327a7 | 5157 | MAC80211 |
8b58be88 | 5158 | M: Johannes Berg <[email protected]> |
64a327a7 | 5159 | L: [email protected] |
491b26b4 | 5160 | W: http://wireless.kernel.org/ |
ce466579 JB |
5161 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5162 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5163 | S: Maintained |
679655da JP |
5164 | F: Documentation/networking/mac80211-injection.txt |
5165 | F: include/net/mac80211.h | |
5166 | F: net/mac80211/ | |
64a327a7 | 5167 | |
1036d864 | 5168 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5169 | M: Stefano Brivio <[email protected]> |
5170 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5171 | L: [email protected] |
491b26b4 | 5172 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5174 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5175 | S: Maintained |
679655da | 5176 | F: net/mac80211/rc80211_pid* |
1036d864 | 5177 | |
b863ceb7 | 5178 | MACVLAN DRIVER |
8b58be88 | 5179 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5180 | L: [email protected] |
5181 | S: Maintained | |
679655da JP |
5182 | F: drivers/net/macvlan.c |
5183 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5184 | |
faf1668c | 5185 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5186 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5187 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5188 | L: [email protected] |
1b53dc74 | 5189 | S: Maintained |
faf1668c | 5190 | |
44c14c1d | 5191 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5192 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5193 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5194 | L: [email protected] |
5195 | S: Maintained | |
5196 | F: drivers/net/ethernet/marvell/sk* | |
5197 | ||
74cda169 | 5198 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5199 | L: [email protected] |
8ac3e99e | 5200 | S: Orphan |
679655da | 5201 | F: drivers/net/wireless/libertas/ |
74cda169 | 5202 | |
b60d6975 | 5203 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 5204 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 5205 | L: [email protected] |
f5ca8502 | 5206 | S: Maintained |
527a6266 | 5207 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5208 | F: include/linux/mv643xx.h |
1da177e4 | 5209 | |
370b8ed9 TP |
5210 | MARVELL MVNETA ETHERNET DRIVER |
5211 | M: Thomas Petazzoni <[email protected]> | |
5212 | L: [email protected] | |
5213 | S: Maintained | |
5214 | F: drivers/net/ethernet/marvell/mvneta.* | |
5215 | ||
fcad584d BZ |
5216 | MARVELL MWIFIEX WIRELESS DRIVER |
5217 | M: Bing Zhao <[email protected]> | |
5218 | L: [email protected] | |
5219 | S: Maintained | |
5220 | F: drivers/net/wireless/mwifiex/ | |
5221 | ||
a2c3f656 | 5222 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5223 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5224 | L: [email protected] |
16345910 | 5225 | S: Odd Fixes |
a2c3f656 LB |
5226 | F: drivers/net/wireless/mwl8k.c |
5227 | ||
2a69567b | 5228 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5229 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5230 | S: Odd Fixes |
1fa7e547 | 5231 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5232 | |
1da177e4 | 5233 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5234 | L: [email protected] |
52653199 | 5235 | S: Orphan |
679655da | 5236 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5237 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5238 | |
ca462085 GR |
5239 | MAX16065 HARDWARE MONITOR DRIVER |
5240 | M: Guenter Roeck <[email protected]> | |
5241 | L: [email protected] | |
5242 | S: Maintained | |
5243 | F: Documentation/hwmon/max16065 | |
5244 | F: drivers/hwmon/max16065.c | |
5245 | ||
d20620de | 5246 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5247 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5248 | L: [email protected] |
5249 | S: Maintained | |
679655da JP |
5250 | F: Documentation/hwmon/max6650 |
5251 | F: drivers/hwmon/max6650.c | |
d20620de | 5252 | |
e89ab51f GR |
5253 | MAX6697 HARDWARE MONITOR DRIVER |
5254 | M: Guenter Roeck <[email protected]> | |
5255 | L: [email protected] | |
5256 | S: Maintained | |
5257 | F: Documentation/hwmon/max6697 | |
5258 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5259 | F: drivers/hwmon/max6697.c | |
5260 | F: include/linux/platform_data/max6697.h | |
5261 | ||
9be3c9a5 HV |
5262 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5263 | M: Hans Verkuil <[email protected]> | |
5264 | L: [email protected] | |
5265 | T: git git://linuxtv.org/media_tree.git | |
5266 | W: http://linuxtv.org | |
5267 | S: Maintained | |
5268 | F: drivers/media/radio/radio-maxiradio* | |
5269 | ||
127c49ae | 5270 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
275ffde4 | 5271 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5272 | P: LinuxTV.org Project |
5273 | L: [email protected] | |
5274 | W: http://linuxtv.org | |
8a6e2535 | 5275 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5276 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5277 | S: Maintained |
5278 | F: Documentation/dvb/ | |
5279 | F: Documentation/video4linux/ | |
ffe06198 | 5280 | F: Documentation/DocBook/media/ |
127c49ae | 5281 | F: drivers/media/ |
ffe06198 | 5282 | F: drivers/staging/media/ |
127c49ae | 5283 | F: include/media/ |
6c0f0359 MCC |
5284 | F: include/uapi/linux/dvb/ |
5285 | F: include/uapi/linux/videodev2.h | |
5286 | F: include/uapi/linux/media.h | |
5287 | F: include/uapi/linux/v4l2-* | |
5288 | F: include/uapi/linux/meye.h | |
5289 | F: include/uapi/linux/ivtv* | |
5290 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5291 | |
6149a936 HV |
5292 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5293 | M: Hans Verkuil <[email protected]> | |
5294 | L: [email protected] | |
5295 | T: git git://linuxtv.org/media_tree.git | |
5296 | W: http://linuxtv.org | |
5297 | S: Odd Fixes | |
5298 | F: drivers/media/parport/pms* | |
5299 | ||
757e0108 | 5300 | MEGARAID SCSI DRIVERS |
8b58be88 | 5301 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5302 | L: [email protected] |
ce00f85c JC |
5303 | W: http://megaraid.lsilogic.com |
5304 | S: Maintained | |
679655da JP |
5305 | F: Documentation/scsi/megaraid.txt |
5306 | F: drivers/scsi/megaraid.* | |
5307 | F: drivers/scsi/megaraid/ | |
757e0108 | 5308 | |
2c46c9d5 AV |
5309 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5310 | M: Amir Vadai <[email protected]> | |
5311 | L: [email protected] | |
5312 | S: Supported | |
5313 | W: http://www.mellanox.com | |
5314 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5315 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5316 | ||
70ea91f1 SR |
5317 | MEMORY MANAGEMENT |
5318 | L: [email protected] | |
70ea91f1 SR |
5319 | W: http://www.linux-mm.org |
5320 | S: Maintained | |
679655da | 5321 | F: include/linux/mm.h |
551450bb CS |
5322 | F: include/linux/gfp.h |
5323 | F: include/linux/mmzone.h | |
5324 | F: include/linux/memory_hotplug.h | |
5325 | F: include/linux/vmalloc.h | |
679655da | 5326 | F: mm/ |
70ea91f1 | 5327 | |
938a9204 | 5328 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5329 | M: Johannes Weiner <[email protected]> |
5330 | M: Michal Hocko <[email protected]> | |
185e595f | 5331 | M: Balbir Singh <[email protected]> |
8b58be88 | 5332 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5333 | L: [email protected] |
938a9204 | 5334 | L: [email protected] |
938a9204 | 5335 | S: Maintained |
679655da | 5336 | F: mm/memcontrol.c |
4e4c941c | 5337 | F: mm/page_cgroup.c |
938a9204 | 5338 | |
f4e9ce66 | 5339 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5340 | M: David Woodhouse <[email protected]> |
1da177e4 | 5341 | L: [email protected] |
8a6e2535 JP |
5342 | W: http://www.linux-mtd.infradead.org/ |
5343 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5344 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5345 | S: Maintained |
679655da JP |
5346 | F: drivers/mtd/ |
5347 | F: include/linux/mtd/ | |
c117ab84 | 5348 | F: include/uapi/mtd/ |
1da177e4 | 5349 | |
12285945 JH |
5350 | METAG ARCHITECTURE |
5351 | M: James Hogan <[email protected]> | |
5352 | S: Supported | |
5353 | F: arch/metag/ | |
5354 | F: Documentation/metag/ | |
5355 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5356 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5357 | F: drivers/irqchip/irq-metag.c |
5358 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5359 | F: drivers/tty/metag_da.c |
5360 | F: fs/imgdafs/ | |
12285945 | 5361 | |
c6375b0a | 5362 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5363 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5364 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5365 | W: http://www.monstr.eu/fdt/ |
5366 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5367 | S: Supported | |
0a8c7914 | 5368 | F: arch/microblaze/ |
1da177e4 LT |
5369 | |
5370 | MICROTEK X6 SCANNER | |
61eee9a7 | 5371 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5372 | S: Maintained |
679655da | 5373 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5374 | |
5375 | MIPS | |
8b58be88 | 5376 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5377 | L: [email protected] |
6097050d | 5378 | W: http://www.linux-mips.org/ |
b05e988e | 5379 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5380 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5381 | S: Supported |
679655da JP |
5382 | F: Documentation/mips/ |
5383 | F: arch/mips/ | |
1da177e4 | 5384 | |
08b7620a HV |
5385 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5386 | M: Hans Verkuil <[email protected]> | |
5387 | L: [email protected] | |
5388 | T: git git://linuxtv.org/media_tree.git | |
5389 | W: http://linuxtv.org | |
5390 | S: Odd Fixes | |
5391 | F: drivers/media/radio/radio-miropcm20* | |
5392 | ||
1da177e4 | 5393 | MODULE SUPPORT |
8b58be88 | 5394 | M: Rusty Russell <[email protected]> |
1da177e4 | 5395 | S: Maintained |
679655da JP |
5396 | F: include/linux/module.h |
5397 | F: kernel/module.c | |
1da177e4 LT |
5398 | |
5399 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5400 | W: http://popies.net/meye/ |
b7788e13 | 5401 | S: Orphan |
679655da | 5402 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5403 | F: drivers/media/pci/meye/ |
6c0f0359 | 5404 | F: include/uapi/linux/meye.h |
1da177e4 | 5405 | |
b9705b60 | 5406 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5407 | M: Jiri Slaby <[email protected]> |
d735410a | 5408 | S: Maintained |
679655da | 5409 | F: Documentation/serial/moxa-smartio |
c897401b | 5410 | F: drivers/tty/mxser.* |
d735410a | 5411 | |
889b2f87 AK |
5412 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5413 | M: Alexey Klimov <[email protected]> | |
5414 | L: [email protected] | |
5415 | T: git git://linuxtv.org/media_tree.git | |
5416 | S: Maintained | |
5417 | F: drivers/media/radio/radio-mr800.c | |
5418 | ||
8c4c731a | 5419 | MSI LAPTOP SUPPORT |
182ae55c | 5420 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5421 | L: [email protected] |
8c4c731a | 5422 | S: Maintained |
679655da | 5423 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5424 | |
0f1006b1 AA |
5425 | MSI WMI SUPPORT |
5426 | M: Anisse Astier <[email protected]> | |
d0944853 | 5427 | L: [email protected] |
0f1006b1 AA |
5428 | S: Supported |
5429 | F: drivers/platform/x86/msi-wmi.c | |
5430 | ||
0e837fb9 LP |
5431 | MT9M032 SENSOR DRIVER |
5432 | M: Laurent Pinchart <[email protected]> | |
5433 | L: [email protected] | |
5434 | T: git git://linuxtv.org/media_tree.git | |
5435 | S: Maintained | |
5436 | F: drivers/media/i2c/mt9m032.c | |
5437 | F: include/media/mt9m032.h | |
5438 | ||
5439 | MT9P031 SENSOR DRIVER | |
5440 | M: Laurent Pinchart <[email protected]> | |
5441 | L: [email protected] | |
5442 | T: git git://linuxtv.org/media_tree.git | |
5443 | S: Maintained | |
5444 | F: drivers/media/i2c/mt9p031.c | |
5445 | F: include/media/mt9p031.h | |
5446 | ||
5447 | MT9T001 SENSOR DRIVER | |
5448 | M: Laurent Pinchart <[email protected]> | |
5449 | L: [email protected] | |
5450 | T: git git://linuxtv.org/media_tree.git | |
5451 | S: Maintained | |
5452 | F: drivers/media/i2c/mt9t001.c | |
5453 | F: include/media/mt9t001.h | |
5454 | ||
5455 | MT9V032 SENSOR DRIVER | |
5456 | M: Laurent Pinchart <[email protected]> | |
5457 | L: [email protected] | |
5458 | T: git git://linuxtv.org/media_tree.git | |
5459 | S: Maintained | |
5460 | F: drivers/media/i2c/mt9v032.c | |
5461 | F: include/media/mt9v032.h | |
5462 | ||
4e0d13cb | 5463 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5464 | M: Samuel Ortiz <[email protected]> |
54e5881d | 5465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
4e0d13cb | 5466 | S: Supported |
679655da | 5467 | F: drivers/mfd/ |
4e0d13cb | 5468 | |
5c4e6f13 | 5469 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5470 | M: Chris Ball <[email protected]> |
b2503a94 | 5471 | L: [email protected] |
245feaa6 CB |
5472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5473 | S: Maintained | |
679655da JP |
5474 | F: drivers/mmc/ |
5475 | F: include/linux/mmc/ | |
c117ab84 | 5476 | F: include/uapi/linux/mmc/ |
baca2da4 | 5477 | |
15a0580c | 5478 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5479 | S: Orphan |
679655da JP |
5480 | F: drivers/mmc/host/mmc_spi.c |
5481 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5482 | |
1da177e4 | 5483 | MULTISOUND SOUND DRIVER |
8b58be88 | 5484 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5485 | S: Maintained |
679655da JP |
5486 | F: Documentation/sound/oss/MultiSound |
5487 | F: sound/oss/msnd* | |
1da177e4 | 5488 | |
d735410a | 5489 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5490 | S: Orphan |
c897401b | 5491 | F: drivers/tty/isicom.c |
679655da | 5492 | F: include/linux/isicom.h |
d735410a | 5493 | |
550a7375 | 5494 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5495 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5496 | L: [email protected] |
43b416e5 | 5497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5498 | S: Maintained |
679655da | 5499 | F: drivers/usb/musb/ |
550a7375 | 5500 | |
ea0af5f6 MK |
5501 | MXL5007T MEDIA DRIVER |
5502 | M: Michael Krufky <[email protected]> | |
5503 | L: [email protected] | |
5504 | W: http://linuxtv.org/ | |
5505 | W: http://github.com/mkrufky | |
5506 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5507 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5508 | S: Maintained | |
5509 | F: drivers/media/tuners/mxl5007t.* | |
5510 | ||
2d3cf588 | 5511 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
8b58be88 | 5512 | M: Andrew Gallatin <[email protected]> |
2d3cf588 BG |
5513 | L: [email protected] |
5514 | W: http://www.myri.com/scs/download-Myri10GE.html | |
5515 | S: Supported | |
93f7848b | 5516 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5517 | |
1da177e4 | 5518 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5519 | S: Orphan |
d9fb9f38 | 5520 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5521 | |
23dc05a3 DM |
5522 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5523 | M: Daniel Mack <[email protected]> | |
5524 | S: Maintained | |
5525 | L: [email protected] | |
5526 | W: http://www.native-instruments.com | |
5527 | F: sound/usb/caiaq/ | |
5528 | ||
1da177e4 | 5529 | NCP FILESYSTEM |
52653199 PV |
5530 | M: Petr Vandrovec <[email protected]> |
5531 | S: Odd Fixes | |
679655da | 5532 | F: fs/ncpfs/ |
1da177e4 LT |
5533 | |
5534 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5535 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5536 | L: [email protected] |
5537 | S: Maintained | |
679655da | 5538 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5539 | |
4aa3eb4c GR |
5540 | NCT6775 HARDWARE MONITOR DRIVER |
5541 | M: Guenter Roeck <[email protected]> | |
5542 | L: [email protected] | |
5543 | S: Maintained | |
5544 | F: Documentation/hwmon/nct6775 | |
5545 | F: drivers/hwmon/nct6775.c | |
5546 | ||
3c2d774c | 5547 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5548 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5549 | L: [email protected] |
e3d33cb1 | 5550 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5551 | S: Supported |
5552 | F: drivers/infiniband/hw/nes/ | |
5553 | ||
be2f2e84 | 5554 | NETEM NETWORK EMULATOR |
adbbf69d | 5555 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5556 | L: [email protected] |
be2f2e84 | 5557 | S: Maintained |
679655da | 5558 | F: net/sched/sch_netem.c |
be2f2e84 | 5559 | |
b2f5a051 | 5560 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5561 | M: Jon Mason <[email protected]> |
4a58448b | 5562 | L: [email protected] |
4a58448b | 5563 | S: Supported |
679655da | 5564 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5565 | F: Documentation/networking/vxge.txt |
86387e1a | 5566 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5567 | |
42010ed0 | 5568 | NETFILTER/IPTABLES |
0e05e192 | 5569 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5570 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5571 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5572 | L: [email protected] |
5573 | L: [email protected] | |
82b98543 | 5574 | L: [email protected] |
1da177e4 LT |
5575 | W: http://www.netfilter.org/ |
5576 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5577 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5580 | S: Supported |
679655da JP |
5581 | F: include/linux/netfilter* |
5582 | F: include/linux/netfilter/ | |
5583 | F: include/net/netfilter/ | |
c117ab84 CEB |
5584 | F: include/uapi/linux/netfilter* |
5585 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5586 | F: net/*/netfilter.c |
5587 | F: net/*/netfilter/ | |
5588 | F: net/netfilter/ | |
1da177e4 | 5589 | |
4cc67735 | 5590 | NETLABEL |
87a0874c | 5591 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5592 | W: http://netlabel.sf.net |
5593 | L: [email protected] | |
87a0874c | 5594 | S: Maintained |
80811493 | 5595 | F: Documentation/netlabel/ |
679655da JP |
5596 | F: include/net/netlabel.h |
5597 | F: net/netlabel/ | |
4cc67735 | 5598 | |
1da177e4 | 5599 | NETROM NETWORK LAYER |
8b58be88 | 5600 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5601 | L: [email protected] |
d34cb28a | 5602 | W: http://www.linux-ax25.org/ |
1da177e4 | 5603 | S: Maintained |
679655da | 5604 | F: include/net/netrom.h |
c117ab84 | 5605 | F: include/uapi/linux/netrom.h |
679655da | 5606 | F: net/netrom/ |
1da177e4 | 5607 | |
5ddb88c0 | 5608 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5609 | M: Paul Clements <[email protected]> |
1da177e4 | 5610 | S: Maintained |
5e4b269b | 5611 | L: [email protected] |
679655da JP |
5612 | F: Documentation/blockdev/nbd.txt |
5613 | F: drivers/block/nbd.c | |
5614 | F: include/linux/nbd.h | |
c117ab84 | 5615 | F: include/uapi/linux/nbd.h |
1da177e4 | 5616 | |
6e43650c NH |
5617 | NETWORK DROP MONITOR |
5618 | M: Neil Horman <[email protected]> | |
5619 | L: [email protected] | |
5620 | S: Maintained | |
5621 | W: https://fedorahosted.org/dropwatch/ | |
5622 | F: net/core/drop_monitor.c | |
5623 | ||
1da177e4 | 5624 | NETWORKING [GENERAL] |
8b58be88 | 5625 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5626 | L: [email protected] |
b1e8fd54 | 5627 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5628 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5630 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5631 | S: Maintained |
679655da JP |
5632 | F: net/ |
5633 | F: include/net/ | |
018d21ed JP |
5634 | F: include/linux/in.h |
5635 | F: include/linux/net.h | |
5636 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5637 | F: include/uapi/linux/in.h |
5638 | F: include/uapi/linux/net.h | |
5639 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5640 | |
5641 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5642 | M: "David S. Miller" <[email protected]> |
5643 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5644 | M: James Morris <[email protected]> |
5645 | M: Hideaki YOSHIFUJI <[email protected]> | |
5646 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5647 | L: [email protected] |
08deed1e | 5648 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5649 | S: Maintained |
679655da JP |
5650 | F: net/ipv4/ |
5651 | F: net/ipv6/ | |
5652 | F: include/net/ip* | |
0a14842f | 5653 | F: arch/x86/net/* |
1da177e4 | 5654 | |
73b7656c DM |
5655 | NETWORKING [IPSEC] |
5656 | M: Steffen Klassert <[email protected]> | |
5657 | M: Herbert Xu <[email protected]> | |
5658 | M: "David S. Miller" <[email protected]> | |
5659 | L: [email protected] | |
5660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5661 | S: Maintained | |
5662 | F: net/xfrm/ | |
5663 | F: net/key/ | |
5664 | F: net/ipv4/xfrm* | |
5665 | F: net/ipv6/xfrm* | |
5666 | F: include/uapi/linux/xfrm.h | |
5667 | F: include/net/xfrm.h | |
5668 | ||
10e2ff1c | 5669 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5670 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5671 | L: [email protected] |
5672 | S: Maintained | |
5673 | ||
29f8f632 | 5674 | NETWORKING [WIRELESS] |
8b58be88 | 5675 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5676 | L: [email protected] |
8a6e2535 | 5677 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5679 | S: Maintained |
34b921cf JP |
5680 | F: net/mac80211/ |
5681 | F: net/rfkill/ | |
679655da JP |
5682 | F: net/wireless/ |
5683 | F: include/net/ieee80211* | |
cc8b4a2b | 5684 | F: include/linux/wireless.h |
c117ab84 | 5685 | F: include/uapi/linux/wireless.h |
c984e24d | 5686 | F: include/net/iw_handler.h |
34b921cf | 5687 | F: drivers/net/wireless/ |
29f8f632 | 5688 | |
788873ac JP |
5689 | NETWORKING DRIVERS |
5690 | L: [email protected] | |
5691 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5692 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5693 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5694 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5695 | S: Odd Fixes |
5696 | F: drivers/net/ | |
018d21ed | 5697 | F: include/linux/if_* |
0b63bf1f JD |
5698 | F: include/linux/netdevice.h |
5699 | F: include/linux/arcdevice.h | |
5700 | F: include/linux/etherdevice.h | |
5701 | F: include/linux/fcdevice.h | |
5702 | F: include/linux/fddidevice.h | |
5703 | F: include/linux/hippidevice.h | |
5704 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5705 | F: include/uapi/linux/if_* |
5706 | F: include/uapi/linux/netdevice.h | |
788873ac | 5707 | |
3d396eb1 | 5708 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5709 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
5710 | M: Sony Chacko <[email protected]> |
5711 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5712 | L: [email protected] |
9c2b5bde | 5713 | W: http://www.qlogic.com |
3d396eb1 | 5714 | S: Supported |
aa43c215 | 5715 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5716 | |
6423d30f AAJ |
5717 | NFC SUBSYSTEM |
5718 | M: Lauro Ramos Venancio <[email protected]> | |
5719 | M: Aloisio Almeida Jr <[email protected]> | |
5720 | M: Samuel Ortiz <[email protected]> | |
5721 | L: [email protected] | |
5adf54de | 5722 | L: [email protected] (moderated for non-subscribers) |
6423d30f AAJ |
5723 | S: Maintained |
5724 | F: net/nfc/ | |
55eb94f9 | 5725 | F: include/net/nfc/ |
c117ab84 | 5726 | F: include/uapi/linux/nfc.h |
6423d30f | 5727 | F: drivers/nfc/ |
08eaa1e0 | 5728 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5729 | |
e8b43555 | 5730 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5731 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5732 | L: [email protected] |
5733 | W: http://client.linux-nfs.org | |
5734 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5735 | S: Maintained |
679655da JP |
5736 | F: fs/lockd/ |
5737 | F: fs/nfs/ | |
5738 | F: fs/nfs_common/ | |
5739 | F: net/sunrpc/ | |
5740 | F: include/linux/lockd/ | |
5741 | F: include/linux/nfs* | |
5742 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5743 | F: include/uapi/linux/nfs* |
5744 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5745 | |
85ef9cea | 5746 | NILFS2 FILESYSTEM |
8b58be88 | 5747 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 5748 | L: [email protected] |
85ef9cea | 5749 | W: http://www.nilfs.org/en/ |
af1761f2 | 5750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5751 | S: Supported |
679655da JP |
5752 | F: Documentation/filesystems/nilfs2.txt |
5753 | F: fs/nilfs2/ | |
5754 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5755 | |
1da177e4 | 5756 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5757 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
5758 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5759 | S: Maintained | |
679655da JP |
5760 | F: Documentation/scsi/NinjaSCSI.txt |
5761 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5762 | |
5763 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5764 | M: GOTO Masanori <[email protected]> |
5765 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
5766 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5767 | S: Maintained | |
679655da JP |
5768 | F: Documentation/scsi/NinjaSCSI.txt |
5769 | F: drivers/scsi/nsp32* | |
1da177e4 | 5770 | |
fce8a7bb JM |
5771 | NTB DRIVER |
5772 | M: Jon Mason <[email protected]> | |
5773 | S: Supported | |
5774 | F: drivers/ntb/ | |
548c237c | 5775 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
5776 | F: include/linux/ntb.h |
5777 | ||
1da177e4 | 5778 | NTFS FILESYSTEM |
2818ef50 | 5779 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 5780 | L: [email protected] |
2818ef50 | 5781 | W: http://www.tuxera.com/ |
e6f4dee7 | 5782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5783 | S: Supported |
679655da JP |
5784 | F: Documentation/filesystems/ntfs.txt |
5785 | F: fs/ntfs/ | |
1da177e4 | 5786 | |
9eb8ef74 | 5787 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5788 | M: Antonino Daplas <[email protected]> |
c69f677c | 5789 | L: [email protected] |
ce00f85c | 5790 | S: Maintained |
679655da JP |
5791 | F: drivers/video/riva/ |
5792 | F: drivers/video/nvidia/ | |
1da177e4 | 5793 | |
79461681 MW |
5794 | NVM EXPRESS DRIVER |
5795 | M: Matthew Wilcox <[email protected]> | |
5796 | L: [email protected] | |
5797 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
5798 | S: Supported | |
5be37bf9 | 5799 | F: drivers/block/nvme* |
79461681 MW |
5800 | F: include/linux/nvme.h |
5801 | ||
f5525786 | 5802 | OMAP SUPPORT |
0e24bdd4 | 5803 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
5804 | L: [email protected] |
5805 | W: http://www.muru.com/linux/omap/ | |
5806 | W: http://linux.omap.com/ | |
8a6e2535 | 5807 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5809 | S: Maintained |
4e04d5a3 | 5810 | F: arch/arm/*omap*/ |
046d0a37 JD |
5811 | F: drivers/i2c/busses/i2c-omap.c |
5812 | F: include/linux/i2c-omap.h | |
f5525786 | 5813 | |
50f29fbd TL |
5814 | OMAP DEVICE TREE SUPPORT |
5815 | M: Benoît Cousson <[email protected]> | |
5816 | M: Tony Lindgren <[email protected]> | |
5817 | L: [email protected] | |
5818 | L: [email protected] (moderated for non-subscribers) | |
5819 | S: Maintained | |
5820 | F: arch/arm/boot/dts/*omap* | |
5821 | F: arch/arm/boot/dts/*am3* | |
5822 | ||
f5525786 | 5823 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5824 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
5825 | L: [email protected] |
5826 | S: Maintained | |
5827 | F: arch/arm/*omap*/*clock* | |
5828 | ||
5829 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 5830 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
5831 | L: [email protected] |
5832 | S: Maintained | |
5833 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5834 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5835 | |
692ab1f3 PW |
5836 | OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT |
5837 | M: Rajendra Nayak <[email protected]> | |
5838 | M: Paul Walmsley <[email protected]> | |
5839 | L: [email protected] | |
5840 | S: Maintained | |
5841 | F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |
5842 | F: arch/arm/mach-omap2/powerdomain44xx.c | |
5843 | F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |
5844 | F: arch/arm/mach-omap2/clockdomain44xx.c | |
5845 | ||
f5525786 | 5846 | OMAP AUDIO SUPPORT |
6c284903 | 5847 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 5848 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
5849 | L: [email protected] (subscribers-only) |
5850 | L: [email protected] | |
5851 | S: Maintained | |
5852 | F: sound/soc/omap/ | |
5853 | ||
5854 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5855 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 5856 | L: [email protected] |
f5525786 TL |
5857 | L: [email protected] |
5858 | S: Maintained | |
5859 | F: drivers/video/omap/ | |
5860 | ||
676eec0d | 5861 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5862 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 5863 | L: [email protected] |
676eec0d | 5864 | L: [email protected] |
178ff4c9 | 5865 | S: Maintained |
676eec0d | 5866 | F: drivers/video/omap2/ |
178ff4c9 TV |
5867 | F: Documentation/arm/OMAP/DSS |
5868 | ||
8b37fcfc OBC |
5869 | OMAP HARDWARE SPINLOCK SUPPORT |
5870 | M: Ohad Ben-Cohen <[email protected]> | |
5871 | L: [email protected] | |
5872 | S: Maintained | |
5873 | F: drivers/hwspinlock/omap_hwspinlock.c | |
5874 | F: arch/arm/mach-omap2/hwspinlock.c | |
5875 | ||
f5525786 | 5876 | OMAP MMC SUPPORT |
8b58be88 | 5877 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
5878 | L: [email protected] |
5879 | S: Maintained | |
653f41b5 MC |
5880 | F: drivers/mmc/host/omap.c |
5881 | ||
5882 | OMAP HS MMC SUPPORT | |
14006bfb | 5883 | M: Balaji T K <[email protected]> |
0a4585c6 | 5884 | L: [email protected] |
653f41b5 | 5885 | L: [email protected] |
0a4585c6 | 5886 | S: Maintained |
653f41b5 | 5887 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
5888 | |
5889 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 5890 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
5891 | S: Maintained |
5892 | F: drivers/char/hw_random/omap-rng.c | |
5893 | ||
f400c82e PW |
5894 | OMAP HWMOD SUPPORT |
5895 | M: Benoît Cousson <[email protected]> | |
5896 | M: Paul Walmsley <[email protected]> | |
5897 | L: [email protected] | |
5898 | S: Maintained | |
8fc8b12b | 5899 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
5900 | |
5901 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
5902 | M: Benoît Cousson <[email protected]> | |
5903 | L: [email protected] | |
5904 | S: Maintained | |
5905 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
5906 | ||
7e8970e1 LP |
5907 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
5908 | M: Laurent Pinchart <[email protected]> | |
5909 | L: [email protected] | |
5910 | S: Maintained | |
90d72ac6 | 5911 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 5912 | |
f5525786 | 5913 | OMAP USB SUPPORT |
f299470a | 5914 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
5915 | L: [email protected] |
5916 | L: [email protected] | |
43b416e5 | 5917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 5918 | S: Maintained |
a16fbd65 JP |
5919 | F: drivers/usb/*/*omap* |
5920 | F: arch/arm/*omap*/usb* | |
f5525786 | 5921 | |
6d994710 KH |
5922 | OMAP GPIO DRIVER |
5923 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 5924 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
5925 | L: [email protected] |
5926 | S: Maintained | |
5927 | F: drivers/gpio/gpio-omap.c | |
5928 | ||
0ad122d9 | 5929 | OMFS FILESYSTEM |
8b58be88 | 5930 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
5931 | L: [email protected] |
5932 | S: Maintained | |
679655da JP |
5933 | F: Documentation/filesystems/omfs.txt |
5934 | F: fs/omfs/ | |
0ad122d9 | 5935 | |
c1986ee9 | 5936 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 5937 | M: Harald Welte <[email protected]> |
c1986ee9 | 5938 | S: Maintained |
679655da JP |
5939 | F: drivers/char/pcmcia/cm4000_cs.c |
5940 | F: include/linux/cm4000_cs.h | |
c117ab84 | 5941 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 5942 | |
77c44ab1 | 5943 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 5944 | M: Harald Welte <[email protected]> |
77c44ab1 | 5945 | S: Maintained |
679655da | 5946 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 5947 | |
77d5140f | 5948 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 5949 | M: Jonathan Corbet <[email protected]> |
661263b5 | 5950 | L: [email protected] |
275ffde4 | 5951 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 5952 | S: Maintained |
90d72ac6 | 5953 | F: drivers/media/i2c/ov7670.c |
77d5140f | 5954 | |
431bca73 | 5955 | ONENAND FLASH DRIVER |
8b58be88 | 5956 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
5957 | L: [email protected] |
5958 | S: Maintained | |
679655da JP |
5959 | F: drivers/mtd/onenand/ |
5960 | F: include/linux/mtd/onenand*.h | |
431bca73 | 5961 | |
1da177e4 | 5962 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 5963 | M: Willem Riede <[email protected]> |
1da177e4 LT |
5964 | L: [email protected] |
5965 | L: [email protected] | |
5966 | S: Maintained | |
f7269cfc JD |
5967 | F: Documentation/scsi/osst.txt |
5968 | F: drivers/scsi/osst.* | |
5969 | F: drivers/scsi/osst_*.h | |
5970 | F: drivers/scsi/st.h | |
1da177e4 | 5971 | |
e2d1d6c0 | 5972 | OPENCORES I2C BUS DRIVER |
8b58be88 | 5973 | M: Peter Korsgaard <[email protected]> |
846557d3 | 5974 | L: [email protected] |
e2d1d6c0 | 5975 | S: Maintained |
679655da JP |
5976 | F: Documentation/i2c/busses/i2c-ocores |
5977 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 5978 | |
860c44c1 | 5979 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 5980 | M: Grant Likely <[email protected]> |
f910b831 | 5981 | M: Rob Herring <[email protected]> |
78bba987 | 5982 | L: [email protected] (moderated for non-subscribers) |
860c44c1 | 5983 | W: http://fdt.secretlab.ca |
3bbf9b9b | 5984 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 5985 | S: Maintained |
f910b831 | 5986 | F: Documentation/devicetree |
860c44c1 GL |
5987 | F: drivers/of |
5988 | F: include/linux/of*.h | |
36165f55 | 5989 | F: scripts/dtc |
860c44c1 | 5990 | K: of_get_property |
d945fa0d | 5991 | K: of_match_table |
860c44c1 | 5992 | |
19f9d392 JB |
5993 | OPENRISC ARCHITECTURE |
5994 | M: Jonas Bonn <[email protected]> | |
5995 | W: http://openrisc.net | |
eab7c1c0 | 5996 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
5997 | S: Maintained |
5998 | T: git git://openrisc.net/~jonas/linux | |
5999 | F: arch/openrisc | |
6000 | ||
ccb1352e JG |
6001 | OPENVSWITCH |
6002 | M: Jesse Gross <[email protected]> | |
6003 | L: [email protected] | |
6004 | W: http://openvswitch.org | |
6005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6006 | S: Maintained | |
6007 | F: net/openvswitch/ | |
6008 | ||
af39917d CL |
6009 | OPL4 DRIVER |
6010 | M: Clemens Ladisch <[email protected]> | |
6011 | L: [email protected] (moderated for non-subscribers) | |
6012 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6013 | S: Maintained | |
6014 | F: sound/drivers/opl4/ | |
6015 | ||
1da177e4 | 6016 | OPROFILE |
4cf7e718 | 6017 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6018 | L: [email protected] |
6019 | S: Maintained | |
81c4a8a6 | 6020 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6021 | F: arch/*/oprofile/ |
6022 | F: drivers/oprofile/ | |
6023 | F: include/linux/oprofile.h | |
1da177e4 | 6024 | |
e2d1d6c0 | 6025 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6026 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6027 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6028 | L: [email protected] (moderated for non-subscribers) |
6029 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6030 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6031 | S: Supported |
679655da JP |
6032 | F: Documentation/filesystems/ocfs2.txt |
6033 | F: Documentation/filesystems/dlmfs.txt | |
6034 | F: fs/ocfs2/ | |
e2d1d6c0 | 6035 | |
1da177e4 | 6036 | ORINOCO DRIVER |
724c6b35 | 6037 | L: [email protected] |
491b26b4 | 6038 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6039 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6040 | S: Orphan |
679655da | 6041 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6042 | |
42c55aa8 | 6043 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6044 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6045 | M: Benny Halevy <[email protected]> |
68274794 BH |
6046 | L: [email protected] |
6047 | W: http://open-osd.org | |
54e5881d | 6048 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6049 | S: Maintained |
42c55aa8 | 6050 | F: drivers/scsi/osd/ |
6b6f0b6c | 6051 | F: include/scsi/osd_* |
42c55aa8 | 6052 | F: fs/exofs/ |
68274794 | 6053 | |
e2d1d6c0 | 6054 | P54 WIRELESS DRIVER |
084cb0fe | 6055 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6056 | L: [email protected] |
084cb0fe | 6057 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6058 | S: Maintained |
679655da | 6059 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6060 | |
f5cd7872 | 6061 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6062 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6063 | L: [email protected] |
6064 | S: Maintained | |
ded19add | 6065 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6066 | |
beb58aa3 | 6067 | PA SEMI SMBUS DRIVER |
8b58be88 | 6068 | M: Olof Johansson <[email protected]> |
846557d3 | 6069 | L: [email protected] |
beb58aa3 | 6070 | S: Maintained |
679655da | 6071 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6072 | |
48fc267e SK |
6073 | PADATA PARALLEL EXECUTION MECHANISM |
6074 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6075 | L: [email protected] |
6076 | S: Maintained | |
6077 | F: kernel/padata.c | |
6078 | F: include/linux/padata.h | |
6079 | F: Documentation/padata.txt | |
6080 | ||
709ee531 | 6081 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6082 | M: Harald Welte <[email protected]> |
d0944853 | 6083 | L: [email protected] |
709ee531 | 6084 | S: Maintained |
679655da | 6085 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6086 | |
368dd5ac | 6087 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6088 | M: David Howells <[email protected]> |
6089 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6090 | L: [email protected] (moderated for non-subscribers) |
6091 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6092 | S: Maintained | |
679655da JP |
6093 | F: Documentation/mn10300/ |
6094 | F: arch/mn10300/ | |
4fa97181 | 6095 | |
1da177e4 | 6096 | PARALLEL PORT SUPPORT |
3dd1a329 | 6097 | L: [email protected] (subscribers-only) |
5fdc2abe | 6098 | S: Orphan |
679655da JP |
6099 | F: drivers/parport/ |
6100 | F: include/linux/parport*.h | |
6101 | F: drivers/char/ppdev.c | |
c117ab84 | 6102 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6103 | |
4cdf6bc2 | 6104 | PARAVIRT_OPS INTERFACE |
d633180c | 6105 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6106 | M: Chris Wright <[email protected]> |
6107 | M: Alok Kataria <[email protected]> | |
6108 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6109 | L: [email protected] |
4cdf6bc2 | 6110 | S: Supported |
679655da JP |
6111 | F: Documentation/ia64/paravirt_ops.txt |
6112 | F: arch/*/kernel/paravirt* | |
6113 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6114 | |
e2d1d6c0 | 6115 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6116 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6117 | L: [email protected] (subscribers-only) |
6118 | W: http://www.torque.net/linux-pp.html | |
6119 | S: Maintained | |
679655da JP |
6120 | F: Documentation/blockdev/paride.txt |
6121 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6122 | |
6123 | PARISC ARCHITECTURE | |
b8828770 | 6124 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6125 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6126 | L: [email protected] |
6127 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6128 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6130 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6131 | S: Maintained |
679655da | 6132 | F: arch/parisc/ |
2b6bac9e | 6133 | F: Documentation/parisc/ |
679655da | 6134 | F: drivers/parisc/ |
2b6bac9e HD |
6135 | F: drivers/char/agp/parisc-agp.c |
6136 | F: drivers/input/serio/gscps2.c | |
6137 | F: drivers/parport/parport_gsc.* | |
6138 | F: drivers/tty/serial/8250/8250_gsc.c | |
6139 | F: drivers/video/sti* | |
6140 | F: drivers/video/console/sti* | |
6141 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6142 | |
1662d32c | 6143 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6144 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6145 | L: [email protected] |
6146 | S: Maintained | |
679655da JP |
6147 | F: Documentation/hwmon/pc87360 |
6148 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6149 | |
6150 | PC8736x GPIO DRIVER | |
8b58be88 | 6151 | M: Jim Cromie <[email protected]> |
1662d32c | 6152 | S: Maintained |
679655da | 6153 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6154 | |
1ad107fd JD |
6155 | PC87427 HARDWARE MONITORING DRIVER |
6156 | M: Jean Delvare <[email protected]> | |
6157 | L: [email protected] | |
6158 | S: Maintained | |
6159 | F: Documentation/hwmon/pc87427 | |
6160 | F: drivers/hwmon/pc87427.c | |
6161 | ||
b26e0ed4 | 6162 | PCA9532 LED DRIVER |
8b58be88 | 6163 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6164 | S: Maintained |
d5ca6918 JP |
6165 | F: drivers/leds/leds-pca9532.c |
6166 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6167 | |
5ce914a8 | 6168 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6169 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6170 | L: [email protected] |
6171 | S: Maintained | |
b4f0b74e | 6172 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6173 | |
3971dae5 | 6174 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6175 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6176 | S: Maintained |
6177 | F: drivers/firmware/pcdp.* | |
6178 | ||
065c6359 | 6179 | PCI ERROR RECOVERY |
6305902c | 6180 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6181 | L: [email protected] |
065c6359 | 6182 | S: Supported |
679655da JP |
6183 | F: Documentation/PCI/pci-error-recovery.txt |
6184 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
065c6359 | 6185 | |
1da177e4 | 6186 | PCI SUBSYSTEM |
5ac3a6d2 | 6187 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6188 | L: [email protected] |
99662dd1 | 6189 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6191 | S: Supported |
679655da JP |
6192 | F: Documentation/PCI/ |
6193 | F: drivers/pci/ | |
6194 | F: include/linux/pci* | |
1da177e4 | 6195 | |
1da177e4 | 6196 | PCMCIA SUBSYSTEM |
4230dfc9 | 6197 | P: Linux PCMCIA Team |
f5df5881 | 6198 | L: [email protected] |
6650e0a5 | 6199 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6201 | S: Maintained |
679655da JP |
6202 | F: Documentation/pcmcia/ |
6203 | F: drivers/pcmcia/ | |
6204 | F: include/pcmcia/ | |
1da177e4 LT |
6205 | |
6206 | PCNET32 NETWORK DRIVER | |
227fb925 | 6207 | M: Don Fry <[email protected]> |
979b6c13 | 6208 | L: [email protected] |
1da177e4 | 6209 | S: Maintained |
b955f6ca | 6210 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6211 | |
48fc267e SK |
6212 | PCRYPT PARALLEL CRYPTO ENGINE |
6213 | M: Steffen Klassert <[email protected]> | |
6214 | L: [email protected] | |
6215 | S: Maintained | |
6216 | F: crypto/pcrypt.c | |
6217 | F: include/crypto/pcrypt.h | |
6218 | ||
e72df0b8 TH |
6219 | PER-CPU MEMORY ALLOCATOR |
6220 | M: Tejun Heo <[email protected]> | |
6221 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6222 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6223 | S: Maintained | |
6224 | F: include/linux/percpu*.h | |
6225 | F: mm/percpu*.c | |
6226 | F: arch/*/include/asm/percpu.h | |
6227 | ||
ad4ecbcb | 6228 | PER-TASK DELAY ACCOUNTING |
185e595f | 6229 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6230 | S: Maintained |
679655da JP |
6231 | F: include/linux/delayacct.h |
6232 | F: kernel/delayacct.c | |
ad4ecbcb | 6233 | |
57c0c15b | 6234 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6235 | M: Peter Zijlstra <[email protected]> |
6236 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6237 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6238 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 6239 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6240 | S: Supported |
d53e8365 | 6241 | F: kernel/events/* |
a003236c | 6242 | F: include/linux/perf_event.h |
c117ab84 | 6243 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6244 | F: arch/*/kernel/perf_event*.c |
6245 | F: arch/*/kernel/*/perf_event*.c | |
6246 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6247 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6248 | F: arch/*/kernel/perf_callchain.c |
6249 | F: tools/perf/ | |
6c0b3244 | 6250 | |
dd49d0f5 | 6251 | PERSONALITY HANDLING |
8b58be88 | 6252 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6253 | L: [email protected] |
6254 | S: Maintained | |
679655da | 6255 | F: include/linux/personality.h |
c117ab84 | 6256 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6257 | |
838e7a03 | 6258 | PHONET PROTOCOL |
2a06b40f | 6259 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6260 | S: Supported |
6261 | F: Documentation/networking/phonet.txt | |
6262 | F: include/linux/phonet.h | |
6263 | F: include/net/phonet/ | |
c117ab84 | 6264 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6265 | F: net/phonet/ |
6266 | ||
1da177e4 | 6267 | PHRAM MTD DRIVER |
8b58be88 | 6268 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6269 | L: [email protected] |
6270 | S: Maintained | |
679655da | 6271 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6272 | |
efdbb10e BP |
6273 | PICOLCD HID DRIVER |
6274 | M: Bruno Prémont <[email protected]> | |
6275 | L: [email protected] | |
6276 | S: Maintained | |
6277 | F: drivers/hid/hid-picolcd* | |
6278 | ||
a53bfa07 JI |
6279 | PICOXCELL SUPPORT |
6280 | M: Jamie Iles <[email protected]> | |
6281 | L: [email protected] (moderated for non-subscribers) | |
6282 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6283 | S: Supported | |
6284 | F: arch/arm/mach-picoxcell | |
6285 | F: drivers/*/picoxcell* | |
6286 | F: drivers/*/*/picoxcell* | |
6287 | ||
2744e8af LW |
6288 | PIN CONTROL SUBSYSTEM |
6289 | M: Linus Walleij <[email protected]> | |
6290 | S: Maintained | |
07f29ba6 | 6291 | F: drivers/pinctrl/ |
8e406fe4 | 6292 | F: include/linux/pinctrl/ |
2744e8af | 6293 | |
2201bbb8 JCPV |
6294 | PIN CONTROLLER - ATMEL AT91 |
6295 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6296 | L: [email protected] (moderated for non-subscribers) | |
6297 | S: Maintained | |
6298 | F: drivers/pinctrl/pinctrl-at91.c | |
6299 | ||
deda8287 | 6300 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6301 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6302 | L: [email protected] |
6303 | L: [email protected] (moderated for non-subscribers) | |
6304 | W: http://www.st.com/spear | |
6305 | S: Maintained | |
8e406fe4 | 6306 | F: drivers/pinctrl/spear/ |
deda8287 | 6307 | |
249a6771 | 6308 | PKTCDVD DRIVER |
dbd47133 | 6309 | M: Jiri Kosina <[email protected]> |
249a6771 | 6310 | S: Maintained |
679655da JP |
6311 | F: drivers/block/pktcdvd.c |
6312 | F: include/linux/pktcdvd.h | |
c117ab84 | 6313 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6314 | |
b31d8273 G |
6315 | PKUNITY SOC DRIVERS |
6316 | M: Guan Xuetao <[email protected]> | |
6317 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6318 | S: Maintained | |
6319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6320 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6321 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6322 | F: drivers/video/fb-puv3.c |
2809e80b | 6323 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6324 | |
9d2ecfb7 | 6325 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6326 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6327 | L: [email protected] |
6328 | W: http://www.lm-sensors.org/ | |
6329 | W: http://www.roeck-us.net/linux/drivers/ | |
6330 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6331 | S: Maintained | |
6332 | F: Documentation/hwmon/pmbus | |
6333 | F: drivers/hwmon/pmbus/ | |
6334 | F: include/linux/i2c/pmbus.h | |
6335 | ||
89a36810 | 6336 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6337 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6338 | L: [email protected] |
6339 | W: http://www.pmc-sierra.com/ | |
6340 | S: Supported | |
6341 | F: drivers/scsi/pmcraid.* | |
6342 | ||
dbf9bfe6 | 6343 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6344 | M: [email protected] |
dbf9bfe6 | 6345 | M: [email protected] |
6346 | L: [email protected] | |
6347 | S: Supported | |
6348 | F: drivers/scsi/pm8001/ | |
6349 | ||
1da177e4 | 6350 | POSIX CLOCKS and TIMERS |
8b58be88 | 6351 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 6352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6353 | S: Supported |
679655da JP |
6354 | F: fs/timerfd.c |
6355 | F: include/linux/timer* | |
6356 | F: kernel/*timer* | |
1da177e4 | 6357 | |
3be86148 | 6358 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
8b58be88 JP |
6359 | M: Anton Vorontsov <[email protected]> |
6360 | M: David Woodhouse <[email protected]> | |
54e5881d | 6361 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6362 | S: Maintained |
679655da | 6363 | F: include/linux/power_supply.h |
8cd725a1 | 6364 | F: drivers/power/ |
3be86148 | 6365 | |
1da177e4 | 6366 | PNP SUPPORT |
46a1f21a | 6367 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6368 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6369 | S: Maintained |
679655da | 6370 | F: drivers/pnp/ |
1da177e4 | 6371 | |
999445d4 | 6372 | PNXxxxx I2C DRIVER |
8b58be88 | 6373 | M: Vitaly Wool <[email protected]> |
846557d3 | 6374 | L: [email protected] |
999445d4 | 6375 | S: Maintained |
679655da | 6376 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6377 | |
1da177e4 | 6378 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6379 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6380 | L: [email protected] |
6381 | S: Maintained | |
224cf5ad | 6382 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6383 | |
6384 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6385 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6386 | S: Maintained |
679655da | 6387 | F: net/atm/pppoatm.c |
c117ab84 | 6388 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6389 | |
6390 | PPP OVER ETHERNET | |
8b58be88 | 6391 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6392 | S: Maintained |
224cf5ad JK |
6393 | F: drivers/net/ppp/pppoe.c |
6394 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6395 | |
a6d2370b | 6396 | PPP OVER L2TP |
8b58be88 | 6397 | M: James Chapman <[email protected]> |
a6d2370b | 6398 | S: Maintained |
90ca28d1 | 6399 | F: net/l2tp/l2tp_ppp.c |
679655da | 6400 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6401 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6402 | |
eae9d2ba | 6403 | PPS SUPPORT |
8b58be88 | 6404 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6405 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6406 | L: [email protected] (subscribers-only) | |
6407 | S: Maintained | |
cabaaf41 JP |
6408 | F: Documentation/pps/ |
6409 | F: drivers/pps/ | |
6410 | F: include/linux/pps*.h | |
eae9d2ba | 6411 | |
71a6d0af HW |
6412 | PPTP DRIVER |
6413 | M: Dmitry Kozlov <[email protected]> | |
6414 | L: [email protected] | |
6415 | S: Maintained | |
224cf5ad | 6416 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6417 | W: http://sourceforge.net/projects/accel-pptp |
6418 | ||
1da177e4 | 6419 | PREEMPTIBLE KERNEL |
8b58be88 | 6420 | M: Robert Love <[email protected]> |
1da177e4 LT |
6421 | L: [email protected] |
6422 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6423 | S: Supported | |
679655da JP |
6424 | F: Documentation/preempt-locking.txt |
6425 | F: include/linux/preempt.h | |
1da177e4 LT |
6426 | |
6427 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6428 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6429 | L: [email protected] |
9ef80804 | 6430 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6431 | S: Obsolete |
679655da | 6432 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6433 | |
b3277dfa | 6434 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 6435 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6436 | L: [email protected] |
6437 | S: Maintained | |
679655da | 6438 | F: drivers/ata/sata_promise.* |
b3277dfa | 6439 | |
02c18891 | 6440 | PS3 NETWORK SUPPORT |
b809b9ca | 6441 | M: Geoff Levand <[email protected]> |
02c18891 | 6442 | L: [email protected] |
a4724ed6 | 6443 | L: [email protected] |
b809b9ca | 6444 | S: Maintained |
8df158ac | 6445 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6446 | |
f58a9d17 | 6447 | PS3 PLATFORM SUPPORT |
b809b9ca | 6448 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6449 | L: [email protected] |
6450 | L: [email protected] | |
b809b9ca | 6451 | S: Maintained |
679655da JP |
6452 | F: arch/powerpc/boot/ps3* |
6453 | F: arch/powerpc/include/asm/lv1call.h | |
6454 | F: arch/powerpc/include/asm/ps3*.h | |
6455 | F: arch/powerpc/platforms/ps3/ | |
6456 | F: drivers/*/ps3* | |
6457 | F: drivers/ps3/ | |
fec629b8 | 6458 | F: drivers/rtc/rtc-ps3.c |
679655da | 6459 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6460 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6461 | |
cffb4add | 6462 | PS3VRAM DRIVER |
8b58be88 | 6463 | M: Jim Paris <[email protected]> |
a4724ed6 | 6464 | L: [email protected] |
cffb4add | 6465 | S: Maintained |
8a3977cb | 6466 | F: drivers/block/ps3vram.c |
cffb4add | 6467 | |
8defe599 AV |
6468 | PSTORE FILESYSTEM |
6469 | M: Anton Vorontsov <[email protected]> | |
6470 | M: Colin Cross <[email protected]> | |
6471 | M: Kees Cook <[email protected]> | |
6472 | M: Tony Luck <[email protected]> | |
6473 | S: Maintained | |
6474 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6475 | F: fs/pstore/ | |
6476 | F: include/linux/pstore* | |
04851772 | 6477 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6478 | F: drivers/acpi/apei/erst.c |
6479 | ||
7fbc415d RC |
6480 | PTP HARDWARE CLOCK SUPPORT |
6481 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6482 | L: [email protected] |
7fbc415d RC |
6483 | S: Maintained |
6484 | W: http://linuxptp.sourceforge.net/ | |
6485 | F: Documentation/ABI/testing/sysfs-ptp | |
6486 | F: Documentation/ptp/* | |
0ecb3cdd | 6487 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6488 | F: drivers/net/phy/dp83640* |
6489 | F: drivers/ptp/* | |
6490 | F: include/linux/ptp_cl* | |
6491 | ||
cf94a4d1 | 6492 | PTRACE SUPPORT |
8b58be88 JP |
6493 | M: Roland McGrath <[email protected]> |
6494 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6495 | S: Maintained |
6496 | F: include/asm-generic/syscall.h | |
6497 | F: include/linux/ptrace.h | |
6498 | F: include/linux/regset.h | |
6499 | F: include/linux/tracehook.h | |
c117ab84 | 6500 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6501 | F: kernel/ptrace.c |
6502 | ||
8320204a | 6503 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6504 | M: Mike Isely <[email protected]> |
16e9495d | 6505 | L: [email protected] (subscribers-only) |
661263b5 | 6506 | L: [email protected] |
8320204a | 6507 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6508 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6509 | S: Maintained |
679655da | 6510 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6511 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6512 | |
39532e6c HG |
6513 | PWC WEBCAM DRIVER |
6514 | M: Hans de Goede <[email protected]> | |
6515 | L: [email protected] | |
6516 | T: git git://linuxtv.org/media_tree.git | |
6517 | S: Maintained | |
6518 | F: drivers/media/usb/pwc/* | |
6519 | ||
200efedd TR |
6520 | PWM SUBSYSTEM |
6521 | M: Thierry Reding <[email protected]> | |
0c2498f1 SH |
6522 | L: [email protected] |
6523 | S: Maintained | |
200efedd TR |
6524 | W: http://gitorious.org/linux-pwm |
6525 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6526 | F: Documentation/pwm.txt | |
6527 | F: Documentation/devicetree/bindings/pwm/ | |
6528 | F: include/linux/pwm.h | |
0c2498f1 | 6529 | F: drivers/pwm/ |
a140b98d TR |
6530 | F: drivers/video/backlight/pwm_bl.c |
6531 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6532 | |
30ec261e | 6533 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6534 | M: Eric Miao <[email protected]> |
6535 | M: Russell King <[email protected]> | |
a323f664 | 6536 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6537 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6538 | T: git git://github.com/hzhuang1/linux.git |
6539 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6540 | S: Maintained |
679655da JP |
6541 | F: arch/arm/mach-pxa/ |
6542 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6543 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6544 | F: drivers/usb/gadget/pxa2* |
6545 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
6546 | F: sound/arm/pxa* |
6547 | F: sound/soc/pxa | |
1da177e4 | 6548 | |
3f640c61 | 6549 | MMP SUPPORT |
8b58be88 | 6550 | M: Eric Miao <[email protected]> |
a323f664 | 6551 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6552 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6553 | T: git git://github.com/hzhuang1/linux.git |
6554 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6555 | S: Maintained |
3f640c61 | 6556 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6557 | |
272f133a PO |
6558 | PXA MMCI DRIVER |
6559 | S: Orphan | |
6560 | ||
57f63bc8 | 6561 | PXA RTC DRIVER |
8b58be88 | 6562 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6563 | L: [email protected] |
6564 | S: Maintained | |
6565 | ||
52a09a04 | 6566 | QIB DRIVER |
8473c603 | 6567 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6568 | L: [email protected] |
6569 | S: Supported | |
6570 | F: drivers/infiniband/hw/qib/ | |
6571 | ||
5e9772b9 JS |
6572 | QLOGIC QLA1280 SCSI DRIVER |
6573 | M: Michael Reed <[email protected]> | |
6574 | L: [email protected] | |
6575 | S: Maintained | |
6576 | F: drivers/scsi/qla1280.[ch] | |
6577 | ||
1da177e4 | 6578 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6579 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6580 | M: [email protected] |
1da177e4 LT |
6581 | L: [email protected] |
6582 | S: Supported | |
679655da JP |
6583 | F: Documentation/scsi/LICENSE.qla2xxx |
6584 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6585 | |
883c98fe RA |
6586 | QLOGIC QLA4XXX iSCSI DRIVER |
6587 | M: Ravi Anand <[email protected]> | |
6588 | M: Vikas Chaudhary <[email protected]> | |
6589 | M: [email protected] | |
6590 | L: [email protected] | |
6591 | S: Supported | |
6592 | F: drivers/scsi/qla4xxx/ | |
6593 | ||
5a4faa87 | 6594 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6595 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6596 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6597 | M: [email protected] |
6598 | L: [email protected] | |
6599 | S: Supported | |
679655da | 6600 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6601 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6602 | |
0ec00f03 | 6603 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 SC |
6604 | M: Rajesh Borundia <[email protected]> |
6605 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 6606 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6607 | M: Sony Chacko <[email protected]> |
0ec00f03 AKS |
6608 | M: [email protected] |
6609 | L: [email protected] | |
6610 | S: Supported | |
aa43c215 | 6611 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6612 | |
c4e84bde | 6613 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6614 | M: Shahed Shaikh <[email protected]> |
b997d79a | 6615 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6616 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6617 | M: [email protected] |
c4e84bde RM |
6618 | L: [email protected] |
6619 | S: Supported | |
aa43c215 | 6620 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6621 | |
1da177e4 | 6622 | QNX4 FILESYSTEM |
8b58be88 | 6623 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6624 | W: http://www.alarsen.net/linux/qnx4fs/ |
6625 | S: Maintained | |
80811493 | 6626 | F: fs/qnx4/ |
c117ab84 CEB |
6627 | F: include/uapi/linux/qnx4_fs.h |
6628 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6629 | |
91952bc0 AP |
6630 | QT1010 MEDIA DRIVER |
6631 | M: Antti Palosaari <[email protected]> | |
6632 | L: [email protected] | |
6633 | W: http://linuxtv.org/ | |
6634 | W: http://palosaari.fi/linux/ | |
6635 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6636 | T: git git://linuxtv.org/anttip/media_tree.git | |
6637 | S: Maintained | |
6638 | F: drivers/media/tuners/qt1010* | |
6639 | ||
4f4567cf RK |
6640 | QUALCOMM HEXAGON ARCHITECTURE |
6641 | M: Richard Kuo <[email protected]> | |
6642 | L: [email protected] | |
6643 | S: Supported | |
6644 | F: arch/hexagon/ | |
6645 | ||
35e3540b HV |
6646 | QUICKCAM PARALLEL PORT WEBCAMS |
6647 | M: Hans Verkuil <[email protected]> | |
6648 | L: [email protected] | |
6649 | T: git git://linuxtv.org/media_tree.git | |
6650 | W: http://linuxtv.org | |
6651 | S: Odd Fixes | |
6652 | F: drivers/media/parport/*-qcam* | |
6653 | ||
602adf40 | 6654 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6655 | M: Yehuda Sadeh <[email protected]> |
6656 | M: Sage Weil <[email protected]> | |
6657 | M: Alex Elder <[email protected]> | |
602adf40 | 6658 | M: [email protected] |
09d90327 SW |
6659 | W: http://ceph.com/ |
6660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6661 | S: Supported |
6662 | F: drivers/block/rbd.c | |
6663 | F: drivers/block/rbd_types.h | |
6664 | ||
1da177e4 | 6665 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6666 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6667 | L: [email protected] |
1da177e4 | 6668 | S: Maintained |
679655da | 6669 | F: drivers/video/aty/radeon* |
c117ab84 | 6670 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6671 | |
c6c9b34c HG |
6672 | RADIOSHARK RADIO DRIVER |
6673 | M: Hans de Goede <[email protected]> | |
6674 | L: [email protected] | |
6675 | T: git git://linuxtv.org/media_tree.git | |
6676 | S: Maintained | |
6677 | F: drivers/media/radio/radio-shark.c | |
6678 | ||
6679 | RADIOSHARK2 RADIO DRIVER | |
6680 | M: Hans de Goede <[email protected]> | |
6681 | L: [email protected] | |
6682 | T: git git://linuxtv.org/media_tree.git | |
6683 | S: Maintained | |
6684 | F: drivers/media/radio/radio-shark2.c | |
6685 | F: drivers/media/radio/radio-tea5777.c | |
6686 | ||
1da177e4 | 6687 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6688 | M: Paul Mackerras <[email protected]> |
c69f677c | 6689 | L: [email protected] |
1da177e4 | 6690 | S: Maintained |
679655da | 6691 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6692 | |
e7839f25 | 6693 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6694 | P: rt2x00 project |
e1a6542f | 6695 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 6696 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 6697 | M: Helmut Schaa <[email protected]> |
95ea3627 | 6698 | L: [email protected] |
83fc9c89 | 6699 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
6700 | W: http://rt2x00.serialmonkey.com/ |
6701 | S: Maintained | |
54e5881d | 6702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6703 | F: drivers/net/wireless/rt2x00/ |
6704 | ||
9db5579b | 6705 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6706 | M: Nick Piggin <[email protected]> |
9db5579b | 6707 | S: Maintained |
679655da JP |
6708 | F: Documentation/blockdev/ramdisk.txt |
6709 | F: drivers/block/brd.c | |
9db5579b | 6710 | |
9e95ce27 | 6711 | RANDOM NUMBER DRIVER |
330e0a01 | 6712 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 6713 | S: Maintained |
679655da | 6714 | F: drivers/char/random.c |
9e95ce27 | 6715 | |
394b701c | 6716 | RAPIDIO SUBSYSTEM |
8b58be88 | 6717 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 6718 | M: Alexandre Bounine <[email protected]> |
394b701c | 6719 | S: Maintained |
679655da | 6720 | F: drivers/rapidio/ |
394b701c | 6721 | |
e2d1d6c0 | 6722 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6723 | L: [email protected] |
f52a5490 | 6724 | S: Orphan |
679655da | 6725 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6726 | |
6727 | RCUTORTURE MODULE | |
8b58be88 JP |
6728 | M: Josh Triplett <[email protected]> |
6729 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 6730 | S: Supported |
08deed1e | 6731 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6732 | F: Documentation/RCU/torture.txt |
6733 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6734 | |
c1f766b5 | 6735 | RDC R-321X SoC |
8b58be88 | 6736 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
6737 | S: Maintained |
6738 | ||
db17f395 | 6739 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6740 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
6741 | L: [email protected] |
6742 | S: Maintained | |
58565a35 | 6743 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6744 | |
a09ed661 | 6745 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6746 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 6747 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 6748 | S: Supported |
679655da | 6749 | F: net/rds/ |
a09ed661 | 6750 | |
595182bc | 6751 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6752 | M: Dipankar Sarma <[email protected]> |
6753 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 6754 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6755 | S: Supported |
08deed1e | 6756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6757 | F: Documentation/RCU/ |
9fab9787 | 6758 | X: Documentation/RCU/torture.txt |
f9094d8e | 6759 | F: include/linux/rcu* |
f9094d8e | 6760 | F: kernel/rcu* |
f9094d8e | 6761 | X: kernel/rcutorture.c |
595182bc | 6762 | |
0c86edc0 | 6763 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6764 | M: Alessandro Zummo <[email protected]> |
76465493 | 6765 | L: [email protected] |
8a6e2535 | 6766 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6767 | S: Maintained |
679655da JP |
6768 | F: Documentation/rtc.txt |
6769 | F: drivers/rtc/ | |
6770 | F: include/linux/rtc.h | |
c117ab84 | 6771 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6772 | |
1da177e4 | 6773 | REISERFS FILE SYSTEM |
76c4e5ea | 6774 | L: [email protected] |
1da177e4 | 6775 | S: Supported |
679655da | 6776 | F: fs/reiserfs/ |
1da177e4 | 6777 | |
b83a313b | 6778 | REGISTER MAP ABSTRACTION |
b02e48f2 | 6779 | M: Mark Brown <[email protected]> |
b83a313b MB |
6780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
6781 | S: Supported | |
6782 | F: drivers/base/regmap/ | |
6783 | F: include/linux/regmap.h | |
6784 | ||
400e64df OBC |
6785 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6786 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 6787 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6788 | S: Maintained |
6789 | F: drivers/remoteproc/ | |
6790 | F: Documentation/remoteproc.txt | |
6fc26488 | 6791 | F: include/linux/remoteproc.h |
400e64df | 6792 | |
d8115db5 OBC |
6793 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
6794 | M: Ohad Ben-Cohen <[email protected]> | |
6795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
6796 | S: Maintained | |
6797 | F: drivers/rpmsg/ | |
6798 | F: Documentation/rpmsg.txt | |
6799 | F: include/linux/rpmsg.h | |
6800 | ||
e0897645 | 6801 | RFKILL |
8b58be88 | 6802 | M: Johannes Berg <[email protected]> |
19d337df | 6803 | L: [email protected] |
ce466579 JB |
6804 | W: http://wireless.kernel.org/ |
6805 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6807 | S: Maintained |
505c9247 | 6808 | F: Documentation/rfkill.txt |
80811493 | 6809 | F: net/rfkill/ |
e0897645 | 6810 | |
67e054e9 ML |
6811 | RICOH SMARTMEDIA/XD DRIVER |
6812 | M: Maxim Levitsky <[email protected]> | |
6813 | S: Maintained | |
21c26f50 JP |
6814 | F: drivers/mtd/nand/r852.c |
6815 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6816 | |
92634125 ML |
6817 | RICOH R5C592 MEMORYSTICK DRIVER |
6818 | M: Maxim Levitsky <[email protected]> | |
6819 | S: Maintained | |
6820 | F: drivers/memstick/host/r592.* | |
6821 | ||
1da177e4 LT |
6822 | ROCKETPORT DRIVER |
6823 | P: Comtrol Corp. | |
1da177e4 LT |
6824 | W: http://www.comtrol.com |
6825 | S: Maintained | |
679655da | 6826 | F: Documentation/serial/rocket.txt |
c897401b | 6827 | F: drivers/tty/rocket* |
1da177e4 LT |
6828 | |
6829 | ROSE NETWORK LAYER | |
8b58be88 | 6830 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6831 | L: [email protected] |
d34cb28a | 6832 | W: http://www.linux-ax25.org/ |
1da177e4 | 6833 | S: Maintained |
679655da | 6834 | F: include/net/rose.h |
c117ab84 | 6835 | F: include/uapi/linux/rose.h |
679655da | 6836 | F: net/rose/ |
1da177e4 | 6837 | |
91952bc0 AP |
6838 | RTL2830 MEDIA DRIVER |
6839 | M: Antti Palosaari <[email protected]> | |
6840 | L: [email protected] | |
6841 | W: http://linuxtv.org/ | |
6842 | W: http://palosaari.fi/linux/ | |
6843 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6844 | T: git git://linuxtv.org/anttip/media_tree.git | |
6845 | S: Maintained | |
6846 | F: drivers/media/dvb-frontends/rtl2830* | |
6847 | ||
27a0aacf AP |
6848 | RTL2832 MEDIA DRIVER |
6849 | M: Antti Palosaari <[email protected]> | |
6850 | L: [email protected] | |
6851 | W: http://linuxtv.org/ | |
6852 | W: http://palosaari.fi/linux/ | |
6853 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6854 | T: git git://linuxtv.org/anttip/media_tree.git | |
6855 | S: Maintained | |
6856 | F: drivers/media/dvb-frontends/rtl2832* | |
6857 | ||
59840488 | 6858 | RTL8180 WIRELESS DRIVER |
8b58be88 | 6859 | M: "John W. Linville" <[email protected]> |
605bebe2 | 6860 | L: [email protected] |
491b26b4 | 6861 | W: http://wireless.kernel.org/ |
54e5881d | 6862 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 6863 | S: Maintained |
3cfeb0c3 | 6864 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 6865 | |
59840488 | 6866 | RTL8187 WIRELESS DRIVER |
9f0939bf | 6867 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
6868 | M: Hin-Tak Leung <[email protected]> |
6869 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 6870 | L: [email protected] |
491b26b4 | 6871 | W: http://wireless.kernel.org/ |
54e5881d | 6872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 6873 | S: Maintained |
3cfeb0c3 | 6874 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 6875 | |
3cf0c8ad LF |
6876 | RTL8192CE WIRELESS DRIVER |
6877 | M: Larry Finger <[email protected]> | |
6878 | M: Chaoming Li <[email protected]> | |
6879 | L: [email protected] | |
491b26b4 | 6880 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
6881 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
6882 | S: Maintained | |
6883 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 6884 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 6885 | |
9eb8ef74 | 6886 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 6887 | M: Antonino Daplas <[email protected]> |
c69f677c | 6888 | L: [email protected] |
ce00f85c | 6889 | S: Maintained |
679655da | 6890 | F: drivers/video/savage/ |
9eb8ef74 | 6891 | |
1da177e4 | 6892 | S390 |
8b58be88 JP |
6893 | M: Martin Schwidefsky <[email protected]> |
6894 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 6895 | M: [email protected] |
d58140cc | 6896 | L: [email protected] |
5238da45 HC |
6897 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6898 | S: Supported | |
679655da | 6899 | F: arch/s390/ |
a968cd3e | 6900 | F: drivers/s390/ |
20d16fef | 6901 | F: block/partitions/ibm.c |
3bfe6858 JN |
6902 | F: Documentation/s390/ |
6903 | F: Documentation/DocBook/s390* | |
5238da45 HC |
6904 | |
6905 | S390 NETWORK DRIVERS | |
8b58be88 JP |
6906 | M: Ursula Braun <[email protected]> |
6907 | M: Frank Blaschka <[email protected]> | |
5238da45 | 6908 | M: [email protected] |
d58140cc | 6909 | L: [email protected] |
5238da45 HC |
6910 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6911 | S: Supported | |
679655da | 6912 | F: drivers/s390/net/ |
5238da45 | 6913 | |
feed9b62 | 6914 | S390 ZCRYPT DRIVER |
5c8d0983 | 6915 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
6916 | M: [email protected] |
6917 | L: [email protected] | |
a968cd3e | 6918 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 6919 | S: Supported |
d5ca6918 | 6920 | F: drivers/s390/crypto/ |
feed9b62 | 6921 | |
5238da45 | 6922 | S390 ZFCP DRIVER |
d38e19d0 | 6923 | M: Steffen Maier <[email protected]> |
5238da45 | 6924 | M: [email protected] |
d58140cc | 6925 | L: [email protected] |
5238da45 | 6926 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 6927 | S: Supported |
679655da | 6928 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 6929 | |
dd96df2c | 6930 | S390 IUCV NETWORK LAYER |
8b58be88 | 6931 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
6932 | M: [email protected] |
6933 | L: [email protected] | |
6934 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
6935 | S: Supported | |
679655da JP |
6936 | F: drivers/s390/net/*iucv* |
6937 | F: include/net/iucv/ | |
6938 | F: net/iucv/ | |
dd96df2c | 6939 | |
4dde7f75 | 6940 | S3C24XX SD/MMC Driver |
8b58be88 | 6941 | M: Ben Dooks <[email protected]> |
efc03ecb | 6942 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 6943 | S: Supported |
679655da | 6944 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 6945 | |
1f15a229 HV |
6946 | SAA6588 RDS RECEIVER DRIVER |
6947 | M: Hans Verkuil <[email protected]> | |
6948 | L: [email protected] | |
6949 | T: git git://linuxtv.org/media_tree.git | |
6950 | W: http://linuxtv.org | |
6951 | S: Odd Fixes | |
6952 | F: drivers/media/i2c/saa6588* | |
6953 | ||
98ed12e6 MCC |
6954 | SAA7134 VIDEO4LINUX DRIVER |
6955 | M: Mauro Carvalho Chehab <[email protected]> | |
6956 | L: [email protected] | |
6957 | W: http://linuxtv.org | |
6958 | T: git git://linuxtv.org/media_tree.git | |
6959 | S: Odd fixes | |
e42bf501 | 6960 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
6961 | F: drivers/media/pci/saa7134/ |
6962 | ||
1da177e4 | 6963 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 6964 | M: Hans Verkuil <[email protected]> |
661263b5 | 6965 | L: [email protected] |
275ffde4 | 6966 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 6967 | S: Maintained |
90d72ac6 MCC |
6968 | F: drivers/media/common/saa7146/ |
6969 | F: drivers/media/pci/saa7146/ | |
6970 | F: include/media/saa7146* | |
1da177e4 | 6971 | |
92304a40 | 6972 | SAMSUNG LAPTOP DRIVER |
5909c654 | 6973 | M: Corentin Chary <[email protected]> |
92304a40 CC |
6974 | L: [email protected] |
6975 | S: Maintained | |
6976 | F: drivers/platform/x86/samsung-laptop.c | |
6977 | ||
4a109cc0 | 6978 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 6979 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
6980 | L: [email protected] (moderated for non-subscribers) |
6981 | S: Supported | |
7a939419 | 6982 | F: sound/soc/samsung |
4a109cc0 | 6983 | |
0d89a28b JH |
6984 | SAMSUNG FRAMEBUFFER DRIVER |
6985 | M: Jingoo Han <[email protected]> | |
6986 | L: [email protected] | |
6987 | S: Maintained | |
6988 | F: drivers/video/s3c-fb.c | |
6989 | ||
f69d3a17 SK |
6990 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
6991 | M: Sangbeom Kim <[email protected]> | |
6992 | L: [email protected] | |
6993 | S: Supported | |
6994 | F: drivers/mfd/sec*.c | |
6995 | F: drivers/regulator/s2m*.c | |
6996 | F: drivers/regulator/s5m*.c | |
6997 | F: drivers/rtc/rtc-sec.c | |
6998 | F: include/linux/mfd/samsung/ | |
6999 | ||
6fd86ab2 SN |
7000 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7001 | M: Sylwester Nawrocki <[email protected]> | |
7002 | L: [email protected] | |
7003 | L: [email protected] (moderated for non-subscribers) | |
7004 | S: Maintained | |
7005 | F: drivers/media/platform/s3c-camif/ | |
7006 | F: include/media/s3c_camif.h | |
7007 | ||
b84ef24e AH |
7008 | SAMSUNG S5C73M3 CAMERA DRIVER |
7009 | M: Kyungmin Park <[email protected]> | |
7010 | M: Andrzej Hajda <[email protected]> | |
7011 | L: [email protected] | |
7012 | S: Supported | |
7013 | F: drivers/media/i2c/s5c73m3/* | |
7014 | ||
ca749e2a | 7015 | SERIAL DRIVERS |
5e30bbb7 | 7016 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7017 | L: [email protected] |
5e30bbb7 | 7018 | S: Maintained |
ca749e2a AC |
7019 | F: drivers/tty/serial |
7020 | ||
aecb7b64 | 7021 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7022 | M: Viresh Kumar <[email protected]> |
aecb7b64 VK |
7023 | S: Maintained |
7024 | F: include/linux/dw_dmac.h | |
7025 | F: drivers/dma/dw_dmac_regs.h | |
7026 | F: drivers/dma/dw_dmac.c | |
7027 | ||
f9e37137 SJ |
7028 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7029 | M: Seungwon Jeon <[email protected]> | |
7030 | M: Jaehoon Chung <[email protected]> | |
7031 | L: [email protected] | |
7032 | S: Maintained | |
7033 | F: include/linux/mmc/dw_mmc.h | |
7034 | F: drivers/mmc/host/dw_mmc* | |
7035 | ||
88606e80 | 7036 | TIMEKEEPING, NTP |
50363737 | 7037 | M: John Stultz <[email protected]> |
88606e80 | 7038 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 7039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7040 | S: Supported |
7041 | F: include/linux/clocksource.h | |
7042 | F: include/linux/time.h | |
7043 | F: include/linux/timex.h | |
c117ab84 CEB |
7044 | F: include/uapi/linux/time.h |
7045 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7046 | F: kernel/time/clocksource.c |
7047 | F: kernel/time/time*.c | |
7048 | F: kernel/time/ntp.c | |
bbe7b8be | 7049 | F: drivers/clocksource |
88606e80 | 7050 | |
5b3f03f0 | 7051 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7052 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7053 | M: Hans Verkuil <[email protected]> |
7054 | S: Odd Fixes | |
0c0d06ca | 7055 | F: drivers/media/usb/tlg2300 |
5b3f03f0 | 7056 | |
1da177e4 | 7057 | SC1200 WDT DRIVER |
8b58be88 | 7058 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7059 | S: Maintained |
679655da | 7060 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7061 | |
7062 | SCHEDULER | |
dd9b238c | 7063 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7064 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 7065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7066 | S: Maintained |
95c0d71d | 7067 | F: kernel/sched/ |
679655da | 7068 | F: include/linux/sched.h |
c117ab84 | 7069 | F: include/uapi/linux/sched.h |
1da177e4 | 7070 | |
6bcf6737 | 7071 | SCORE ARCHITECTURE |
a2681a75 JP |
7072 | M: Chen Liqin <[email protected]> |
7073 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
7074 | W: http://www.sunplusct.com |
7075 | S: Supported | |
a2681a75 | 7076 | F: arch/score/ |
6bcf6737 | 7077 | |
1da177e4 | 7078 | SCSI CDROM DRIVER |
8b58be88 | 7079 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7080 | L: [email protected] |
7081 | W: http://www.kernel.dk | |
7082 | S: Maintained | |
679655da | 7083 | F: drivers/scsi/sr* |
1da177e4 | 7084 | |
fb50a83d RD |
7085 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7086 | M: David Dillow <[email protected]> | |
7087 | L: [email protected] | |
7088 | S: Supported | |
7089 | W: http://www.openfabrics.org | |
7090 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7092 | F: drivers/infiniband/ulp/srp/ | |
7093 | F: include/scsi/srp.h | |
7094 | ||
1da177e4 | 7095 | SCSI SG DRIVER |
8b58be88 | 7096 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
7097 | L: [email protected] |
7098 | W: http://www.torque.net/sg | |
7099 | S: Maintained | |
679655da JP |
7100 | F: drivers/scsi/sg.c |
7101 | F: include/scsi/sg.h | |
1da177e4 LT |
7102 | |
7103 | SCSI SUBSYSTEM | |
c95286d8 | 7104 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7105 | L: [email protected] |
54e5881d JP |
7106 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7107 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7109 | S: Maintained |
679655da JP |
7110 | F: drivers/scsi/ |
7111 | F: include/scsi/ | |
1da177e4 LT |
7112 | |
7113 | SCSI TAPE DRIVER | |
8b58be88 | 7114 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7115 | L: [email protected] |
7116 | S: Maintained | |
679655da | 7117 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7118 | F: drivers/scsi/st.* |
7119 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7120 | |
7121 | SCTP PROTOCOL | |
8b6efb75 | 7122 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7123 | M: Neil Horman <[email protected]> |
1a418796 | 7124 | L: [email protected] |
5f85813c | 7125 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7126 | S: Maintained |
679655da JP |
7127 | F: Documentation/networking/sctp.txt |
7128 | F: include/linux/sctp.h | |
7129 | F: include/net/sctp/ | |
7130 | F: net/sctp/ | |
1da177e4 LT |
7131 | |
7132 | SCx200 CPU SUPPORT | |
8b58be88 | 7133 | M: Jim Cromie <[email protected]> |
1662d32c | 7134 | S: Odd Fixes |
679655da | 7135 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7136 | F: arch/x86/platform/scx200/ |
679655da JP |
7137 | F: drivers/watchdog/scx200_wdt.c |
7138 | F: drivers/i2c/busses/scx200* | |
7139 | F: drivers/mtd/maps/scx200_docflash.c | |
7140 | F: include/linux/scx200.h | |
1662d32c JC |
7141 | |
7142 | SCx200 GPIO DRIVER | |
8b58be88 | 7143 | M: Jim Cromie <[email protected]> |
1662d32c | 7144 | S: Maintained |
679655da JP |
7145 | F: drivers/char/scx200_gpio.c |
7146 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7147 | |
7148 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7149 | M: Jim Cromie <[email protected]> |
1662d32c | 7150 | S: Maintained |
679655da | 7151 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7152 | |
6a36913a | 7153 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7154 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7155 | L: [email protected] (subscribers-only) |
7156 | S: Maintained | |
679655da | 7157 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7158 | |
e7839f25 | 7159 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7160 | M: Chris Ball <[email protected]> |
7a241d6e | 7161 | L: [email protected] |
245feaa6 CB |
7162 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7163 | S: Maintained | |
7a241d6e | 7164 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7165 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7166 | |
3085e9c1 | 7167 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
8b58be88 | 7168 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7169 | L: [email protected] |
7a241d6e | 7170 | L: [email protected] |
e2d1d6c0 | 7171 | S: Maintained |
d4a45787 | 7172 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7173 | |
0d1bb41a | 7174 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7175 | M: Ben Dooks <[email protected]> |
7a241d6e | 7176 | L: [email protected] |
0d1bb41a BD |
7177 | S: Maintained |
7178 | F: drivers/mmc/host/sdhci-s3c.c | |
7179 | ||
c63b3cba | 7180 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7181 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7182 | L: [email protected] |
c63b3cba VK |
7183 | L: [email protected] |
7184 | S: Maintained | |
7185 | F: drivers/mmc/host/sdhci-spear.c | |
7186 | ||
8711cca2 | 7187 | SECURITY SUBSYSTEM |
9b45c0d2 | 7188 | M: James Morris <[email protected]> |
8711cca2 | 7189 | L: [email protected] (suggested Cc:) |
89879a7e | 7190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7191 | W: http://kernsec.org/ |
8711cca2 | 7192 | S: Supported |
7d2c86b5 | 7193 | F: security/ |
8711cca2 | 7194 | |
1da177e4 | 7195 | SECURITY CONTACT |
8b58be88 | 7196 | M: Security Officers <[email protected]> |
1da177e4 LT |
7197 | S: Supported |
7198 | ||
7199 | SELINUX SECURITY MODULE | |
8b58be88 | 7200 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7201 | M: James Morris <[email protected]> |
8b58be88 | 7202 | M: Eric Paris <[email protected]> |
7d2c86b5 | 7203 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7204 | W: http://selinuxproject.org |
6bde95ce | 7205 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 7206 | S: Supported |
679655da JP |
7207 | F: include/linux/selinux* |
7208 | F: security/selinux/ | |
6bde95ce | 7209 | F: scripts/selinux/ |
1da177e4 | 7210 | |
c1c124e9 JJ |
7211 | APPARMOR SECURITY MODULE |
7212 | M: John Johansen <[email protected]> | |
7213 | L: [email protected] (subscribers-only, general discussion) | |
7214 | W: apparmor.wiki.kernel.org | |
7215 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7216 | S: Supported | |
7217 | F: security/apparmor/ | |
7218 | ||
cef2cf07 | 7219 | SENSABLE PHANTOM |
8b58be88 | 7220 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7221 | S: Maintained |
679655da | 7222 | F: drivers/misc/phantom.c |
c117ab84 | 7223 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7224 | |
4480f15b | 7225 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7226 | M: Tejun Heo <[email protected]> |
1da177e4 | 7227 | L: [email protected] |
3d9b9350 | 7228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7229 | S: Supported |
d5ca6918 JP |
7230 | F: drivers/ata/ |
7231 | F: include/linux/ata.h | |
7232 | F: include/linux/libata.h | |
1da177e4 | 7233 | |
6733b39a | 7234 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7235 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7236 | L: [email protected] |
0ca43cc0 | 7237 | W: http://www.emulex.com |
3387f656 JP |
7238 | S: Supported |
7239 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7240 | |
6b7c5b94 | 7241 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7242 | M: Sathya Perla <[email protected]> |
7243 | M: Subbu Seetharaman <[email protected]> | |
7244 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7245 | L: [email protected] |
fea3af67 | 7246 | W: http://www.emulex.com |
7d2c86b5 | 7247 | S: Supported |
9aebddd1 | 7248 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7249 | |
8ceee660 | 7250 | SFC NETWORK DRIVER |
c06f51ea | 7251 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
7252 | M: Ben Hutchings <[email protected]> |
7253 | L: [email protected] | |
8ceee660 | 7254 | S: Supported |
874aeea5 | 7255 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7256 | |
e2d1d6c0 | 7257 | SGI GRU DRIVER |
cc883afc BH |
7258 | M: Dimitri Sivanich <[email protected]> |
7259 | M: Robin Holt <[email protected]> | |
e2d1d6c0 | 7260 | S: Maintained |
679655da | 7261 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7262 | |
7263 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7264 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7265 | L: [email protected] |
7266 | S: Supported | |
679655da | 7267 | F: Documentation/ia64/serial.txt |
df621252 | 7268 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7269 | F: include/linux/ioc?.h |
e2d1d6c0 | 7270 | |
1da177e4 | 7271 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7272 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7273 | L: [email protected] |
7274 | W: http://linux-visws.sf.net | |
7275 | S: Maintained for 2.6. | |
679655da | 7276 | F: Documentation/sgi-visws.txt |
1da177e4 | 7277 | |
75312619 | 7278 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 7279 | M: Robin Holt <[email protected]> |
75312619 | 7280 | S: Maintained |
679655da | 7281 | F: drivers/misc/sgi-xp/ |
75312619 | 7282 | |
49cc629d HV |
7283 | SI470X FM RADIO RECEIVER I2C DRIVER |
7284 | M: Hans Verkuil <[email protected]> | |
7285 | L: [email protected] | |
7286 | T: git git://linuxtv.org/media_tree.git | |
7287 | W: http://linuxtv.org | |
7288 | S: Odd Fixes | |
7289 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7290 | ||
7291 | SI470X FM RADIO RECEIVER USB DRIVER | |
7292 | M: Hans Verkuil <[email protected]> | |
7293 | L: [email protected] | |
7294 | T: git git://linuxtv.org/media_tree.git | |
7295 | W: http://linuxtv.org | |
7296 | S: Maintained | |
7297 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7298 | F: drivers/media/radio/si470x/radio-si470x.h | |
7299 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7300 | ||
c937ca03 EV |
7301 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7302 | M: Eduardo Valentin <[email protected]> | |
7303 | L: [email protected] | |
7304 | T: git git://linuxtv.org/media_tree.git | |
7305 | W: http://linuxtv.org | |
7306 | S: Odd Fixes | |
7307 | F: drivers/media/radio/si4713-i2c.? | |
7308 | ||
7309 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7310 | M: Eduardo Valentin <[email protected]> | |
7311 | L: [email protected] | |
7312 | T: git git://linuxtv.org/media_tree.git | |
7313 | W: http://linuxtv.org | |
7314 | S: Odd Fixes | |
7315 | F: drivers/media/radio/radio-si4713.h | |
7316 | ||
beb91d46 MCC |
7317 | SIANO DVB DRIVER |
7318 | M: Mauro Carvalho Chehab <[email protected]> | |
7319 | L: [email protected] | |
7320 | W: http://linuxtv.org | |
7321 | T: git git://linuxtv.org/media_tree.git | |
7322 | S: Odd fixes | |
7323 | F: drivers/media/common/siano/ | |
7324 | F: drivers/media/dvb/siano/ | |
7325 | F: drivers/media/usb/siano/ | |
7326 | F: drivers/media/mmc/siano | |
7327 | ||
b618b69c GL |
7328 | SH_VEU V4L2 MEM2MEM DRIVER |
7329 | M: Guennadi Liakhovetski <[email protected]> | |
7330 | L: [email protected] | |
7331 | S: Maintained | |
7332 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7333 | |
7334 | SH_VOU V4L2 OUTPUT DRIVER | |
7335 | M: Guennadi Liakhovetski <[email protected]> | |
7336 | L: [email protected] | |
4290fd1a | 7337 | S: Odd Fixes |
b618b69c GL |
7338 | F: drivers/media/platform/sh_vou.c |
7339 | F: include/media/sh_vou.h | |
7340 | ||
6349d997 | 7341 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7342 | M: Len Brown <[email protected]> |
6349d997 LB |
7343 | L: [email protected] |
7344 | W: http://simplefirmware.org/ | |
7345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7346 | S: Supported |
943fc810 | 7347 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7348 | F: drivers/sfi/ |
7349 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7350 | |
1da177e4 LT |
7351 | SIMTEC EB110ATX (Chalice CATS) |
7352 | P: Ben Dooks | |
b16957c6 BD |
7353 | P: Vincent Sanders <[email protected]> |
7354 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7355 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7356 | S: Supported | |
7357 | ||
7358 | SIMTEC EB2410ITX (BAST) | |
7359 | P: Ben Dooks | |
b16957c6 BD |
7360 | P: Vincent Sanders <[email protected]> |
7361 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7362 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7363 | S: Supported | |
58322038 BD |
7364 | F: arch/arm/mach-s3c2410/mach-bast.c |
7365 | F: arch/arm/mach-s3c2410/bast-ide.c | |
7366 | F: arch/arm/mach-s3c2410/bast-irq.c | |
1da177e4 | 7367 | |
4c5adde7 | 7368 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7369 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7370 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7371 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7372 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7373 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
7374 | S: Supported |
7375 | F: arch/arm/mach-davinci | |
046d0a37 | 7376 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7377 | |
8d4b3f08 | 7378 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7379 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7380 | L: [email protected] |
7381 | L: [email protected] (moderated for non-subscribers) | |
7382 | W: http://linuxtv.org/ | |
7383 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7384 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7385 | S: Maintained |
8d4b3f08 LP |
7386 | F: drivers/media/platform/davinci/ |
7387 | F: include/media/davinci/ | |
7388 | ||
92aab3c0 | 7389 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7390 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7391 | L: [email protected] |
7392 | S: Maintained | |
8c7de408 | 7393 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7394 | |
1da177e4 | 7395 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7396 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7397 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7398 | L: [email protected] |
1da177e4 | 7399 | S: Maintained |
8c7de408 | 7400 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7401 | |
7402 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7403 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7404 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7405 | S: Maintained |
679655da JP |
7406 | F: Documentation/fb/sisfb.txt |
7407 | F: drivers/video/sis/ | |
7408 | F: include/video/sisfb.h | |
1da177e4 LT |
7409 | |
7410 | SIS USB2VGA DRIVER | |
8b58be88 | 7411 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7412 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7413 | S: Maintained | |
679655da | 7414 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7415 | |
415ad26d | 7416 | SLAB ALLOCATOR |
8b58be88 | 7417 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7418 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7419 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7420 | L: [email protected] |
7421 | S: Maintained | |
679655da JP |
7422 | F: include/linux/sl?b*.h |
7423 | F: mm/sl?b.c | |
415ad26d | 7424 | |
9fab9787 PM |
7425 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7426 | M: Lai Jiangshan <[email protected]> | |
7427 | M: "Paul E. McKenney" <[email protected]> | |
7428 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7429 | S: Supported | |
7430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7431 | F: include/linux/srcu* | |
7432 | F: kernel/srcu* | |
7433 | ||
66372841 CS |
7434 | SMACK SECURITY MODULE |
7435 | M: Casey Schaufler <[email protected]> | |
7436 | L: [email protected] | |
7437 | W: http://schaufler-ca.com | |
7438 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7439 | S: Maintained | |
7440 | F: Documentation/security/Smack.txt | |
7441 | F: security/smack/ | |
7442 | ||
1da177e4 | 7443 | SMC91x ETHERNET DRIVER |
2f82af08 | 7444 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7445 | S: Odd Fixes |
ae150435 | 7446 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7447 | |
e8e31622 SA |
7448 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7449 | M: Sakari Ailus <[email protected]> | |
7450 | L: [email protected] | |
7451 | S: Maintained | |
7452 | F: drivers/media/i2c/smiapp | |
7453 | F: include/media/smiapp.h | |
7454 | F: drivers/media/i2c/smiapp-pll.c | |
7455 | F: drivers/media/i2c/smiapp-pll.h | |
7456 | ||
920fa1ff GR |
7457 | SMM665 HARDWARE MONITOR DRIVER |
7458 | M: Guenter Roeck <[email protected]> | |
7459 | L: [email protected] | |
7460 | S: Maintained | |
7461 | F: Documentation/hwmon/smm665 | |
7462 | F: drivers/hwmon/smm665.c | |
7463 | ||
9df7305b | 7464 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7465 | M: Steve Glendinning <[email protected]> |
9df7305b | 7466 | L: [email protected] |
90b24cfb | 7467 | S: Maintained |
9df7305b SG |
7468 | F: Documentation/hwmon/emc2103 |
7469 | F: drivers/hwmon/emc2103.c | |
7470 | ||
a98d506c HG |
7471 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7472 | M: Hans de Goede <[email protected]> | |
7473 | L: [email protected] | |
7474 | S: Supported | |
7475 | F: Documentation/hwmon/sch5627 | |
7476 | F: drivers/hwmon/sch5627.c | |
7477 | ||
6ea884db | 7478 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7479 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7480 | L: [email protected] |
7481 | S: Maintained | |
679655da JP |
7482 | F: Documentation/hwmon/smsc47b397 |
7483 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7484 | |
fd9abb3d | 7485 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7486 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7487 | L: [email protected] |
90b24cfb | 7488 | S: Maintained |
679655da | 7489 | F: include/linux/smsc911x.h |
ae150435 | 7490 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7491 | |
7492 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7493 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 7494 | L: [email protected] |
90b24cfb | 7495 | S: Maintained |
ae150435 | 7496 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7497 | |
3c8a63e2 | 7498 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7499 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 7500 | L: [email protected] |
90b24cfb | 7501 | S: Maintained |
3c8a63e2 SG |
7502 | F: drivers/video/smscufx.c |
7503 | ||
668acf32 | 7504 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7505 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 7506 | L: [email protected] |
275ffde4 | 7507 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7508 | S: Maintained |
90d72ac6 MCC |
7509 | F: include/media/soc* |
7510 | F: drivers/media/i2c/soc_camera/ | |
7511 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7512 | |
e2d1d6c0 | 7513 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7514 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 7515 | S: Maintained |
679655da | 7516 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7517 | |
1da177e4 | 7518 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7519 | M: Neil Brown <[email protected]> |
1da177e4 | 7520 | L: [email protected] |
524418bb | 7521 | S: Supported |
679655da JP |
7522 | F: drivers/md/ |
7523 | F: include/linux/raid/ | |
c117ab84 | 7524 | F: include/uapi/linux/raid/ |
1da177e4 | 7525 | |
1da177e4 | 7526 | SONIC NETWORK DRIVER |
8b58be88 | 7527 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 7528 | L: [email protected] |
1da177e4 | 7529 | S: Maintained |
d9fb9f38 | 7530 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7531 | |
61e115a5 | 7532 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7533 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
7534 | L: [email protected] |
7535 | S: Maintained | |
679655da JP |
7536 | F: drivers/ssb/ |
7537 | F: include/linux/ssb/ | |
61e115a5 | 7538 | |
1da177e4 | 7539 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7540 | M: Mattia Dongili <[email protected]> |
d0944853 | 7541 | L: [email protected] |
5b18167d | 7542 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7543 | S: Maintained |
679655da JP |
7544 | F: Documentation/laptops/sony-laptop.txt |
7545 | F: drivers/char/sonypi.c | |
7546 | F: drivers/platform/x86/sony-laptop.c | |
7547 | F: include/linux/sony-laptop.h | |
1da177e4 | 7548 | |
baf8532a | 7549 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7550 | M: Alex Dubov <[email protected]> |
baf8532a AD |
7551 | W: http://tifmxx.berlios.de/ |
7552 | S: Maintained | |
679655da | 7553 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7554 | |
1da177e4 | 7555 | SOUND |
8b58be88 JP |
7556 | M: Jaroslav Kysela <[email protected]> |
7557 | M: Takashi Iwai <[email protected]> | |
93711660 | 7558 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 7559 | W: http://www.alsa-project.org/ |
dde7ad8d | 7560 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7561 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7562 | S: Maintained |
3126a179 JP |
7563 | F: Documentation/sound/ |
7564 | F: include/sound/ | |
c117ab84 | 7565 | F: include/uapi/sound/ |
679655da | 7566 | F: sound/ |
1da177e4 | 7567 | |
bd903bde | 7568 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7569 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 7570 | M: Mark Brown <[email protected]> |
86f14df8 | 7571 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7572 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 7573 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7574 | S: Supported |
679655da | 7575 | F: sound/soc/ |
e6e55122 | 7576 | F: include/sound/soc* |
eb1a6af3 | 7577 | |
473321fc | 7578 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7579 | M: "David S. Miller" <[email protected]> |
1da177e4 | 7580 | L: [email protected] |
8a6e2535 | 7581 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7582 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7583 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7584 | S: Maintained |
679655da | 7585 | F: arch/sparc/ |
7765b8bb | 7586 | F: drivers/sbus/ |
1da177e4 | 7587 | |
6404fcca DM |
7588 | SPARC SERIAL DRIVERS |
7589 | M: "David S. Miller" <[email protected]> | |
7590 | L: [email protected] | |
08deed1e JP |
7591 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7593 | S: Maintained |
6816383a | 7594 | F: include/linux/sunserialcore.h |
df621252 | 7595 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7596 | F: drivers/tty/serial/sunhv.c |
7597 | F: drivers/tty/serial/sunsab.c | |
7598 | F: drivers/tty/serial/sunsab.h | |
7599 | F: drivers/tty/serial/sunsu.c | |
7600 | F: drivers/tty/serial/sunzilog.c | |
7601 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7602 | |
389325b4 CL |
7603 | SPARSE CHECKER |
7604 | M: "Christopher Li" <[email protected]> | |
7605 | L: [email protected] | |
7606 | W: https://sparse.wiki.kernel.org/ | |
7607 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7608 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7609 | S: Maintained | |
7610 | F: include/linux/compiler.h | |
7611 | ||
fc0c195a | 7612 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7613 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7614 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7615 | L: [email protected] |
7616 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7617 | W: http://www.st.com/spear |
7618 | S: Maintained | |
7619 | F: arch/arm/plat-spear/ | |
7620 | ||
71e09a9e | 7621 | SPEAR13XX MACHINE SUPPORT |
2d8a3b3d | 7622 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7623 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7624 | L: [email protected] |
7625 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7626 | W: http://www.st.com/spear |
7627 | S: Maintained | |
71e09a9e | 7628 | F: arch/arm/mach-spear13xx/ |
fc0c195a | 7629 | |
fc0c195a | 7630 | SPEAR3XX MACHINE SUPPORT |
2d8a3b3d | 7631 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7632 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7633 | L: [email protected] |
7634 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7635 | W: http://www.st.com/spear |
7636 | S: Maintained | |
7637 | F: arch/arm/mach-spear3xx/ | |
7638 | ||
7639 | SPEAR6XX MACHINE SUPPORT | |
7640 | M: Rajeev Kumar <[email protected]> | |
71e09a9e | 7641 | M: Shiraz Hashim <[email protected]> |
2d8a3b3d | 7642 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7643 | L: [email protected] |
7644 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7645 | W: http://www.st.com/spear |
7646 | S: Maintained | |
7647 | F: arch/arm/mach-spear6xx/ | |
7648 | ||
7649 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7650 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7651 | L: [email protected] |
7652 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7653 | W: http://www.st.com/spear |
7654 | S: Maintained | |
5df33a62 | 7655 | F: drivers/clk/spear/ |
fc0c195a | 7656 | |
e2d1d6c0 | 7657 | SPI SUBSYSTEM |
b02e48f2 | 7658 | M: Mark Brown <[email protected]> |
19624236 | 7659 | M: Grant Likely <[email protected]> |
dfbe403c | 7660 | L: [email protected] |
e7e4e13c | 7661 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7662 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7663 | S: Maintained |
679655da JP |
7664 | F: Documentation/spi/ |
7665 | F: drivers/spi/ | |
7666 | F: include/linux/spi/ | |
c117ab84 | 7667 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7668 | |
2752e401 | 7669 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7670 | M: Ishizaki Kou <[email protected]> |
7671 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
7672 | L: [email protected] |
7673 | S: Supported | |
679655da | 7674 | F: Documentation/networking/spider_net.txt |
8df158ac | 7675 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7676 | |
e2d1d6c0 | 7677 | SPU FILE SYSTEM |
8b58be88 | 7678 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
7679 | L: [email protected] |
7680 | L: [email protected] | |
e2d1d6c0 RD |
7681 | W: http://www.ibm.com/developerworks/power/cell/ |
7682 | S: Supported | |
679655da JP |
7683 | F: Documentation/filesystems/spufs.txt |
7684 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7685 | |
fc555841 | 7686 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7687 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
7688 | L: [email protected] (subscribers-only) |
7689 | W: http://squashfs.org.uk | |
7690 | S: Maintained | |
679655da JP |
7691 | F: Documentation/filesystems/squashfs.txt |
7692 | F: fs/squashfs/ | |
fc555841 | 7693 | |
1da177e4 | 7694 | SRM (Alpha) environment access |
8b58be88 | 7695 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 7696 | S: Maintained |
679655da | 7697 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7698 | |
26e9a397 | 7699 | STABLE BRANCH |
879a5a00 | 7700 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 7701 | L: [email protected] |
879a5a00 | 7702 | S: Supported |
7b175c46 | 7703 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 7704 | |
26e9a397 | 7705 | STAGING SUBSYSTEM |
879a5a00 | 7706 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 7707 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7708 | L: [email protected] |
879a5a00 | 7709 | S: Supported |
679655da | 7710 | F: drivers/staging/ |
dbc6c2cc | 7711 | |
c8c8b105 JP |
7712 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7713 | M: Henk de Groot <[email protected]> | |
7714 | S: Odd Fixes | |
7715 | F: drivers/staging/wlags49_h2/ | |
7716 | F: drivers/staging/wlags49_h25/ | |
7717 | ||
c9555159 JP |
7718 | STAGING - ASUS OLED |
7719 | M: Jakub Schmidtke <[email protected]> | |
7720 | S: Odd Fixes | |
7721 | F: drivers/staging/asus_oled/ | |
7722 | ||
ebd3d010 JP |
7723 | STAGING - COMEDI |
7724 | M: Ian Abbott <[email protected]> | |
7725 | M: Mori Hess <[email protected]> | |
7726 | S: Odd Fixes | |
7727 | F: drivers/staging/comedi/ | |
7728 | ||
8ca572c9 JP |
7729 | STAGING - CRYSTAL HD VIDEO DECODER |
7730 | M: Naren Sankar <[email protected]> | |
7731 | M: Jarod Wilson <[email protected]> | |
7732 | M: Scott Davilla <[email protected]> | |
7733 | M: Manu Abraham <[email protected]> | |
7734 | S: Odd Fixes | |
7735 | F: drivers/staging/crystalhd/ | |
7736 | ||
0f16ffc4 JP |
7737 | STAGING - ECHO CANCELLER |
7738 | M: Steve Underwood <[email protected]> | |
7739 | M: David Rowe <[email protected]> | |
7740 | S: Odd Fixes | |
7741 | F: drivers/staging/echo/ | |
7742 | ||
8dc2bbe7 ME |
7743 | STAGING - ET131X NETWORK DRIVER |
7744 | M: Mark Einon <[email protected]> | |
7745 | S: Odd Fixes | |
7746 | F: drivers/staging/et131x/ | |
7747 | ||
a0138163 JP |
7748 | STAGING - FLARION FT1000 DRIVERS |
7749 | M: Marek Belisko <[email protected]> | |
7750 | S: Odd Fixes | |
7751 | F: drivers/staging/ft1000/ | |
7752 | ||
ec3fab92 JP |
7753 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7754 | M: David Täht <[email protected]> | |
7755 | S: Odd Fixes | |
7756 | F: drivers/staging/frontier/ | |
7757 | ||
98ded590 HV |
7758 | STAGING - GO7007 MPEG CODEC |
7759 | M: Hans Verkuil <[email protected]> | |
7760 | S: Maintained | |
7761 | F: drivers/staging/media/go7007/ | |
7762 | ||
6c1bb424 JP |
7763 | STAGING - INDUSTRIAL IO |
7764 | M: Jonathan Cameron <[email protected]> | |
a0138163 | 7765 | L: [email protected] |
6c1bb424 JP |
7766 | S: Odd Fixes |
7767 | F: drivers/staging/iio/ | |
7768 | ||
a0138163 JP |
7769 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7770 | M: Jarod Wilson <[email protected]> | |
7771 | W: http://www.lirc.org/ | |
7772 | S: Odd Fixes | |
b2b0186d | 7773 | F: drivers/staging/media/lirc/ |
a0138163 | 7774 | |
7c6b6c71 | 7775 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7776 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
7777 | M: Marc Dietrich <[email protected]> |
7778 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 7779 | L: [email protected] |
7c6b6c71 MD |
7780 | S: Maintained |
7781 | F: drivers/staging/nvec/ | |
7782 | ||
a0138163 JP |
7783 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
7784 | M: Andres Salomon <[email protected]> | |
7785 | M: Chris Ball <[email protected]> | |
7786 | M: Jon Nettleton <[email protected]> | |
7787 | W: http://wiki.laptop.org/go/DCON | |
7788 | S: Odd Fixes | |
7789 | F: drivers/staging/olpc_dcon/ | |
7790 | ||
94cfdd15 | 7791 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 7792 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
7793 | S: Maintained |
7794 | F: drivers/staging/ozwpan/ | |
7795 | ||
a0138163 | 7796 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7797 | M: Willy Tarreau <[email protected]> |
7798 | S: Odd Fixes | |
7799 | F: drivers/staging/panel/ | |
7800 | ||
a0138163 JP |
7801 | STAGING - REALTEK RTL8712U DRIVERS |
7802 | M: Larry Finger <[email protected]> | |
7803 | M: Florian Schilhabel <[email protected]>. | |
7804 | S: Odd Fixes | |
7805 | F: drivers/staging/rtl8712/ | |
7806 | ||
9629fa86 JP |
7807 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7808 | M: Teddy Wang <[email protected]> | |
7809 | S: Odd Fixes | |
9df0a245 | 7810 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 7811 | |
a0138163 | 7812 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
7813 | M: Ismael Luceno <[email protected]> |
7814 | S: Supported | |
b2b0186d | 7815 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
7816 | |
7817 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
7818 | M: William Hubbs <[email protected]> | |
7819 | M: Chris Brannon <[email protected]> | |
d33bce31 | 7820 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
7821 | M: Samuel Thibault <[email protected]> |
7822 | L: [email protected] | |
7823 | W: http://www.linux-speakup.org/ | |
7824 | S: Odd Fixes | |
7825 | F: drivers/staging/speakup/ | |
7826 | ||
7827 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 7828 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
7829 | S: Odd Fixes |
7830 | F: drivers/staging/tidspbridge/ | |
7831 | ||
a0138163 JP |
7832 | STAGING - USB ENE SM/MS CARD READER DRIVER |
7833 | M: Al Cho <[email protected]> | |
7834 | S: Odd Fixes | |
7835 | F: drivers/staging/keucr/ | |
7836 | ||
b3e871ce JP |
7837 | STAGING - VIA VT665X DRIVERS |
7838 | M: Forest Bond <[email protected]> | |
7839 | S: Odd Fixes | |
7840 | F: drivers/staging/vt665?/ | |
7841 | ||
81a9a526 JP |
7842 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
7843 | M: Pavel Machek <[email protected]> | |
7844 | S: Odd Fixes | |
7845 | F: drivers/staging/winbond/ | |
7846 | ||
709bcb07 | 7847 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 7848 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
7849 | S: Odd Fixes |
7850 | F: drivers/staging/xgifb/ | |
7851 | ||
1da177e4 | 7852 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 7853 | M: Ion Badulescu <[email protected]> |
b4f90189 | 7854 | S: Odd Fixes |
9bba23b0 | 7855 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 7856 | |
e2d1d6c0 | 7857 | SUN3/3X |
8b58be88 | 7858 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
7859 | W: http://sammy.net/sun3/ |
7860 | S: Maintained | |
679655da JP |
7861 | F: arch/m68k/kernel/*sun3* |
7862 | F: arch/m68k/sun3*/ | |
7863 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 7864 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 7865 | |
2cbb12a4 | 7866 | SUPERH |
8b58be88 | 7867 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 7868 | L: [email protected] |
1da177e4 | 7869 | W: http://www.linux-sh.org |
8a6e2535 | 7870 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 7871 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 7872 | S: Supported |
066069e1 | 7873 | F: Documentation/sh/ |
679655da | 7874 | F: arch/sh/ |
066069e1 | 7875 | F: drivers/sh/ |
1da177e4 | 7876 | |
4480f15b | 7877 | SUSPEND TO RAM |
8b58be88 JP |
7878 | M: Len Brown <[email protected]> |
7879 | M: Pavel Machek <[email protected]> | |
7880 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 7881 | L: [email protected] |
e2d1d6c0 | 7882 | S: Supported |
679655da JP |
7883 | F: Documentation/power/ |
7884 | F: arch/x86/kernel/acpi/ | |
7885 | F: drivers/base/power/ | |
7886 | F: kernel/power/ | |
7887 | F: include/linux/suspend.h | |
7888 | F: include/linux/freezer.h | |
7889 | F: include/linux/pm.h | |
1da177e4 LT |
7890 | |
7891 | SVGA HANDLING | |
8b58be88 | 7892 | M: Martin Mares <[email protected]> |
1da177e4 LT |
7893 | L: [email protected] |
7894 | S: Maintained | |
679655da JP |
7895 | F: Documentation/svga.txt |
7896 | F: arch/x86/boot/video* | |
1da177e4 | 7897 | |
6e28b761 KRW |
7898 | SWIOTLB SUBSYSTEM |
7899 | M: Konrad Rzeszutek Wilk <[email protected]> | |
7900 | L: [email protected] | |
7901 | S: Supported | |
7902 | F: lib/swiotlb.c | |
7903 | F: arch/*/kernel/pci-swiotlb.c | |
7904 | F: include/linux/swiotlb.h | |
7905 | ||
db8e35d5 VG |
7906 | SYNOPSYS ARC ARCHITECTURE |
7907 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
7908 | S: Supported |
7909 | F: arch/arc/ | |
6659a20a VG |
7910 | F: Documentation/devicetree/bindings/arc/ |
7911 | F: drivers/tty/serial/arc-uart.c | |
db8e35d5 | 7912 | |
1da177e4 | 7913 | SYSV FILESYSTEM |
8b58be88 | 7914 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 7915 | S: Maintained |
679655da JP |
7916 | F: Documentation/filesystems/sysv-fs.txt |
7917 | F: fs/sysv/ | |
7918 | F: include/linux/sysv_fs.h | |
1da177e4 | 7919 | |
86cfa7fc NB |
7920 | TARGET SUBSYSTEM |
7921 | M: Nicholas A. Bellinger <[email protected]> | |
7922 | L: [email protected] | |
b9f5edc2 | 7923 | L: [email protected] |
86cfa7fc NB |
7924 | L: http://groups.google.com/group/linux-iscsi-target-dev |
7925 | W: http://www.linux-iscsi.org | |
452cf324 | 7926 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
7927 | S: Supported |
7928 | F: drivers/target/ | |
7929 | F: include/target/ | |
7930 | F: Documentation/target/ | |
7931 | ||
4e68852d | 7932 | TASKSTATS STATISTICS INTERFACE |
185e595f | 7933 | M: Balbir Singh <[email protected]> |
4e68852d | 7934 | S: Maintained |
679655da JP |
7935 | F: Documentation/accounting/taskstats* |
7936 | F: include/linux/taskstats* | |
7937 | F: kernel/taskstats.c | |
4e68852d | 7938 | |
781b456a | 7939 | TC CLASSIFIER |
f935f3f8 | 7940 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
7941 | L: [email protected] |
7942 | S: Maintained | |
679655da | 7943 | F: include/net/pkt_cls.h |
c117ab84 | 7944 | F: include/uapi/linux/pkt_cls.h |
679655da | 7945 | F: net/sched/ |
781b456a | 7946 | |
5067f08a | 7947 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
7948 | M: "Wong Hoi Sing, Edison" <[email protected]> |
7949 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
7950 | W: http://tcp-lp-mod.sourceforge.net/ |
7951 | S: Maintained | |
679655da | 7952 | F: net/ipv4/tcp_lp.c |
5067f08a | 7953 | |
91952bc0 AP |
7954 | TDA10071 MEDIA DRIVER |
7955 | M: Antti Palosaari <[email protected]> | |
7956 | L: [email protected] | |
7957 | W: http://linuxtv.org/ | |
7958 | W: http://palosaari.fi/linux/ | |
7959 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7960 | T: git git://linuxtv.org/anttip/media_tree.git | |
7961 | S: Maintained | |
7962 | F: drivers/media/dvb-frontends/tda10071* | |
7963 | ||
7964 | TDA18212 MEDIA DRIVER | |
7965 | M: Antti Palosaari <[email protected]> | |
7966 | L: [email protected] | |
7967 | W: http://linuxtv.org/ | |
7968 | W: http://palosaari.fi/linux/ | |
7969 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7970 | T: git git://linuxtv.org/anttip/media_tree.git | |
7971 | S: Maintained | |
7972 | F: drivers/media/tuners/tda18212* | |
7973 | ||
7974 | TDA18218 MEDIA DRIVER | |
7975 | M: Antti Palosaari <[email protected]> | |
7976 | L: [email protected] | |
7977 | W: http://linuxtv.org/ | |
7978 | W: http://palosaari.fi/linux/ | |
7979 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7980 | T: git git://linuxtv.org/anttip/media_tree.git | |
7981 | S: Maintained | |
7982 | F: drivers/media/tuners/tda18218* | |
7983 | ||
3b2f6aba MK |
7984 | TDA18271 MEDIA DRIVER |
7985 | M: Michael Krufky <[email protected]> | |
7986 | L: [email protected] | |
7987 | W: http://linuxtv.org/ | |
7988 | W: http://github.com/mkrufky | |
7989 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7990 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7991 | S: Maintained | |
7992 | F: drivers/media/tuners/tda18271* | |
7993 | ||
e48307a9 MK |
7994 | TDA827x MEDIA DRIVER |
7995 | M: Michael Krufky <[email protected]> | |
7996 | L: [email protected] | |
7997 | W: http://linuxtv.org/ | |
7998 | W: http://github.com/mkrufky | |
7999 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8000 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8001 | S: Maintained | |
8002 | F: drivers/media/tuners/tda8290.* | |
8003 | ||
66cf9212 MK |
8004 | TDA8290 MEDIA DRIVER |
8005 | M: Michael Krufky <[email protected]> | |
8006 | L: [email protected] | |
8007 | W: http://linuxtv.org/ | |
8008 | W: http://github.com/mkrufky | |
8009 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8010 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8011 | S: Maintained | |
8012 | F: drivers/media/tuners/tda8290.* | |
8013 | ||
4b9fba30 HV |
8014 | TDA9840 MEDIA DRIVER |
8015 | M: Hans Verkuil <[email protected]> | |
8016 | L: [email protected] | |
8017 | T: git git://linuxtv.org/media_tree.git | |
8018 | W: http://linuxtv.org | |
8019 | S: Maintained | |
8020 | F: drivers/media/i2c/tda9840* | |
8021 | ||
2cb654fd MCC |
8022 | TEA5761 TUNER DRIVER |
8023 | M: Mauro Carvalho Chehab <[email protected]> | |
8024 | L: [email protected] | |
8025 | W: http://linuxtv.org | |
8026 | T: git git://linuxtv.org/media_tree.git | |
8027 | S: Odd fixes | |
8028 | F: drivers/media/tuners/tea5761.* | |
8029 | ||
8030 | TEA5767 TUNER DRIVER | |
8031 | M: Mauro Carvalho Chehab <[email protected]> | |
8032 | L: [email protected] | |
8033 | W: http://linuxtv.org | |
8034 | T: git git://linuxtv.org/media_tree.git | |
8035 | S: Maintained | |
8036 | F: drivers/media/tuners/tea5767.* | |
8037 | ||
4b9fba30 HV |
8038 | TEA6415C MEDIA DRIVER |
8039 | M: Hans Verkuil <[email protected]> | |
8040 | L: [email protected] | |
8041 | T: git git://linuxtv.org/media_tree.git | |
8042 | W: http://linuxtv.org | |
8043 | S: Maintained | |
8044 | F: drivers/media/i2c/tea6415c* | |
8045 | ||
8046 | TEA6420 MEDIA DRIVER | |
8047 | M: Hans Verkuil <[email protected]> | |
8048 | L: [email protected] | |
8049 | T: git git://linuxtv.org/media_tree.git | |
8050 | W: http://linuxtv.org | |
8051 | S: Maintained | |
8052 | F: drivers/media/i2c/tea6420* | |
8053 | ||
3d249d4c | 8054 | TEAM DRIVER |
dca9ab92 | 8055 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8056 | L: [email protected] |
8057 | S: Supported | |
8058 | F: drivers/net/team/ | |
8059 | F: include/linux/if_team.h | |
c117ab84 | 8060 | F: include/uapi/linux/if_team.h |
3d249d4c | 8061 | |
7d029125 VD |
8062 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8063 | M: Savoir-faire Linux Inc. <[email protected]> | |
8064 | S: Maintained | |
8065 | F: arch/x86/platform/ts5500/ | |
8066 | ||
40ad4a30 SY |
8067 | TECHNOTREND USB IR RECEIVER |
8068 | M: Sean Young <[email protected]> | |
8069 | L: [email protected] | |
8070 | S: Maintained | |
8071 | F: drivers/media/rc/ttusbir.c | |
8072 | ||
84b9414b | 8073 | TEGRA SUPPORT |
243d58ec | 8074 | M: Stephen Warren <[email protected]> |
84b9414b | 8075 | L: [email protected] |
fd117cd1 OJ |
8076 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8078 | S: Supported |
bbbe96ed | 8079 | N: [^a-z]tegra |
84b9414b | 8080 | |
1a348ccc | 8081 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8082 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8083 | L: [email protected] |
8084 | S: Supported | |
ef7f5429 | 8085 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8086 | |
4e68852d | 8087 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8088 | M: Mark Gross <[email protected]> |
4e68852d | 8089 | S: Supported |
679655da | 8090 | F: drivers/char/tlclk.c |
4e68852d | 8091 | |
4480f15b | 8092 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8093 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8094 | M: Max Filippov <[email protected]> |
8095 | L: [email protected] | |
4e68852d | 8096 | S: Maintained |
679655da | 8097 | F: arch/xtensa/ |
4e68852d | 8098 | |
d3fb6955 ZR |
8099 | THERMAL |
8100 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8101 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8102 | L: [email protected] |
8103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
2f99a47d | 8104 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8105 | S: Supported |
8106 | F: drivers/thermal/ | |
8107 | F: include/linux/thermal.h | |
cfaf7179 | 8108 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8109 | |
30ba2fbd VD |
8110 | THINGM BLINK(1) USB RGB LED DRIVER |
8111 | M: Vivien Didelot <[email protected]> | |
8112 | S: Maintained | |
8113 | F: drivers/hid/hid-thingm.c | |
8114 | ||
4e68852d | 8115 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8116 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8117 | L: [email protected] |
d0944853 | 8118 | L: [email protected] |
4e68852d AC |
8119 | W: http://ibm-acpi.sourceforge.net |
8120 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8121 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8122 | S: Maintained |
679655da | 8123 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8124 | |
1b46f2a2 EV |
8125 | TI BANDGAP AND THERMAL DRIVER |
8126 | M: Eduardo Valentin <[email protected]> | |
8127 | L: [email protected] | |
8128 | S: Maintained | |
8129 | F: drivers/staging/omap-thermal/ | |
8130 | ||
4020f2d7 | 8131 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8132 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8133 | S: Maintained |
679655da JP |
8134 | F: drivers/misc/tifm* |
8135 | F: drivers/mmc/host/tifm_sd.c | |
8136 | F: include/linux/tifm.h | |
4020f2d7 | 8137 | |
152ad442 SR |
8138 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8139 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8140 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8141 | L: [email protected] (moderated for non-subscribers) |
8142 | S: Maintained | |
8143 | F: sound/soc/codecs/lm49453* | |
d392dead | 8144 | F: sound/soc/codecs/isabelle* |
152ad442 | 8145 | |
0edd807d KM |
8146 | TI LP855x BACKLIGHT DRIVER |
8147 | M: Milo Kim <[email protected]> | |
8148 | S: Maintained | |
8149 | F: Documentation/backlight/lp855x-driver.txt | |
8150 | F: drivers/video/backlight/lp855x_bl.c | |
8151 | F: include/linux/platform_data/lp855x.h | |
8152 | ||
faf13f6d KM |
8153 | TI LP8727 CHARGER DRIVER |
8154 | M: Milo Kim <[email protected]> | |
8155 | S: Maintained | |
8156 | F: drivers/power/lp8727_charger.c | |
8157 | F: include/linux/platform_data/lp8727.h | |
8158 | ||
22f1229f KM |
8159 | TI LP8788 MFD DRIVER |
8160 | M: Milo Kim <[email protected]> | |
8161 | S: Maintained | |
8162 | F: drivers/iio/adc/lp8788_adc.c | |
8163 | F: drivers/leds/leds-lp8788.c | |
8164 | F: drivers/mfd/lp8788*.c | |
8165 | F: drivers/power/lp8788-charger.c | |
8166 | F: drivers/regulator/lp8788-*.c | |
8167 | F: include/linux/mfd/lp8788*.h | |
8168 | ||
dd5e8e6b | 8169 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8170 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8171 | L: [email protected] (moderated for non-subscribers) |
8172 | S: Maintained | |
8173 | F: sound/soc/codecs/twl4030* | |
8174 | ||
90921014 LC |
8175 | TI WILINK WIRELESS DRIVERS |
8176 | M: Luciano Coelho <[email protected]> | |
8177 | L: [email protected] | |
8178 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8179 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8181 | S: Maintained | |
8182 | F: drivers/net/wireless/ti/ | |
8183 | F: include/linux/wl12xx.h | |
8184 | ||
e86eaa3a | 8185 | TIPC NETWORK LAYER |
8b58be88 JP |
8186 | M: Jon Maloy <[email protected]> |
8187 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8188 | L: [email protected] (core kernel code) |
8189 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8190 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8191 | S: Maintained |
c117ab84 | 8192 | F: include/uapi/linux/tipc*.h |
679655da | 8193 | F: net/tipc/ |
e86eaa3a | 8194 | |
867e359b CM |
8195 | TILE ARCHITECTURE |
8196 | M: Chris Metcalf <[email protected]> | |
8197 | W: http://www.tilera.com/scm/ | |
8198 | S: Supported | |
8199 | F: arch/tile/ | |
a2e6093c | 8200 | F: drivers/tty/hvc/hvc_tile.c |
cdd80bd4 | 8201 | F: drivers/net/ethernet/tile/ |
5c770755 | 8202 | F: drivers/edac/tile_edac.c |
867e359b | 8203 | |
1da177e4 | 8204 | TLAN NETWORK DRIVER |
8b58be88 | 8205 | M: Samuel Chessman <[email protected]> |
88c07dde | 8206 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8207 | W: http://sourceforge.net/projects/tlan/ |
8208 | S: Maintained | |
679655da | 8209 | F: Documentation/networking/tlan.txt |
b544dbac | 8210 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8211 | |
d74db3b2 | 8212 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8213 | M: Kentaro Takeda <[email protected]> |
8214 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8215 | L: [email protected] (subscribers-only, for developers in English) |
8216 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8217 | L: [email protected] (subscribers-only, for developers in Japanese) |
8218 | L: [email protected] (subscribers-only, for users in Japanese) | |
8219 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8220 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8221 | S: Maintained |
679655da | 8222 | F: security/tomoyo/ |
d74db3b2 | 8223 | |
9caeb532 | 8224 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8225 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8226 | L: [email protected] |
9caeb532 HRK |
8227 | S: Maintained |
8228 | F: drivers/platform/x86/topstar-laptop.c | |
8229 | ||
1da177e4 | 8230 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8231 | L: [email protected] |
15065531 | 8232 | S: Orphan |
679655da | 8233 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8234 | |
8235 | TOSHIBA SMM DRIVER | |
8b58be88 | 8236 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8237 | L: [email protected] |
8238 | W: http://www.buzzard.org.uk/toshiba/ | |
8239 | S: Maintained | |
679655da JP |
8240 | F: drivers/char/toshiba.c |
8241 | F: include/linux/toshiba.h | |
c117ab84 | 8242 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8243 | |
d719f900 | 8244 | TMIO MMC DRIVER |
d1057c40 | 8245 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 8246 | M: Ian Molton <[email protected]> |
d1057c40 | 8247 | L: [email protected] |
d719f900 | 8248 | S: Maintained |
d1057c40 GL |
8249 | F: drivers/mmc/host/tmio_mmc* |
8250 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8251 | F: include/linux/mmc/tmio.h | |
8252 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8253 | |
917cc4e6 GR |
8254 | TMP401 HARDWARE MONITOR DRIVER |
8255 | M: Guenter Roeck <[email protected]> | |
8256 | L: [email protected] | |
8257 | S: Maintained | |
8258 | F: Documentation/hwmon/tmp401 | |
8259 | F: drivers/hwmon/tmp401.c | |
8260 | ||
98f32602 | 8261 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8262 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8263 | L: [email protected] |
8264 | S: Maintained | |
8265 | F: include/linux/shmem_fs.h | |
8266 | F: mm/shmem.c | |
8267 | ||
45f95b53 MCC |
8268 | TM6000 VIDEO4LINUX DRIVER |
8269 | M: Mauro Carvalho Chehab <[email protected]> | |
8270 | L: [email protected] | |
8271 | W: http://linuxtv.org | |
8272 | T: git git://linuxtv.org/media_tree.git | |
8273 | S: Odd fixes | |
8274 | F: drivers/media/usb/tm6000/ | |
8275 | ||
4e68852d | 8276 | TPM DEVICE DRIVER |
cbb2d5e4 RA |
8277 | M: Kent Yoder <[email protected]> |
8278 | M: Rajiv Andrade <[email protected]> | |
4e68852d | 8279 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8280 | M: Marcel Selhorst <[email protected]> |
8281 | M: Sirrix AG <[email protected]> | |
7dcce133 | 8282 | W: http://www.sirrix.com |
63a10dfd | 8283 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8284 | S: Maintained |
679655da | 8285 | F: drivers/char/tpm/ |
4e68852d | 8286 | |
d6f005a1 JP |
8287 | TRACING |
8288 | M: Steven Rostedt <[email protected]> | |
8289 | M: Frederic Weisbecker <[email protected]> | |
8290 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8292 | S: Maintained |
8293 | F: Documentation/trace/ftrace.txt | |
8294 | F: arch/*/*/*/ftrace.h | |
8295 | F: arch/*/kernel/ftrace.c | |
8296 | F: include/*/ftrace.h | |
8297 | F: include/linux/trace*.h | |
8298 | F: include/trace/ | |
8299 | F: kernel/trace/ | |
8300 | ||
1da177e4 | 8301 | TRIVIAL PATCHES |
8b58be88 | 8302 | M: Jiri Kosina <[email protected]> |
54e5881d | 8303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8304 | S: Maintained |
86ef925f | 8305 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8306 | |
4e68852d | 8307 | TTY LAYER |
879a5a00 | 8308 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8309 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8310 | S: Supported |
08deed1e | 8311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8312 | F: drivers/tty/ |
df621252 | 8313 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8314 | F: include/linux/serial_core.h |
8315 | F: include/linux/serial.h | |
8316 | F: include/linux/tty.h | |
c117ab84 CEB |
8317 | F: include/uapi/linux/serial_core.h |
8318 | F: include/uapi/linux/serial.h | |
8319 | F: include/uapi/linux/tty.h | |
4e68852d | 8320 | |
91952bc0 AP |
8321 | TUA9001 MEDIA DRIVER |
8322 | M: Antti Palosaari <[email protected]> | |
8323 | L: [email protected] | |
8324 | W: http://linuxtv.org/ | |
8325 | W: http://palosaari.fi/linux/ | |
8326 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8327 | T: git git://linuxtv.org/anttip/media_tree.git | |
8328 | S: Maintained | |
8329 | F: drivers/media/tuners/tua9001* | |
8330 | ||
740db6d7 | 8331 | TULIP NETWORK DRIVERS |
8b58be88 | 8332 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8333 | L: [email protected] |
8334 | S: Maintained | |
0f04e2aa | 8335 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8336 | |
8337 | TUN/TAP driver | |
ba57b6f2 | 8338 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8339 | W: http://vtun.sourceforge.net/tun |
8340 | S: Maintained | |
679655da JP |
8341 | F: Documentation/networking/tuntap.txt |
8342 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8343 | |
b454cc66 | 8344 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8345 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8346 | S: Maintained |
679655da JP |
8347 | F: drivers/tc/ |
8348 | F: include/linux/tc.h | |
b454cc66 | 8349 | |
1da177e4 | 8350 | U14-34F SCSI DRIVER |
8b58be88 | 8351 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8352 | L: [email protected] |
8353 | S: Maintained | |
679655da | 8354 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8355 | |
e2d1d6c0 | 8356 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8357 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8358 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8359 | L: [email protected] |
e2966cbe | 8360 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8361 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8362 | S: Maintained | |
679655da JP |
8363 | F: Documentation/filesystems/ubifs.txt |
8364 | F: fs/ubifs/ | |
e2d1d6c0 | 8365 | |
cc2020e6 | 8366 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8367 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8368 | W: http://www.uclinux.org/ |
8369 | L: [email protected] (subscribers-only) | |
8370 | S: Maintained | |
61bc02bb JP |
8371 | F: arch/m68k/*/*_no.* |
8372 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8373 | |
14fadca7 | 8374 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 8375 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
8376 | W: http://uclinux-h8.sourceforge.jp/ |
8377 | S: Supported | |
a7e4fd93 JP |
8378 | F: arch/h8300/ |
8379 | F: drivers/ide/ide-h8300.c | |
644570b8 | 8380 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 8381 | |
1da177e4 | 8382 | UDF FILESYSTEM |
8b58be88 | 8383 | M: Jan Kara <[email protected]> |
1da177e4 | 8384 | S: Maintained |
679655da JP |
8385 | F: Documentation/filesystems/udf.txt |
8386 | F: fs/udf/ | |
1da177e4 | 8387 | |
cc2020e6 | 8388 | UFS FILESYSTEM |
8b58be88 | 8389 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8390 | S: Maintained |
679655da JP |
8391 | F: Documentation/filesystems/ufs.txt |
8392 | F: fs/ufs/ | |
cc2020e6 | 8393 | |
0a09d3ab DR |
8394 | UHID USERSPACE HID IO DRIVER: |
8395 | M: David Herrmann <[email protected]> | |
8396 | L: [email protected] | |
8397 | S: Maintained | |
8398 | F: drivers/hid/uhid.c | |
c117ab84 | 8399 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8400 | |
18332a80 | 8401 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8402 | L: [email protected] |
10c6c9c9 | 8403 | S: Orphan |
355ffe69 | 8404 | F: drivers/uwb/ |
679655da JP |
8405 | F: include/linux/uwb.h |
8406 | F: include/linux/uwb/ | |
18332a80 | 8407 | |
b31d8273 G |
8408 | UNICORE32 ARCHITECTURE: |
8409 | M: Guan Xuetao <[email protected]> | |
8410 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8411 | S: Maintained | |
8412 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8413 | F: arch/unicore32/ | |
8414 | ||
d8379ab1 TF |
8415 | UNIFDEF |
8416 | M: Tony Finch <[email protected]> | |
8417 | W: http://dotat.at/prog/unifdef | |
8418 | S: Maintained | |
8419 | F: scripts/unifdef.c | |
8420 | ||
1da177e4 | 8421 | UNIFORM CDROM DRIVER |
8b58be88 | 8422 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8423 | W: http://www.kernel.dk |
8424 | S: Maintained | |
679655da JP |
8425 | F: Documentation/cdrom/ |
8426 | F: drivers/cdrom/cdrom.c | |
8427 | F: include/linux/cdrom.h | |
c117ab84 | 8428 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8429 | |
9941fa6e VH |
8430 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8431 | M: Vinayak Holikatti <[email protected]> | |
8432 | M: Santosh Y <[email protected]> | |
8433 | L: [email protected] | |
8434 | S: Supported | |
8435 | F: Documentation/scsi/ufs.txt | |
8436 | F: drivers/scsi/ufs/ | |
8437 | ||
e2d1d6c0 | 8438 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8439 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
8440 | W: http://www.linux-mtd.infradead.org/ |
8441 | L: [email protected] | |
e2966cbe | 8442 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8443 | S: Maintained |
80811493 | 8444 | F: drivers/mtd/ubi/ |
679655da | 8445 | F: include/linux/mtd/ubi.h |
c117ab84 | 8446 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8447 | |
76ac66e4 RW |
8448 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8449 | M: Richard Weinberger <[email protected]> | |
8450 | L: [email protected] | |
8451 | S: Maintained | |
8452 | F: drivers/mtd/ubi/fastmap.c | |
8453 | ||
1da177e4 | 8454 | USB ACM DRIVER |
61eee9a7 | 8455 | M: Oliver Neukum <[email protected]> |
6372594a | 8456 | L: [email protected] |
1da177e4 | 8457 | S: Maintained |
679655da JP |
8458 | F: Documentation/usb/acm.txt |
8459 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8460 | |
b7d572e1 PF |
8461 | USB AR5523 WIRELESS DRIVER |
8462 | M: Pontus Fuchs <[email protected]> | |
8463 | L: [email protected] | |
8464 | S: Maintained | |
8465 | F: drivers/net/wireless/ath/ar5523/ | |
8466 | ||
115bb1ff MW |
8467 | USB ATTACHED SCSI |
8468 | M: Matthew Wilcox <[email protected]> | |
8469 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 8470 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
8471 | L: [email protected] |
8472 | L: [email protected] | |
8eae0fb7 | 8473 | S: Maintained |
115bb1ff MW |
8474 | F: drivers/usb/storage/uas.c |
8475 | ||
1da177e4 | 8476 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8477 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8478 | L: [email protected] |
1da177e4 | 8479 | S: Maintained |
679655da | 8480 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8481 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8482 | |
b02b371e | 8483 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8484 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
8485 | L: [email protected] |
8486 | S: Maintained | |
679655da | 8487 | F: drivers/usb/c67x00/ |
b02b371e | 8488 | |
d0374f4f | 8489 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8490 | M: Peter Korsgaard <[email protected]> |
043600a6 | 8491 | L: [email protected] |
d0374f4f PK |
8492 | W: http://www.linux-usb.org/usbnet |
8493 | S: Maintained | |
679655da | 8494 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8495 | |
cc2020e6 | 8496 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8497 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
8498 | L: [email protected] |
8499 | W: http://rio500.sourceforge.net | |
8500 | S: Maintained | |
679655da | 8501 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8502 | |
1da177e4 | 8503 | USB EHCI DRIVER |
578333ab | 8504 | M: Alan Stern <[email protected]> |
795fb7e7 | 8505 | L: [email protected] |
578333ab | 8506 | S: Maintained |
679655da JP |
8507 | F: Documentation/usb/ehci.txt |
8508 | F: drivers/usb/host/ehci* | |
1da177e4 | 8509 | |
69ae9e3e | 8510 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8511 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 8512 | L: [email protected] |
69ae9e3e | 8513 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8515 | S: Maintained | |
679655da JP |
8516 | F: drivers/usb/gadget/ |
8517 | F: include/linux/usb/gadget* | |
69ae9e3e | 8518 | |
2dea64b4 | 8519 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8520 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 8521 | L: [email protected] |
54e5881d | 8522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8523 | S: Maintained |
c2f01971 | 8524 | F: Documentation/hid/hiddev.txt |
679655da | 8525 | F: drivers/hid/usbhid/ |
1da177e4 | 8526 | |
857aab34 | 8527 | USB/IP DRIVERS |
8528 | M: Matt Mooney <[email protected]> | |
8529 | L: [email protected] | |
8530 | S: Maintained | |
8531 | F: drivers/staging/usbip/ | |
8532 | ||
959eea21 | 8533 | USB ISP116X DRIVER |
8b58be88 | 8534 | M: Olav Kongas <[email protected]> |
795fb7e7 | 8535 | L: [email protected] |
959eea21 | 8536 | S: Maintained |
679655da JP |
8537 | F: drivers/usb/host/isp116x* |
8538 | F: include/linux/usb/isp116x.h | |
959eea21 | 8539 | |
1da177e4 | 8540 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8541 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8542 | L: [email protected] |
1da177e4 | 8543 | S: Maintained |
679655da | 8544 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8545 | |
8546 | USB MASS STORAGE DRIVER | |
8b58be88 | 8547 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 8548 | L: [email protected] |
8836aeb8 | 8549 | L: [email protected] |
1da177e4 LT |
8550 | S: Maintained |
8551 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8552 | F: drivers/usb/storage/ |
1da177e4 | 8553 | |
af39917d CL |
8554 | USB MIDI DRIVER |
8555 | M: Clemens Ladisch <[email protected]> | |
8556 | L: [email protected] (moderated for non-subscribers) | |
8557 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8558 | S: Maintained | |
8559 | F: sound/usb/midi.* | |
8560 | ||
1da177e4 | 8561 | USB OHCI DRIVER |
578333ab | 8562 | M: Alan Stern <[email protected]> |
795fb7e7 | 8563 | L: [email protected] |
578333ab | 8564 | S: Maintained |
679655da JP |
8565 | F: Documentation/usb/ohci.txt |
8566 | F: drivers/usb/host/ohci* | |
1da177e4 | 8567 | |
ba460e48 | 8568 | USB OPTION-CARD DRIVER |
8b58be88 | 8569 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 8570 | L: [email protected] |
ba460e48 | 8571 | S: Maintained |
679655da | 8572 | F: drivers/usb/serial/option.c |
ba460e48 | 8573 | |
1da177e4 | 8574 | USB PEGASUS DRIVER |
a16b945c | 8575 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8576 | L: [email protected] |
043600a6 | 8577 | L: [email protected] |
a16b945c | 8578 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8579 | W: http://pegasus2.sourceforge.net/ |
8580 | S: Maintained | |
679655da | 8581 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8582 | |
d3ad558f FB |
8583 | USB PHY LAYER |
8584 | M: Felipe Balbi <[email protected]> | |
8585 | L: [email protected] | |
8586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8587 | S: Maintained | |
8588 | F: drivers/usb/phy/ | |
8589 | F: drivers/usb/otg/ | |
8590 | ||
73e4fb3f | 8591 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8592 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 8593 | L: [email protected] |
73e4fb3f | 8594 | S: Supported |
679655da | 8595 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8596 | |
8597 | USB RTL8150 DRIVER | |
a16b945c | 8598 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8599 | L: [email protected] |
043600a6 | 8600 | L: [email protected] |
a16b945c | 8601 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8602 | W: http://pegasus2.sourceforge.net/ |
8603 | S: Maintained | |
679655da | 8604 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8605 | |
4e68852d | 8606 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8607 | M: William Greathouse <[email protected]> |
795fb7e7 | 8608 | L: [email protected] |
4e68852d | 8609 | S: Maintained |
679655da | 8610 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8611 | |
8612 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8613 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 8614 | L: [email protected] |
4e68852d AC |
8615 | S: Maintained |
8616 | W: http://geocities.com/i0xox0i | |
8617 | W: http://firstlight.net/cvs | |
679655da | 8618 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8619 | |
1da177e4 | 8620 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8621 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
8622 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8623 | S: Maintained | |
679655da | 8624 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8625 | |
8626 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8627 | M: Peter Berger <[email protected]> |
8628 | M: Al Borchers <[email protected]> | |
795fb7e7 | 8629 | L: [email protected] |
1da177e4 | 8630 | S: Maintained |
679655da | 8631 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8632 | |
8633 | USB SERIAL DRIVER | |
879a5a00 | 8634 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8635 | L: [email protected] |
1da177e4 | 8636 | S: Supported |
679655da JP |
8637 | F: Documentation/usb/usb-serial.txt |
8638 | F: drivers/usb/serial/generic.c | |
8639 | F: drivers/usb/serial/usb-serial.c | |
8640 | F: include/linux/usb/serial.h | |
1da177e4 | 8641 | |
1da177e4 | 8642 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8643 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 8644 | L: [email protected] |
1da177e4 | 8645 | S: Maintained |
679655da | 8646 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8647 | |
8648 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8649 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8650 | L: [email protected] |
1da177e4 | 8651 | S: Maintained |
679655da | 8652 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8653 | |
8654 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8655 | M: Support Department <[email protected]> |
795fb7e7 | 8656 | L: [email protected] |
1da177e4 LT |
8657 | W: http://www.connecttech.com |
8658 | S: Supported | |
679655da | 8659 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8660 | |
b3f0db1c SG |
8661 | USB SMSC75XX ETHERNET DRIVER |
8662 | M: Steve Glendinning <[email protected]> | |
8663 | L: [email protected] | |
8664 | S: Maintained | |
8665 | F: drivers/net/usb/smsc75xx.* | |
8666 | ||
2f7ca802 | 8667 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8668 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 8669 | L: [email protected] |
90b24cfb | 8670 | S: Maintained |
679655da | 8671 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8672 | |
f423b9a8 | 8673 | USB SN9C1xx DRIVER |
8b58be88 | 8674 | M: Luca Risolia <[email protected]> |
795fb7e7 | 8675 | L: [email protected] |
661263b5 | 8676 | L: [email protected] |
275ffde4 | 8677 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8678 | W: http://www.linux-projects.org |
8679 | S: Maintained | |
679655da | 8680 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8681 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8682 | |
8683 | USB SUBSYSTEM | |
879a5a00 | 8684 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8685 | L: [email protected] |
1da177e4 | 8686 | W: http://www.linux-usb.org |
08deed1e | 8687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8688 | S: Supported |
679655da JP |
8689 | F: Documentation/usb/ |
8690 | F: drivers/net/usb/ | |
8691 | F: drivers/usb/ | |
8692 | F: include/linux/usb.h | |
8693 | F: include/linux/usb/ | |
1da177e4 LT |
8694 | |
8695 | USB UHCI DRIVER | |
8b58be88 | 8696 | M: Alan Stern <[email protected]> |
795fb7e7 | 8697 | L: [email protected] |
1da177e4 | 8698 | S: Maintained |
679655da | 8699 | F: drivers/usb/host/uhci* |
1da177e4 | 8700 | |
69ae9e3e | 8701 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8702 | M: Oliver Neukum <[email protected]> |
043600a6 | 8703 | L: [email protected] |
69ae9e3e | 8704 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8705 | S: Maintained |
679655da JP |
8706 | F: drivers/net/usb/usbnet.c |
8707 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8708 | |
c0efd232 | 8709 | USB VIDEO CLASS |
c53ac071 | 8710 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 8711 | L: [email protected] (subscribers-only) |
661263b5 | 8712 | L: [email protected] |
275ffde4 | 8713 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8714 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8715 | S: Maintained |
0c0d06ca | 8716 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8717 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8718 | |
b60b9c45 HV |
8719 | USB VISION DRIVER |
8720 | M: Hans Verkuil <[email protected]> | |
8721 | L: [email protected] | |
8722 | T: git git://linuxtv.org/media_tree.git | |
8723 | W: http://linuxtv.org | |
8724 | S: Odd Fixes | |
8725 | F: drivers/media/usb/usbvision/ | |
8726 | ||
8282da47 LP |
8727 | USB WEBCAM GADGET |
8728 | M: Laurent Pinchart <[email protected]> | |
8729 | L: [email protected] | |
8730 | S: Maintained | |
8731 | F: drivers/usb/gadget/*uvc*.c | |
8732 | F: drivers/usb/gadget/webcam.c | |
8733 | ||
bf164cc0 | 8734 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 8735 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
8736 | L: [email protected] |
8737 | S: Maintained | |
679655da | 8738 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8739 | |
eb6bab13 | 8740 | USB XHCI DRIVER |
36d0344c | 8741 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
8742 | L: [email protected] |
8743 | S: Supported | |
36d0344c SS |
8744 | F: drivers/usb/host/xhci* |
8745 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8746 | |
1da177e4 | 8747 | USB ZD1201 DRIVER |
4086b9ca | 8748 | L: [email protected] |
1da177e4 | 8749 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8750 | S: Orphan |
679655da | 8751 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8752 | |
b7eee616 | 8753 | USB ZR364XX DRIVER |
8b58be88 | 8754 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 8755 | L: [email protected] |
661263b5 | 8756 | L: [email protected] |
275ffde4 | 8757 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8758 | W: http://royale.zerezo.com/zr364xx/ |
8759 | S: Maintained | |
679655da | 8760 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8761 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8762 | |
e7839f25 | 8763 | USER-MODE LINUX (UML) |
8b58be88 | 8764 | M: Jeff Dike <[email protected]> |
b15194b7 | 8765 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
8766 | L: [email protected] |
8767 | L: [email protected] | |
8768 | W: http://user-mode-linux.sourceforge.net | |
8769 | S: Maintained | |
61516587 | 8770 | F: Documentation/virtual/uml/ |
679655da | 8771 | F: arch/um/ |
b070989a | 8772 | F: arch/x86/um/ |
679655da JP |
8773 | F: fs/hostfs/ |
8774 | F: fs/hppfs/ | |
b7eee616 | 8775 | |
e5f114e9 | 8776 | USERSPACE I/O (UIO) |
6a534c9d | 8777 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 8778 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 8779 | S: Maintained |
679655da JP |
8780 | F: Documentation/DocBook/uio-howto.tmpl |
8781 | F: drivers/uio/ | |
8782 | F: include/linux/uio*.h | |
e5f114e9 | 8783 | |
256cccbe | 8784 | UTIL-LINUX PACKAGE |
8b58be88 | 8785 | M: Karel Zak <[email protected]> |
256cccbe KZ |
8786 | L: [email protected] |
8787 | W: http://en.wikipedia.org/wiki/Util-linux | |
8788 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8789 | S: Maintained |
8790 | ||
c1fd1c07 | 8791 | UVESAFB DRIVER |
8b58be88 | 8792 | M: Michal Januszewski <[email protected]> |
c69f677c | 8793 | L: [email protected] |
c1fd1c07 MJ |
8794 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8795 | S: Maintained | |
679655da JP |
8796 | F: Documentation/fb/uvesafb.txt |
8797 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 8798 | |
4480f15b | 8799 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 8800 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 8801 | S: Maintained |
679655da JP |
8802 | F: Documentation/filesystems/vfat.txt |
8803 | F: fs/fat/ | |
1da177e4 | 8804 | |
cba3345c AW |
8805 | VFIO DRIVER |
8806 | M: Alex Williamson <[email protected]> | |
8807 | L: [email protected] | |
8808 | S: Maintained | |
8809 | F: Documentation/vfio.txt | |
8810 | F: drivers/vfio/ | |
8811 | F: include/linux/vfio.h | |
c117ab84 | 8812 | F: include/uapi/linux/vfio.h |
cba3345c | 8813 | |
9e6f3438 PO |
8814 | VIDEOBUF2 FRAMEWORK |
8815 | M: Pawel Osciak <[email protected]> | |
8816 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 8817 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
8818 | L: [email protected] |
8819 | S: Maintained | |
90d72ac6 | 8820 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
8821 | F: include/media/videobuf2-* |
8822 | ||
9a82446b AS |
8823 | VIRTIO CONSOLE DRIVER |
8824 | M: Amit Shah <[email protected]> | |
8825 | L: [email protected] | |
8826 | S: Maintained | |
8827 | F: drivers/char/virtio_console.c | |
8828 | F: include/linux/virtio_console.h | |
c117ab84 | 8829 | F: include/uapi/linux/virtio_console.h |
9a82446b | 8830 | |
2426ec8f MT |
8831 | VIRTIO CORE, NET AND BLOCK DRIVERS |
8832 | M: Rusty Russell <[email protected]> | |
8833 | M: "Michael S. Tsirkin" <[email protected]> | |
8834 | L: [email protected] | |
8835 | S: Maintained | |
8836 | F: drivers/virtio/ | |
8837 | F: drivers/net/virtio_net.c | |
8838 | F: drivers/block/virtio_blk.c | |
8839 | F: include/linux/virtio_*.h | |
916cdabc | 8840 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 8841 | |
3a4d5c94 MT |
8842 | VIRTIO HOST (VHOST) |
8843 | M: "Michael S. Tsirkin" <[email protected]> | |
8844 | L: [email protected] | |
c996d8b9 | 8845 | L: [email protected] |
3a4d5c94 MT |
8846 | L: [email protected] |
8847 | S: Maintained | |
8848 | F: drivers/vhost/ | |
c117ab84 | 8849 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 8850 | |
1da177e4 | 8851 | VIA RHINE NETWORK DRIVER |
8b58be88 | 8852 | M: Roger Luethi <[email protected]> |
1da177e4 | 8853 | S: Maintained |
f2148a47 | 8854 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 8855 | |
f0bf7f61 | 8856 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 8857 | M: Bruce Chang <[email protected]> |
8b58be88 | 8858 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
8859 | S: Maintained |
8860 | F: drivers/mmc/host/via-sdmmc.c | |
8861 | ||
69e4a7c2 | 8862 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 8863 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 8864 | L: [email protected] |
69e4a7c2 | 8865 | S: Maintained |
c7babebd FTS |
8866 | F: include/linux/via-core.h |
8867 | F: include/linux/via-gpio.h | |
8868 | F: include/linux/via_i2c.h | |
679655da | 8869 | F: drivers/video/via/ |
69e4a7c2 | 8870 | |
01f20734 | 8871 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 8872 | M: Francois Romieu <[email protected]> |
01f20734 FR |
8873 | L: [email protected] |
8874 | S: Maintained | |
f2148a47 | 8875 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 8876 | |
0b7bc1fa HV |
8877 | VIVI VIRTUAL VIDEO DRIVER |
8878 | M: Hans Verkuil <[email protected]> | |
8879 | L: [email protected] | |
8880 | T: git git://linuxtv.org/media_tree.git | |
8881 | W: http://linuxtv.org | |
8882 | S: Maintained | |
8883 | F: drivers/media/platform/vivi* | |
8884 | ||
be7f8273 | 8885 | VLAN (802.1Q) |
8b58be88 | 8886 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
8887 | L: [email protected] |
8888 | S: Maintained | |
679655da JP |
8889 | F: drivers/net/macvlan.c |
8890 | F: include/linux/if_*vlan.h | |
8891 | F: net/8021q/ | |
be7f8273 | 8892 | |
55e331cf | 8893 | VLYNQ BUS |
8b58be88 | 8894 | M: Florian Fainelli <[email protected]> |
8578d7af | 8895 | L: [email protected] (subscribers-only) |
55e331cf FF |
8896 | S: Maintained |
8897 | F: drivers/vlynq/vlynq.c | |
8898 | F: include/linux/vlynq.h | |
8899 | ||
390beae4 MW |
8900 | VME SUBSYSTEM |
8901 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 8902 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
8903 | M: Greg Kroah-Hartman <[email protected]> |
8904 | L: [email protected] | |
8905 | S: Maintained | |
8906 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
8907 | F: Documentation/vme_api.txt | |
8908 | F: drivers/staging/vme/ | |
8909 | F: drivers/vme/ | |
8910 | F: include/linux/vme* | |
8911 | ||
d1a890fa | 8912 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
8913 | M: Shreyas Bhatewara <[email protected]> |
8914 | M: "VMware, Inc." <[email protected]> | |
8915 | L: [email protected] | |
8916 | S: Maintained | |
8917 | F: drivers/net/vmxnet3/ | |
d1a890fa | 8918 | |
851b1642 | 8919 | VMware PVSCSI driver |
f2d7e40e | 8920 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
8921 | M: VMware PV-Drivers <[email protected]> |
8922 | L: [email protected] | |
8923 | S: Maintained | |
8924 | F: drivers/scsi/vmw_pvscsi.c | |
8925 | F: drivers/scsi/vmw_pvscsi.h | |
8926 | ||
e53e86c7 | 8927 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 8928 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 8929 | M: Mark Brown <[email protected]> |
e53e86c7 | 8930 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 8931 | W: http://www.slimlogic.co.uk/?p=48 |
08deed1e | 8932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git |
e53e86c7 | 8933 | S: Supported |
679655da JP |
8934 | F: drivers/regulator/ |
8935 | F: include/linux/regulator/ | |
e53e86c7 | 8936 | |
ab41319e | 8937 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 8938 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
8939 | L: [email protected] |
8940 | S: Maintained | |
679655da JP |
8941 | F: Documentation/hwmon/vt1211 |
8942 | F: drivers/hwmon/vt1211.c | |
ab41319e | 8943 | |
1de9e371 | 8944 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 8945 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
8946 | L: [email protected] |
8947 | S: Maintained | |
679655da | 8948 | F: drivers/hwmon/vt8231.c |
1de9e371 | 8949 | |
88095e7b TO |
8950 | VUB300 USB to SDIO/SD/MMC bridge chip |
8951 | M: Tony Olech <[email protected]> | |
8952 | L: [email protected] | |
8953 | L: [email protected] | |
8954 | S: Supported | |
8955 | F: drivers/mmc/host/vub300.c | |
8956 | ||
1da177e4 | 8957 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 8958 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 8959 | S: Maintained |
679655da JP |
8960 | F: Documentation/w1/ |
8961 | F: drivers/w1/ | |
1da177e4 | 8962 | |
13927079 | 8963 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 8964 | M: Marc Hulsman <[email protected]> |
13927079 | 8965 | L: [email protected] |
25845c22 | 8966 | S: Maintained |
679655da JP |
8967 | F: Documentation/hwmon/w83791d |
8968 | F: drivers/hwmon/w83791d.c | |
13927079 | 8969 | |
61db011d | 8970 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 8971 | M: Rudolf Marek <[email protected]> |
61db011d RM |
8972 | L: [email protected] |
8973 | S: Maintained | |
679655da JP |
8974 | F: Documentation/hwmon/w83793 |
8975 | F: drivers/hwmon/w83793.c | |
61db011d | 8976 | |
e3760b43 JD |
8977 | W83795 HARDWARE MONITORING DRIVER |
8978 | M: Jean Delvare <[email protected]> | |
8979 | L: [email protected] | |
8980 | S: Maintained | |
8981 | F: drivers/hwmon/w83795.c | |
8982 | ||
1da177e4 | 8983 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 8984 | M: Pierre Ossman <[email protected]> |
1da177e4 | 8985 | S: Maintained |
679655da | 8986 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 8987 | |
3527761c | 8988 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 8989 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
8990 | L: [email protected] |
8991 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 8992 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 8993 | S: Maintained |
679655da JP |
8994 | F: Documentation/watchdog/ |
8995 | F: drivers/watchdog/ | |
8996 | F: include/linux/watchdog.h | |
c117ab84 | 8997 | F: include/uapi/linux/watchdog.h |
3527761c | 8998 | |
1da177e4 | 8999 | WD7000 SCSI DRIVER |
8b58be88 | 9000 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9001 | L: [email protected] |
9002 | S: Maintained | |
679655da | 9003 | F: drivers/scsi/wd7000.c |
1da177e4 | 9004 | |
b22e00f3 DR |
9005 | WIIMOTE HID DRIVER |
9006 | M: David Herrmann <[email protected]> | |
9007 | L: [email protected] | |
9008 | S: Maintained | |
9009 | F: drivers/hid/hid-wiimote* | |
9010 | ||
e258b80e | 9011 | WINBOND CIR DRIVER |
364e9e18 | 9012 | M: David Härdeman <[email protected]> |
e258b80e | 9013 | S: Maintained |
116ab806 | 9014 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9015 | |
8a70da82 | 9016 | WIMAX STACK |
8b58be88 | 9017 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9018 | M: [email protected] |
9019 | L: [email protected] | |
9020 | S: Supported | |
9021 | W: http://linuxwimax.org | |
315987dc | 9022 | F: Documentation/wimax/README.wimax |
315987dc JP |
9023 | F: include/linux/wimax/debug.h |
9024 | F: include/net/wimax.h | |
c117ab84 | 9025 | F: include/uapi/linux/wimax.h |
315987dc | 9026 | F: net/wimax/ |
8a70da82 | 9027 | |
5fc14680 | 9028 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9029 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9030 | S: Maintained |
679655da | 9031 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9032 | |
1da177e4 | 9033 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9034 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9035 | L: [email protected] |
926554c4 | 9036 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9037 | S: Maintained |
679655da | 9038 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9039 | |
febf1dff | 9040 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9041 | M: Mark Brown <[email protected]> |
8b58be88 | 9042 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9043 | L: [email protected] |
9044 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9045 | W: http://opensource.wolfsonmicro.com/node/7 | |
9046 | S: Supported | |
679655da JP |
9047 | F: drivers/input/touchscreen/*wm97* |
9048 | F: include/linux/wm97xx.h | |
febf1dff | 9049 | |
055bcbcb | 9050 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9051 | L: [email protected] |
cf8eda3e | 9052 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9053 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9054 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9055 | S: Supported |
3768f0b1 | 9056 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9057 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9058 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9059 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9060 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9061 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9062 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9063 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9064 | F: drivers/input/misc/wm831x-on.c |
9065 | F: drivers/input/touchscreen/wm831x-ts.c | |
9066 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9067 | F: drivers/mfd/arizona* |
9068 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9069 | F: drivers/power/wm83*.c |
9070 | F: drivers/rtc/rtc-wm83*.c | |
9071 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9072 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9073 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9074 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9075 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9076 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9077 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9078 | F: include/linux/wm97xx.h |
055bcbcb | 9079 | F: include/sound/wm????.h |
9c309598 | 9080 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9081 | F: sound/soc/codecs/wm* |
b75ea16a | 9082 | |
3e6cd7a4 TH |
9083 | WORKQUEUE |
9084 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9086 | S: Maintained | |
9087 | F: include/linux/workqueue.h | |
9088 | F: kernel/workqueue.c | |
9089 | F: Documentation/workqueue.txt | |
9090 | ||
1da177e4 | 9091 | X.25 NETWORK LAYER |
8bf28059 | 9092 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9093 | L: [email protected] |
8bf28059 | 9094 | S: Odd Fixes |
679655da JP |
9095 | F: Documentation/networking/x25* |
9096 | F: include/net/x25* | |
9097 | F: net/x25/ | |
1da177e4 | 9098 | |
e2d1d6c0 | 9099 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9100 | M: Thomas Gleixner <[email protected]> |
9101 | M: Ingo Molnar <[email protected]> | |
9102 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9103 | M: [email protected] |
75fc2d37 | 9104 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9105 | S: Maintained |
679655da JP |
9106 | F: Documentation/x86/ |
9107 | F: arch/x86/ | |
e2d1d6c0 | 9108 | |
d0944853 | 9109 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9110 | M: Matthew Garrett <[email protected]> |
d0944853 | 9111 | L: [email protected] |
28b8e8d4 | 9112 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
9113 | S: Maintained |
9114 | F: drivers/platform/x86 | |
9115 | ||
c1f5c54b IM |
9116 | X86 MCE INFRASTRUCTURE |
9117 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9118 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9119 | L: [email protected] |
9120 | S: Maintained | |
9121 | F: arch/x86/kernel/cpu/mcheck/* | |
9122 | ||
d6fad502 MCC |
9123 | XC2028/3028 TUNER DRIVER |
9124 | M: Mauro Carvalho Chehab <[email protected]> | |
9125 | L: [email protected] | |
9126 | W: http://linuxtv.org | |
9127 | T: git git://linuxtv.org/media_tree.git | |
9128 | S: Maintained | |
9129 | F: drivers/media/tuners/tuner-xc2028.* | |
9130 | ||
c4468085 | 9131 | XEN HYPERVISOR INTERFACE |
c4468085 | 9132 | M: Konrad Rzeszutek Wilk <[email protected]> |
d633180c | 9133 | M: Jeremy Fitzhardinge <[email protected]> |
c4468085 IC |
9134 | L: [email protected] (moderated for non-subscribers) |
9135 | L: [email protected] | |
9136 | S: Supported | |
9137 | F: arch/x86/xen/ | |
9138 | F: drivers/*/xen-*front.c | |
9139 | F: drivers/xen/ | |
9140 | F: arch/x86/include/asm/xen/ | |
9141 | F: include/xen/ | |
c117ab84 | 9142 | F: include/uapi/xen/ |
c4468085 | 9143 | |
77bfb479 SS |
9144 | XEN HYPERVISOR ARM |
9145 | M: Stefano Stabellini <[email protected]> | |
9146 | L: [email protected] (moderated for non-subscribers) | |
9147 | S: Supported | |
9148 | F: arch/arm/xen/ | |
9149 | F: arch/arm/include/asm/xen/ | |
9150 | ||
b475e83f SS |
9151 | XEN HYPERVISOR ARM64 |
9152 | M: Stefano Stabellini <[email protected]> | |
9153 | L: [email protected] (moderated for non-subscribers) | |
9154 | S: Supported | |
9155 | F: arch/arm64/xen/ | |
9156 | F: arch/arm64/include/asm/xen/ | |
9157 | ||
9b57e1a7 IC |
9158 | XEN NETWORK BACKEND DRIVER |
9159 | M: Ian Campbell <[email protected]> | |
9160 | L: [email protected] (moderated for non-subscribers) | |
9161 | L: [email protected] | |
9162 | S: Supported | |
9163 | F: drivers/net/xen-netback/* | |
9164 | ||
c5f8e29d KRW |
9165 | XEN PCI SUBSYSTEM |
9166 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9167 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9168 | S: Supported |
9169 | F: arch/x86/pci/*xen* | |
9170 | F: drivers/pci/*xen* | |
9171 | ||
9172 | XEN SWIOTLB SUBSYSTEM | |
9173 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9174 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9175 | S: Supported |
9176 | F: arch/x86/xen/*swiotlb* | |
9177 | F: drivers/xen/*swiotlb* | |
9178 | ||
1da177e4 LT |
9179 | XFS FILESYSTEM |
9180 | P: Silicon Graphics Inc | |
c8891329 AE |
9181 | M: Ben Myers <[email protected]> |
9182 | M: Alex Elder <[email protected]> | |
18caa67a | 9183 | M: [email protected] |
d7ede1aa | 9184 | L: [email protected] |
1da177e4 | 9185 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9186 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9187 | S: Supported |
679655da JP |
9188 | F: Documentation/filesystems/xfs.txt |
9189 | F: fs/xfs/ | |
1da177e4 | 9190 | |
8a3b7a25 | 9191 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9192 | M: Anirudha Sarangi <[email protected]> |
9193 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9194 | S: Maintained |
9195 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9196 | ||
c9d3d8ec | 9197 | XILINX SYSTEMACE DRIVER |
19624236 | 9198 | S: Unmaintained |
679655da | 9199 | F: drivers/block/xsysace.c |
c9d3d8ec | 9200 | |
238b8721 | 9201 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9202 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9203 | L: [email protected] |
9204 | S: Maintained | |
df621252 | 9205 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9206 | |
1da177e4 | 9207 | YAM DRIVER FOR AX.25 |
8b58be88 | 9208 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9209 | L: [email protected] |
9210 | S: Maintained | |
679655da JP |
9211 | F: drivers/net/hamradio/yam* |
9212 | F: include/linux/yam.h | |
1da177e4 | 9213 | |
af64a5eb | 9214 | YEALINK PHONE DRIVER |
8b58be88 | 9215 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9216 | L: [email protected] |
9217 | S: Maintained | |
679655da JP |
9218 | F: Documentation/input/yealink.txt |
9219 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9220 | |
1da177e4 | 9221 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9222 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9223 | W: http://yaina.de/jreuter/ |
9224 | W: http://www.qsl.net/dl1bke/ | |
9225 | L: [email protected] | |
9226 | S: Maintained | |
679655da JP |
9227 | F: Documentation/networking/z8530drv.txt |
9228 | F: drivers/net/hamradio/*scc.c | |
9229 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9230 | |
7c0c3afb | 9231 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9232 | M: Daniel Drake <[email protected]> |
9233 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9234 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9235 | L: [email protected] |
7c0c3afb DD |
9236 | L: [email protected] (subscribers-only) |
9237 | S: Maintained | |
679655da | 9238 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9239 | |
1da177e4 | 9240 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9241 | L: [email protected] |
f63145e2 | 9242 | L: [email protected] |
1da177e4 | 9243 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9244 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9245 | S: Odd Fixes | |
90d72ac6 | 9246 | F: drivers/media/pci/zoran/ |
1da177e4 | 9247 | |
8b4a4080 | 9248 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9249 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9250 | S: Maintained |
df621252 | 9251 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9252 | |
1da177e4 | 9253 | THE REST |
8b58be88 | 9254 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9255 | L: [email protected] |
8a6e2535 | 9256 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9258 | S: Buried alive in reporters |
34d03cc1 JP |
9259 | F: * |
9260 | F: */ |