]>
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 |
cea8321c JP |
76 | T: SCM tree type and location. |
77 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
78 | S: Status, one of the following: |
79 | Supported: Someone is actually paid to look after this. | |
80 | Maintained: Someone actually looks after it. | |
81 | Odd Fixes: It has a maintainer but they don't have time to do | |
82 | much other than throw the odd patch in. See below.. | |
83 | Orphan: No current maintainer [but maybe you could take the | |
84 | role as you write your new code]. | |
85 | Obsolete: Old code. Something tagged obsolete generally means | |
86 | it has been replaced by a better system and you | |
87 | should be using that. | |
88 | F: Files and directories with wildcard patterns. | |
89 | A trailing slash includes all files and subdirectory files. | |
90 | F: drivers/net/ all files in and below drivers/net | |
91 | F: drivers/net/* all files in drivers/net, but not below | |
92 | F: */net/* all files in "any top level directory"/net | |
93 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
94 | N: Files and directories with regex patterns. |
95 | N: [^a-z]tegra all files whose path contains the word tegra | |
96 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
97 | scripts/get_maintainer.pl has different behavior for files that |
98 | match F: pattern and matches of N: patterns. By default, | |
99 | get_maintainer will not look at git log history when an F: pattern | |
100 | match occurs. When an N: match occurs, git log history is used | |
101 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
102 | X: Files and directories that are NOT maintained, same rules as F: |
103 | Files exclusions are tested before file matches. | |
104 | Can be useful for excluding a specific subdirectory, for instance: | |
105 | F: net/ | |
106 | X: net/ipv6/ | |
107 | matches all files in and below net excluding net/ipv6/ | |
108 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 109 | patch or file. For instance: |
c7c4fb18 | 110 | K: of_get_profile |
bbbe96ed | 111 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 112 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
113 | matches patches or files that contain one or more of the words |
114 | printk, pr_info or pr_err | |
c7c4fb18 | 115 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
116 | |
117 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
118 | order. If you could add yourselves to it in alphabetical order that would be | |
119 | so much easier [Ed] | |
120 | ||
c7c4fb18 | 121 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 122 | |
c7c4fb18 | 123 | ----------------------------------- |
679655da | 124 | |
a6d89915 | 125 | 3C59X NETWORK DRIVER |
8b58be88 | 126 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
127 | L: [email protected] |
128 | S: Maintained | |
679655da | 129 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 130 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 131 | |
1da177e4 | 132 | 3CR990 NETWORK DRIVER |
8b58be88 | 133 | M: David Dillow <[email protected]> |
979b6c13 | 134 | L: [email protected] |
1da177e4 | 135 | S: Maintained |
ca7a8e85 | 136 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 137 | |
c4de0ceb AR |
138 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
139 | M: Adam Radford <[email protected]> | |
1da177e4 | 140 | L: [email protected] |
c4de0ceb | 141 | W: http://www.lsi.com |
1da177e4 | 142 | S: Supported |
c4de0ceb | 143 | F: drivers/scsi/3w-* |
1da177e4 LT |
144 | |
145 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 146 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
147 | L: [email protected] |
148 | S: Maintained | |
679655da | 149 | F: drivers/scsi/53c700* |
1da177e4 LT |
150 | |
151 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 152 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
153 | L: [email protected] |
154 | S: Maintained | |
679655da | 155 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 156 | |
1da177e4 | 157 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 158 | M: Realtek linux nic maintainers <[email protected]> |
8b58be88 | 159 | M: Francois Romieu <[email protected]> |
979b6c13 | 160 | L: [email protected] |
1da177e4 | 161 | S: Maintained |
a8fe65b8 | 162 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
163 | |
164 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 165 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
166 | L: [email protected] |
167 | W: http://serial.sourceforge.net | |
8ee16a1b | 168 | S: Maintained |
08deed1e | 169 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 170 | F: drivers/tty/serial/8250* |
679655da | 171 | F: include/linux/serial_8250.h |
1da177e4 LT |
172 | |
173 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 174 | L: [email protected] |
0cf445ce | 175 | S: Orphan / Obsolete |
644570b8 | 176 | F: drivers/net/ethernet/8390/ |
1da177e4 | 177 | |
67543e50 | 178 | 9P FILE SYSTEM |
8b58be88 JP |
179 | M: Eric Van Hensbergen <[email protected]> |
180 | M: Ron Minnich <[email protected]> | |
181 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 182 | L: [email protected] |
27a2a5ff | 183 | W: http://swik.net/v9fs |
8a6e2535 | 184 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 186 | S: Maintained |
679655da JP |
187 | F: Documentation/filesystems/9p.txt |
188 | F: fs/9p/ | |
2315cb14 RL |
189 | F: net/9p/ |
190 | F: include/net/9p/ | |
191 | F: include/uapi/linux/virtio_9p.h | |
192 | F: include/trace/events/9p.h | |
193 | ||
67543e50 | 194 | |
91952bc0 AP |
195 | A8293 MEDIA DRIVER |
196 | M: Antti Palosaari <[email protected]> | |
197 | L: [email protected] | |
198 | W: http://linuxtv.org/ | |
199 | W: http://palosaari.fi/linux/ | |
200 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
201 | T: git git://linuxtv.org/anttip/media_tree.git | |
202 | S: Maintained | |
203 | F: drivers/media/dvb-frontends/a8293* | |
204 | ||
e2d1d6c0 | 205 | AACRAID SCSI RAID DRIVER |
8b58be88 | 206 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
207 | L: [email protected] |
208 | W: http://www.adaptec.com/ | |
1da177e4 | 209 | S: Supported |
679655da JP |
210 | F: Documentation/scsi/aacraid.txt |
211 | F: drivers/scsi/aacraid/ | |
1da177e4 | 212 | |
249e3c85 | 213 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 214 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
215 | L: [email protected] |
216 | S: Maintained | |
679655da | 217 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 218 | |
249e3c85 | 219 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 220 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
221 | L: [email protected] |
222 | S: Maintained | |
679655da | 223 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 224 | |
1da177e4 | 225 | ACENIC DRIVER |
8b58be88 | 226 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
227 | L: [email protected] |
228 | S: Maintained | |
531c4f89 | 229 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 230 | |
e86435eb | 231 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 232 | M: Peter Feuerer <[email protected]> |
d0944853 | 233 | L: [email protected] |
4fc26e36 JP |
234 | W: http://piie.net/?section=acerhdf |
235 | S: Maintained | |
236 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 237 | |
745a5d21 | 238 | ACER WMI LAPTOP EXTRAS |
182ae55c | 239 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 240 | L: [email protected] |
745a5d21 | 241 | S: Maintained |
679655da | 242 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 243 | |
1da177e4 | 244 | ACPI |
49db1903 | 245 | M: Rafael J. Wysocki <[email protected]> |
7fb06082 | 246 | M: Len Brown <[email protected]> |
6968e50c | 247 | L: [email protected] |
360818b8 RW |
248 | W: https://01.org/linux-acpi |
249 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 251 | S: Supported |
679655da JP |
252 | F: drivers/acpi/ |
253 | F: drivers/pnp/pnpacpi/ | |
254 | F: include/linux/acpi.h | |
43368e74 | 255 | F: include/acpi/ |
994b942f | 256 | F: Documentation/acpi |
89ca78a0 | 257 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
258 | F: drivers/pci/*acpi* |
259 | F: drivers/pci/*/*acpi* | |
260 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 261 | F: tools/power/acpi |
8b59a454 | 262 | |
3774929d RW |
263 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
264 | M: Robert Moore <[email protected]> | |
265 | M: Lv Zheng <[email protected]> | |
266 | M: Rafael J. Wysocki <[email protected]> | |
267 | L: [email protected] | |
268 | L: [email protected] | |
269 | W: https://acpica.org/ | |
270 | W: https://github.com/acpica/acpica/ | |
271 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
273 | S: Supported | |
274 | F: drivers/acpi/acpica/ | |
275 | F: include/acpi/ | |
2754c447 | 276 | F: tools/power/acpi/ |
3774929d | 277 | |
8b59a454 | 278 | ACPI FAN DRIVER |
8b58be88 | 279 | M: Zhang Rui <[email protected]> |
8b59a454 | 280 | L: [email protected] |
5ca92bd9 | 281 | W: https://01.org/linux-acpi |
8b59a454 | 282 | S: Supported |
679655da | 283 | F: drivers/acpi/fan.c |
1da177e4 | 284 | |
8b59a454 | 285 | ACPI THERMAL DRIVER |
8b58be88 | 286 | M: Zhang Rui <[email protected]> |
8b59a454 | 287 | L: [email protected] |
5ca92bd9 | 288 | W: https://01.org/linux-acpi |
8b59a454 | 289 | S: Supported |
679655da | 290 | F: drivers/acpi/*thermal* |
998be20f | 291 | |
359acec8 | 292 | ACPI VIDEO DRIVER |
8b58be88 | 293 | M: Zhang Rui <[email protected]> |
8b59a454 | 294 | L: [email protected] |
5ca92bd9 | 295 | W: https://01.org/linux-acpi |
8b59a454 | 296 | S: Supported |
679655da | 297 | F: drivers/acpi/video.c |
998be20f | 298 | |
bff431e4 | 299 | ACPI WMI DRIVER |
d0944853 | 300 | L: [email protected] |
5b927259 | 301 | S: Orphan |
679655da | 302 | F: drivers/platform/x86/wmi.c |
bff431e4 | 303 | |
2f39d519 | 304 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 305 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
306 | W: http://wiki.parisc-linux.org/AD1889 |
307 | L: [email protected] | |
308 | S: Maintained | |
679655da | 309 | F: sound/pci/ad1889.* |
2f39d519 | 310 | |
527a1a83 MH |
311 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
312 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 313 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 314 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
315 | S: Supported |
316 | F: drivers/misc/ad525x_dpot.c | |
317 | ||
318 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
319 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 320 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 321 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
322 | S: Supported |
323 | F: drivers/regulator/ad5398.c | |
324 | ||
325 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
326 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 327 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 328 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
329 | S: Supported |
330 | F: drivers/input/misc/ad714x.c | |
331 | ||
332 | AD7877 TOUCHSCREEN DRIVER | |
333 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 334 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 335 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
336 | S: Supported |
337 | F: drivers/input/touchscreen/ad7877.c | |
338 | ||
339 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
340 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 341 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 342 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
343 | S: Supported |
344 | F: drivers/input/touchscreen/ad7879.c | |
345 | ||
1330b0dc JK |
346 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
347 | M: Jiri Kosina <[email protected]> | |
348 | S: Maintained | |
349 | ||
1da177e4 | 350 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 351 | M: Jean Delvare <[email protected]> |
cc0b07ed | 352 | L: [email protected] |
1da177e4 | 353 | S: Maintained |
679655da JP |
354 | F: Documentation/hwmon/adm1025 |
355 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 356 | |
cae2caae | 357 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 358 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
359 | L: [email protected] |
360 | S: Maintained | |
679655da | 361 | F: drivers/hwmon/adm1029.c |
cae2caae | 362 | |
cc0b88cf | 363 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 364 | L: [email protected] |
491b26b4 | 365 | W: http://wireless.kernel.org/ |
e71bcbd0 | 366 | S: Orphan |
679655da | 367 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 368 | |
e8e31622 SA |
369 | ADP1653 FLASH CONTROLLER DRIVER |
370 | M: Sakari Ailus <[email protected]> | |
371 | L: [email protected] | |
372 | S: Maintained | |
373 | F: drivers/media/i2c/adp1653.c | |
374 | F: include/media/adp1653.h | |
375 | ||
527a1a83 MH |
376 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
377 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 378 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 379 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
380 | S: Supported |
381 | F: drivers/mfd/adp5520.c | |
382 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 383 | F: drivers/leds/leds-adp5520.c |
77278d50 | 384 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
385 | F: drivers/input/keyboard/adp5520-keys.c |
386 | ||
387 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
388 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 389 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 390 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
391 | S: Supported |
392 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 393 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
394 | |
395 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
396 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 397 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 398 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
399 | S: Supported |
400 | F: drivers/video/backlight/adp8860_bl.c | |
401 | ||
8c22a8f5 DE |
402 | ADS1015 HARDWARE MONITOR DRIVER |
403 | M: Dirk Eibach <[email protected]> | |
404 | L: [email protected] | |
405 | S: Maintained | |
406 | F: Documentation/hwmon/ads1015 | |
407 | F: drivers/hwmon/ads1015.c | |
408 | F: include/linux/i2c/ads1015.h | |
409 | ||
1da177e4 | 410 | ADT746X FAN DRIVER |
8b58be88 | 411 | M: Colin Leroy <[email protected]> |
1da177e4 | 412 | S: Maintained |
679655da | 413 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 414 | |
b058b859 | 415 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 416 | M: Jean Delvare <[email protected]> |
b058b859 JD |
417 | L: [email protected] |
418 | S: Maintained | |
419 | F: Documentation/hwmon/adt7475 | |
420 | F: drivers/hwmon/adt7475.c | |
421 | ||
527a1a83 MH |
422 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
423 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 424 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 425 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
426 | S: Supported |
427 | F: drivers/input/misc/adxl34x.c | |
428 | ||
8c6af9e1 | 429 | ADVANSYS SCSI DRIVER |
8b58be88 | 430 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
431 | L: [email protected] |
432 | S: Maintained | |
679655da JP |
433 | F: Documentation/scsi/advansys.txt |
434 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 435 | |
1da177e4 | 436 | AEDSP16 DRIVER |
8b58be88 | 437 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 438 | S: Maintained |
679655da | 439 | F: sound/oss/aedsp16.c |
1da177e4 | 440 | |
91952bc0 AP |
441 | AF9013 MEDIA DRIVER |
442 | M: Antti Palosaari <[email protected]> | |
443 | L: [email protected] | |
444 | W: http://linuxtv.org/ | |
445 | W: http://palosaari.fi/linux/ | |
446 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
447 | T: git git://linuxtv.org/anttip/media_tree.git | |
448 | S: Maintained | |
449 | F: drivers/media/dvb-frontends/af9013* | |
450 | ||
451 | AF9033 MEDIA DRIVER | |
452 | M: Antti Palosaari <[email protected]> | |
453 | L: [email protected] | |
454 | W: http://linuxtv.org/ | |
455 | W: http://palosaari.fi/linux/ | |
456 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
457 | T: git git://linuxtv.org/anttip/media_tree.git | |
458 | S: Maintained | |
459 | F: drivers/media/dvb-frontends/af9033* | |
460 | ||
1da177e4 | 461 | AFFS FILE SYSTEM |
6cf515e1 GU |
462 | L: [email protected] |
463 | S: Orphan | |
679655da JP |
464 | F: Documentation/filesystems/affs.txt |
465 | F: fs/affs/ | |
1da177e4 | 466 | |
e2d1d6c0 | 467 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 468 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
469 | L: [email protected] |
470 | S: Supported | |
679655da JP |
471 | F: fs/afs/ |
472 | F: include/net/af_rxrpc.h | |
473 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 474 | |
1da177e4 | 475 | AGPGART DRIVER |
8b58be88 | 476 | M: David Airlie <[email protected]> |
878eaf61 | 477 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 478 | S: Maintained |
679655da JP |
479 | F: drivers/char/agp/ |
480 | F: include/linux/agp* | |
c117ab84 | 481 | F: include/uapi/linux/agp* |
1da177e4 LT |
482 | |
483 | AHA152X SCSI DRIVER | |
8b58be88 | 484 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
485 | L: [email protected] |
486 | S: Maintained | |
679655da JP |
487 | F: drivers/scsi/aha152x* |
488 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 489 | |
64624d4f | 490 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 491 | M: Hannes Reinecke <[email protected]> |
64624d4f | 492 | L: [email protected] |
1da177e4 | 493 | S: Maintained |
679655da | 494 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 495 | |
450500ad HV |
496 | AIMSLAB FM RADIO RECEIVER DRIVER |
497 | M: Hans Verkuil <[email protected]> | |
498 | L: [email protected] | |
499 | T: git git://linuxtv.org/media_tree.git | |
500 | W: http://linuxtv.org | |
501 | S: Maintained | |
502 | F: drivers/media/radio/radio-aimslab* | |
503 | ||
e2d1d6c0 | 504 | AIO |
8b58be88 | 505 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
506 | L: [email protected] |
507 | S: Supported | |
679655da JP |
508 | F: fs/aio.c |
509 | F: include/linux/*aio*.h | |
e2d1d6c0 | 510 | |
1da177e4 | 511 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 512 | M: Duncan Sands <[email protected]> |
6372594a | 513 | L: [email protected] |
1da177e4 LT |
514 | W: http://www.linux-usb.org/SpeedTouch/ |
515 | S: Maintained | |
679655da JP |
516 | F: drivers/usb/atm/speedtch.c |
517 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 518 | |
272f133a | 519 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 520 | M: Manuel Lauss <[email protected]> |
08fcb720 | 521 | S: Maintained |
679655da | 522 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 523 | |
4a4e5787 | 524 | ALI1563 I2C DRIVER |
8b58be88 | 525 | M: Rudolf Marek <[email protected]> |
846557d3 | 526 | L: [email protected] |
4a4e5787 | 527 | S: Maintained |
679655da JP |
528 | F: Documentation/i2c/busses/i2c-ali1563 |
529 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 530 | |
1da177e4 | 531 | ALPHA PORT |
8b58be88 | 532 | M: Richard Henderson <[email protected]> |
8b58be88 | 533 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 534 | M: Matt Turner <[email protected]> |
c89f4f9a | 535 | S: Odd Fixes |
a9406699 | 536 | L: [email protected] |
679655da | 537 | F: arch/alpha/ |
1da177e4 | 538 | |
16b8b922 VB |
539 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
540 | M: Vince Bridgers <[email protected] | |
541 | L: [email protected] | |
542 | L: [email protected] (moderated for non-subscribers) | |
543 | S: Maintained | |
544 | F: drivers/net/ethernet/altera/ | |
545 | ||
adf9251f TK |
546 | ALTERA UART/JTAG UART SERIAL DRIVERS |
547 | M: Tobias Klauser <[email protected]> | |
548 | L: [email protected] | |
61bd0943 | 549 | L: [email protected] (moderated for non-subscribers) |
adf9251f TK |
550 | S: Maintained |
551 | F: drivers/tty/serial/altera_uart.c | |
552 | F: drivers/tty/serial/altera_jtaguart.c | |
553 | F: include/linux/altera_uart.h | |
554 | F: include/linux/altera_jtaguart.h | |
555 | ||
f4875e12 TL |
556 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
557 | M: Tom Lendacky <[email protected]> | |
558 | L: [email protected] | |
559 | S: Supported | |
560 | F: drivers/crypto/ccp/ | |
561 | F: include/linux/ccp.h | |
562 | ||
512d1027 | 563 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 564 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
565 | L: [email protected] |
566 | S: Maintained | |
567 | F: Documentation/hwmon/fam15h_power | |
568 | F: drivers/hwmon/fam15h_power.c | |
569 | ||
167a675a | 570 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 571 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 572 | L: [email protected] (moderated for non-subscribers) |
167a675a | 573 | S: Supported |
679655da | 574 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 575 | |
f90b8116 | 576 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 577 | P: Andres Salomon <[email protected]> |
67d76710 | 578 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
579 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
580 | S: Supported | |
679655da JP |
581 | F: drivers/char/hw_random/geode-rng.c |
582 | F: drivers/crypto/geode* | |
583 | F: drivers/video/geode/ | |
584 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 585 | |
919ee7dd | 586 | AMD IOMMU (AMD-VI) |
e4110568 | 587 | M: Joerg Roedel <[email protected]> |
919ee7dd | 588 | L: [email protected] |
525b233c | 589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 590 | S: Maintained |
b2c16391 JP |
591 | F: drivers/iommu/amd_iommu*.[ch] |
592 | F: include/linux/amd-iommu.h | |
919ee7dd | 593 | |
e7f5b309 | 594 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 595 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 596 | L: [email protected] |
943482d0 | 597 | S: Maintained |
679655da | 598 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 599 | |
284f42b6 | 600 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 601 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 602 | S: Supported |
bd5f47ec | 603 | F: drivers/macintosh/ams/ |
284f42b6 | 604 | |
f94b533d | 605 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
606 | M: Tom Tucker <[email protected]> |
607 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 608 | L: [email protected] |
f94b533d | 609 | S: Maintained |
679655da | 610 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 611 | |
531fca16 HV |
612 | ANALOG DEVICES INC AD9389B DRIVER |
613 | M: Hans Verkuil <[email protected]> | |
614 | L: [email protected] | |
615 | S: Maintained | |
616 | F: drivers/media/i2c/ad9389b* | |
617 | ||
c40ddfa3 HV |
618 | ANALOG DEVICES INC ADV7511 DRIVER |
619 | M: Hans Verkuil <[email protected]> | |
620 | L: [email protected] | |
621 | S: Maintained | |
622 | F: drivers/media/i2c/adv7511* | |
623 | ||
531fca16 HV |
624 | ANALOG DEVICES INC ADV7604 DRIVER |
625 | M: Hans Verkuil <[email protected]> | |
626 | L: [email protected] | |
627 | S: Maintained | |
628 | F: drivers/media/i2c/adv7604* | |
629 | ||
c40ddfa3 HV |
630 | ANALOG DEVICES INC ADV7842 DRIVER |
631 | M: Hans Verkuil <[email protected]> | |
632 | L: [email protected] | |
633 | S: Maintained | |
634 | F: drivers/media/i2c/adv7842* | |
635 | ||
527a1a83 | 636 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 637 | M: Lars-Peter Clausen <[email protected]> |
4bdef3bd | 638 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 639 | W: http://wiki.analog.com/ |
a4edbc10 | 640 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 641 | S: Supported |
39c9d199 | 642 | F: sound/soc/codecs/adau* |
cc52688a | 643 | F: sound/soc/codecs/adav* |
4bdef3bd | 644 | F: sound/soc/codecs/ad1* |
ae48f5ef | 645 | F: sound/soc/codecs/ad7* |
4bdef3bd | 646 | F: sound/soc/codecs/ssm* |
40216ce7 | 647 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 648 | |
527a1a83 | 649 | ANALOG DEVICES INC ASOC DRIVERS |
a4edbc10 | 650 | L: [email protected] |
527a1a83 MH |
651 | L: [email protected] (moderated for non-subscribers) |
652 | W: http://blackfin.uclinux.org/ | |
653 | S: Supported | |
654 | F: sound/soc/blackfin/* | |
655 | ||
42269063 | 656 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 657 | M: Johannes Berg <[email protected]> |
a4724ed6 | 658 | L: [email protected] |
93711660 | 659 | L: [email protected] (moderated for non-subscribers) |
42269063 | 660 | S: Maintained |
679655da | 661 | F: sound/aoa/ |
42269063 | 662 | |
1da177e4 | 663 | APM DRIVER |
81024fc4 JK |
664 | M: Jiri Kosina <[email protected]> |
665 | S: Odd fixes | |
679655da JP |
666 | F: arch/x86/kernel/apm_32.c |
667 | F: include/linux/apm_bios.h | |
c117ab84 | 668 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 669 | F: drivers/char/apm-emulation.c |
1da177e4 | 670 | |
bd7aa4b2 | 671 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 672 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
673 | L: [email protected] |
674 | S: Maintained | |
679655da | 675 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 676 | |
6f2fad74 | 677 | APPLE SMC DRIVER |
d618540f HR |
678 | M: Henrik Rydberg <[email protected]> |
679 | L: [email protected] | |
6f2fad74 | 680 | S: Maintained |
679655da | 681 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 682 | |
1da177e4 | 683 | APPLETALK NETWORK LAYER |
8b58be88 | 684 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 685 | S: Maintained |
679655da JP |
686 | F: drivers/net/appletalk/ |
687 | F: net/appletalk/ | |
1da177e4 | 688 | |
62a37dc7 LP |
689 | APTINA CAMERA SENSOR PLL |
690 | M: Laurent Pinchart <[email protected]> | |
691 | L: [email protected] | |
692 | S: Maintained | |
693 | F: drivers/media/i2c/aptina-pll.* | |
694 | ||
a480167b | 695 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 696 | M: Viresh Kumar <[email protected]> |
a480167b VK |
697 | L: [email protected] |
698 | S: Maintained | |
699 | F: include/linux/pata_arasan_cf_data.h | |
700 | F: drivers/ata/pata_arasan_cf.c | |
701 | ||
1154ea7d | 702 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 703 | M: Jaya Kumar <[email protected]> |
1154ea7d | 704 | S: Maintained |
679655da JP |
705 | F: drivers/video/arcfb.c |
706 | F: drivers/video/fb_defio.c | |
1154ea7d | 707 | |
1da177e4 | 708 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 709 | M: Ian Molton <[email protected]> |
1da177e4 | 710 | S: Maintained |
679655da JP |
711 | F: arch/arm/lib/floppydma.S |
712 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 713 | |
6f96521f WD |
714 | ARM PMU PROFILING AND DEBUGGING |
715 | M: Will Deacon <[email protected]> | |
716 | S: Maintained | |
717 | F: arch/arm/kernel/perf_event* | |
718 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
719 | F: arch/arm/include/asm/pmu.h |
720 | F: arch/arm/kernel/hw_breakpoint.c | |
721 | F: arch/arm/include/asm/hw_breakpoint.h | |
722 | ||
d4275354 | 723 | ARM PORT |
8b58be88 | 724 | M: Russell King <[email protected]> |
efc03ecb | 725 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
726 | W: http://www.arm.linux.org.uk/ |
727 | S: Maintained | |
728 | F: arch/arm/ | |
729 | ||
d323c243 SB |
730 | ARM SUB-ARCHITECTURES |
731 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 732 | S: Maintained |
d323c243 SB |
733 | F: arch/arm/mach-*/ |
734 | F: arch/arm/plat-*/ | |
735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
736 | ||
cefbf4ea RK |
737 | ARM PRIMECELL AACI PL041 DRIVER |
738 | M: Russell King <[email protected]> | |
739 | S: Maintained | |
740 | F: sound/arm/aaci.* | |
741 | ||
742 | ARM PRIMECELL CLCD PL110 DRIVER | |
743 | M: Russell King <[email protected]> | |
744 | S: Maintained | |
745 | F: drivers/video/amba-clcd.* | |
746 | ||
747 | ARM PRIMECELL KMI PL050 DRIVER | |
748 | M: Russell King <[email protected]> | |
749 | S: Maintained | |
750 | F: drivers/input/serio/ambakmi.* | |
751 | F: include/linux/amba/kmi.h | |
752 | ||
2761f5c2 | 753 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
754 | M: Russell King <[email protected]> |
755 | S: Maintained | |
679655da | 756 | F: drivers/mmc/host/mmci.* |
2f748aaa | 757 | F: include/linux/amba/mmci.h |
2761f5c2 | 758 | |
1b4304e5 RK |
759 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
760 | M: Russell King <[email protected]> | |
761 | S: Maintained | |
762 | F: drivers/tty/serial/amba-pl01*.c | |
763 | F: include/linux/amba/serial.h | |
2761f5c2 | 764 | |
cefbf4ea RK |
765 | ARM PRIMECELL BUS SUPPORT |
766 | M: Russell King <[email protected]> | |
767 | S: Maintained | |
768 | F: drivers/amba/ | |
769 | F: include/linux/amba/bus.h | |
770 | ||
2b7a52a4 | 771 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 772 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 773 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
774 | S: Maintained |
775 | ||
9c784f95 | 776 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 777 | M: Sergey Lapin <[email protected]> |
efc03ecb | 778 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
779 | S: Maintained |
780 | ||
2b7a52a4 | 781 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 782 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 783 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
784 | S: Maintained |
785 | ||
1b106699 MR |
786 | ARM/Allwinner A1X SoC support |
787 | M: Maxime Ripard <[email protected]> | |
788 | L: [email protected] (moderated for non-subscribers) | |
789 | S: Maintained | |
60b0f380 MR |
790 | N: sun[x4567]i |
791 | ||
792 | ARM/Allwinner SoC Clock Support | |
793 | M: Emilio López <[email protected]> | |
794 | S: Maintained | |
795 | F: drivers/clk/sunxi/ | |
1b106699 | 796 | |
c1fc8675 | 797 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 798 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
799 | M: Nicolas Ferre <[email protected]> |
800 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 801 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 802 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
803 | W: http://www.linux4sam.org |
804 | S: Supported | |
805 | F: arch/arm/mach-at91/ | |
70e389cc MB |
806 | F: arch/arm/boot/dts/at91*.dts |
807 | F: arch/arm/boot/dts/at91*.dtsi | |
808 | F: arch/arm/boot/dts/sama*.dts | |
809 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 810 | |
986cf2e9 | 811 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 812 | M: Rob Herring <[email protected]> |
986cf2e9 RH |
813 | L: [email protected] (moderated for non-subscribers) |
814 | S: Maintained | |
815 | F: arch/arm/mach-highbank/ | |
816 | ||
d94f944e | 817 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 818 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
819 | S: Maintained |
820 | F: arch/arm/mach-cns3xxx/ | |
821 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
822 | ||
386ab516 AS |
823 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
824 | M: Alexander Shiyan <[email protected]> | |
825 | L: [email protected] (moderated for non-subscribers) | |
826 | S: Odd Fixes | |
827 | F: arch/arm/mach-clps711x/ | |
828 | ||
2b7a52a4 | 829 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 830 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 831 | M: Ryan Mallon <[email protected]> |
efc03ecb | 832 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 833 | S: Maintained |
d19d3667 HS |
834 | F: arch/arm/mach-ep93xx/ |
835 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
836 | |
837 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 838 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 839 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
840 | S: Maintained |
841 | ||
d4275354 | 842 | ARM/CLKDEV SUPPORT |
8b58be88 | 843 | M: Russell King <[email protected]> |
efc03ecb | 844 | L: [email protected] (moderated for non-subscribers) |
37417046 | 845 | S: Maintained |
d4275354 | 846 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 847 | F: drivers/clk/clkdev.c |
d4275354 | 848 | |
d48134e7 | 849 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 850 | M: Mike Rapoport <[email protected]> |
efc03ecb | 851 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
852 | S: Maintained |
853 | ||
94150095 HF |
854 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
855 | M: Hubert Feurstein <[email protected]> | |
856 | S: Maintained | |
857 | F: arch/arm/mach-ep93xx/micro9.c | |
858 | ||
1da177e4 | 859 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 860 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
861 | S: Maintained |
862 | ||
881a95f9 | 863 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 864 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 865 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
866 | T: git git://git.berlios.de/gemini-board |
867 | S: Maintained | |
f49afbb5 | 868 | F: arch/arm/mach-gemini/ |
881a95f9 | 869 | |
a990cbd8 | 870 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 871 | M: Barry Song <[email protected]> |
a990cbd8 | 872 | L: [email protected] (moderated for non-subscribers) |
85529d14 | 873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
874 | S: Maintained |
875 | F: arch/arm/mach-prima2/ | |
05f30e8d BS |
876 | F: drivers/clk/clk-prima2.c |
877 | F: drivers/clocksource/timer-prima2.c | |
878 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 879 | N: [^a-z]sirf |
a990cbd8 | 880 | |
d4275354 | 881 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 882 | M: Russell King <[email protected]> |
efc03ecb | 883 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
884 | W: http://www.arm.linux.org.uk/ |
885 | S: Maintained | |
886 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 887 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 888 | |
4721f3ce UKK |
889 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
890 | M: Uwe Kleine-König <[email protected]> | |
891 | L: [email protected] (moderated for non-subscribers) | |
892 | S: Maintained | |
893 | N: efm32 | |
894 | ||
a9da4f7e | 895 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
896 | M: Daniel Ribeiro <[email protected]> |
897 | M: Stefan Schmidt <[email protected]> | |
898 | M: Harald Welte <[email protected]> | |
d66f1886 | 899 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
900 | W: http://www.openezx.org/ |
901 | S: Maintained | |
cafc2265 SS |
902 | T: topgit git://git.openezx.org/openezx.git |
903 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 904 | |
6a915af9 | 905 | ARM/FARADAY FA526 PORT |
162500b3 | 906 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 907 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 908 | S: Maintained |
1fa7e547 | 909 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 910 | F: arch/arm/mm/*-fa* |
6a915af9 | 911 | |
d4275354 | 912 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 913 | M: Russell King <[email protected]> |
efc03ecb | 914 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
915 | W: http://www.arm.linux.org.uk/ |
916 | S: Maintained | |
917 | F: arch/arm/include/asm/hardware/dec21285.h | |
918 | F: arch/arm/mach-footbridge/ | |
919 | ||
86183a5f | 920 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
f1c12837 | 921 | M: Shawn Guo <[email protected]> |
8b58be88 | 922 | M: Sascha Hauer <[email protected]> |
efc03ecb | 923 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 924 | S: Maintained |
f1c12837 | 925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 926 | F: arch/arm/mach-imx/ |
2a82f95c | 927 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 928 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 929 | |
a9866a09 SG |
930 | ARM/FREESCALE MXS ARM ARCHITECTURE |
931 | M: Shawn Guo <[email protected]> | |
932 | L: [email protected] (moderated for non-subscribers) | |
933 | S: Maintained | |
934 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
935 | F: arch/arm/mach-mxs/ | |
936 | ||
2b7a52a4 | 937 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 938 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 939 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
940 | S: Maintained |
941 | ||
90b8fc34 | 942 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 943 | M: Steve Sakoman <[email protected]> |
efc03ecb | 944 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
945 | S: Maintained |
946 | ||
ef47d5f0 | 947 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 948 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
949 | M: Paul Parsons <[email protected]> |
950 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
951 | S: Maintained |
952 | F: arch/arm/mach-pxa/hx4700.c | |
953 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 954 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 955 | |
21f37bc3 | 956 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 957 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
958 | W: www.jlime.com |
959 | S: Maintained | |
084bad91 KE |
960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
961 | F: arch/arm/mach-sa1100/jornada720.c | |
962 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 963 | |
5e767ab9 JMC |
964 | ARM/IGEP MACHINE SUPPORT |
965 | M: Enric Balletbo i Serra <[email protected]> | |
966 | M: Javier Martinez Canillas <[email protected]> | |
967 | L: [email protected] | |
968 | L: [email protected] (moderated for non-subscribers) | |
969 | S: Maintained | |
06ff74fd | 970 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 971 | |
403d2971 MV |
972 | ARM/INCOME PXA270 SUPPORT |
973 | M: Marek Vasut <[email protected]> | |
974 | L: [email protected] (moderated for non-subscribers) | |
975 | S: Maintained | |
ec154082 | 976 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 977 | |
2b7a52a4 | 978 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 979 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 980 | M: Dan Williams <[email protected]> |
efc03ecb | 981 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 982 | S: Maintained |
e2bdb176 DW |
983 | |
984 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 985 | M: Dan Williams <[email protected]> |
efc03ecb | 986 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 987 | S: Maintained |
2b7a52a4 LB |
988 | |
989 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 990 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 991 | M: Dan Williams <[email protected]> |
efc03ecb | 992 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 993 | S: Maintained |
2b7a52a4 LB |
994 | |
995 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 996 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 997 | M: Dan Williams <[email protected]> |
efc03ecb | 998 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 999 | S: Maintained |
2b7a52a4 | 1000 | |
2b7a52a4 | 1001 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1002 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1003 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1004 | S: Maintained |
1005 | ||
dfdd8cc9 KH |
1006 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1007 | M: Imre Kaloz <[email protected]> | |
1008 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 1009 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
1010 | S: Maintained |
1011 | F: arch/arm/mach-ixp4xx/ | |
1012 | ||
838553c5 | 1013 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1014 | M: Jonathan Cameron <[email protected]> |
1015 | L: [email protected] (moderated for non-subscribers) | |
1016 | S: Maintained | |
1017 | F: arch/arm/mach-pxa/stargate2.c | |
1018 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1019 | ||
2b7a52a4 | 1020 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1021 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1022 | M: Dan Williams <[email protected]> |
efc03ecb | 1023 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1024 | S: Maintained |
2b7a52a4 LB |
1025 | |
1026 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1027 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1028 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1029 | S: Maintained |
1030 | ||
1154f858 SS |
1031 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1032 | M: Santosh Shilimkar <[email protected]> | |
1033 | L: [email protected] (moderated for non-subscribers) | |
1034 | S: Maintained | |
1035 | F: arch/arm/mach-keystone/ | |
cffa8e3b | 1036 | F: drivers/clk/keystone/ |
317929cd | 1037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1038 | |
2b7a52a4 | 1039 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1040 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1041 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1042 | S: Maintained |
1043 | ||
3b886171 | 1044 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1045 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1046 | S: Maintained |
1047 | ||
75f41273 TP |
1048 | ARM/Marvell Armada 370 and Armada XP SOC support |
1049 | M: Jason Cooper <[email protected]> | |
1050 | M: Andrew Lunn <[email protected]> | |
1051 | M: Gregory Clement <[email protected]> | |
dcb71503 | 1052 | M: Sebastian Hesselbarth <[email protected]> |
75f41273 TP |
1053 | L: [email protected] (moderated for non-subscribers) |
1054 | S: Maintained | |
1055 | F: arch/arm/mach-mvebu/ | |
1056 | ||
40f4978b SH |
1057 | ARM/Marvell Berlin SoC support |
1058 | M: Sebastian Hesselbarth <[email protected]> | |
1059 | L: [email protected] (moderated for non-subscribers) | |
1060 | S: Maintained | |
1061 | F: arch/arm/mach-berlin/ | |
1062 | ||
4f1312b0 NP |
1063 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1064 | M: Jason Cooper <[email protected]> | |
1065 | M: Andrew Lunn <[email protected]> | |
dcb71503 | 1066 | M: Sebastian Hesselbarth <[email protected]> |
efc03ecb | 1067 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1068 | S: Maintained |
1069 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1070 | F: arch/arm/mach-kirkwood/ |
1071 | F: arch/arm/mach-mv78xx0/ | |
1072 | F: arch/arm/mach-orion5x/ | |
1073 | F: arch/arm/plat-orion/ | |
3b886171 | 1074 | |
d69ac131 AC |
1075 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1076 | M: Alexander Clouter <[email protected]> | |
1077 | L: [email protected] (moderated for non-subscribers) | |
1078 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1079 | S: Maintained | |
1080 | F: arch/arm/mach-orion5x/ts78xx-* | |
1081 | ||
adcb079f AB |
1082 | ARM/MICREL KS8695 ARCHITECTURE |
1083 | M: Greg Ungerer <[email protected]> | |
1084 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1085 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1086 | S: Odd Fixes |
1087 | ||
d78ff0a5 | 1088 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1089 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1090 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1091 | F: arch/arm/mach-pxa/mioa701.c |
1092 | S: Maintained | |
1093 | ||
9624dfe6 | 1094 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1095 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1096 | S: Maintained |
1097 | ||
e0ee9851 | 1098 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1099 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1100 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1101 | L: [email protected] (moderated for non-subscribers) |
1102 | S: Maintained | |
1103 | F: arch/arm/mach-nomadik/ | |
87572880 | 1104 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1106 | |
9d76295a | 1107 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1108 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1109 | L: [email protected] (subscribers-only) |
1110 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1111 | S: Supported | |
1112 | ||
0c19d21e DW |
1113 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1114 | M: David Brown <[email protected]> | |
b4c9bfab | 1115 | M: Daniel Walker <[email protected]> |
0c19d21e | 1116 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1117 | L: [email protected] |
0c19d21e DW |
1118 | F: arch/arm/mach-msm/ |
1119 | F: drivers/video/msm/ | |
1120 | F: drivers/mmc/host/msm_sdcc.c | |
1121 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1122 | F: drivers/tty/serial/msm_serial.h |
1123 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1124 | F: drivers/*/pm8???-* |
31a12b31 | 1125 | F: drivers/mfd/ssbi/ |
ea91db52 | 1126 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1128 | S: Maintained |
1129 | ||
8459c159 | 1130 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1131 | M: Dmitry Eremin-Solenikov <[email protected]> |
1132 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1133 | S: Maintained |
1134 | ||
5d783a2d | 1135 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1136 | M: Marek Vasut <[email protected]> |
75280787 | 1137 | L: [email protected] |
b5e4ad57 MV |
1138 | W: http://hackndev.com |
1139 | S: Maintained | |
933d35f0 JP |
1140 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1141 | F: arch/arm/mach-pxa/palmtx.c | |
1142 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1143 | F: arch/arm/mach-pxa/palmt5.c | |
1144 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1145 | F: arch/arm/mach-pxa/palmld.c | |
1146 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1147 | F: arch/arm/mach-pxa/palmte2.c | |
1148 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1149 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1150 | |
b57fe924 | 1151 | ARM/PALM TREO SUPPORT |
8b58be88 | 1152 | M: Tomas Cech <[email protected]> |
75280787 | 1153 | L: [email protected] |
90af5811 TSC |
1154 | W: http://hackndev.com |
1155 | S: Maintained | |
b57fe924 JP |
1156 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1157 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1158 | |
c49e1e63 | 1159 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1160 | M: Sergey Lapin <[email protected]> |
75280787 | 1161 | L: [email protected] |
7d2c86b5 JP |
1162 | W: http://hackndev.com |
1163 | S: Maintained | |
933d35f0 JP |
1164 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1165 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1166 | |
1da177e4 | 1167 | ARM/PLEB SUPPORT |
8b58be88 | 1168 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1169 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1170 | S: Maintained | |
1171 | ||
1172 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1173 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1174 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1175 | W: http://www.arm.linux.org.uk/ |
1176 | S: Maintained | |
1177 | ||
2b7a52a4 | 1178 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1179 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1180 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1181 | S: Maintained |
1182 | ||
d4275354 | 1183 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1184 | M: Russell King <[email protected]> |
efc03ecb | 1185 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1186 | W: http://www.arm.linux.org.uk/ |
1187 | S: Maintained | |
d4275354 RK |
1188 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1189 | F: arch/arm/include/asm/hardware/ioc.h | |
1190 | F: arch/arm/include/asm/hardware/iomd.h | |
1191 | F: arch/arm/include/asm/hardware/memc.h | |
1192 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1193 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1194 | F: drivers/net/ethernet/i825xx/ether1* |
1195 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1196 | F: drivers/scsi/arm/ |
1197 | ||
08ddbb0a HS |
1198 | ARM/Rockchip SoC support |
1199 | M: Heiko Stuebner <[email protected]> | |
1200 | L: [email protected] (moderated for non-subscribers) | |
1201 | S: Maintained | |
1202 | F: arch/arm/mach-rockchip/ | |
1203 | F: drivers/*/*rockchip* | |
1204 | ||
b21477f9 | 1205 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1206 | M: Ben Dooks <[email protected]> |
482ce512 | 1207 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1208 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1209 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1210 | W: http://www.fluff.org/ben/linux/ |
1211 | S: Maintained | |
6f0589c8 MB |
1212 | F: arch/arm/boot/dts/s3c* |
1213 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1214 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1215 | F: arch/arm/mach-s3c24*/ |
1216 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1217 | F: drivers/*/*s3c2410* |
1218 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1219 | F: drivers/spi/spi-s3c* |
1220 | F: sound/soc/samsung/* | |
1da177e4 | 1221 | |
0dcecae2 | 1222 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1223 | M: Kukjin Kim <[email protected]> |
1224 | L: [email protected] (moderated for non-subscribers) | |
1225 | L: [email protected] (moderated for non-subscribers) | |
1226 | S: Maintained | |
1227 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1228 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1229 | N: exynos |
f556cb07 | 1230 | |
10ffa964 KP |
1231 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1232 | M: Kyungmin Park <[email protected]> | |
1233 | L: [email protected] (moderated for non-subscribers) | |
1234 | S: Maintained | |
1235 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1236 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1237 | |
3ce4ccb6 KD |
1238 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1239 | M: Kyungmin Park <[email protected]> | |
1240 | M: Kamil Debski <[email protected]> | |
1241 | L: [email protected] | |
1242 | L: [email protected] | |
1243 | S: Maintained | |
1244 | F: drivers/media/platform/s5p-g2d/ | |
1245 | ||
e6a476fd MS |
1246 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1247 | M: Kyungmin Park <[email protected]> | |
1248 | M: Kamil Debski <[email protected]> | |
6305902c | 1249 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1250 | L: [email protected] |
1251 | L: [email protected] | |
1252 | S: Maintained | |
934455d7 | 1253 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1254 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1255 | |
1256 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1257 | M: Kyungmin Park <[email protected]> | |
1258 | M: Tomasz Stanislawski <[email protected]> | |
1259 | L: [email protected] | |
1260 | L: [email protected] | |
1261 | S: Maintained | |
90d72ac6 | 1262 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1263 | |
d48d38e8 | 1264 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1265 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1266 | M: Magnus Damm <[email protected]> |
1267 | L: [email protected] | |
d48d38e8 | 1268 | W: http://oss.renesas.com |
bbff48f5 | 1269 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1271 | S: Supported |
1272 | F: arch/arm/mach-shmobile/ | |
1273 | F: drivers/sh/ | |
1274 | ||
66314223 DN |
1275 | ARM/SOCFPGA ARCHITECTURE |
1276 | M: Dinh Nguyen <[email protected]> | |
1277 | S: Maintained | |
1278 | F: arch/arm/mach-socfpga/ | |
1279 | ||
1280 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1281 | M: Dinh Nguyen <[email protected]> | |
1282 | S: Maintained | |
1283 | F: drivers/clk/socfpga/ | |
1284 | ||
65ebcc11 SK |
1285 | ARM/STI ARCHITECTURE |
1286 | M: Srinivas Kandagatla <[email protected]> | |
1287 | M: Stuart Menefy <[email protected]> | |
1288 | L: [email protected] (moderated for non-subscribers) | |
1289 | L: [email protected] | |
1290 | W: http://www.stlinux.com | |
1291 | S: Maintained | |
1292 | F: arch/arm/mach-sti/ | |
1293 | ||
2b7a52a4 | 1294 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1295 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1296 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1297 | S: Maintained |
1298 | ||
1bbd7089 | 1299 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1300 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1301 | L: [email protected] (moderated for non-subscribers) |
1302 | S: Maintained | |
1303 | ||
2b7a52a4 | 1304 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1305 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1306 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1307 | S: Maintained |
1308 | ||
98ad6e3b | 1309 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1310 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1311 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1312 | W: http://www.mcuos.com |
1313 | S: Maintained | |
4e89e8f6 | 1314 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1315 | F: drivers/input/keyboard/w90p910_keypad.c |
1316 | F: drivers/input/touchscreen/w90p910_ts.c | |
1317 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1318 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1319 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1320 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1321 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1322 | F: drivers/usb/host/ehci-w90x900.c |
1323 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1324 | |
54274d71 | 1325 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1326 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1327 | L: [email protected] (moderated for non-subscribers) |
1328 | S: Supported | |
1329 | F: arch/arm/mach-u300/ | |
9affbd24 | 1330 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1331 | F: drivers/i2c/busses/i2c-stu300.c |
1332 | F: drivers/rtc/rtc-coh901331.c | |
1333 | F: drivers/watchdog/coh901327_wdt.c | |
1334 | F: drivers/dma/coh901318* | |
87572880 LW |
1335 | F: drivers/mfd/ab3100* |
1336 | F: drivers/rtc/rtc-ab3100.c | |
1337 | F: drivers/rtc/rtc-coh901331.c | |
1338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1339 | |
87572880 | 1340 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1341 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1342 | L: [email protected] (moderated for non-subscribers) |
1343 | S: Maintained | |
1344 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1345 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1346 | F: drivers/dma/ste_dma40* |
e4651a9f | 1347 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1348 | F: drivers/mfd/abx500* |
1349 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1350 | F: drivers/mfd/dbx500* |
1351 | F: drivers/mfd/db8500* | |
1352 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1353 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1354 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1356 | |
e93fde28 UH |
1357 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1358 | M: Ulf Hansson <[email protected]> | |
1359 | L: [email protected] (moderated for non-subscribers) | |
1360 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1361 | S: Maintained | |
1362 | F: drivers/clk/ux500/ | |
1363 | F: include/linux/platform_data/clk-ux500.h | |
1364 | ||
d4275354 | 1365 | ARM/VFP SUPPORT |
8b58be88 | 1366 | M: Russell King <[email protected]> |
efc03ecb | 1367 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1368 | W: http://www.arm.linux.org.uk/ |
1369 | S: Maintained | |
1370 | F: arch/arm/vfp/ | |
1371 | ||
e66b6d8e MV |
1372 | ARM/VOIPAC PXA270 SUPPORT |
1373 | M: Marek Vasut <[email protected]> | |
1374 | L: [email protected] (moderated for non-subscribers) | |
1375 | S: Maintained | |
1376 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1377 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1378 | |
04529fe2 TP |
1379 | ARM/VT8500 ARM ARCHITECTURE |
1380 | M: Tony Prisk <[email protected]> | |
1381 | L: [email protected] (moderated for non-subscribers) | |
1382 | S: Maintained | |
1383 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1384 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1385 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1386 | F: drivers/mmc/host/wmt-sdmmc.c |
1387 | F: drivers/pwm/pwm-vt8500.c | |
1388 | F: drivers/rtc/rtc-vt8500.c | |
1389 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1390 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1391 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1392 | F: drivers/video/vt8500lcdfb.* |
1393 | F: drivers/video/wm8505fb* | |
1394 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1395 | |
e66b6d8e MV |
1396 | ARM/ZIPIT Z2 SUPPORT |
1397 | M: Marek Vasut <[email protected]> | |
1398 | L: [email protected] (moderated for non-subscribers) | |
1399 | S: Maintained | |
1400 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1401 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1402 | |
51f29d44 MS |
1403 | ARM/ZYNQ ARCHITECTURE |
1404 | M: Michal Simek <[email protected]> | |
1405 | L: [email protected] (moderated for non-subscribers) | |
1406 | W: http://wiki.xilinx.com | |
1407 | T: git git://git.xilinx.com/linux-xlnx.git | |
1408 | S: Supported | |
1409 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1410 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1411 | N: zynq |
1412 | N: xilinx | |
1413 | F: drivers/clocksource/cadence_ttc_timer.c | |
e3ec3a3d | 1414 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1415 | |
b8f9879e WD |
1416 | ARM SMMU DRIVER |
1417 | M: Will Deacon <[email protected]> | |
1418 | L: [email protected] (moderated for non-subscribers) | |
1419 | S: Maintained | |
1420 | F: drivers/iommu/arm-smmu.c | |
1421 | ||
38074229 CM |
1422 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1423 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1424 | M: Will Deacon <[email protected]> |
38074229 CM |
1425 | L: [email protected] (moderated for non-subscribers) |
1426 | S: Maintained | |
1427 | F: arch/arm64/ | |
d19766ec | 1428 | F: Documentation/arm64/ |
38074229 | 1429 | |
9d7005f9 LP |
1430 | AS3645A LED FLASH CONTROLLER DRIVER |
1431 | M: Laurent Pinchart <[email protected]> | |
1432 | L: [email protected] | |
1433 | T: git git://linuxtv.org/media_tree.git | |
1434 | S: Maintained | |
1435 | F: drivers/media/i2c/as3645a.c | |
1436 | F: include/media/as3645a.h | |
1437 | ||
d58de038 GJ |
1438 | ASC7621 HARDWARE MONITOR DRIVER |
1439 | M: George Joseph <[email protected]> | |
1440 | L: [email protected] | |
1441 | S: Maintained | |
1442 | F: Documentation/hwmon/asc7621 | |
1443 | F: drivers/hwmon/asc7621.c | |
1444 | ||
b229ece9 | 1445 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1446 | M: Corentin Chary <[email protected]> |
1da177e4 | 1447 | L: [email protected] |
d0944853 | 1448 | L: [email protected] |
76593d6f | 1449 | W: http://acpi4asus.sf.net |
85091b71 | 1450 | S: Maintained |
b229ece9 CC |
1451 | F: drivers/platform/x86/asus*.c |
1452 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1453 | |
953a6479 | 1454 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1455 | M: Dan Williams <[email protected]> |
b3e5f263 | 1456 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1457 | S: Maintained |
679655da JP |
1458 | F: Documentation/crypto/async-tx-api.txt |
1459 | F: crypto/async_tx/ | |
1460 | F: drivers/dma/ | |
1461 | F: include/linux/dmaengine.h | |
1462 | F: include/linux/async_tx.h | |
b3e5f263 | 1463 | |
a1867d36 | 1464 | AT24 EEPROM DRIVER |
14d77c4d | 1465 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1466 | L: [email protected] |
1467 | S: Maintained | |
1468 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1469 | F: include/linux/platform_data/at24.h |
a1867d36 | 1470 | |
e7839f25 | 1471 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1472 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1473 | W: http://support.coraid.com/support/linux |
1da177e4 | 1474 | S: Supported |
679655da JP |
1475 | F: Documentation/aoe/ |
1476 | F: drivers/block/aoe/ | |
1da177e4 | 1477 | |
9a10a870 | 1478 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1479 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1480 | L: [email protected] |
1481 | S: Supported | |
1482 | F: drivers/net/wireless/ath/* | |
1483 | ||
fa1c114f | 1484 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1485 | M: Jiri Slaby <[email protected]> |
1486 | M: Nick Kossifidis <[email protected]> | |
f726ee65 | 1487 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1488 | L: [email protected] |
1489 | L: [email protected] | |
72c706b7 | 1490 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1491 | S: Maintained |
fa451753 | 1492 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1493 | |
12e62d6f KV |
1494 | ATHEROS ATH6KL WIRELESS DRIVER |
1495 | M: Kalle Valo <[email protected]> | |
1496 | L: [email protected] | |
1497 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1498 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1499 | S: Supported |
1500 | F: drivers/net/wireless/ath/ath6kl/ | |
1501 | ||
2be7d22f VK |
1502 | WILOCITY WIL6210 WIRELESS DRIVER |
1503 | M: Vladimir Kondratiev <[email protected]> | |
1504 | L: [email protected] | |
1505 | L: [email protected] | |
1506 | S: Supported | |
1507 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1508 | F: drivers/net/wireless/ath/wil6210/ | |
1509 | ||
1d7e1e6b CL |
1510 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1511 | M: Christian Lamparter <[email protected]> | |
1512 | L: [email protected] | |
1513 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1514 | S: Maintained | |
1515 | F: drivers/net/wireless/ath/carl9170/ | |
1516 | ||
2c2a6172 LT |
1517 | ATK0110 HWMON DRIVER |
1518 | M: Luca Tettamanti <[email protected]> | |
1519 | L: [email protected] | |
1520 | S: Maintained | |
1521 | F: drivers/hwmon/asus_atk0110.c | |
1522 | ||
6f69a6d7 | 1523 | ATI_REMOTE2 DRIVER |
8b58be88 | 1524 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1525 | S: Maintained |
679655da | 1526 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1527 | |
7ae115b4 | 1528 | ATLX ETHERNET DRIVERS |
8b58be88 | 1529 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1530 | M: Chris Snook <[email protected]> |
e443e383 | 1531 | L: [email protected] |
8d5ca6ec JC |
1532 | W: http://sourceforge.net/projects/atl1 |
1533 | W: http://atl1.sourceforge.net | |
1534 | S: Maintained | |
2b133ad6 | 1535 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1536 | |
1da177e4 | 1537 | ATM |
8b58be88 | 1538 | M: Chas Williams <[email protected]> |
476604de | 1539 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1540 | L: [email protected] |
1da177e4 LT |
1541 | W: http://linux-atm.sourceforge.net |
1542 | S: Maintained | |
679655da JP |
1543 | F: drivers/atm/ |
1544 | F: include/linux/atm* | |
c117ab84 | 1545 | F: include/uapi/linux/atm* |
1da177e4 | 1546 | |
04ac2f46 | 1547 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1548 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1549 | S: Maintained |
1550 | F: drivers/mmc/host/atmel-mci.c | |
1551 | F: drivers/mmc/host/atmel-mci-regs.h | |
1552 | ||
a1cfac48 | 1553 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1554 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1555 | S: Supported |
df621252 | 1556 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1557 | |
b414dc16 NF |
1558 | ATMEL DMA DRIVER |
1559 | M: Nicolas Ferre <[email protected]> | |
1560 | L: [email protected] (moderated for non-subscribers) | |
1561 | S: Supported | |
1562 | F: drivers/dma/at_hdmac.c | |
1563 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1564 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1565 | |
888f2804 LD |
1566 | ATMEL I2C DRIVER |
1567 | M: Ludovic Desroches <[email protected]> | |
1568 | L: [email protected] | |
1569 | S: Supported | |
1570 | F: drivers/i2c/busses/i2c-at91.c | |
1571 | ||
15515545 JW |
1572 | ATMEL ISI DRIVER |
1573 | M: Josh Wu <[email protected]> | |
1574 | L: [email protected] | |
1575 | S: Supported | |
f2294c2d | 1576 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1577 | F: include/media/atmel-isi.h |
1578 | ||
8f4c79ce | 1579 | ATMEL LCDFB DRIVER |
8b58be88 | 1580 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1581 | L: [email protected] |
8f4c79ce | 1582 | S: Maintained |
679655da JP |
1583 | F: drivers/video/atmel_lcdfb.c |
1584 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1585 | |
89e5785f | 1586 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1587 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1588 | S: Supported |
9f2f381f | 1589 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1590 | |
754ce4f2 | 1591 | ATMEL SPI DRIVER |
a02875a6 | 1592 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1593 | S: Supported |
9df92e6c | 1594 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1595 | |
e9cb1c5a NF |
1596 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1597 | M: Nicolas Ferre <[email protected]> | |
1598 | L: [email protected] (moderated for non-subscribers) | |
1599 | S: Supported | |
1600 | F: drivers/misc/atmel_tclib.c | |
1601 | F: drivers/clocksource/tcb_clksrc.c | |
1602 | ||
ff2675d6 JW |
1603 | ATMEL TSADCC DRIVER |
1604 | M: Josh Wu <[email protected]> | |
1605 | L: [email protected] | |
1606 | S: Supported | |
1607 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1608 | ||
914a3f3b | 1609 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1610 | M: Nicolas Ferre <[email protected]> |
1611 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1612 | S: Supported |
679655da | 1613 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1614 | |
1da177e4 | 1615 | ATMEL WIRELESS DRIVER |
8b58be88 | 1616 | M: Simon Kelley <[email protected]> |
724c6b35 | 1617 | L: [email protected] |
1da177e4 LT |
1618 | W: http://www.thekelleys.org.uk/atmel |
1619 | W: http://atmelwlandriver.sourceforge.net/ | |
1620 | S: Maintained | |
679655da | 1621 | F: drivers/net/wireless/atmel* |
1da177e4 | 1622 | |
26780d9e | 1623 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1624 | M: Bradley Grove <[email protected]> |
1625 | L: [email protected] | |
1626 | W: http://www.attotech.com | |
1627 | S: Supported | |
1628 | F: drivers/scsi/esas2r | |
26780d9e | 1629 | |
a92b7b80 | 1630 | AUDIT SUBSYSTEM |
8b58be88 | 1631 | M: Eric Paris <[email protected]> |
b9a06207 | 1632 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1633 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1634 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1635 | S: Maintained |
679655da | 1636 | F: include/linux/audit.h |
c117ab84 | 1637 | F: include/uapi/linux/audit.h |
679655da | 1638 | F: kernel/audit* |
a92b7b80 | 1639 | |
70e84049 | 1640 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1641 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1642 | W: http://miguelojeda.es/auxdisplay.htm |
1643 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1644 | S: Maintained |
679655da JP |
1645 | F: drivers/auxdisplay/ |
1646 | F: include/linux/cfag12864b.h | |
70e84049 | 1647 | |
5f97f7f9 | 1648 | AVR32 ARCHITECTURE |
e336f61f HCE |
1649 | M: Haavard Skinnemoen <[email protected]> |
1650 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1651 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1652 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1653 | W: http://avrfreaks.net/ |
e336f61f | 1654 | S: Maintained |
679655da | 1655 | F: arch/avr32/ |
5f97f7f9 HS |
1656 | |
1657 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1658 | M: Haavard Skinnemoen <[email protected]> |
1659 | M: Hans-Christian Egtvedt <[email protected]> | |
1660 | S: Maintained | |
679655da | 1661 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1662 | |
1da177e4 | 1663 | AX.25 NETWORK LAYER |
8b58be88 | 1664 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1665 | L: [email protected] |
d34cb28a | 1666 | W: http://www.linux-ax25.org/ |
1da177e4 | 1667 | S: Maintained |
c117ab84 | 1668 | F: include/uapi/linux/ax25.h |
679655da JP |
1669 | F: include/net/ax25.h |
1670 | F: net/ax25/ | |
1da177e4 | 1671 | |
d5269395 | 1672 | AZ6007 DVB DRIVER |
1b2c14b4 | 1673 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1674 | L: [email protected] |
1675 | W: http://linuxtv.org | |
1676 | T: git git://linuxtv.org/media_tree.git | |
1677 | S: Maintained | |
1678 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1679 | ||
6777376e HV |
1680 | AZTECH FM RADIO RECEIVER DRIVER |
1681 | M: Hans Verkuil <[email protected]> | |
1682 | L: [email protected] | |
1683 | T: git git://linuxtv.org/media_tree.git | |
1684 | W: http://linuxtv.org | |
1685 | S: Maintained | |
1686 | F: drivers/media/radio/radio-aztech* | |
1687 | ||
e2d1d6c0 | 1688 | B43 WIRELESS DRIVER |
8b58be88 | 1689 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1690 | L: [email protected] |
ed072f9e | 1691 | L: [email protected] |
491b26b4 | 1692 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1693 | S: Maintained |
679655da | 1694 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1695 | |
1696 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1697 | M: Larry Finger <[email protected]> |
1698 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1699 | L: [email protected] |
ed072f9e | 1700 | L: [email protected] |
491b26b4 | 1701 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1702 | S: Maintained |
679655da | 1703 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1704 | |
300abeb5 | 1705 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1706 | M: Jingoo Han <[email protected]> |
300abeb5 | 1707 | S: Maintained |
679655da JP |
1708 | F: drivers/video/backlight/ |
1709 | F: include/linux/backlight.h | |
300abeb5 | 1710 | |
c6c8fea2 | 1711 | BATMAN ADVANCED |
207df49e | 1712 | M: Marek Lindner <[email protected]> |
c679ff8f | 1713 | M: Simon Wunderlich <[email protected]> |
207df49e | 1714 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1715 | L: [email protected] |
1716 | W: http://www.open-mesh.org/ | |
1717 | S: Maintained | |
1718 | F: net/batman-adv/ | |
1719 | ||
e2d1d6c0 | 1720 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1721 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1722 | L: [email protected] |
1723 | W: http://www.baycom.org/~tom/ham/ham.html | |
1724 | S: Maintained | |
679655da | 1725 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1726 | |
cafe5635 | 1727 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1728 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1729 | L: [email protected] |
1730 | W: http://bcache.evilpiepirate.org | |
1731 | S: Maintained: | |
1732 | F: drivers/md/bcache/ | |
1733 | ||
e2d1d6c0 | 1734 | BEFS FILE SYSTEM |
55817d3d | 1735 | S: Orphan |
679655da JP |
1736 | F: Documentation/filesystems/befs.txt |
1737 | F: fs/befs/ | |
e2d1d6c0 RD |
1738 | |
1739 | BFS FILE SYSTEM | |
8b58be88 | 1740 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1741 | S: Maintained |
679655da JP |
1742 | F: Documentation/filesystems/bfs.txt |
1743 | F: fs/bfs/ | |
c117ab84 | 1744 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1745 | |
1394f032 | 1746 | BLACKFIN ARCHITECTURE |
a4edbc10 SZ |
1747 | M: Steven Miao <[email protected]> |
1748 | L: [email protected] | |
1443176f | 1749 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1750 | W: http://blackfin.uclinux.org |
1751 | S: Supported | |
679655da | 1752 | F: arch/blackfin/ |
566da5b2 | 1753 | |
e190d6b1 | 1754 | BLACKFIN EMAC DRIVER |
a4edbc10 | 1755 | L: [email protected] |
e190d6b1 BW |
1756 | W: http://blackfin.uclinux.org |
1757 | S: Supported | |
7b35f033 | 1758 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1759 | |
566da5b2 | 1760 | BLACKFIN RTC DRIVER |
a4edbc10 | 1761 | L: [email protected] |
566da5b2 MF |
1762 | W: http://blackfin.uclinux.org |
1763 | S: Supported | |
679655da | 1764 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1765 | |
936ed49a | 1766 | BLACKFIN SDH DRIVER |
109ec8c3 | 1767 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1768 | L: [email protected] |
936ed49a MF |
1769 | W: http://blackfin.uclinux.org |
1770 | S: Supported | |
1771 | F: drivers/mmc/host/bfin_sdh.c | |
1772 | ||
1394f032 | 1773 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1774 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1775 | L: [email protected] |
e3b2d3f3 BW |
1776 | W: http://blackfin.uclinux.org |
1777 | S: Supported | |
8460241e | 1778 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1779 | |
1e6d320f | 1780 | BLACKFIN WATCHDOG DRIVER |
a4edbc10 | 1781 | L: [email protected] |
1e6d320f BW |
1782 | W: http://blackfin.uclinux.org |
1783 | S: Supported | |
679655da | 1784 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1785 | |
d24ecfcc | 1786 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1787 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1788 | L: [email protected] |
d24ecfcc BW |
1789 | W: http://blackfin.uclinux.org/ |
1790 | S: Supported | |
679655da | 1791 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1792 | |
1e204377 SJ |
1793 | BLACKFIN MEDIA DRIVER |
1794 | M: Scott Jiang <[email protected]> | |
a4edbc10 | 1795 | L: [email protected] |
1e204377 SJ |
1796 | W: http://blackfin.uclinux.org/ |
1797 | S: Supported | |
1798 | F: drivers/media/platform/blackfin/ | |
1799 | F: drivers/media/i2c/adv7183* | |
1800 | F: drivers/media/i2c/vs6624* | |
1801 | ||
b54cf35a JSM |
1802 | BLINKM RGB LED DRIVER |
1803 | M: Jan-Simon Moeller <[email protected]> | |
1804 | S: Maintained | |
1805 | F: drivers/leds/leds-blinkm.c | |
1806 | ||
1da177e4 | 1807 | BLOCK LAYER |
8b58be88 | 1808 | M: Jens Axboe <[email protected]> |
08deed1e | 1809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1810 | S: Maintained |
679655da | 1811 | F: block/ |
1da177e4 | 1812 | |
2b54aaef | 1813 | BLOCK2MTD DRIVER |
8b58be88 | 1814 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1815 | L: [email protected] |
1816 | S: Maintained | |
679655da | 1817 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1818 | |
63fbd24e | 1819 | BLUETOOTH DRIVERS |
8b58be88 | 1820 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1821 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1822 | M: Johan Hedberg <[email protected]> |
781c2844 | 1823 | L: [email protected] |
63fbd24e | 1824 | W: http://www.bluez.org/ |
22e7a424 MH |
1825 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1827 | S: Maintained |
679655da | 1828 | F: drivers/bluetooth/ |
1da177e4 | 1829 | |
63fbd24e | 1830 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1831 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1832 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1833 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1834 | L: [email protected] |
1835 | W: http://www.bluez.org/ | |
22e7a424 MH |
1836 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1838 | S: Maintained |
679655da JP |
1839 | F: net/bluetooth/ |
1840 | F: include/net/bluetooth/ | |
1da177e4 LT |
1841 | |
1842 | BONDING DRIVER | |
79b30750 | 1843 | M: Jay Vosburgh <[email protected]> |
898602a0 | 1844 | M: Veaceslav Falico <[email protected]> |
4cd72c6e | 1845 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1846 | L: [email protected] |
ce00f85c JC |
1847 | W: http://sourceforge.net/projects/bonding/ |
1848 | S: Supported | |
679655da | 1849 | F: drivers/net/bonding/ |
c117ab84 | 1850 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1851 | |
39105890 | 1852 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1853 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1854 | L: [email protected] |
1855 | S: Supported | |
adfc5217 | 1856 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1857 | |
32ec90d5 FF |
1858 | BROADCOM GENET ETHERNET DRIVER |
1859 | M: Florian Fainelli <[email protected]> | |
1860 | L: [email protected] | |
1861 | S: Supported | |
1862 | F: drivers/net/ethernet/broadcom/genet/ | |
1863 | ||
948c51e6 | 1864 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1865 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1866 | L: [email protected] |
1867 | S: Supported | |
adfc5217 JK |
1868 | F: drivers/net/ethernet/broadcom/bnx2.* |
1869 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1870 | |
4d9d2cb0 | 1871 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
28fb9655 | 1872 | M: Ariel Elior <[email protected]> |
4d9d2cb0 ET |
1873 | L: [email protected] |
1874 | S: Supported | |
adfc5217 | 1875 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1876 | |
af4b8e37 | 1877 | BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE |
497a045d | 1878 | M: Christian Daudt <[email protected]> |
a3db2bba | 1879 | M: Matt Porter <[email protected]> |
497a045d | 1880 | L: [email protected] |
af4b8e37 CD |
1881 | T: git git://git.github.com/broadcom/bcm11351 |
1882 | S: Maintained | |
1883 | F: arch/arm/mach-bcm/ | |
1884 | F: arch/arm/boot/dts/bcm113* | |
1885 | F: arch/arm/boot/dts/bcm281* | |
1886 | F: arch/arm/configs/bcm_defconfig | |
1887 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1888 | F: drivers/clocksource/bcm_kona_timer.c | |
1889 | ||
f680f25c SW |
1890 | BROADCOM BCM2835 ARM ARCHICTURE |
1891 | M: Stephen Warren <[email protected]> | |
1892 | L: [email protected] (moderated for non-subscribers) | |
1893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1894 | S: Maintained | |
1895 | F: arch/arm/mach-bcm2835/ | |
1896 | F: arch/arm/boot/dts/bcm2835* | |
1897 | F: arch/arm/configs/bcm2835_defconfig | |
1898 | F: drivers/*/*bcm2835* | |
1899 | ||
948c51e6 | 1900 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1901 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1902 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1903 | L: [email protected] |
1904 | S: Supported | |
adfc5217 | 1905 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1906 | |
a9533e7e HP |
1907 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1908 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1909 | M: Arend van Spriel <[email protected]> |
85d63686 | 1910 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1911 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1912 | L: [email protected] |
5615171c | 1913 | L: [email protected] |
a9533e7e | 1914 | S: Supported |
f62ebdd5 | 1915 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1916 | |
9958d6f9 | 1917 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
f69098c5 | 1918 | M: Eddie Wai <[email protected]> |
9958d6f9 BPG |
1919 | L: [email protected] |
1920 | S: Supported | |
1921 | F: drivers/scsi/bnx2fc/ | |
1922 | ||
6a6b5ad0 EW |
1923 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1924 | M: Eddie Wai <[email protected]> | |
1925 | L: [email protected] | |
1926 | S: Supported | |
1927 | F: drivers/scsi/bnx2i/ | |
1928 | ||
c9678d86 RM |
1929 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1930 | M: Rafał Miłecki <[email protected]> | |
1931 | L: [email protected] | |
1932 | S: Maintained | |
1933 | F: drivers/bcma/ | |
1934 | F: include/linux/bcma/ | |
1935 | ||
7725ccfd | 1936 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
1937 | M: Anil Gurumurthy <[email protected]> |
1938 | M: Sudarsana Kalluru <[email protected]> | |
455518e7 JP |
1939 | L: [email protected] |
1940 | S: Supported | |
1941 | F: drivers/scsi/bfa/ | |
7725ccfd | 1942 | |
8b230ed8 RM |
1943 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1944 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1945 | L: [email protected] |
1946 | S: Supported | |
f844a0ea | 1947 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1948 | |
5cdf7f76 | 1949 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1950 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1951 | L: [email protected] |
1952 | S: Supported | |
679655da JP |
1953 | F: block/bsg.c |
1954 | F: include/linux/bsg.h | |
c117ab84 | 1955 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1956 | |
af39917d CL |
1957 | BT87X AUDIO DRIVER |
1958 | M: Clemens Ladisch <[email protected]> | |
1959 | L: [email protected] (moderated for non-subscribers) | |
1960 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1961 | S: Maintained | |
1962 | F: Documentation/sound/alsa/Bt87x.txt | |
1963 | F: sound/pci/bt87x.c | |
1964 | ||
ff1d5c2f | 1965 | BT8XXGPIO DRIVER |
eb032b98 | 1966 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1967 | W: http://bu3sch.de/btgpio.php |
1968 | S: Maintained | |
72dbb705 | 1969 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1970 | |
eb1eb04f | 1971 | BTRFS FILE SYSTEM |
c0778e25 CM |
1972 | M: Chris Mason <[email protected]> |
1973 | M: Josef Bacik <[email protected]> | |
eb1eb04f JP |
1974 | L: [email protected] |
1975 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1976 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1978 | S: Maintained |
679655da JP |
1979 | F: Documentation/filesystems/btrfs.txt |
1980 | F: fs/btrfs/ | |
eb1eb04f | 1981 | |
1da177e4 | 1982 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1983 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1984 | L: [email protected] |
96b6aba0 | 1985 | W: http://linuxtv.org |
275ffde4 | 1986 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1987 | S: Odd fixes |
679655da | 1988 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1989 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1990 | |
1f34923c KA |
1991 | BUSLOGIC SCSI DRIVER |
1992 | M: Khalid Aziz <[email protected]> | |
1993 | L: [email protected] | |
1994 | S: Maintained | |
1995 | F: drivers/scsi/BusLogic.* | |
1996 | F: drivers/scsi/FlashPoint.* | |
1997 | ||
af39917d CL |
1998 | C-MEDIA CMI8788 DRIVER |
1999 | M: Clemens Ladisch <[email protected]> | |
2000 | L: [email protected] (moderated for non-subscribers) | |
2001 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2002 | S: Maintained | |
2003 | F: sound/pci/oxygen/ | |
2004 | ||
2141355f MS |
2005 | C6X ARCHITECTURE |
2006 | M: Mark Salter <[email protected]> | |
2007 | M: Aurelien Jacquiot <[email protected]> | |
2008 | L: [email protected] | |
2009 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2010 | S: Maintained | |
2011 | F: arch/c6x/ | |
2012 | ||
a5432f5a | 2013 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2014 | M: David Howells <[email protected]> |
a5432f5a DH |
2015 | L: [email protected] |
2016 | S: Supported | |
2017 | F: Documentation/filesystems/caching/cachefiles.txt | |
2018 | F: fs/cachefiles/ | |
2019 | ||
c815ca39 HV |
2020 | CADET FM/AM RADIO RECEIVER DRIVER |
2021 | M: Hans Verkuil <[email protected]> | |
2022 | L: [email protected] | |
2023 | T: git git://linuxtv.org/media_tree.git | |
2024 | W: http://linuxtv.org | |
2025 | S: Maintained | |
2026 | F: drivers/media/radio/radio-cadet* | |
2027 | ||
77d5140f | 2028 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2029 | M: Jonathan Corbet <[email protected]> |
661263b5 | 2030 | L: [email protected] |
275ffde4 | 2031 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2032 | S: Maintained |
679655da | 2033 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2034 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2035 | |
201b6bab | 2036 | CAIF NETWORK LAYER |
5c574f50 | 2037 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
2038 | L: [email protected] |
2039 | S: Supported | |
2040 | F: Documentation/networking/caif/ | |
2041 | F: drivers/net/caif/ | |
c117ab84 | 2042 | F: include/uapi/linux/caif/ |
201b6bab JP |
2043 | F: include/net/caif/ |
2044 | F: net/caif/ | |
2045 | ||
77dac90f | 2046 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2047 | M: Muli Ben-Yehuda <[email protected]> |
2048 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
2049 | L: [email protected] |
2050 | S: Maintained | |
679655da JP |
2051 | F: arch/x86/kernel/pci-calgary_64.c |
2052 | F: arch/x86/kernel/tce_64.c | |
2053 | F: arch/x86/include/asm/calgary.h | |
2054 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2055 | |
e2d1d6c0 | 2056 | CAN NETWORK LAYER |
8d15d386 | 2057 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 2058 | L: [email protected] |
ec78213a | 2059 | W: http://gitorious.org/linux-can |
405cc273 | 2060 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2061 | S: Maintained |
f35f6c8f | 2062 | F: Documentation/networking/can.txt |
8d15d386 | 2063 | F: net/can/ |
8d15d386 | 2064 | F: include/linux/can/core.h |
c117ab84 CEB |
2065 | F: include/uapi/linux/can.h |
2066 | F: include/uapi/linux/can/bcm.h | |
2067 | F: include/uapi/linux/can/raw.h | |
2068 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2069 | |
4261a204 | 2070 | CAN NETWORK DRIVERS |
8b58be88 | 2071 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2072 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2073 | L: [email protected] |
ec78213a | 2074 | W: http://gitorious.org/linux-can |
405cc273 | 2075 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2076 | S: Maintained |
8d15d386 OH |
2077 | F: drivers/net/can/ |
2078 | F: include/linux/can/dev.h | |
8d15d386 | 2079 | F: include/linux/can/platform/ |
c117ab84 CEB |
2080 | F: include/uapi/linux/can/error.h |
2081 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2082 | |
95d16c72 JM |
2083 | CAPABILITIES |
2084 | M: Serge Hallyn <[email protected]> | |
2085 | L: [email protected] | |
6305902c | 2086 | S: Supported |
95d16c72 | 2087 | F: include/linux/capability.h |
c117ab84 | 2088 | F: include/uapi/linux/capability.h |
95d16c72 | 2089 | F: security/capability.c |
6305902c | 2090 | F: security/commoncap.c |
38a94118 | 2091 | F: kernel/capability.c |
95d16c72 | 2092 | |
b8154542 | 2093 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2094 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2095 | L: [email protected] |
2096 | L: [email protected] | |
b8154542 AB |
2097 | W: http://www.ibm.com/developerworks/power/cell/ |
2098 | S: Supported | |
679655da | 2099 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2100 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2101 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2102 | F: arch/powerpc/oprofile/*cell* |
2103 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2104 | |
9030aaf9 | 2105 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2106 | M: Sage Weil <[email protected]> |
82593f87 | 2107 | L: [email protected] |
09d90327 | 2108 | W: http://ceph.com/ |
fb99f881 | 2109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2110 | S: Supported |
2111 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2112 | F: fs/ceph/ |
2113 | F: net/ceph/ | |
2114 | F: include/linux/ceph/ | |
2115 | F: include/linux/crush/ | |
9030aaf9 | 2116 | |
18332a80 | 2117 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2118 | L: [email protected] |
10c6c9c9 | 2119 | S: Orphan |
679655da JP |
2120 | F: Documentation/usb/WUSB-Design-overview.txt |
2121 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2122 | F: drivers/usb/host/hwa-hc.c |
2123 | F: drivers/usb/host/whci/ | |
679655da JP |
2124 | F: drivers/usb/wusbcore/ |
2125 | F: include/linux/usb/wusb* | |
18332a80 | 2126 | |
70e84049 | 2127 | CFAG12864B LCD DRIVER |
8b58be88 | 2128 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2129 | W: http://miguelojeda.es/auxdisplay.htm |
2130 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2131 | S: Maintained |
679655da JP |
2132 | F: drivers/auxdisplay/cfag12864b.c |
2133 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2134 | |
2135 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2136 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2137 | W: http://miguelojeda.es/auxdisplay.htm |
2138 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2139 | S: Maintained |
679655da JP |
2140 | F: drivers/auxdisplay/cfag12864bfb.c |
2141 | F: include/linux/cfag12864b.h | |
70e84049 | 2142 | |
704232c2 | 2143 | CFG80211 and NL80211 |
8b58be88 | 2144 | M: Johannes Berg <[email protected]> |
704232c2 | 2145 | L: [email protected] |
ce466579 JB |
2146 | W: http://wireless.kernel.org/ |
2147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2148 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2149 | S: Maintained |
c117ab84 | 2150 | F: include/uapi/linux/nl80211.h |
679655da JP |
2151 | F: include/net/cfg80211.h |
2152 | F: net/wireless/* | |
2153 | X: net/wireless/wext* | |
704232c2 | 2154 | |
46e64261 GKH |
2155 | CHAR and MISC DRIVERS |
2156 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2157 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2159 | S: Supported |
46e64261 GKH |
2160 | F: drivers/char/* |
2161 | F: drivers/misc/* | |
2162 | ||
0a920b5b | 2163 | CHECKPATCH |
8b58be88 | 2164 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2165 | M: Joe Perches <[email protected]> |
2166 | S: Maintained | |
679655da | 2167 | F: scripts/checkpatch.pl |
0a920b5b | 2168 | |
f8407f26 HW |
2169 | CHINESE DOCUMENTATION |
2170 | M: Harry Wei <[email protected]> | |
9740153c | 2171 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2172 | L: [email protected] (moderated for non-subscribers) |
2173 | S: Maintained | |
2174 | F: Documentation/zh_CN/ | |
2175 | ||
2721ea2c | 2176 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2177 | M: Peter Chen <[email protected]> |
cea8321c | 2178 | T: git git://github.com/hzpeterchen/linux-usb.git |
2721ea2c AS |
2179 | L: [email protected] |
2180 | S: Maintained | |
2181 | F: drivers/usb/chipidea/ | |
2182 | ||
ab043105 OJ |
2183 | CHROME HARDWARE PLATFORM SUPPORT |
2184 | M: Olof Johansson <[email protected]> | |
2185 | S: Maintained | |
2186 | F: drivers/platform/chrome/ | |
2187 | ||
641cb85e | 2188 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2189 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2190 | M: Sujith Sankar <[email protected]> |
2191 | M: Govindarajulu Varadarajan <[email protected]> | |
5c6652f5 NP |
2192 | M: Neel Patel <[email protected]> |
2193 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2194 | S: Supported |
a6a5580c | 2195 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2196 | |
e3cf00d0 | 2197 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2198 | M: Upinder Malhi <[email protected]> |
2199 | S: Supported | |
2200 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2201 | |
2b7a52a4 | 2202 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2203 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2204 | L: [email protected] |
2205 | S: Maintained | |
57d0b7a0 | 2206 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2207 | |
2b7a52a4 | 2208 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2209 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2210 | L: [email protected] |
2b7a52a4 | 2211 | S: Maintained |
679655da | 2212 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2213 | |
d9e9d82c | 2214 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2215 | M: Timur Tabi <[email protected]> |
93711660 | 2216 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2217 | S: Odd Fixes |
679655da | 2218 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2219 | |
3d4cfdc9 MB |
2220 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2221 | M: Brian Austin <[email protected]> | |
2222 | M: Paul Handrigan <[email protected]> | |
2223 | L: [email protected] (moderated for non-subscribers) | |
2224 | S: Maintained | |
2225 | F: sound/soc/codecs/cs* | |
2226 | ||
94574d9a KRW |
2227 | CLEANCACHE API |
2228 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2229 | L: [email protected] | |
2230 | S: Maintained | |
2231 | F: mm/cleancache.c | |
2232 | F: include/linux/cleancache.h | |
2233 | ||
d4275354 | 2234 | CLK API |
8b58be88 | 2235 | M: Russell King <[email protected]> |
37417046 | 2236 | S: Maintained |
d4275354 RK |
2237 | F: include/linux/clk.h |
2238 | ||
9222d247 JS |
2239 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2240 | M: Daniel Lezcano <[email protected]> | |
2241 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 2242 | L: [email protected] |
9222d247 JS |
2243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2244 | S: Supported | |
2245 | F: drivers/clocksource | |
2246 | ||
5df6d737 | 2247 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2248 | M: Hiral Patel <[email protected]> |
2249 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2250 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2251 | L: [email protected] |
2252 | S: Supported | |
2a99921a | 2253 | F: drivers/scsi/fnic/ |
5df6d737 | 2254 | |
529aa8cb TLSC |
2255 | CMPC ACPI DRIVER |
2256 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2257 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2258 | L: [email protected] |
529aa8cb TLSC |
2259 | S: Supported |
2260 | F: drivers/platform/x86/classmate-laptop.c | |
2261 | ||
74425eee | 2262 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2263 | M: Julia Lawall <[email protected]> |
74425eee | 2264 | M: Gilles Muller <[email protected]> |
26de9c26 | 2265 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2266 | M: Michal Marek <[email protected]> |
26de9c26 | 2267 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2268 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2269 | W: http://coccinelle.lip6.fr/ |
2270 | S: Supported | |
4b92b2aa | 2271 | F: Documentation/coccinelle.txt |
74425eee NP |
2272 | F: scripts/coccinelle/ |
2273 | F: scripts/coccicheck | |
2274 | ||
1da177e4 | 2275 | CODA FILE SYSTEM |
8b58be88 | 2276 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2277 | M: [email protected] |
2278 | L: [email protected] | |
2279 | W: http://www.coda.cs.cmu.edu/ | |
2280 | S: Maintained | |
679655da JP |
2281 | F: Documentation/filesystems/coda.txt |
2282 | F: fs/coda/ | |
2283 | F: include/linux/coda*.h | |
c117ab84 | 2284 | F: include/uapi/linux/coda*.h |
1da177e4 | 2285 | |
7704addb | 2286 | COMMON CLK FRAMEWORK |
7704addb MT |
2287 | M: Mike Turquette <[email protected]> |
2288 | L: [email protected] (same as CLK API & CLKDEV) | |
2289 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2290 | S: Maintained | |
60bea3b5 SW |
2291 | F: drivers/clk/ |
2292 | X: drivers/clk/clkdev.c | |
7704addb | 2293 | F: include/linux/clk-pr* |
60bea3b5 | 2294 | F: include/linux/clk/ |
7704addb | 2295 | |
e2d1d6c0 | 2296 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2297 | M: Steve French <[email protected]> |
51223df6 | 2298 | L: [email protected] |
d1f28953 | 2299 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2300 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2301 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2303 | S: Supported |
679655da JP |
2304 | F: Documentation/filesystems/cifs.txt |
2305 | F: fs/cifs/ | |
e2d1d6c0 | 2306 | |
1da177e4 | 2307 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2308 | M: Scott Murray <[email protected]> |
64dab204 | 2309 | L: [email protected] |
82c4dfc7 | 2310 | S: Maintained |
679655da | 2311 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2312 | |
2313 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2314 | M: Scott Murray <[email protected]> |
64dab204 | 2315 | L: [email protected] |
82c4dfc7 | 2316 | S: Maintained |
679655da | 2317 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2318 | |
2319 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2320 | M: Scott Murray <[email protected]> |
64dab204 | 2321 | L: [email protected] |
82c4dfc7 | 2322 | S: Maintained |
679655da | 2323 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2324 | |
5411552c | 2325 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2326 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2327 | L: [email protected] |
5411552c | 2328 | S: Maintained |
679655da | 2329 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2330 | |
949be0f7 | 2331 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2332 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2333 | L: [email protected] |
2334 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2335 | S: Maintained |
679655da | 2336 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2337 | |
e2d1d6c0 | 2338 | CONFIGFS |
d6351db2 JB |
2339 | M: Joel Becker <[email protected]> |
2340 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2341 | S: Supported |
679655da JP |
2342 | F: fs/configfs/ |
2343 | F: include/linux/configfs.h | |
e2d1d6c0 | 2344 | |
acb9c1b2 | 2345 | CONNECTOR |
8b58be88 | 2346 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2347 | L: [email protected] |
2348 | S: Maintained | |
2349 | F: drivers/connector/ | |
2350 | ||
fb3a0fb6 | 2351 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2352 | M: Tejun Heo <[email protected]> |
ad50c159 | 2353 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2354 | L: [email protected] |
12340313 | 2355 | L: [email protected] |
860ca0e6 | 2356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2357 | S: Maintained |
679655da JP |
2358 | F: include/linux/cgroup* |
2359 | F: kernel/cgroup* | |
8ca739e3 | 2360 | F: mm/*cgroup* |
fb3a0fb6 | 2361 | |
bebe4678 | 2362 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2363 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2364 | L: [email protected] |
2365 | S: Maintained | |
679655da JP |
2366 | F: Documentation/hwmon/coretemp |
2367 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2368 | |
1da177e4 | 2369 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2370 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2371 | W: http://www.fi.muni.cz/~kas/cosa/ |
2372 | S: Maintained | |
679655da | 2373 | F: drivers/net/wan/cosa* |
1da177e4 | 2374 | |
4371ee35 | 2375 | CPMAC ETHERNET DRIVER |
8b58be88 | 2376 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2377 | L: [email protected] |
2378 | S: Maintained | |
b544dbac | 2379 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2380 | |
1da177e4 | 2381 | CPU FREQUENCY DRIVERS |
49db1903 | 2382 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2383 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2384 | L: [email protected] |
a6c072c7 | 2385 | L: [email protected] |
1da177e4 | 2386 | S: Maintained |
27209d91 VK |
2387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2388 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2389 | F: drivers/cpufreq/ |
2390 | F: include/linux/cpufreq.h | |
1da177e4 | 2391 | |
8a67f0ef VK |
2392 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2393 | M: Viresh Kumar <[email protected]> | |
171d0ba8 | 2394 | M: Sudeep Holla <[email protected]> |
8a67f0ef VK |
2395 | L: [email protected] |
2396 | L: [email protected] | |
2397 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2398 | S: Maintained | |
2399 | F: drivers/cpufreq/arm_big_little.h | |
2400 | F: drivers/cpufreq/arm_big_little.c | |
2401 | F: drivers/cpufreq/arm_big_little_dt.c | |
2402 | ||
14d2c34c | 2403 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2404 | M: Lorenzo Pieralisi <[email protected]> |
2405 | M: Daniel Lezcano <[email protected]> | |
2406 | L: [email protected] | |
2407 | L: [email protected] | |
cea8321c | 2408 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2409 | S: Maintained |
2410 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2411 | |
a8e39c35 | 2412 | CPUIDLE DRIVERS |
49db1903 | 2413 | M: Rafael J. Wysocki <[email protected]> |
a8e39c35 DL |
2414 | M: Daniel Lezcano <[email protected]> |
2415 | L: [email protected] | |
2416 | S: Maintained | |
cea8321c | 2417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2418 | F: drivers/cpuidle/* |
2419 | F: include/linux/cpuidle.h | |
2420 | ||
1da177e4 | 2421 | CPUID/MSR DRIVER |
8b58be88 | 2422 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2423 | S: Maintained |
679655da JP |
2424 | F: arch/x86/kernel/cpuid.c |
2425 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2426 | |
7fe2f639 DB |
2427 | CPU POWER MONITORING SUBSYSTEM |
2428 | M: Dominik Brodowski <[email protected]> | |
2429 | M: Thomas Renninger <[email protected]> | |
2430 | S: Maintained | |
14430813 | 2431 | F: tools/power/cpupower/ |
7fe2f639 | 2432 | |
ed90fb4a | 2433 | CPUSETS |
f47b89c7 | 2434 | M: Li Zefan <[email protected]> |
230579d7 | 2435 | L: [email protected] |
ed90fb4a | 2436 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2437 | W: http://oss.sgi.com/projects/cpusets/ |
230579d7 | 2438 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
f47b89c7 | 2439 | S: Maintained |
679655da JP |
2440 | F: Documentation/cgroups/cpusets.txt |
2441 | F: include/linux/cpuset.h | |
2442 | F: kernel/cpuset.c | |
ed90fb4a | 2443 | |
1da177e4 | 2444 | CRAMFS FILESYSTEM |
ce00f85c | 2445 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2446 | S: Orphan / Obsolete |
679655da JP |
2447 | F: Documentation/filesystems/cramfs.txt |
2448 | F: fs/cramfs/ | |
1da177e4 LT |
2449 | |
2450 | CRIS PORT | |
8b58be88 JP |
2451 | M: Mikael Starvik <[email protected]> |
2452 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2453 | L: [email protected] |
1da177e4 LT |
2454 | W: http://developer.axis.com |
2455 | S: Maintained | |
679655da | 2456 | F: arch/cris/ |
df621252 | 2457 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2458 | |
2459 | CRYPTO API | |
8b58be88 JP |
2460 | M: Herbert Xu <[email protected]> |
2461 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2462 | L: [email protected] |
54e5881d | 2463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2464 | S: Maintained |
679655da JP |
2465 | F: Documentation/crypto/ |
2466 | F: arch/*/crypto/ | |
2467 | F: crypto/ | |
2468 | F: drivers/crypto/ | |
2469 | F: include/crypto/ | |
1da177e4 | 2470 | |
5b07bd57 | 2471 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2472 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2473 | L: [email protected] |
2474 | S: Maintained | |
51a2228a JP |
2475 | F: crypto/ansi_cprng.c |
2476 | F: crypto/rng.c | |
5b07bd57 | 2477 | |
9b4ffa48 | 2478 | CS5535 Audio ALSA driver |
8b58be88 | 2479 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2480 | S: Maintained |
679655da | 2481 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2482 | |
a910e4a9 | 2483 | CW1200 WLAN driver |
b75f0050 JP |
2484 | M: Solomon Peachy <[email protected]> |
2485 | S: Maintained | |
2486 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2487 | |
6d8425b1 | 2488 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2489 | M: Andy Walls <[email protected]> |
c4240509 | 2490 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2491 | L: [email protected] |
275ffde4 | 2492 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2493 | W: http://linuxtv.org |
30e10993 | 2494 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2495 | S: Maintained |
679655da | 2496 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2497 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2498 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2499 | |
3f101d91 HV |
2500 | CX2341X MPEG ENCODER HELPER MODULE |
2501 | M: Hans Verkuil <[email protected]> | |
2502 | L: [email protected] | |
2503 | T: git git://linuxtv.org/media_tree.git | |
2504 | W: http://linuxtv.org | |
2505 | S: Maintained | |
c368360b | 2506 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2507 | F: include/media/cx2341x* |
2508 | ||
20357578 | 2509 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2510 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2511 | L: [email protected] |
2512 | W: http://linuxtv.org | |
2513 | T: git git://linuxtv.org/media_tree.git | |
2514 | S: Odd fixes | |
2515 | F: Documentation/video4linux/cx88/ | |
2516 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2517 | |
91952bc0 AP |
2518 | CXD2820R MEDIA DRIVER |
2519 | M: Antti Palosaari <[email protected]> | |
2520 | L: [email protected] | |
2521 | W: http://linuxtv.org/ | |
2522 | W: http://palosaari.fi/linux/ | |
2523 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2524 | T: git git://linuxtv.org/anttip/media_tree.git | |
2525 | S: Maintained | |
2526 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2527 | |
e5ec3789 | 2528 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2529 | M: Santosh Raspatur <[email protected]> |
e5ec3789 SW |
2530 | L: [email protected] |
2531 | W: http://www.chelsio.com | |
2532 | S: Supported | |
f7917c00 | 2533 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2534 | |
2535 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2536 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2537 | L: [email protected] |
e5ec3789 SW |
2538 | W: http://www.openfabrics.org |
2539 | S: Supported | |
679655da | 2540 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2541 | |
be4c9bad RD |
2542 | CXGB4 ETHERNET DRIVER (CXGB4) |
2543 | M: Dimitris Michailidis <[email protected]> | |
2544 | L: [email protected] | |
2545 | W: http://www.chelsio.com | |
2546 | S: Supported | |
f7917c00 | 2547 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2548 | |
2549 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2550 | M: Steve Wise <[email protected]> | |
2551 | L: [email protected] | |
2552 | W: http://www.openfabrics.org | |
2553 | S: Supported | |
2554 | F: drivers/infiniband/hw/cxgb4/ | |
2555 | ||
5c20a5c7 CL |
2556 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2557 | M: Casey Leedom <[email protected]> | |
2558 | L: [email protected] | |
2559 | W: http://www.chelsio.com | |
2560 | S: Supported | |
f7917c00 | 2561 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2562 | |
b52b97a3 GC |
2563 | STMMAC ETHERNET DRIVER |
2564 | M: Giuseppe Cavallaro <[email protected]> | |
2565 | L: [email protected] | |
2566 | W: http://www.stlinux.com | |
2567 | S: Supported | |
7ac6653a | 2568 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2569 | |
1da177e4 | 2570 | CYBERPRO FB DRIVER |
8b58be88 | 2571 | M: Russell King <[email protected]> |
efc03ecb | 2572 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2573 | W: http://www.arm.linux.org.uk/ |
2574 | S: Maintained | |
679655da | 2575 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2576 | |
1da177e4 | 2577 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2578 | W: http://www.cyclades.com/ |
d459883e | 2579 | S: Orphan |
c897401b | 2580 | F: drivers/tty/cyclades.c |
679655da | 2581 | F: include/linux/cyclades.h |
c117ab84 | 2582 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2583 | |
2584 | CYCLADES PC300 DRIVER | |
1da177e4 | 2585 | W: http://www.cyclades.com/ |
d459883e | 2586 | S: Orphan |
679655da | 2587 | F: drivers/net/wan/pc300* |
1da177e4 | 2588 | |
402f6ae4 AP |
2589 | CYPRESS_FIRMWARE MEDIA DRIVER |
2590 | M: Antti Palosaari <[email protected]> | |
2591 | L: [email protected] | |
2592 | W: http://linuxtv.org/ | |
2593 | W: http://palosaari.fi/linux/ | |
2594 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2595 | T: git git://linuxtv.org/anttip/media_tree.git | |
2596 | S: Maintained | |
2597 | F: drivers/media/common/cypress_firmware* | |
2598 | ||
e3ae3525 | 2599 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2600 | M: Ferruh Yigit <[email protected]> |
6305902c | 2601 | L: [email protected] |
be9a6f40 | 2602 | S: Supported |
6305902c JP |
2603 | F: drivers/input/touchscreen/cyttsp* |
2604 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2605 | |
1da177e4 | 2606 | DAMA SLAVE for AX.25 |
8b58be88 | 2607 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2608 | W: http://yaina.de/jreuter/ |
2609 | W: http://www.qsl.net/dl1bke/ | |
2610 | L: [email protected] | |
2611 | S: Maintained | |
679655da JP |
2612 | F: net/ax25/af_ax25.c |
2613 | F: net/ax25/ax25_dev.c | |
2614 | F: net/ax25/ax25_ds_* | |
2615 | F: net/ax25/ax25_in.c | |
2616 | F: net/ax25/ax25_out.c | |
2617 | F: net/ax25/ax25_timer.c | |
2618 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2619 | |
e2d1d6c0 | 2620 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2621 | L: [email protected] |
5ff77428 | 2622 | S: Orphan |
679655da | 2623 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2624 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2625 | |
2626 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2627 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2628 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2629 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2630 | S: Maintained |
679655da | 2631 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2632 | |
1da177e4 | 2633 | DC395x SCSI driver |
61eee9a7 | 2634 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2635 | M: Ali Akcaagac <[email protected]> |
2636 | M: Jamie Lenehan <[email protected]> | |
f5df5881 | 2637 | L: [email protected] |
cf015e9f JP |
2638 | W: http://twibble.org/dist/dc395x/ |
2639 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 2640 | S: Maintained |
679655da JP |
2641 | F: Documentation/scsi/dc395x.txt |
2642 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2643 | |
eb8edb08 | 2644 | DCCP PROTOCOL |
a89d030e | 2645 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2646 | L: [email protected] |
c996d8b9 | 2647 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2648 | S: Maintained |
679655da | 2649 | F: include/linux/dccp.h |
c117ab84 | 2650 | F: include/uapi/linux/dccp.h |
679655da JP |
2651 | F: include/linux/tfrc.h |
2652 | F: net/dccp/ | |
eb8edb08 | 2653 | |
1da177e4 | 2654 | DECnet NETWORK LAYER |
1da177e4 LT |
2655 | W: http://linux-decnet.sourceforge.net |
2656 | L: [email protected] | |
f546444d | 2657 | S: Orphan |
679655da JP |
2658 | F: Documentation/networking/decnet.txt |
2659 | F: net/decnet/ | |
1da177e4 LT |
2660 | |
2661 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2662 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2663 | S: Maintained |
33f810b2 | 2664 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2665 | |
ad8f07cc | 2666 | DELL LAPTOP DRIVER |
8b58be88 | 2667 | M: Matthew Garrett <[email protected]> |
d0944853 | 2668 | L: [email protected] |
ad8f07cc | 2669 | S: Maintained |
679655da | 2670 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2671 | |
1da177e4 | 2672 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2673 | M: Guenter Roeck <[email protected]> |
679655da | 2674 | F: drivers/char/i8k.c |
c117ab84 | 2675 | F: include/uapi/linux/i8k.h |
1da177e4 | 2676 | |
90563ec4 | 2677 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2678 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2679 | S: Maintained |
679655da JP |
2680 | F: Documentation/dcdbas.txt |
2681 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2682 | |
0b3f6109 | 2683 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2684 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2685 | S: Maintained |
36b3a96f | 2686 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2687 | |
5efc75e3 PZ |
2688 | DESIGNWARE USB2 DRD IP DRIVER |
2689 | M: Paul Zimmerman <[email protected]> | |
2690 | L: [email protected] | |
2691 | S: Maintained | |
197ba5f4 | 2692 | F: drivers/usb/dwc2/ |
5efc75e3 | 2693 | |
94ab23dd FB |
2694 | DESIGNWARE USB3 DRD IP DRIVER |
2695 | M: Felipe Balbi <[email protected]> | |
2696 | L: [email protected] | |
2697 | L: [email protected] | |
2698 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2699 | S: Maintained | |
2700 | F: drivers/usb/dwc3/ | |
2701 | ||
89d07767 KP |
2702 | DEVICE FREQUENCY (DEVFREQ) |
2703 | M: MyungJoo Ham <[email protected]> | |
2704 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2705 | L: [email protected] |
89d07767 KP |
2706 | S: Maintained |
2707 | F: drivers/devfreq/ | |
2708 | ||
1da177e4 | 2709 | DEVICE NUMBER REGISTRY |
8b58be88 | 2710 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2711 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2712 | S: Maintained |
2713 | ||
e2d1d6c0 | 2714 | DEVICE-MAPPER (LVM) |
854ecaad | 2715 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2716 | M: Mike Snitzer <[email protected]> |
854ecaad | 2717 | M: [email protected] |
e2d1d6c0 RD |
2718 | L: [email protected] |
2719 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2720 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2721 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2722 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2723 | S: Maintained |
679655da JP |
2724 | F: Documentation/device-mapper/ |
2725 | F: drivers/md/dm* | |
854ecaad | 2726 | F: drivers/md/persistent-data/ |
679655da JP |
2727 | F: include/linux/device-mapper.h |
2728 | F: include/linux/dm-*.h | |
8504eed3 | 2729 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2730 | |
599aa697 LL |
2731 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2732 | M: Lidza Louina <[email protected]> | |
2733 | L: [email protected] | |
2734 | S: Maintained | |
2735 | F: drivers/staging/dgnc/ | |
2736 | ||
2737 | DIGI EPCA PCI PRODUCTS | |
2738 | M: Lidza Louina <[email protected]> | |
2739 | L: [email protected] | |
2740 | S: Maintained | |
2741 | F: drivers/staging/dgap/ | |
2742 | ||
335d7c58 | 2743 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2744 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2745 | L: [email protected] |
2746 | S: Maintained | |
2747 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2748 | ||
e7839f25 | 2749 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2750 | M: Eric Paris <[email protected]> |
3c5119c0 | 2751 | S: Maintained |
679655da JP |
2752 | F: Documentation/filesystems/dnotify.txt |
2753 | F: fs/notify/dnotify/ | |
2754 | F: include/linux/dnotify.h | |
1da177e4 LT |
2755 | |
2756 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2757 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2758 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2759 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2760 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2761 | S: Maintained | |
2762 | ||
4480f15b | 2763 | DISKQUOTA |
8b58be88 | 2764 | M: Jan Kara <[email protected]> |
1da177e4 | 2765 | S: Maintained |
679655da JP |
2766 | F: Documentation/filesystems/quota.txt |
2767 | F: fs/quota/ | |
2768 | F: include/linux/quota*.h | |
c117ab84 | 2769 | F: include/uapi/linux/quota*.h |
1da177e4 | 2770 | |
702686ad BT |
2771 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2772 | M: Bernie Thompson <[email protected]> | |
2773 | L: [email protected] | |
2774 | S: Maintained | |
2775 | W: http://plugable.com/category/projects/udlfb/ | |
2776 | F: drivers/video/udlfb.c | |
2777 | F: include/video/udlfb.h | |
2778 | F: Documentation/fb/udlfb.txt | |
2779 | ||
e7839f25 | 2780 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2781 | M: Christine Caulfield <[email protected]> |
2782 | M: David Teigland <[email protected]> | |
a4644184 | 2783 | L: [email protected] |
5be7b50f | 2784 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2785 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2786 | S: Supported |
679655da | 2787 | F: fs/dlm/ |
5be7b50f | 2788 | |
53b6b3e0 SS |
2789 | DMA BUFFER SHARING FRAMEWORK |
2790 | M: Sumit Semwal <[email protected]> | |
2791 | S: Maintained | |
2792 | L: [email protected] | |
2793 | L: [email protected] | |
2794 | L: [email protected] | |
2795 | F: drivers/base/dma-buf* | |
2796 | F: include/linux/dma-buf* | |
2797 | F: Documentation/dma-buf-sharing.txt | |
2798 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2799 | ||
b3e5f263 | 2800 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2801 | M: Vinod Koul <[email protected]> |
ab5f8c6e | 2802 | M: Dan Williams <[email protected]> |
17b59560 VK |
2803 | L: [email protected] |
2804 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2805 | S: Supported |
679655da JP |
2806 | F: drivers/dma/ |
2807 | F: include/linux/dma* | |
5dbd05d4 VK |
2808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2809 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2810 | |
b825037d | 2811 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2812 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2813 | L: [email protected] |
2814 | S: Maintained | |
679655da JP |
2815 | F: Documentation/hwmon/dme1737 |
2816 | F: drivers/hwmon/dme1737.c | |
b825037d | 2817 | |
5b9c9bf6 | 2818 | DOCKING STATION DRIVER |
8b58be88 | 2819 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2820 | L: [email protected] |
8b59a454 | 2821 | S: Supported |
679655da | 2822 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2823 | |
7d2c86b5 | 2824 | DOCUMENTATION |
01358e56 | 2825 | M: Randy Dunlap <[email protected]> |
795fb7e7 | 2826 | L: [email protected] |
01358e56 | 2827 | T: quilt http://www.infradead.org/~rdunlap/Doc/patches/ |
795fb7e7 | 2828 | S: Maintained |
679655da | 2829 | F: Documentation/ |
abbaeff3 | 2830 | |
1da177e4 | 2831 | DOUBLETALK DRIVER |
8b58be88 | 2832 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2833 | L: [email protected] |
2834 | S: Maintained | |
679655da JP |
2835 | F: drivers/char/dtlk.c |
2836 | F: include/linux/dtlk.h | |
1da177e4 | 2837 | |
e2d1d6c0 | 2838 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2839 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2840 | L: [email protected] |
2841 | W: http://www.adaptec.com/ | |
2842 | S: Maintained | |
679655da JP |
2843 | F: drivers/scsi/dpt* |
2844 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2845 | |
b411b363 | 2846 | DRBD DRIVER |
28b8e8d4 JP |
2847 | P: Philipp Reisner |
2848 | P: Lars Ellenberg | |
2849 | M: [email protected] | |
2850 | L: [email protected] | |
2851 | W: http://www.drbd.org | |
2852 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2853 | T: git git://git.drbd.org/drbd-8.3.git | |
2854 | S: Supported | |
2855 | F: drivers/block/drbd/ | |
2856 | F: lib/lru_cache.c | |
2857 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2858 | |
87544653 | 2859 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2860 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2862 | S: Supported |
679655da | 2863 | F: Documentation/kobject.txt |
7cfc51b9 | 2864 | F: drivers/base/ |
679655da | 2865 | F: fs/sysfs/ |
87544653 | 2866 | F: fs/debugfs/ |
679655da | 2867 | F: include/linux/kobj* |
87544653 | 2868 | F: include/linux/debugfs.h |
679655da | 2869 | F: lib/kobj* |
1da177e4 LT |
2870 | |
2871 | DRM DRIVERS | |
8b58be88 | 2872 | M: David Airlie <[email protected]> |
4c6a3999 | 2873 | L: [email protected] |
b0447888 | 2874 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 2875 | S: Maintained |
679655da | 2876 | F: drivers/gpu/drm/ |
850e9411 | 2877 | F: include/drm/ |
c117ab84 | 2878 | F: include/uapi/drm/ |
1da177e4 | 2879 | |
566f5939 AD |
2880 | RADEON DRM DRIVERS |
2881 | M: Alex Deucher <[email protected]> | |
2882 | M: Christian König <[email protected]> | |
2883 | L: [email protected] | |
2884 | T: git git://people.freedesktop.org/~agd5f/linux | |
2885 | S: Supported | |
2886 | F: drivers/gpu/drm/radeon/ | |
2887 | F: include/drm/radeon* | |
2888 | F: include/uapi/drm/radeon* | |
2889 | ||
8daf7473 | 2890 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2891 | M: Daniel Vetter <[email protected]> |
47f95647 | 2892 | M: Jani Nikula <[email protected]> |
362132d2 | 2893 | L: [email protected] |
8daf7473 | 2894 | L: [email protected] |
47f95647 | 2895 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 2896 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 2897 | S: Supported |
14430813 | 2898 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2899 | F: include/drm/i915* |
c117ab84 | 2900 | F: include/uapi/drm/i915* |
8daf7473 | 2901 | |
398a6d4a KP |
2902 | DRM DRIVERS FOR EXYNOS |
2903 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2904 | M: Joonyoung Shim <[email protected]> |
2905 | M: Seung-Woo Kim <[email protected]> | |
2906 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2907 | L: [email protected] |
25a58030 | 2908 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2909 | S: Supported |
14430813 | 2910 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2911 | F: include/drm/exynos* |
c117ab84 | 2912 | F: include/uapi/drm/exynos* |
398a6d4a | 2913 | |
bd3b49f2 | 2914 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2915 | M: Thierry Reding <[email protected]> |
2916 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2917 | L: [email protected] |
2918 | L: [email protected] | |
a5ad7a63 | 2919 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 2920 | S: Supported |
dee8268f | 2921 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 2922 | F: drivers/gpu/host1x/ |
e1e90644 | 2923 | F: include/linux/host1x.h |
a5ad7a63 | 2924 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
2925 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2926 | ||
598df1ac AK |
2927 | DSBR100 USB FM RADIO DRIVER |
2928 | M: Alexey Klimov <[email protected]> | |
2929 | L: [email protected] | |
2930 | T: git git://linuxtv.org/media_tree.git | |
2931 | S: Maintained | |
2932 | F: drivers/media/radio/dsbr100.c | |
2933 | ||
1da177e4 | 2934 | DSCC4 DRIVER |
8b58be88 | 2935 | M: Francois Romieu <[email protected]> |
01f20734 | 2936 | L: [email protected] |
1da177e4 | 2937 | S: Maintained |
679655da | 2938 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2939 | |
91952bc0 AP |
2940 | DVB_USB_AF9015 MEDIA DRIVER |
2941 | M: Antti Palosaari <[email protected]> | |
2942 | L: [email protected] | |
2943 | W: http://linuxtv.org/ | |
2944 | W: http://palosaari.fi/linux/ | |
2945 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2946 | T: git git://linuxtv.org/anttip/media_tree.git | |
2947 | S: Maintained | |
2948 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2949 | ||
2950 | DVB_USB_AF9035 MEDIA DRIVER | |
2951 | M: Antti Palosaari <[email protected]> | |
2952 | L: [email protected] | |
2953 | W: http://linuxtv.org/ | |
2954 | W: http://palosaari.fi/linux/ | |
2955 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2956 | T: git git://linuxtv.org/anttip/media_tree.git | |
2957 | S: Maintained | |
2958 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2959 | ||
2960 | DVB_USB_ANYSEE MEDIA DRIVER | |
2961 | M: Antti Palosaari <[email protected]> | |
2962 | L: [email protected] | |
2963 | W: http://linuxtv.org/ | |
2964 | W: http://palosaari.fi/linux/ | |
2965 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2966 | T: git git://linuxtv.org/anttip/media_tree.git | |
2967 | S: Maintained | |
2968 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2969 | ||
2970 | DVB_USB_AU6610 MEDIA DRIVER | |
2971 | M: Antti Palosaari <[email protected]> | |
2972 | L: [email protected] | |
2973 | W: http://linuxtv.org/ | |
2974 | W: http://palosaari.fi/linux/ | |
2975 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2976 | T: git git://linuxtv.org/anttip/media_tree.git | |
2977 | S: Maintained | |
2978 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2979 | ||
2980 | DVB_USB_CE6230 MEDIA DRIVER | |
2981 | M: Antti Palosaari <[email protected]> | |
2982 | L: [email protected] | |
2983 | W: http://linuxtv.org/ | |
2984 | W: http://palosaari.fi/linux/ | |
2985 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2986 | T: git git://linuxtv.org/anttip/media_tree.git | |
2987 | S: Maintained | |
2988 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2989 | ||
d099dea2 MK |
2990 | DVB_USB_CXUSB MEDIA DRIVER |
2991 | M: Michael Krufky <[email protected]> | |
2992 | L: [email protected] | |
2993 | W: http://linuxtv.org/ | |
2994 | W: http://github.com/mkrufky | |
2995 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2996 | T: git git://linuxtv.org/media_tree.git | |
2997 | S: Maintained | |
9819da66 | 2998 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2999 | |
91952bc0 | 3000 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3001 | M: Antti Palosaari <[email protected]> |
3002 | L: [email protected] | |
3003 | W: http://linuxtv.org/ | |
3004 | W: http://palosaari.fi/linux/ | |
3005 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3006 | T: git git://linuxtv.org/anttip/media_tree.git | |
3007 | S: Maintained | |
91952bc0 | 3008 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3009 | |
5560983b | 3010 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3011 | M: Antti Palosaari <[email protected]> |
3012 | L: [email protected] | |
3013 | W: http://linuxtv.org/ | |
91952bc0 AP |
3014 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3015 | T: git git://linuxtv.org/anttip/media_tree.git | |
3016 | S: Maintained | |
5560983b | 3017 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3018 | |
8856f5f2 MK |
3019 | DVB_USB_MXL111SF MEDIA DRIVER |
3020 | M: Michael Krufky <[email protected]> | |
3021 | L: [email protected] | |
3022 | W: http://linuxtv.org/ | |
3023 | W: http://github.com/mkrufky | |
3024 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3025 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3026 | S: Maintained | |
3027 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3028 | ||
91952bc0 AP |
3029 | DVB_USB_RTL28XXU MEDIA DRIVER |
3030 | M: Antti Palosaari <[email protected]> | |
3031 | L: [email protected] | |
3032 | W: http://linuxtv.org/ | |
3033 | W: http://palosaari.fi/linux/ | |
3034 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3035 | T: git git://linuxtv.org/anttip/media_tree.git | |
3036 | S: Maintained | |
3037 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3038 | ||
3039 | DVB_USB_V2 MEDIA DRIVER | |
3040 | M: Antti Palosaari <[email protected]> | |
3041 | L: [email protected] | |
3042 | W: http://linuxtv.org/ | |
3043 | W: http://palosaari.fi/linux/ | |
3044 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3045 | T: git git://linuxtv.org/anttip/media_tree.git | |
3046 | S: Maintained | |
3047 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3048 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3049 | ||
ac0ac38f | 3050 | DYNAMIC DEBUG |
5c4a97d1 | 3051 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
3052 | S: Maintained |
3053 | F: lib/dynamic_debug.c | |
3054 | F: include/linux/dynamic_debug.h | |
3055 | ||
789c7048 | 3056 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3057 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 3058 | S: Maintained |
df621252 | 3059 | F: drivers/tty/serial/dz.* |
789c7048 | 3060 | |
91952bc0 AP |
3061 | E4000 MEDIA DRIVER |
3062 | M: Antti Palosaari <[email protected]> | |
3063 | L: [email protected] | |
3064 | W: http://linuxtv.org/ | |
3065 | W: http://palosaari.fi/linux/ | |
3066 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3067 | T: git git://linuxtv.org/anttip/media_tree.git | |
3068 | S: Maintained | |
3069 | F: drivers/media/tuners/e4000* | |
3070 | ||
1da177e4 | 3071 | EATA-DMA SCSI DRIVER |
8b58be88 | 3072 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3073 | L: [email protected] |
3074 | L: [email protected] | |
1da177e4 | 3075 | S: Maintained |
679655da | 3076 | F: drivers/scsi/eata* |
1da177e4 LT |
3077 | |
3078 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 3079 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
3080 | L: [email protected] |
3081 | S: Maintained | |
679655da | 3082 | F: drivers/scsi/eata.c |
1da177e4 LT |
3083 | |
3084 | EATA-PIO SCSI DRIVER | |
8b58be88 | 3085 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3086 | L: [email protected] |
3087 | L: [email protected] | |
1da177e4 | 3088 | S: Maintained |
679655da | 3089 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
3090 | |
3091 | EBTABLES | |
8b58be88 | 3092 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 3093 | L: [email protected] |
1da177e4 LT |
3094 | W: http://ebtables.sourceforge.net/ |
3095 | S: Maintained | |
679655da | 3096 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 3097 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 3098 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 3099 | |
91952bc0 AP |
3100 | EC100 MEDIA DRIVER |
3101 | M: Antti Palosaari <[email protected]> | |
3102 | L: [email protected] | |
3103 | W: http://linuxtv.org/ | |
3104 | W: http://palosaari.fi/linux/ | |
3105 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3106 | T: git git://linuxtv.org/anttip/media_tree.git | |
3107 | S: Maintained | |
3108 | F: drivers/media/dvb-frontends/ec100* | |
3109 | ||
237fead6 | 3110 | ECRYPT FILE SYSTEM |
0de9adf2 | 3111 | M: Tyler Hicks <[email protected]> |
a058bfbb | 3112 | L: [email protected] |
24a923e4 | 3113 | W: http://ecryptfs.org |
6dc7516e | 3114 | W: https://launchpad.net/ecryptfs |
237fead6 | 3115 | S: Supported |
679655da JP |
3116 | F: Documentation/filesystems/ecryptfs.txt |
3117 | F: fs/ecryptfs/ | |
237fead6 | 3118 | |
da9bb1d2 | 3119 | EDAC-CORE |
8b58be88 | 3120 | M: Doug Thompson <[email protected]> |
aa15aa0e BP |
3121 | M: Borislav Petkov <[email protected]> |
3122 | M: Mauro Carvalho Chehab <[email protected]> | |
91445c72 | 3123 | L: [email protected] |
0e438e3f | 3124 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3125 | S: Supported |
679655da | 3126 | F: Documentation/edac.txt |
91445c72 | 3127 | F: drivers/edac/ |
679655da | 3128 | F: include/linux/edac.h |
0e438e3f | 3129 | |
c476c23b | 3130 | EDAC-AMD64 |
8b58be88 | 3131 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3132 | M: Borislav Petkov <[email protected]> |
91445c72 | 3133 | L: [email protected] |
c476c23b | 3134 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3135 | S: Maintained |
c476c23b BP |
3136 | F: drivers/edac/amd64_edac* |
3137 | ||
836dae5d RR |
3138 | EDAC-CALXEDA |
3139 | M: Doug Thompson <[email protected]> | |
3140 | M: Robert Richter <[email protected]> | |
3141 | L: [email protected] | |
3142 | W: bluesmoke.sourceforge.net | |
3143 | S: Maintained | |
3144 | F: drivers/edac/highbank* | |
3145 | ||
f65aad41 RB |
3146 | EDAC-CAVIUM |
3147 | M: Ralf Baechle <[email protected]> | |
3148 | M: David Daney <[email protected]> | |
3149 | L: [email protected] | |
3150 | L: [email protected] | |
3151 | W: bluesmoke.sourceforge.net | |
3152 | S: Supported | |
3153 | F: drivers/edac/octeon_edac* | |
3154 | ||
0e438e3f | 3155 | EDAC-E752X |
8b58be88 JP |
3156 | M: Mark Gross <[email protected]> |
3157 | M: Doug Thompson <[email protected]> | |
91445c72 | 3158 | L: [email protected] |
0e438e3f DP |
3159 | W: bluesmoke.sourceforge.net |
3160 | S: Maintained | |
679655da | 3161 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3162 | |
3163 | EDAC-E7XXX | |
8b58be88 | 3164 | M: Doug Thompson <[email protected]> |
91445c72 | 3165 | L: [email protected] |
0e438e3f DP |
3166 | W: bluesmoke.sourceforge.net |
3167 | S: Maintained | |
679655da | 3168 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3169 | |
77c5f5d2 | 3170 | EDAC-GHES |
1b2c14b4 | 3171 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3172 | L: [email protected] |
3173 | W: bluesmoke.sourceforge.net | |
3174 | S: Maintained | |
2caa67a6 | 3175 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3176 | |
6bc78404 | 3177 | EDAC-I82443BXGX |
8b58be88 | 3178 | M: Tim Small <[email protected]> |
91445c72 | 3179 | L: [email protected] |
6bc78404 DT |
3180 | W: bluesmoke.sourceforge.net |
3181 | S: Maintained | |
679655da | 3182 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3183 | |
3184 | EDAC-I3000 | |
8b58be88 | 3185 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3186 | L: [email protected] |
6bc78404 DT |
3187 | W: bluesmoke.sourceforge.net |
3188 | S: Maintained | |
679655da | 3189 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3190 | |
3191 | EDAC-I5000 | |
8b58be88 | 3192 | M: Doug Thompson <[email protected]> |
91445c72 | 3193 | L: [email protected] |
ba9a5918 DT |
3194 | W: bluesmoke.sourceforge.net |
3195 | S: Maintained | |
679655da | 3196 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3197 | |
44c12cb2 | 3198 | EDAC-I5400 |
1b2c14b4 | 3199 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3200 | L: [email protected] |
44c12cb2 MCC |
3201 | W: bluesmoke.sourceforge.net |
3202 | S: Maintained | |
679655da | 3203 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3204 | |
3c9c92b6 | 3205 | EDAC-I7300 |
1b2c14b4 | 3206 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3207 | L: [email protected] |
3208 | W: bluesmoke.sourceforge.net | |
3209 | S: Maintained | |
3210 | F: drivers/edac/i7300_edac.c | |
3211 | ||
67c89316 | 3212 | EDAC-I7CORE |
1b2c14b4 | 3213 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3214 | L: [email protected] |
3215 | W: bluesmoke.sourceforge.net | |
3216 | S: Maintained | |
70aff0ce | 3217 | F: drivers/edac/i7core_edac.c |
67c89316 | 3218 | |
ba9a5918 | 3219 | EDAC-I82975X |
8b58be88 | 3220 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3221 | M: "Arvind R." <[email protected]> |
91445c72 | 3222 | L: [email protected] |
ba9a5918 DT |
3223 | W: bluesmoke.sourceforge.net |
3224 | S: Maintained | |
679655da | 3225 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3226 | |
ccdfb979 JT |
3227 | EDAC-MPC85XX |
3228 | M: Johannes Thumshirn <[email protected]> | |
3229 | L: [email protected] | |
3230 | W: bluesmoke.sourceforge.net | |
3231 | S: Maintained | |
3232 | F: drivers/edac/mpc85xx_edac.[ch] | |
3233 | ||
ba9a5918 | 3234 | EDAC-PASEMI |
8b58be88 | 3235 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3236 | L: [email protected] |
6bc78404 DT |
3237 | W: bluesmoke.sourceforge.net |
3238 | S: Maintained | |
679655da | 3239 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3240 | |
0e438e3f | 3241 | EDAC-R82600 |
8b58be88 | 3242 | M: Tim Small <[email protected]> |
91445c72 | 3243 | L: [email protected] |
0e438e3f DP |
3244 | W: bluesmoke.sourceforge.net |
3245 | S: Maintained | |
679655da | 3246 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3247 | |
4d096ca7 | 3248 | EDAC-SBRIDGE |
1b2c14b4 | 3249 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3250 | L: [email protected] |
3251 | W: bluesmoke.sourceforge.net | |
3252 | S: Maintained | |
3253 | F: drivers/edac/sb_edac.c | |
3254 | ||
af39917d CL |
3255 | EDIROL UA-101/UA-1000 DRIVER |
3256 | M: Clemens Ladisch <[email protected]> | |
3257 | L: [email protected] (moderated for non-subscribers) | |
3258 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3259 | S: Maintained | |
3260 | F: sound/usb/misc/ua101.c | |
3261 | ||
1f7df953 MF |
3262 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3263 | M: Matt Fleming <[email protected]> | |
3264 | L: [email protected] | |
78bef24e | 3265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3266 | S: Maintained |
3267 | F: Documentation/x86/efi-stub.txt | |
3268 | F: arch/ia64/kernel/efi.c | |
3269 | F: arch/x86/boot/compressed/eboot.[ch] | |
3270 | F: arch/x86/include/asm/efi.h | |
3271 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3272 | F: drivers/firmware/efi/* |
1f7df953 MF |
3273 | F: include/linux/efi*.h |
3274 | ||
d68772b7 MF |
3275 | EFI VARIABLE FILESYSTEM |
3276 | M: Matthew Garrett <[email protected]> | |
3277 | M: Jeremy Kerr <[email protected]> | |
3278 | M: Matt Fleming <[email protected]> | |
3279 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3280 | L: [email protected] | |
3281 | S: Maintained | |
3282 | F: fs/efivarfs/ | |
3283 | ||
85a00d9b PJ |
3284 | EFIFB FRAMEBUFFER DRIVER |
3285 | L: [email protected] | |
3286 | M: Peter Jones <[email protected]> | |
3287 | S: Maintained | |
3288 | F: drivers/video/efifb.c | |
3289 | ||
0bee8d28 JT |
3290 | EFS FILESYSTEM |
3291 | W: http://aeschi.ch.eu.org/efs/ | |
3292 | S: Orphan | |
679655da | 3293 | F: fs/efs/ |
0bee8d28 | 3294 | |
4480f15b | 3295 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3296 | M: Hoang-Nam Nguyen <[email protected]> |
3297 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3298 | L: [email protected] |
fab97220 | 3299 | S: Supported |
679655da | 3300 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3301 | |
aa8a9e25 | 3302 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3303 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3304 | L: [email protected] |
3305 | S: Maintained | |
9aa32835 | 3306 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3307 | |
f0319efe | 3308 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3309 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3310 | L: [email protected] |
3311 | W: http://linuxtv.org | |
3312 | T: git git://linuxtv.org/media_tree.git | |
3313 | S: Maintained | |
3314 | F: drivers/media/usb/em28xx/ | |
3315 | ||
3e3a7d66 | 3316 | EMBEDDED LINUX |
8b58be88 JP |
3317 | M: Paul Gortmaker <[email protected]> |
3318 | M: Matt Mackall <[email protected]> | |
3319 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3320 | L: [email protected] |
3321 | S: Maintained | |
3322 | ||
3a1c1d44 | 3323 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3324 | M: James Smart <[email protected]> |
ce00f85c JC |
3325 | L: [email protected] |
3326 | W: http://sourceforge.net/projects/lpfcxxxx | |
3327 | S: Supported | |
679655da | 3328 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3329 | |
5f5bac82 | 3330 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3331 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3332 | S: Maintained |
3333 | F: drivers/misc/cb710/ | |
3334 | F: drivers/mmc/host/cb710-mmc.* | |
3335 | F: include/linux/cb710.h | |
3336 | ||
931e39a1 ML |
3337 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3338 | M: Maxim Levitsky <[email protected]> | |
3339 | S: Maintained | |
2a837449 | 3340 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3341 | |
ec207dcc GS |
3342 | ENHANCED ERROR HANDLING (EEH) |
3343 | M: Gavin Shan <[email protected]> | |
3344 | L: [email protected] | |
3345 | S: Supported | |
3346 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3347 | F: arch/powerpc/kernel/eeh*.c | |
3348 | ||
d5ca9006 | 3349 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3350 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3351 | S: Maintained |
084bad91 | 3352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3353 | F: drivers/video/s1d13xxxfb.c |
3354 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3355 | |
1da177e4 | 3356 | ETHERNET BRIDGE |
adbbf69d | 3357 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3358 | L: [email protected] |
4c325313 | 3359 | L: [email protected] |
c996d8b9 | 3360 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3361 | S: Maintained |
679655da JP |
3362 | F: include/linux/netfilter_bridge/ |
3363 | F: net/bridge/ | |
1da177e4 | 3364 | |
22f08ad9 FF |
3365 | ETHERNET PHY LIBRARY |
3366 | M: Florian Fainelli <[email protected]> | |
3367 | L: [email protected] | |
3368 | S: Maintained | |
3369 | F: include/linux/phy.h | |
3370 | F: include/linux/phy_fixed.h | |
3371 | F: drivers/net/phy/ | |
3372 | F: Documentation/networking/phy.txt | |
3373 | F: drivers/of/of_mdio.c | |
3374 | F: drivers/of/of_net.c | |
3375 | ||
1da177e4 | 3376 | EXT2 FILE SYSTEM |
01971952 | 3377 | M: Jan Kara <[email protected]> |
72be2ccf | 3378 | L: [email protected] |
1da177e4 | 3379 | S: Maintained |
679655da JP |
3380 | F: Documentation/filesystems/ext2.txt |
3381 | F: fs/ext2/ | |
3382 | F: include/linux/ext2* | |
1da177e4 LT |
3383 | |
3384 | EXT3 FILE SYSTEM | |
01971952 | 3385 | M: Jan Kara <[email protected]> |
8b58be88 | 3386 | M: Andrew Morton <[email protected]> |
3c373a5f | 3387 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3388 | L: [email protected] |
3389 | S: Maintained | |
679655da JP |
3390 | F: Documentation/filesystems/ext3.txt |
3391 | F: fs/ext3/ | |
72be2ccf EM |
3392 | |
3393 | EXT4 FILE SYSTEM | |
8b58be88 | 3394 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3395 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3396 | L: [email protected] |
08a225f1 | 3397 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3398 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3399 | S: Maintained |
679655da JP |
3400 | F: Documentation/filesystems/ext4.txt |
3401 | F: fs/ext4/ | |
1da177e4 | 3402 | |
c5532b09 | 3403 | Extended Verification Module (EVM) |
74dd744f MZ |
3404 | M: Mimi Zohar <[email protected]> |
3405 | L: [email protected] | |
3406 | L: [email protected] | |
c5532b09 MZ |
3407 | S: Supported |
3408 | F: security/integrity/evm/ | |
3409 | ||
df6b3cfe MH |
3410 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3411 | M: MyungJoo Ham <[email protected]> | |
3412 | M: Chanwoo Choi <[email protected]> | |
3413 | L: [email protected] | |
81df63a9 | 3414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3415 | S: Maintained |
3416 | F: drivers/extcon/ | |
3417 | F: Documentation/extcon/ | |
3418 | ||
0a79951a JH |
3419 | EXYNOS DP DRIVER |
3420 | M: Jingoo Han <[email protected]> | |
3421 | L: [email protected] | |
3422 | S: Maintained | |
3423 | F: drivers/video/exynos/exynos_dp* | |
3424 | ||
33ad3912 DL |
3425 | EXYNOS MIPI DISPLAY DRIVERS |
3426 | M: Inki Dae <[email protected]> | |
3427 | M: Donghwa Lee <[email protected]> | |
3428 | M: Kyungmin Park <[email protected]> | |
3429 | L: [email protected] | |
3430 | S: Maintained | |
3431 | F: drivers/video/exynos/exynos_mipi* | |
3432 | F: include/video/exynos_mipi* | |
3433 | ||
e53004e2 | 3434 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3435 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3436 | L: [email protected] |
3437 | S: Maintained | |
679655da JP |
3438 | F: Documentation/hwmon/f71805f |
3439 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3440 | |
eea977ed MB |
3441 | FC0011 TUNER DRIVER |
3442 | M: Michael Buesch <[email protected]> | |
3443 | L: [email protected] | |
3444 | S: Maintained | |
ccae7af2 MCC |
3445 | F: drivers/media/tuners/fc0011.h |
3446 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3447 | |
91952bc0 AP |
3448 | FC2580 MEDIA DRIVER |
3449 | M: Antti Palosaari <[email protected]> | |
3450 | L: [email protected] | |
3451 | W: http://linuxtv.org/ | |
3452 | W: http://palosaari.fi/linux/ | |
3453 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3454 | T: git git://linuxtv.org/anttip/media_tree.git | |
3455 | S: Maintained | |
3456 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3457 | |
88b2dbdb EP |
3458 | FANOTIFY |
3459 | M: Eric Paris <[email protected]> | |
3460 | S: Maintained | |
3461 | F: fs/notify/fanotify/ | |
3462 | F: include/linux/fanotify.h | |
c117ab84 | 3463 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3464 | |
1da177e4 | 3465 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3466 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3467 | W: http://www.farsite.co.uk/ |
3468 | S: Supported | |
679655da | 3469 | F: drivers/net/wan/farsync.* |
1da177e4 | 3470 | |
c5408b88 | 3471 | FAULT INJECTION SUPPORT |
8b58be88 | 3472 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3473 | S: Supported |
679655da JP |
3474 | F: Documentation/fault-injection/ |
3475 | F: lib/fault-inject.c | |
c5408b88 | 3476 | |
cae727db RL |
3477 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3478 | M: Robert Love <[email protected]> | |
f4aaea6d | 3479 | L: [email protected] |
cae727db RL |
3480 | W: www.Open-FCoE.org |
3481 | S: Supported | |
3482 | F: drivers/scsi/libfc/ | |
3483 | F: drivers/scsi/fcoe/ | |
3484 | F: include/scsi/fc/ | |
3485 | F: include/scsi/libfc.h | |
3486 | F: include/scsi/libfcoe.h | |
c117ab84 | 3487 | F: include/uapi/scsi/fc/ |
cae727db | 3488 | |
e2d1d6c0 | 3489 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3490 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3491 | L: [email protected] |
1da177e4 | 3492 | S: Maintained |
679655da JP |
3493 | F: include/linux/fcntl.h |
3494 | F: include/linux/fs.h | |
c117ab84 CEB |
3495 | F: include/uapi/linux/fcntl.h |
3496 | F: include/uapi/linux/fs.h | |
679655da JP |
3497 | F: fs/fcntl.c |
3498 | F: fs/locks.c | |
1da177e4 | 3499 | |
e2d1d6c0 | 3500 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3501 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3502 | L: [email protected] |
173acc7c | 3503 | S: Maintained |
679655da | 3504 | F: fs/* |
173acc7c | 3505 | |
b26e0ed4 | 3506 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3507 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3508 | L: [email protected] |
3509 | S: Maintained | |
d5ca6918 JP |
3510 | F: drivers/hwmon/f75375s.c |
3511 | F: include/linux/f75375s.h | |
b26e0ed4 | 3512 | |
a331b0c3 CL |
3513 | FIREWIRE AUDIO DRIVERS |
3514 | M: Clemens Ladisch <[email protected]> | |
3515 | L: [email protected] (moderated for non-subscribers) | |
3516 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3517 | S: Maintained | |
3518 | F: sound/firewire/ | |
3519 | ||
eb86ec51 SR |
3520 | FIREWIRE MEDIA DRIVERS (firedtv) |
3521 | M: Stefan Richter <[email protected]> | |
3522 | L: [email protected] | |
3523 | L: [email protected] | |
3524 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3525 | S: Maintained | |
3526 | F: drivers/media/firewire/ | |
3527 | ||
a511ce33 CB |
3528 | FIREWIRE SBP-2 TARGET |
3529 | M: Chris Boot <[email protected]> | |
3530 | L: [email protected] | |
3531 | L: [email protected] | |
3532 | L: [email protected] | |
3533 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3534 | S: Maintained | |
3535 | F: drivers/target/sbp/ | |
3536 | ||
7d2c86b5 | 3537 | FIREWIRE SUBSYSTEM |
8b58be88 | 3538 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3539 | L: [email protected] |
958a29cb | 3540 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3542 | S: Maintained |
679655da | 3543 | F: drivers/firewire/ |
8f06ce3b SR |
3544 | F: include/linux/firewire.h |
3545 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3546 | F: tools/firewire/ |
e2d1d6c0 RD |
3547 | |
3548 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3549 | M: Ming Lei <[email protected]> |
3550 | L: [email protected] | |
3551 | S: Maintained | |
679655da JP |
3552 | F: Documentation/firmware_class/ |
3553 | F: drivers/base/firmware*.c | |
3554 | F: include/linux/firmware.h | |
e2d1d6c0 | 3555 | |
f730e3dc | 3556 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3557 | M: Joshua Morris <[email protected]> |
3558 | M: Philip Kelleher <[email protected]> | |
3559 | S: Maintained | |
3560 | F: drivers/block/rsxx/ | |
3561 | ||
8206f664 JK |
3562 | FLOPPY DRIVER |
3563 | M: Jiri Kosina <[email protected]> | |
3564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3565 | S: Odd fixes | |
3566 | F: drivers/block/floppy.c | |
3567 | ||
9c9f32ed AR |
3568 | FMC SUBSYSTEM |
3569 | M: Alessandro Rubini <[email protected]> | |
3570 | W: http://www.ohwr.org/projects/fmc-bus | |
3571 | S: Supported | |
3572 | F: drivers/fmc/ | |
3573 | F: include/linux/fmc*.h | |
3574 | F: include/linux/ipmi-fru.h | |
3575 | K: fmc_d.*register | |
3576 | ||
e2d1d6c0 | 3577 | FPU EMULATOR |
8b58be88 | 3578 | M: Bill Metzenthen <[email protected]> |
e769980f | 3579 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3580 | S: Maintained |
679655da | 3581 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3582 | |
3583 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3584 | L: [email protected] |
c173bfac | 3585 | S: Orphan |
679655da JP |
3586 | F: drivers/net/wan/dlci.c |
3587 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3588 | |
3589 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3590 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3591 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3592 | L: [email protected] |
e2d1d6c0 | 3593 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3594 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3596 | S: Maintained |
679655da | 3597 | F: Documentation/fb/ |
d958c62c | 3598 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3599 | F: drivers/video/ |
3600 | F: include/video/ | |
679655da | 3601 | F: include/linux/fb.h |
c117ab84 CEB |
3602 | F: include/uapi/video/ |
3603 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3604 | |
a57c188e | 3605 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3606 | M: Timur Tabi <[email protected]> |
a57c188e | 3607 | L: [email protected] |
c4ef9bc4 | 3608 | S: Maintained |
a57c188e TT |
3609 | F: drivers/video/fsl-diu-fb.* |
3610 | ||
e2d1d6c0 | 3611 | FREESCALE DMA DRIVER |
8b58be88 JP |
3612 | M: Li Yang <[email protected]> |
3613 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3614 | L: [email protected] |
e2d1d6c0 | 3615 | S: Maintained |
679655da | 3616 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3617 | |
3618 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3619 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3620 | L: [email protected] |
846557d3 | 3621 | L: [email protected] |
0d2b405a | 3622 | S: Maintained |
679655da | 3623 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3624 | |
60e8c5ab | 3625 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3626 | M: Sascha Hauer <[email protected]> |
c69f677c | 3627 | L: [email protected] |
efc03ecb | 3628 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3629 | S: Maintained |
bad985a1 | 3630 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3631 | F: drivers/video/imxfb.c |
60e8c5ab | 3632 | |
4689a6b1 | 3633 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3634 | M: Pantelis Antoniou <[email protected]> |
3635 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3636 | L: [email protected] |
4689a6b1 PA |
3637 | L: [email protected] |
3638 | S: Maintained | |
ec21e2ec | 3639 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3640 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3641 | |
d9e9d82c | 3642 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3643 | L: [email protected] |
c4ef9bc4 | 3644 | S: Orphan |
679655da JP |
3645 | F: arch/powerpc/sysdev/qe_lib/ |
3646 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3647 | |
b55ef929 | 3648 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3649 | M: Li Yang <[email protected]> |
6372594a | 3650 | L: [email protected] |
a4724ed6 | 3651 | L: [email protected] |
a7205b30 | 3652 | S: Maintained |
5429c731 | 3653 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3654 | |
beaf53bf | 3655 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3656 | M: Li Yang <[email protected]> |
beaf53bf | 3657 | L: [email protected] |
a4724ed6 | 3658 | L: [email protected] |
beaf53bf | 3659 | S: Maintained |
ec21e2ec | 3660 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3661 | |
d9e9d82c | 3662 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3663 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3664 | L: [email protected] |
c4ef9bc4 | 3665 | S: Maintained |
df621252 | 3666 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3667 | |
3668 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3669 | M: Timur Tabi <[email protected]> |
93711660 | 3670 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3671 | L: [email protected] |
c4ef9bc4 | 3672 | S: Maintained |
69aefcea JP |
3673 | F: sound/soc/fsl/fsl* |
3674 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3675 | |
1da177e4 | 3676 | FREEVXFS FILESYSTEM |
8b58be88 | 3677 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3678 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3679 | S: Maintained | |
679655da | 3680 | F: fs/freevxfs/ |
1da177e4 | 3681 | |
71038f52 | 3682 | FREEZER |
49db1903 | 3683 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 3684 | M: Pavel Machek <[email protected]> |
bf1c138e | 3685 | L: [email protected] |
71038f52 | 3686 | S: Supported |
679655da JP |
3687 | F: Documentation/power/freezing-of-tasks.txt |
3688 | F: include/linux/freezer.h | |
3689 | F: kernel/freezer.c | |
71038f52 | 3690 | |
839a1f79 KRW |
3691 | FRONTSWAP API |
3692 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3693 | L: [email protected] | |
3694 | S: Maintained | |
3695 | F: mm/frontswap.c | |
3696 | F: include/linux/frontswap.h | |
3697 | ||
a5432f5a | 3698 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3699 | M: David Howells <[email protected]> |
a5432f5a DH |
3700 | L: [email protected] |
3701 | S: Supported | |
3702 | F: Documentation/filesystems/caching/ | |
3703 | F: fs/fscache/ | |
3704 | F: include/linux/fscache*.h | |
3705 | ||
f58ad8f5 JK |
3706 | F2FS FILE SYSTEM |
3707 | M: Jaegeuk Kim <[email protected]> | |
3708 | L: [email protected] | |
3709 | W: http://en.wikipedia.org/wiki/F2FS | |
3710 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3711 | S: Maintained | |
3712 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3713 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3714 | F: fs/f2fs/ |
3715 | F: include/linux/f2fs_fs.h | |
3716 | ||
5ab7ffea | 3717 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3718 | M: David Howells <[email protected]> |
1da177e4 | 3719 | S: Maintained |
679655da | 3720 | F: arch/frv/ |
1da177e4 | 3721 | |
20b93734 | 3722 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3723 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3724 | L: [email protected] |
20b93734 | 3725 | S: Maintained |
679655da | 3726 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3727 | |
4da621b6 HK |
3728 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3729 | M: Kyungmin Park <[email protected]> | |
3730 | M: Heungjun Kim <[email protected]> | |
3731 | L: [email protected] | |
3732 | S: Maintained | |
90d72ac6 | 3733 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3734 | F: include/media/m5mols.h |
3735 | ||
2d24c490 RG |
3736 | FUJITSU TABLET EXTRAS |
3737 | M: Robert Gerlach <[email protected]> | |
3738 | L: [email protected] | |
3739 | S: Maintained | |
3740 | F: drivers/platform/x86/fujitsu-tablet.c | |
3741 | ||
04578f17 | 3742 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3743 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3744 | L: [email protected] |
3745 | W: http://fuse.sourceforge.net/ | |
3746 | S: Maintained | |
679655da | 3747 | F: fs/fuse/ |
c117ab84 | 3748 | F: include/uapi/linux/fuse.h |
04578f17 | 3749 | |
1da177e4 | 3750 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3751 | M: Rik Faith <[email protected]> |
1da177e4 | 3752 | L: [email protected] |
baaea1dc | 3753 | S: Odd Fixes (e.g., new signatures) |
679655da | 3754 | F: drivers/scsi/fdomain.* |
1da177e4 | 3755 | |
d8e2162c PO |
3756 | GCOV BASED KERNEL PROFILING |
3757 | M: Peter Oberparleiter <[email protected]> | |
3758 | S: Maintained | |
3759 | F: kernel/gcov/ | |
3760 | F: Documentation/gcov.txt | |
3761 | ||
1da177e4 | 3762 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3763 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3764 | L: [email protected] |
3765 | W: http://www.icp-vortex.com/ | |
3766 | S: Supported | |
679655da | 3767 | F: drivers/scsi/gdt* |
1da177e4 | 3768 | |
3169a1c7 HV |
3769 | GEMTEK FM RADIO RECEIVER DRIVER |
3770 | M: Hans Verkuil <[email protected]> | |
3771 | L: [email protected] | |
3772 | T: git git://linuxtv.org/media_tree.git | |
3773 | W: http://linuxtv.org | |
3774 | S: Maintained | |
3775 | F: drivers/media/radio/radio-gemtek* | |
3776 | ||
1c23af90 | 3777 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3778 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3779 | S: Supported |
679655da JP |
3780 | F: drivers/i2c/busses/i2c-gpio.c |
3781 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3782 | |
92ed1a76 PK |
3783 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3784 | M: Peter Korsgaard <[email protected]> | |
3785 | L: [email protected] | |
3786 | S: Supported | |
e7065e20 JD |
3787 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3788 | F: include/linux/i2c-mux-gpio.h | |
3789 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3790 | |
9251ce95 | 3791 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3792 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3793 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3794 | S: Maintained | |
679655da JP |
3795 | F: drivers/net/wan/c101.c |
3796 | F: drivers/net/wan/hd6457* | |
3797 | F: drivers/net/wan/hdlc* | |
3798 | F: drivers/net/wan/n2.c | |
3799 | F: drivers/net/wan/pc300too.c | |
3800 | F: drivers/net/wan/pci200syn.c | |
3801 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3802 | |
1527aab6 | 3803 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3804 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3805 | L: [email protected] |
3806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3807 | S: Maintained | |
14430813 JP |
3808 | F: include/asm-generic/ |
3809 | F: include/uapi/asm-generic/ | |
1527aab6 | 3810 | |
ff764963 KVA |
3811 | GENERIC PHY FRAMEWORK |
3812 | M: Kishon Vijay Abraham I <[email protected]> | |
3813 | L: [email protected] | |
3814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
3815 | S: Supported | |
3816 | F: drivers/phy/ | |
3817 | F: include/linux/phy/ | |
3818 | ||
ccb86a69 | 3819 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3820 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3821 | L: [email protected] |
ccb86a69 MT |
3822 | S: Supported |
3823 | F: drivers/uio/uio_pci_generic.c | |
3824 | ||
5be7b50f | 3825 | GFS2 FILE SYSTEM |
8b58be88 | 3826 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3827 | L: [email protected] |
5be7b50f | 3828 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3831 | S: Supported |
679655da JP |
3832 | F: Documentation/filesystems/gfs2*.txt |
3833 | F: fs/gfs2/ | |
c117ab84 | 3834 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3835 | |
0a34eb8f | 3836 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3837 | M: Hansjoerg Lipp <[email protected]> |
3838 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3839 | L: [email protected] |
3840 | W: http://gigaset307x.sourceforge.net/ | |
3841 | S: Maintained | |
679655da JP |
3842 | F: Documentation/isdn/README.gigaset |
3843 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3844 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3845 | |
a0dc00b4 | 3846 | GPIO SUBSYSTEM |
e4651a9f | 3847 | M: Linus Walleij <[email protected]> |
f2fa75cd | 3848 | M: Alexandre Courbot <[email protected]> |
d15b7179 | 3849 | L: [email protected] |
f2fa75cd LW |
3850 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
3851 | S: Maintained | |
3852 | F: Documentation/gpio/ | |
a0dc00b4 GL |
3853 | F: drivers/gpio/ |
3854 | F: include/linux/gpio* | |
9b692346 | 3855 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3856 | |
71a6d0af HW |
3857 | GRE DEMULTIPLEXER DRIVER |
3858 | M: Dmitry Kozlov <[email protected]> | |
3859 | L: [email protected] | |
3860 | S: Maintained | |
11c26770 JP |
3861 | F: net/ipv4/gre_demux.c |
3862 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3863 | F: include/net/gre.h |
3864 | ||
d4c41139 KG |
3865 | GRETH 10/100/1G Ethernet MAC device driver |
3866 | M: Kristoffer Glembo <[email protected]> | |
3867 | L: [email protected] | |
3868 | S: Maintained | |
a31a96ad | 3869 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3870 | |
e8deeae2 | 3871 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3872 | M: Frank Zago <[email protected]> |
661263b5 | 3873 | L: [email protected] |
275ffde4 | 3874 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3875 | S: Maintained |
0c0d06ca | 3876 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3877 | |
4b3fa3c4 OL |
3878 | GSPCA GL860 SUBDRIVER |
3879 | M: Olivier Lorin <[email protected]> | |
3880 | L: [email protected] | |
275ffde4 | 3881 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3882 | S: Maintained |
0c0d06ca | 3883 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3884 | |
e8deeae2 | 3885 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3886 | M: Erik Andren <[email protected]> |
661263b5 | 3887 | L: [email protected] |
275ffde4 | 3888 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3889 | S: Maintained |
0c0d06ca | 3890 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3891 | |
3892 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3893 | M: Hans de Goede <[email protected]> |
661263b5 | 3894 | L: [email protected] |
275ffde4 | 3895 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3896 | S: Maintained |
0c0d06ca | 3897 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3898 | |
261982f1 | 3899 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3900 | M: Brian Johnson <[email protected]> |
261982f1 | 3901 | L: [email protected] |
275ffde4 | 3902 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3903 | S: Maintained |
0c0d06ca | 3904 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3905 | |
e8deeae2 | 3906 | GSPCA T613 SUBDRIVER |
8b58be88 | 3907 | M: Leandro Costantino <[email protected]> |
661263b5 | 3908 | L: [email protected] |
275ffde4 | 3909 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3910 | S: Maintained |
0c0d06ca | 3911 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3912 | |
3913 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3914 | M: Hans de Goede <[email protected]> |
661263b5 | 3915 | L: [email protected] |
275ffde4 | 3916 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3917 | S: Maintained |
0c0d06ca | 3918 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3919 | |
584ec979 DB |
3920 | GUID PARTITION TABLE (GPT) |
3921 | M: Davidlohr Bueso <[email protected]> | |
3922 | L: [email protected] | |
3923 | S: Maintained | |
3924 | F: block/partitions/efi.* | |
3925 | ||
aa3c598b EG |
3926 | STK1160 USB VIDEO CAPTURE DRIVER |
3927 | M: Ezequiel Garcia <[email protected]> | |
3928 | L: [email protected] | |
275ffde4 | 3929 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3930 | S: Maintained |
3931 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3932 | |
71a6d0af HW |
3933 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3934 | M: Frank Seidel <[email protected]> | |
3935 | L: [email protected] | |
3936 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3937 | S: Maintained | |
3938 | F: drivers/platform/x86/hdaps.c | |
3939 | ||
48fc9e26 HV |
3940 | HDPVR USB VIDEO ENCODER DRIVER |
3941 | M: Hans Verkuil <[email protected]> | |
3942 | L: [email protected] | |
3943 | T: git git://linuxtv.org/media_tree.git | |
3944 | W: http://linuxtv.org | |
3945 | S: Odd Fixes | |
14430813 | 3946 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 3947 | |
71a6d0af HW |
3948 | HWPOISON MEMORY FAILURE HANDLING |
3949 | M: Andi Kleen <[email protected]> | |
3950 | L: [email protected] | |
3951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3952 | S: Maintained | |
3953 | F: mm/memory-failure.c | |
3954 | F: mm/hwpoison-inject.c | |
3955 | ||
3956 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3957 | L: [email protected] | |
3958 | S: Odd Fixes | |
3959 | F: drivers/tty/hvc/ | |
3960 | ||
5b543965 | 3961 | HARDWARE MONITORING |
7c81c60f | 3962 | M: Jean Delvare <[email protected]> |
ca462085 | 3963 | M: Guenter Roeck <[email protected]> |
5b543965 | 3964 | L: [email protected] |
595142e0 | 3965 | W: http://www.lm-sensors.org/ |
9e012c1a | 3966 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3967 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3968 | S: Maintained |
047f4ec2 | 3969 | F: Documentation/hwmon/ |
679655da | 3970 | F: drivers/hwmon/ |
047f4ec2 | 3971 | F: include/linux/hwmon*.h |
5b543965 | 3972 | |
844dd05f | 3973 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3974 | M: Matt Mackall <[email protected]> |
3975 | M: Herbert Xu <[email protected]> | |
3976 | S: Odd fixes | |
679655da JP |
3977 | F: Documentation/hw_random.txt |
3978 | F: drivers/char/hw_random/ | |
3979 | F: include/linux/hw_random.h | |
844dd05f | 3980 | |
8b37fcfc OBC |
3981 | HARDWARE SPINLOCK CORE |
3982 | M: Ohad Ben-Cohen <[email protected]> | |
3983 | S: Maintained | |
3984 | F: Documentation/hwspinlock.txt | |
3985 | F: drivers/hwspinlock/hwspinlock_* | |
3986 | F: include/linux/hwspinlock.h | |
3987 | ||
1da177e4 | 3988 | HARMONY SOUND DRIVER |
ac6aecbf | 3989 | L: [email protected] |
1da177e4 | 3990 | S: Maintained |
679655da | 3991 | F: sound/parisc/harmony.* |
1da177e4 | 3992 | |
91952bc0 AP |
3993 | HD29L2 MEDIA DRIVER |
3994 | M: Antti Palosaari <[email protected]> | |
3995 | L: [email protected] | |
3996 | W: http://linuxtv.org/ | |
3997 | W: http://palosaari.fi/linux/ | |
3998 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3999 | T: git git://linuxtv.org/anttip/media_tree.git | |
4000 | S: Maintained | |
4001 | F: drivers/media/dvb-frontends/hd29l2* | |
4002 | ||
e2d1d6c0 | 4003 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 4004 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
4005 | L: [email protected] |
4006 | S: Maintained | |
679655da JP |
4007 | F: Documentation/blockdev/cpqarray.txt |
4008 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4009 | |
9257aa49 | 4010 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 4011 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
4012 | L: [email protected] |
4013 | S: Supported | |
4014 | F: Documentation/scsi/hpsa.txt | |
4015 | F: drivers/scsi/hpsa*.[ch] | |
4016 | F: include/linux/cciss*.h | |
c117ab84 | 4017 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4018 | |
e2d1d6c0 | 4019 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 4020 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
4021 | L: [email protected] |
4022 | S: Supported | |
679655da JP |
4023 | F: Documentation/blockdev/cciss.txt |
4024 | F: drivers/block/cciss* | |
4025 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4026 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4027 | |
1da177e4 | 4028 | HFS FILESYSTEM |
6cf515e1 GU |
4029 | L: [email protected] |
4030 | S: Orphan | |
679655da JP |
4031 | F: Documentation/filesystems/hfs.txt |
4032 | F: fs/hfs/ | |
1da177e4 | 4033 | |
ef575f47 GU |
4034 | HFSPLUS FILESYSTEM |
4035 | L: [email protected] | |
4036 | S: Orphan | |
4037 | F: Documentation/filesystems/hfsplus.txt | |
4038 | F: fs/hfsplus/ | |
4039 | ||
1da177e4 | 4040 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4041 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
4042 | L: [email protected] |
4043 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4044 | S: Maintained | |
679655da | 4045 | F: drivers/video/hgafb.c |
1da177e4 | 4046 | |
4480f15b | 4047 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4048 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 4049 | M: Pavel Machek <[email protected]> |
bf1c138e | 4050 | L: [email protected] |
e2d1d6c0 | 4051 | S: Supported |
679655da JP |
4052 | F: arch/x86/power/ |
4053 | F: drivers/base/power/ | |
4054 | F: kernel/power/ | |
4055 | F: include/linux/suspend.h | |
4056 | F: include/linux/freezer.h | |
4057 | F: include/linux/pm.h | |
679655da | 4058 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4059 | |
4ef4caad | 4060 | HID CORE LAYER |
8b58be88 | 4061 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 4062 | L: [email protected] |
54e5881d | 4063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4064 | S: Maintained |
679655da JP |
4065 | F: drivers/hid/ |
4066 | F: include/linux/hid* | |
c117ab84 | 4067 | F: include/uapi/linux/hid* |
4ef4caad | 4068 | |
38bed542 | 4069 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4070 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 4071 | L: [email protected] |
75fc2d37 | 4072 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4073 | S: Maintained |
679655da JP |
4074 | F: Documentation/timers/ |
4075 | F: kernel/hrtimer.c | |
88606e80 TG |
4076 | F: kernel/time/clockevents.c |
4077 | F: kernel/time/tick*.* | |
4078 | F: kernel/time/timer_*.c | |
05ed8490 | 4079 | F: include/linux/clockchips.h |
679655da | 4080 | F: include/linux/hrtimer.h |
38bed542 | 4081 | |
1da177e4 | 4082 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4083 | L: [email protected] |
8b64f2a0 | 4084 | S: Orphan |
679655da JP |
4085 | F: drivers/net/hamradio/dmascc.c |
4086 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4087 | |
ede1e6f8 | 4088 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4089 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
4090 | W: http://www.highpoint-tech.com |
4091 | S: Supported | |
679655da JP |
4092 | F: Documentation/scsi/hptiop.txt |
4093 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4094 | |
1da177e4 | 4095 | HIPPI |
8b58be88 | 4096 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
4097 | L: [email protected] |
4098 | S: Maintained | |
679655da | 4099 | F: include/linux/hippidevice.h |
c117ab84 | 4100 | F: include/uapi/linux/if_hippi.h |
679655da | 4101 | F: net/802/hippi.c |
ff5a3b50 | 4102 | F: drivers/net/hippi/ |
1da177e4 | 4103 | |
ff1d2767 | 4104 | HOST AP DRIVER |
8b58be88 | 4105 | M: Jouni Malinen <[email protected]> |
85d32e7b | 4106 | L: [email protected] (subscribers-only) |
724c6b35 | 4107 | L: [email protected] |
ff1d2767 JM |
4108 | W: http://hostap.epitest.fi/ |
4109 | S: Maintained | |
679655da | 4110 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4111 | |
dd8cd779 | 4112 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4113 | L: [email protected] |
95c70215 | 4114 | S: Orphan |
679655da | 4115 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4116 | |
e2d1d6c0 | 4117 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4118 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4119 | S: Maintained |
7e25d724 | 4120 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4121 | |
7d2c86b5 | 4122 | HPET: High Precision Event Timers driver |
8b58be88 | 4123 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 4124 | S: Maintained |
679655da JP |
4125 | F: Documentation/timers/hpet.txt |
4126 | F: drivers/char/hpet.c | |
4127 | F: include/linux/hpet.h | |
c117ab84 | 4128 | F: include/uapi/linux/hpet.h |
b9b0332f | 4129 | |
e07b5d79 | 4130 | HPET: x86 |
9c5fb19a | 4131 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 4132 | S: Maintained |
679655da JP |
4133 | F: arch/x86/kernel/hpet.c |
4134 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4135 | |
1da177e4 | 4136 | HPFS FILESYSTEM |
8b58be88 | 4137 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
4138 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4139 | S: Maintained | |
679655da | 4140 | F: fs/hpfs/ |
1da177e4 | 4141 | |
3441cded SR |
4142 | HSI SUBSYSTEM |
4143 | M: Sebastian Reichel <[email protected]> | |
4144 | S: Maintained | |
4145 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
4146 | F: drivers/hsi/ | |
4147 | F: include/linux/hsi/ | |
4148 | F: include/uapi/linux/hsi/ | |
4149 | ||
7d2c86b5 | 4150 | HSO 3G MODEM DRIVER |
8b58be88 | 4151 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
4152 | W: http://www.pharscape.org |
4153 | S: Maintained | |
679655da | 4154 | F: drivers/net/usb/hso.c |
11cd29b0 | 4155 | |
19990e29 AB |
4156 | HSR NETWORK PROTOCOL |
4157 | M: Arvid Brodin <[email protected]> | |
4158 | L: [email protected] | |
4159 | S: Maintained | |
4160 | F: net/hsr/ | |
4161 | ||
5a18c343 | 4162 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4163 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
4164 | L: [email protected] |
4165 | S: Maintained | |
679655da | 4166 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4167 | |
1da177e4 | 4168 | HUGETLB FILESYSTEM |
6d49e352 | 4169 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 4170 | S: Maintained |
679655da | 4171 | F: fs/hugetlbfs/ |
1da177e4 | 4172 | |
05183189 S |
4173 | Hyper-V CORE AND DRIVERS |
4174 | M: K. Y. Srinivasan <[email protected]> | |
4175 | M: Haiyang Zhang <[email protected]> | |
4176 | L: [email protected] | |
4177 | S: Maintained | |
a4162747 HZ |
4178 | F: arch/x86/include/asm/mshyperv.h |
4179 | F: arch/x86/include/uapi/asm/hyperv.h | |
4180 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4181 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4182 | F: drivers/hv/ |
f92ca80b | 4183 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4184 | F: drivers/net/hyperv/ |
a4162747 HZ |
4185 | F: drivers/scsi/storvsc_drv.c |
4186 | F: drivers/video/hyperv_fb.c | |
4187 | F: include/linux/hyperv.h | |
4188 | F: tools/hv/ | |
05183189 | 4189 | |
d85c8a6a | 4190 | I2C OVER PARALLEL PORT |
7c81c60f | 4191 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4192 | L: [email protected] |
4193 | S: Maintained | |
4194 | F: Documentation/i2c/busses/i2c-parport | |
4195 | F: Documentation/i2c/busses/i2c-parport-light | |
4196 | F: drivers/i2c/busses/i2c-parport.c | |
4197 | F: drivers/i2c/busses/i2c-parport-light.c | |
4198 | ||
4199 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4200 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4201 | L: [email protected] |
4202 | S: Maintained | |
4203 | F: Documentation/i2c/busses/i2c-ali1535 | |
4204 | F: Documentation/i2c/busses/i2c-ali1563 | |
4205 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4206 | F: Documentation/i2c/busses/i2c-amd756 | |
4207 | F: Documentation/i2c/busses/i2c-amd8111 | |
4208 | F: Documentation/i2c/busses/i2c-i801 | |
4209 | F: Documentation/i2c/busses/i2c-nforce2 | |
4210 | F: Documentation/i2c/busses/i2c-piix4 | |
4211 | F: Documentation/i2c/busses/i2c-sis5595 | |
4212 | F: Documentation/i2c/busses/i2c-sis630 | |
4213 | F: Documentation/i2c/busses/i2c-sis96x | |
4214 | F: Documentation/i2c/busses/i2c-via | |
4215 | F: Documentation/i2c/busses/i2c-viapro | |
4216 | F: drivers/i2c/busses/i2c-ali1535.c | |
4217 | F: drivers/i2c/busses/i2c-ali1563.c | |
4218 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4219 | F: drivers/i2c/busses/i2c-amd756.c | |
4220 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4221 | F: drivers/i2c/busses/i2c-amd8111.c | |
4222 | F: drivers/i2c/busses/i2c-i801.c | |
4223 | F: drivers/i2c/busses/i2c-isch.c | |
4224 | F: drivers/i2c/busses/i2c-nforce2.c | |
4225 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4226 | F: drivers/i2c/busses/i2c-piix4.c | |
4227 | F: drivers/i2c/busses/i2c-sis5595.c | |
4228 | F: drivers/i2c/busses/i2c-sis630.c | |
4229 | F: drivers/i2c/busses/i2c-sis96x.c | |
4230 | F: drivers/i2c/busses/i2c-via.c | |
4231 | F: drivers/i2c/busses/i2c-viapro.c | |
4232 | ||
cb7f07a4 NH |
4233 | I2C/SMBUS ISMT DRIVER |
4234 | M: Seth Heasley <[email protected]> | |
4235 | M: Neil Horman <[email protected]> | |
4236 | L: [email protected] | |
4237 | F: drivers/i2c/busses/i2c-ismt.c | |
4238 | F: Documentation/i2c/busses/i2c-ismt | |
4239 | ||
6ea884db | 4240 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4241 | M: Jean Delvare <[email protected]> |
846557d3 | 4242 | L: [email protected] |
6ea884db | 4243 | S: Maintained |
8547a5bc | 4244 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4245 | |
5b543965 | 4246 | I2C SUBSYSTEM |
14d77c4d | 4247 | M: Wolfram Sang <[email protected]> |
846557d3 | 4248 | L: [email protected] |
a01064a9 | 4249 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4251 | S: Maintained |
679655da JP |
4252 | F: Documentation/i2c/ |
4253 | F: drivers/i2c/ | |
4254 | F: include/linux/i2c.h | |
03b70d62 | 4255 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4256 | F: include/uapi/linux/i2c.h |
4257 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4258 | |
d85c8a6a | 4259 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4260 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4261 | L: [email protected] |
4262 | S: Maintained | |
4263 | F: Documentation/i2c/busses/i2c-taos-evm | |
4264 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4265 | ||
e8c76eed | 4266 | I2C-TINY-USB DRIVER |
8b58be88 | 4267 | M: Till Harbaum <[email protected]> |
846557d3 | 4268 | L: [email protected] |
932d1872 | 4269 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4270 | S: Maintained |
679655da | 4271 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4272 | |
1da177e4 | 4273 | i386 BOOT CODE |
8b58be88 | 4274 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4275 | S: Maintained |
679655da | 4276 | F: arch/x86/boot/ |
1da177e4 LT |
4277 | |
4278 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4279 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4281 | S: Maintained |
4282 | ||
1da177e4 | 4283 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4284 | M: Tony Luck <[email protected]> |
4285 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4286 | L: [email protected] |
6b1c70b1 | 4287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4288 | S: Maintained |
679655da | 4289 | F: arch/ia64/ |
1da177e4 | 4290 | |
956c203c | 4291 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4292 | M: Marcelo Henrique Cerri <[email protected]> |
4293 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4294 | L: [email protected] |
4295 | S: Supported | |
4296 | F: drivers/crypto/nx/ | |
4297 | ||
0e16aafb SJ |
4298 | IBM Power 842 compression accelerator |
4299 | M: Robert Jennings <[email protected]> | |
4300 | S: Supported | |
4301 | F: drivers/crypto/nx/nx-842.c | |
4302 | F: include/linux/nx842.h | |
4303 | ||
1da177e4 | 4304 | IBM Power Linux RAID adapter |
8b58be88 | 4305 | M: Brian King <[email protected]> |
1da177e4 | 4306 | S: Supported |
679655da | 4307 | F: drivers/scsi/ipr.* |
1da177e4 | 4308 | |
9d348af4 SL |
4309 | IBM Power Virtual Ethernet Device Driver |
4310 | M: Santiago Leon <[email protected]> | |
4311 | L: [email protected] | |
4312 | S: Supported | |
9aa32835 | 4313 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4314 | |
4b7652cc RJ |
4315 | IBM Power Virtual SCSI/FC Device Drivers |
4316 | M: Robert Jennings <[email protected]> | |
4317 | L: [email protected] | |
4318 | S: Supported | |
4319 | F: drivers/scsi/ibmvscsi/ | |
4320 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4321 | ||
1da177e4 LT |
4322 | IBM ServeRAID RAID DRIVER |
4323 | P: Jack Hammer | |
8b58be88 | 4324 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4325 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4326 | S: Supported |
679655da | 4327 | F: drivers/scsi/ips.* |
1da177e4 | 4328 | |
6ed9f9c4 PT |
4329 | ICH LPC AND GPIO DRIVER |
4330 | M: Peter Tyser <[email protected]> | |
4331 | S: Maintained | |
4332 | F: drivers/mfd/lpc_ich.c | |
4333 | F: drivers/gpio/gpio-ich.c | |
4334 | ||
1e7106fc | 4335 | IDE SUBSYSTEM |
8b58be88 | 4336 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4337 | L: [email protected] |
8a6e2535 | 4338 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4340 | S: Maintained |
679655da JP |
4341 | F: Documentation/ide/ |
4342 | F: drivers/ide/ | |
4343 | F: include/linux/ide.h | |
1da177e4 | 4344 | |
6cb8c13d IP |
4345 | IDEAPAD LAPTOP EXTRAS DRIVER |
4346 | M: Ike Panhc <[email protected]> | |
4347 | L: [email protected] | |
4348 | W: http://launchpad.net/ideapad-laptop | |
4349 | S: Maintained | |
4350 | F: drivers/platform/x86/ideapad-laptop.c | |
4351 | ||
1ea4c161 AM |
4352 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4353 | M: Andrey Moiseev <[email protected]> | |
4354 | L: [email protected] | |
4355 | W: https://github.com/o2genum/ideapad-slidebar | |
4356 | S: Maintained | |
4357 | F: drivers/input/misc/ideapad_slidebar.c | |
4358 | ||
0f861e8c | 4359 | IDE/ATAPI DRIVERS |
487ba8e8 | 4360 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4361 | L: [email protected] |
c404c199 | 4362 | S: Maintained |
679655da JP |
4363 | F: Documentation/cdrom/ide-cd |
4364 | F: drivers/ide/ide-cd* | |
1da177e4 | 4365 | |
27471fdb | 4366 | IDLE-I7300 |
8b58be88 | 4367 | M: Andy Henroid <[email protected]> |
bf1c138e | 4368 | L: [email protected] |
27471fdb | 4369 | S: Supported |
679655da | 4370 | F: drivers/idle/i7300_idle.c |
27471fdb | 4371 | |
02cf2286 | 4372 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4373 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4374 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4375 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4376 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4378 | S: Maintained |
4379 | F: net/ieee802154/ | |
68653359 | 4380 | F: net/mac802154/ |
251741b1 | 4381 | F: drivers/net/ieee802154/ |
02cf2286 | 4382 | |
40ad4a30 SY |
4383 | IGUANAWORKS USB IR TRANSCEIVER |
4384 | M: Sean Young <[email protected]> | |
4385 | L: [email protected] | |
4386 | S: Maintained | |
4387 | F: drivers/media/rc/iguanair.c | |
4388 | ||
9545f86e | 4389 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4390 | M: Jonathan Cameron <[email protected]> |
9545f86e AP |
4391 | L: [email protected] |
4392 | S: Maintained | |
03e7c251 | 4393 | F: drivers/iio/ |
9545f86e AP |
4394 | F: drivers/staging/iio/ |
4395 | ||
65519263 SG |
4396 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4397 | M: Matthieu Castet <[email protected]> | |
4398 | M: Stanislaw Gruszka <[email protected]> | |
4399 | S: Maintained | |
4400 | F: drivers/usb/atm/ueagle-atm.c | |
4401 | ||
e89ab51f GR |
4402 | INA209 HARDWARE MONITOR DRIVER |
4403 | M: Guenter Roeck <[email protected]> | |
4404 | L: [email protected] | |
4405 | S: Maintained | |
4406 | F: Documentation/hwmon/ina209 | |
4407 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4408 | F: drivers/hwmon/ina209.c | |
4409 | ||
4410 | INA2XX HARDWARE MONITOR DRIVER | |
4411 | M: Guenter Roeck <[email protected]> | |
4412 | L: [email protected] | |
4413 | S: Maintained | |
4414 | F: Documentation/hwmon/ina2xx | |
4415 | F: drivers/hwmon/ina2xx.c | |
4416 | F: include/linux/platform_data/ina2xx.h | |
4417 | ||
14dc124f SIG |
4418 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4419 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4420 | M: Jens Taprogge <[email protected]> | |
4421 | M: Greg Kroah-Hartman <[email protected]> | |
4422 | L: [email protected] | |
4423 | W: http://industrypack.sourceforge.net | |
4424 | S: Maintained | |
4425 | F: drivers/ipack/ | |
4426 | ||
aa7168f4 | 4427 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 4428 | M: Mimi Zohar <[email protected]> |
8912176c | 4429 | M: Dmitry Kasatkin <[email protected]> |
74dd744f MZ |
4430 | L: [email protected] |
4431 | L: [email protected] | |
4432 | L: [email protected] | |
aa7168f4 | 4433 | S: Supported |
679655da | 4434 | F: security/integrity/ima/ |
aa7168f4 | 4435 | |
1da177e4 | 4436 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4437 | L: [email protected] |
843393d3 | 4438 | S: Orphan |
679655da | 4439 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4440 | |
4441 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4442 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4443 | M: Sean Hefty <[email protected]> |
4444 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4445 | L: [email protected] |
605841f5 | 4446 | W: http://www.openfabrics.org/ |
8a6e2535 | 4447 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4449 | S: Supported |
679655da JP |
4450 | F: Documentation/infiniband/ |
4451 | F: drivers/infiniband/ | |
c117ab84 | 4452 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4453 | |
c9f04f58 | 4454 | INOTIFY |
8b58be88 JP |
4455 | M: John McCutchan <[email protected]> |
4456 | M: Robert Love <[email protected]> | |
4457 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4458 | S: Maintained |
679655da JP |
4459 | F: Documentation/filesystems/inotify.txt |
4460 | F: fs/notify/inotify/ | |
4461 | F: include/linux/inotify.h | |
c117ab84 | 4462 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4463 | |
e2d1d6c0 | 4464 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4465 | M: Dmitry Torokhov <[email protected]> |
4466 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4467 | L: [email protected] |
8a6e2535 | 4468 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4470 | S: Maintained |
679655da | 4471 | F: drivers/input/ |
f4eea7e2 | 4472 | F: include/linux/input.h |
c117ab84 | 4473 | F: include/uapi/linux/input.h |
f4eea7e2 | 4474 | F: include/linux/input/ |
e2d1d6c0 | 4475 | |
3267a87f HR |
4476 | INPUT MULTITOUCH (MT) PROTOCOL |
4477 | M: Henrik Rydberg <[email protected]> | |
4478 | L: [email protected] | |
7f9c2454 | 4479 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4480 | S: Maintained |
4481 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4482 | F: drivers/input/input-mt.c |
3267a87f HR |
4483 | K: \b(ABS|SYN)_MT_ |
4484 | ||
4ac13e17 DJ |
4485 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4486 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4487 | M: Lukasz Dorau <[email protected]> |
4488 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4489 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4490 | L: [email protected] |
7106891a DJ |
4491 | T: git git://git.code.sf.net/p/intel-sas/isci |
4492 | S: Supported | |
4ac13e17 | 4493 | F: drivers/scsi/isci/ |
4ac13e17 | 4494 | |
26717172 LB |
4495 | INTEL IDLE DRIVER |
4496 | M: Len Brown <[email protected]> | |
bf1c138e | 4497 | L: [email protected] |
08deed1e | 4498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4499 | S: Supported |
4500 | F: drivers/idle/intel_idle.c | |
4501 | ||
9eb8ef74 | 4502 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4503 | M: Maik Broemme <[email protected]> |
c69f677c | 4504 | L: [email protected] |
ce00f85c | 4505 | S: Maintained |
679655da JP |
4506 | F: Documentation/fb/intelfb.txt |
4507 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4508 | |
1da177e4 | 4509 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4510 | M: Antonino Daplas <[email protected]> |
c69f677c | 4511 | L: [email protected] |
ce00f85c | 4512 | S: Maintained |
679655da | 4513 | F: drivers/video/i810/ |
1da177e4 | 4514 | |
f4a9bc4c | 4515 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4516 | M: Sujith Thomas <[email protected]> |
d0944853 | 4517 | L: [email protected] |
5ca92bd9 | 4518 | W: https://01.org/linux-acpi |
f4a9bc4c | 4519 | S: Supported |
679655da | 4520 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4521 | |
1da177e4 | 4522 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4523 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4524 | S: Maintained |
679655da JP |
4525 | F: arch/x86/kernel/microcode_core.c |
4526 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4527 | |
248a9dc3 | 4528 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4529 | M: Dan Williams <[email protected]> |
18ebd564 DJ |
4530 | M: Dave Jiang <[email protected]> |
4531 | L: [email protected] | |
4532 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4533 | S: Supported | |
679655da | 4534 | F: drivers/dma/ioat* |
248a9dc3 | 4535 | |
6c8909b4 | 4536 | INTEL IOMMU (VT-d) |
8b58be88 | 4537 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4538 | L: [email protected] |
54e5881d | 4539 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4540 | S: Supported |
3fb39615 | 4541 | F: drivers/iommu/intel-iommu.c |
679655da | 4542 | F: include/linux/intel-iommu.h |
6c8909b4 | 4543 | |
b3e5f263 | 4544 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4545 | M: Dan Williams <[email protected]> |
1dd8372d | 4546 | S: Odd fixes |
679655da | 4547 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4548 | |
9251ce95 | 4549 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4550 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4551 | S: Maintained |
679655da JP |
4552 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4553 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4554 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4555 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4556 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4557 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4558 | |
844dd05f | 4559 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4560 | M: Deepak Saxena <[email protected]> |
844dd05f | 4561 | S: Maintained |
679655da | 4562 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4563 | |
105bf2fe | 4564 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4565 | M: Jeff Kirsher <[email protected]> |
4566 | M: Jesse Brandeburg <[email protected]> | |
4567 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4568 | M: Carolyn Wyborny <[email protected]> |
4569 | M: Don Skidmore <[email protected]> | |
4570 | M: Greg Rose <[email protected]> | |
0d164401 | 4571 | M: Alex Duyck <[email protected]> |
8b58be88 | 4572 | M: John Ronciak <[email protected]> |
105bf2fe | 4573 | M: Mitch Williams <[email protected]> |
fcad3e6b | 4574 | M: Linux NICS <[email protected]> |
dcd01faf | 4575 | L: [email protected] |
f6fde11a | 4576 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4577 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4580 | S: Supported |
0d164401 JK |
4581 | F: Documentation/networking/e100.txt |
4582 | F: Documentation/networking/e1000.txt | |
4583 | F: Documentation/networking/e1000e.txt | |
4584 | F: Documentation/networking/igb.txt | |
4585 | F: Documentation/networking/igbvf.txt | |
4586 | F: Documentation/networking/ixgb.txt | |
4587 | F: Documentation/networking/ixgbe.txt | |
4588 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4589 | F: Documentation/networking/i40e.txt |
105bf2fe | 4590 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4591 | F: drivers/net/ethernet/intel/ |
bc90d291 | 4592 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 4593 | |
0963d59b LW |
4594 | INTEL-MID GPIO DRIVER |
4595 | M: David Cohen <[email protected]> | |
4596 | L: [email protected] | |
4597 | S: Maintained | |
4598 | F: drivers/gpio/gpio-intel-mid.c | |
4599 | ||
ca907a90 SY |
4600 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4601 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4602 | L: [email protected] |
ca907a90 | 4603 | S: Maintained |
679655da | 4604 | F: Documentation/networking/README.ipw2100 |
679655da | 4605 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4606 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4607 | |
4bd96a7a | 4608 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4609 | M: Richard L Maliszewski <[email protected]> |
4610 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4611 | M: Shane Wang <[email protected]> |
4612 | L: [email protected] | |
4613 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4614 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4615 | S: Supported |
4616 | F: Documentation/intel_txt.txt | |
4617 | F: include/linux/tboot.h | |
4618 | F: arch/x86/kernel/tboot.c | |
4619 | ||
8a70da82 | 4620 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4621 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4622 | M: [email protected] |
4623 | L: [email protected] | |
4624 | S: Supported | |
4625 | W: http://linuxwimax.org | |
679655da JP |
4626 | F: Documentation/wimax/README.i2400m |
4627 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4628 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4629 | |
1c0ce89c SG |
4630 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4631 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4632 | L: [email protected] |
1c0ce89c | 4633 | S: Supported |
efa3144e WYG |
4634 | F: drivers/net/wireless/iwlegacy/ |
4635 | ||
b481de9c | 4636 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4637 | M: Johannes Berg <[email protected]> |
6161b02b | 4638 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 4639 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4640 | L: [email protected] |
b481de9c | 4641 | W: http://intellinuxwireless.org |
b62ff718 | 4642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4643 | S: Supported |
679655da | 4644 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4645 | |
de8fe023 TW |
4646 | INTEL MANAGEMENT ENGINE (mei) |
4647 | M: Tomas Winkler <[email protected]> | |
4648 | L: [email protected] | |
4649 | S: Supported | |
c117ab84 | 4650 | F: include/uapi/linux/mei.h |
de8fe023 | 4651 | F: drivers/misc/mei/* |
e07950a1 | 4652 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4653 | |
cb109a0e | 4654 | IOC3 ETHERNET DRIVER |
8b58be88 | 4655 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4656 | L: [email protected] |
4657 | S: Maintained | |
8862bf1e | 4658 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4659 | |
cb109a0e | 4660 | IOC3 SERIAL DRIVER |
8b58be88 | 4661 | M: Pat Gefre <[email protected]> |
d39e0721 | 4662 | L: [email protected] |
cb109a0e | 4663 | S: Maintained |
df621252 | 4664 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4665 | |
0b6e8569 SW |
4666 | IOMMU DRIVERS |
4667 | M: Joerg Roedel <[email protected]> | |
4668 | L: [email protected] | |
4669 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4670 | S: Maintained | |
4671 | F: drivers/iommu/ | |
4672 | ||
4480f15b | 4673 | IP MASQUERADING |
8b58be88 | 4674 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4675 | S: Maintained |
679655da | 4676 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4677 | |
1202d6ff | 4678 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4679 | M: Francois Romieu <[email protected]> |
4680 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4681 | L: [email protected] |
4682 | S: Maintained | |
7443713a | 4683 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4684 | |
4480f15b | 4685 | IPATH DRIVER |
8473c603 | 4686 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4687 | L: [email protected] |
52a09a04 | 4688 | S: Maintained |
679655da | 4689 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4690 | |
4409ebe9 | 4691 | IPMI SUBSYSTEM |
8b58be88 | 4692 | M: Corey Minyard <[email protected]> |
b0c90653 | 4693 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4694 | W: http://openipmi.sourceforge.net/ |
4695 | S: Supported | |
679655da JP |
4696 | F: Documentation/IPMI.txt |
4697 | F: drivers/char/ipmi/ | |
4698 | F: include/linux/ipmi* | |
c117ab84 | 4699 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4700 | |
e2d1d6c0 | 4701 | IPS SCSI RAID DRIVER |
8b58be88 | 4702 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4703 | L: [email protected] |
4704 | W: http://www.adaptec.com/ | |
4705 | S: Maintained | |
679655da | 4706 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4707 | |
4708 | IPVS | |
8b58be88 JP |
4709 | M: Wensong Zhang <[email protected]> |
4710 | M: Simon Horman <[email protected]> | |
4711 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4712 | L: [email protected] |
e2d1d6c0 | 4713 | L: [email protected] |
1da177e4 | 4714 | S: Maintained |
679655da | 4715 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4716 | F: include/net/ip_vs.h |
c117ab84 | 4717 | F: include/uapi/linux/ip_vs.h |
679655da | 4718 | F: net/netfilter/ipvs/ |
1da177e4 | 4719 | |
e7839f25 | 4720 | IPWIRELESS DRIVER |
8b58be88 JP |
4721 | M: Jiri Kosina <[email protected]> |
4722 | M: David Sterba <[email protected]> | |
92094aa0 | 4723 | S: Odd Fixes |
282361a0 | 4724 | F: drivers/tty/ipwireless/ |
099dc4fb | 4725 | |
e2d1d6c0 | 4726 | IPX NETWORK LAYER |
8b58be88 | 4727 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4728 | L: [email protected] |
4729 | S: Maintained | |
679655da | 4730 | F: include/net/ipx.h |
c117ab84 | 4731 | F: include/uapi/linux/ipx.h |
679655da | 4732 | F: net/ipx/ |
e2d1d6c0 | 4733 | |
1da177e4 | 4734 | IRDA SUBSYSTEM |
8b58be88 | 4735 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4736 | L: [email protected] (subscribers-only) |
ced649ea | 4737 | L: [email protected] |
1da177e4 | 4738 | W: http://irda.sourceforge.net/ |
f353976d | 4739 | S: Maintained |
e0057975 | 4740 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4741 | F: Documentation/networking/irda.txt |
4742 | F: drivers/net/irda/ | |
4743 | F: include/net/irda/ | |
4744 | F: net/irda/ | |
1da177e4 | 4745 | |
a800c7cc TG |
4746 | IRQ SUBSYSTEM |
4747 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 4748 | L: [email protected] |
a800c7cc | 4749 | S: Maintained |
75fc2d37 | 4750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4751 | F: kernel/irq/ |
edd96900 | 4752 | F: drivers/irqchip/ |
a800c7cc | 4753 | |
7ab3a837 GL |
4754 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4755 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4756 | S: Maintained |
4757 | F: Documentation/IRQ-domain.txt | |
4758 | F: include/linux/irqdomain.h | |
4759 | F: kernel/irq/irqdomain.c | |
4760 | ||
e2d1d6c0 | 4761 | ISAPNP |
8b58be88 | 4762 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4763 | S: Maintained |
679655da JP |
4764 | F: Documentation/isapnp.txt |
4765 | F: drivers/pnp/isapnp/ | |
4766 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4767 | |
d39b8420 HV |
4768 | ISA RADIO MODULE |
4769 | M: Hans Verkuil <[email protected]> | |
4770 | L: [email protected] | |
4771 | T: git git://linuxtv.org/media_tree.git | |
4772 | W: http://linuxtv.org | |
4773 | S: Maintained | |
4774 | F: drivers/media/radio/radio-isa* | |
4775 | ||
71a6d0af HW |
4776 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4777 | M: Peter Jones <[email protected]> | |
4778 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4779 | S: Maintained | |
4780 | F: drivers/firmware/iscsi_ibft* | |
4781 | ||
14816b1e | 4782 | ISCSI |
8b58be88 | 4783 | M: Mike Christie <[email protected]> |
14816b1e MC |
4784 | L: [email protected] |
4785 | W: www.open-iscsi.org | |
54e5881d | 4786 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4787 | S: Maintained |
679655da JP |
4788 | F: drivers/scsi/*iscsi* |
4789 | F: include/scsi/*iscsi* | |
14816b1e | 4790 | |
1e65eb42 OG |
4791 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4792 | M: Or Gerlitz <[email protected]> | |
4793 | M: Roi Dayan <[email protected]> | |
4794 | L: [email protected] | |
4795 | S: Supported | |
4796 | W: http://www.openfabrics.org | |
4797 | W: www.open-iscsi.org | |
4798 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4799 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4800 | |
1da177e4 | 4801 | ISDN SUBSYSTEM |
8b58be88 | 4802 | M: Karsten Keil <[email protected]> |
d5d52273 | 4803 | L: [email protected] (subscribers-only) |
3da0ae62 | 4804 | L: [email protected] |
1da177e4 | 4805 | W: http://www.isdn4linux.de |
54e5881d | 4806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4807 | S: Maintained |
679655da JP |
4808 | F: Documentation/isdn/ |
4809 | F: drivers/isdn/ | |
4810 | F: include/linux/isdn.h | |
4811 | F: include/linux/isdn/ | |
c117ab84 CEB |
4812 | F: include/uapi/linux/isdn.h |
4813 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4814 | |
4815 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4816 | M: Armin Schindler <[email protected]> |
d5d52273 | 4817 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4818 | W: http://www.melware.de |
4819 | S: Maintained | |
679655da | 4820 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4821 | |
d624870f | 4822 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 4823 | M: Jean Delvare <[email protected]> |
d624870f JD |
4824 | L: [email protected] |
4825 | S: Maintained | |
4826 | F: Documentation/hwmon/it87 | |
4827 | F: drivers/hwmon/it87.c | |
4828 | ||
68620bdd MP |
4829 | IT913X MEDIA DRIVER |
4830 | M: Malcolm Priestley <[email protected]> | |
4831 | L: [email protected] | |
4832 | W: http://linuxtv.org/ | |
4833 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4834 | S: Maintained | |
4835 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4836 | ||
4837 | IT913X FE MEDIA DRIVER | |
4838 | M: Malcolm Priestley <[email protected]> | |
4839 | L: [email protected] | |
4840 | W: http://linuxtv.org/ | |
4841 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4842 | S: Maintained | |
4843 | F: drivers/media/dvb-frontends/it913x-fe* | |
4844 | ||
d7104bff AP |
4845 | IT913X MEDIA DRIVER |
4846 | M: Antti Palosaari <[email protected]> | |
4847 | L: [email protected] | |
4848 | W: http://linuxtv.org/ | |
4849 | W: http://palosaari.fi/linux/ | |
4850 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4851 | T: git git://linuxtv.org/anttip/media_tree.git | |
4852 | S: Maintained | |
9d9fb744 | 4853 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4854 | |
91821ff3 | 4855 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4856 | M: Andy Walls <[email protected]> |
c4240509 | 4857 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4858 | L: [email protected] |
275ffde4 | 4859 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4860 | W: http://www.ivtvdriver.org |
4861 | S: Maintained | |
679655da | 4862 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4863 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4864 | F: include/uapi/linux/ivtv* |
91821ff3 | 4865 | |
68620bdd MP |
4866 | IX2505V MEDIA DRIVER |
4867 | M: Malcolm Priestley <[email protected]> | |
4868 | L: [email protected] | |
4869 | W: http://linuxtv.org/ | |
4870 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4871 | S: Maintained | |
4872 | F: drivers/media/dvb-frontends/ix2505v* | |
4873 | ||
4453d736 GR |
4874 | JC42.4 TEMPERATURE SENSOR DRIVER |
4875 | M: Guenter Roeck <[email protected]> | |
4876 | L: [email protected] | |
4877 | S: Maintained | |
4878 | F: drivers/hwmon/jc42.c | |
4879 | F: Documentation/hwmon/jc42 | |
4880 | ||
e2d1d6c0 | 4881 | JFS FILESYSTEM |
3256f80f | 4882 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4883 | L: [email protected] |
4884 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4885 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4886 | S: Maintained |
679655da JP |
4887 | F: Documentation/filesystems/jfs.txt |
4888 | F: fs/jfs/ | |
e2d1d6c0 | 4889 | |
95252236 | 4890 | JME NETWORK DRIVER |
8b58be88 | 4891 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4892 | L: [email protected] |
4893 | S: Maintained | |
63d24a0e | 4894 | F: drivers/net/ethernet/jme.* |
95252236 | 4895 | |
1da177e4 | 4896 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4897 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4898 | L: [email protected] |
4899 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4900 | S: Maintained |
679655da | 4901 | F: fs/jffs2/ |
c117ab84 | 4902 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4903 | |
de456d37 | 4904 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4905 | M: Andrew Morton <[email protected]> |
19003c18 | 4906 | M: Jan Kara <[email protected]> |
72be2ccf | 4907 | L: [email protected] |
ae0718f8 | 4908 | S: Maintained |
d183e11a | 4909 | F: fs/jbd/ |
d183e11a TT |
4910 | F: include/linux/jbd.h |
4911 | ||
4912 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4913 | M: "Theodore Ts'o" <[email protected]> | |
4914 | L: [email protected] | |
4915 | S: Maintained | |
4916 | F: fs/jbd2/ | |
4917 | F: include/linux/jbd2.h | |
ae0718f8 | 4918 | |
fd8b6cb4 | 4919 | JSM Neo PCI based serial card |
9d141cb9 | 4920 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4921 | L: [email protected] |
4922 | S: Maintained | |
df621252 | 4923 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4924 | |
af39917d CL |
4925 | K10TEMP HARDWARE MONITORING DRIVER |
4926 | M: Clemens Ladisch <[email protected]> | |
4927 | L: [email protected] | |
4928 | S: Maintained | |
4929 | F: Documentation/hwmon/k10temp | |
4930 | F: drivers/hwmon/k10temp.c | |
4931 | ||
4660cb35 | 4932 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4933 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4934 | L: [email protected] |
ae0718f8 | 4935 | S: Maintained |
679655da JP |
4936 | F: Documentation/hwmon/k8temp |
4937 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4938 | |
c63a1642 | 4939 | KTAP |
687b63a3 | 4940 | M: Jovi Zhangwei <[email protected]> |
c63a1642 JZ |
4941 | W: http://www.ktap.org |
4942 | L: [email protected] | |
4943 | S: Maintained | |
4944 | F: drivers/staging/ktap/ | |
4945 | ||
1da177e4 | 4946 | KCONFIG |
5eb1f99e | 4947 | M: "Yann E. MORIN" <[email protected]> |
347d12d7 | 4948 | L: [email protected] |
cea8321c | 4949 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 4950 | S: Maintained |
679655da JP |
4951 | F: Documentation/kbuild/kconfig-language.txt |
4952 | F: scripts/kconfig/ | |
1da177e4 | 4953 | |
ea6c2089 | 4954 | KDUMP |
8b58be88 JP |
4955 | M: Vivek Goyal <[email protected]> |
4956 | M: Haren Myneni <[email protected]> | |
34633993 | 4957 | L: [email protected] |
ea6c2089 VG |
4958 | W: http://lse.sourceforge.net/kdump/ |
4959 | S: Maintained | |
80811493 | 4960 | F: Documentation/kdump/ |
ea6c2089 | 4961 | |
f41bf02f HV |
4962 | KEENE FM RADIO TRANSMITTER DRIVER |
4963 | M: Hans Verkuil <[email protected]> | |
4964 | L: [email protected] | |
4965 | T: git git://linuxtv.org/media_tree.git | |
4966 | W: http://linuxtv.org | |
4967 | S: Maintained | |
4968 | F: drivers/media/radio/radio-keene* | |
4969 | ||
1da177e4 | 4970 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4971 | M: Ian Kent <[email protected]> |
f694fc97 | 4972 | L: [email protected] |
1da177e4 | 4973 | S: Maintained |
679655da | 4974 | F: fs/autofs4/ |
1da177e4 | 4975 | |
70fb7ba6 | 4976 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4977 | M: Michal Marek <[email protected]> |
08deed1e JP |
4978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4980 | L: [email protected] |
5ce45962 | 4981 | S: Maintained |
679655da JP |
4982 | F: Documentation/kbuild/ |
4983 | F: Makefile | |
4984 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4985 | F: scripts/basic/ |
4986 | F: scripts/mk* | |
4987 | F: scripts/package/ | |
1da177e4 LT |
4988 | |
4989 | KERNEL JANITORS | |
c3000e03 | 4990 | L: [email protected] |
10466f5a | 4991 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4992 | S: Odd Fixes |
1da177e4 | 4993 | |
e8b43555 | 4994 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4995 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4996 | L: [email protected] |
1da177e4 | 4997 | W: http://nfs.sourceforge.net/ |
98fac23f | 4998 | S: Supported |
679655da JP |
4999 | F: fs/nfsd/ |
5000 | F: include/linux/nfsd/ | |
c117ab84 | 5001 | F: include/uapi/linux/nfsd/ |
679655da JP |
5002 | F: fs/lockd/ |
5003 | F: fs/nfs_common/ | |
5004 | F: net/sunrpc/ | |
5005 | F: include/linux/lockd/ | |
5006 | F: include/linux/sunrpc/ | |
c117ab84 | 5007 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5008 | |
426d62e2 | 5009 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5010 | M: Gleb Natapov <[email protected]> |
c93a64fe | 5011 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 5012 | L: [email protected] |
e3e58478 | 5013 | W: http://www.linux-kvm.org |
a94b40a6 | 5014 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5015 | S: Supported |
c93a64fe PB |
5016 | F: Documentation/*/kvm*.txt |
5017 | F: Documentation/virtual/kvm/ | |
679655da JP |
5018 | F: arch/*/kvm/ |
5019 | F: arch/*/include/asm/kvm* | |
5020 | F: include/linux/kvm* | |
c117ab84 | 5021 | F: include/uapi/linux/kvm* |
679655da | 5022 | F: virt/kvm/ |
426d62e2 | 5023 | |
ad8003d3 | 5024 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5025 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
5026 | L: [email protected] |
5027 | W: http://kvm.qumranet.com | |
7de609c8 | 5028 | S: Maintained |
679655da | 5029 | F: arch/x86/include/asm/svm.h |
679655da | 5030 | F: arch/x86/kvm/svm.c |
426d62e2 | 5031 | |
513014b7 | 5032 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5033 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
5034 | L: [email protected] |
5035 | W: http://kvm.qumranet.com | |
6a7f972d | 5036 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5037 | S: Supported |
679655da JP |
5038 | F: arch/powerpc/include/asm/kvm* |
5039 | F: arch/powerpc/kvm/ | |
513014b7 | 5040 | |
1fc9d2bf | 5041 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 5042 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
5043 | L: [email protected] |
5044 | W: http://kvm.qumranet.com | |
920ed9f1 | 5045 | S: Supported |
679655da JP |
5046 | F: Documentation/ia64/kvm.txt |
5047 | F: arch/ia64/include/asm/kvm* | |
5048 | F: arch/ia64/kvm/ | |
920ed9f1 | 5049 | |
85f8fffe | 5050 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5051 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 5052 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
5053 | M: [email protected] |
5054 | L: [email protected] | |
5055 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5056 | S: Supported | |
679655da JP |
5057 | F: Documentation/s390/kvm.txt |
5058 | F: arch/s390/include/asm/kvm* | |
80811493 | 5059 | F: arch/s390/kvm/ |
a968cd3e | 5060 | F: drivers/s390/kvm/ |
85f8fffe | 5061 | |
a749474d | 5062 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5063 | M: Christoffer Dall <[email protected]> |
a749474d CD |
5064 | L: [email protected] |
5065 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5066 | S: Supported |
a749474d CD |
5067 | F: arch/arm/include/uapi/asm/kvm* |
5068 | F: arch/arm/include/asm/kvm* | |
5069 | F: arch/arm/kvm/ | |
5070 | ||
6394a3ec MZ |
5071 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5072 | M: Marc Zyngier <[email protected]> | |
5073 | L: [email protected] (moderated for non-subscribers) | |
5074 | L: [email protected] | |
5075 | S: Maintained | |
5076 | F: arch/arm64/include/uapi/asm/kvm* | |
5077 | F: arch/arm64/include/asm/kvm* | |
5078 | F: arch/arm64/kvm/ | |
5079 | ||
dc009d92 | 5080 | KEXEC |
8b58be88 | 5081 | M: Eric Biederman <[email protected]> |
2f327dad | 5082 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5083 | L: [email protected] |
dc009d92 | 5084 | S: Maintained |
679655da | 5085 | F: include/linux/kexec.h |
c117ab84 | 5086 | F: include/uapi/linux/kexec.h |
679655da | 5087 | F: kernel/kexec.c |
dc009d92 | 5088 | |
e971461f DH |
5089 | KEYS/KEYRINGS: |
5090 | M: David Howells <[email protected]> | |
5091 | L: [email protected] | |
5092 | S: Maintained | |
d410fa4e | 5093 | F: Documentation/security/keys.txt |
e971461f DH |
5094 | F: include/linux/key.h |
5095 | F: include/linux/key-type.h | |
5096 | F: include/keys/ | |
5097 | F: security/keys/ | |
5098 | ||
7f3c68be | 5099 | KEYS-TRUSTED |
74dd744f MZ |
5100 | M: David Safford <[email protected]> |
5101 | M: Mimi Zohar <[email protected]> | |
7f3c68be MZ |
5102 | L: [email protected] |
5103 | L: [email protected] | |
5104 | S: Supported | |
d410fa4e | 5105 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5106 | F: include/keys/trusted-type.h |
5107 | F: security/keys/trusted.c | |
5108 | F: security/keys/trusted.h | |
5109 | ||
5110 | KEYS-ENCRYPTED | |
74dd744f MZ |
5111 | M: Mimi Zohar <[email protected]> |
5112 | M: David Safford <[email protected]> | |
7f3c68be MZ |
5113 | L: [email protected] |
5114 | L: [email protected] | |
5115 | S: Supported | |
d410fa4e | 5116 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5117 | F: include/keys/encrypted-type.h |
19c90aa6 | 5118 | F: security/keys/encrypted-keys/ |
7f3c68be | 5119 | |
5b778dad | 5120 | KGDB / KDB /debug_core |
8b58be88 | 5121 | M: Jason Wessel <[email protected]> |
4063eb5f | 5122 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5123 | L: [email protected] |
5124 | S: Maintained | |
679655da JP |
5125 | F: Documentation/DocBook/kgdb.tmpl |
5126 | F: drivers/misc/kgdbts.c | |
df621252 | 5127 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5128 | F: include/linux/kdb.h |
679655da | 5129 | F: include/linux/kgdb.h |
4063eb5f | 5130 | F: kernel/debug/ |
e3e2aaf7 | 5131 | |
456db8cc | 5132 | KMEMCHECK |
8b58be88 | 5133 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 5134 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 5135 | S: Maintained |
410d7a97 JP |
5136 | F: Documentation/kmemcheck.txt |
5137 | F: arch/x86/include/asm/kmemcheck.h | |
5138 | F: arch/x86/mm/kmemcheck/ | |
5139 | F: include/linux/kmemcheck.h | |
5140 | F: mm/kmemcheck.c | |
b9ce08c0 | 5141 | |
c3bb4d24 | 5142 | KMEMLEAK |
8b58be88 | 5143 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
5144 | S: Maintained |
5145 | F: Documentation/kmemleak.txt | |
5146 | F: include/linux/kmemleak.h | |
5147 | F: mm/kmemleak.c | |
5148 | F: mm/kmemleak-test.c | |
5149 | ||
89559a61 | 5150 | KPROBES |
8b58be88 JP |
5151 | M: Ananth N Mavinakayanahalli <[email protected]> |
5152 | M: Anil S Keshavamurthy <[email protected]> | |
5153 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 5154 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 5155 | S: Maintained |
679655da JP |
5156 | F: Documentation/kprobes.txt |
5157 | F: include/linux/kprobes.h | |
5158 | F: kernel/kprobes.c | |
89559a61 | 5159 | |
70e84049 | 5160 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5161 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
5162 | W: http://miguelojeda.es/auxdisplay.htm |
5163 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5164 | S: Maintained |
679655da JP |
5165 | F: Documentation/auxdisplay/ks0108 |
5166 | F: drivers/auxdisplay/ks0108.c | |
5167 | F: include/linux/ks0108.h | |
70e84049 | 5168 | |
1da177e4 | 5169 | LAPB module |
1da177e4 | 5170 | L: [email protected] |
bf9915cc | 5171 | S: Orphan |
679655da JP |
5172 | F: Documentation/networking/lapb-module.txt |
5173 | F: include/*/lapb.h | |
5174 | F: net/lapb/ | |
1da177e4 LT |
5175 | |
5176 | LASI 53c700 driver for PARISC | |
8b58be88 | 5177 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5178 | L: [email protected] |
5179 | S: Maintained | |
679655da JP |
5180 | F: Documentation/scsi/53c700.txt |
5181 | F: drivers/scsi/53c700* | |
1da177e4 | 5182 | |
263de9b5 | 5183 | LED SUBSYSTEM |
c772fc26 | 5184 | M: Bryan Wu <[email protected]> |
8b58be88 | 5185 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
5186 | L: [email protected] |
5187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5188 | S: Maintained |
679655da JP |
5189 | F: drivers/leds/ |
5190 | F: include/linux/leds.h | |
263de9b5 | 5191 | |
b0461a44 | 5192 | LEGACY EEPROM DRIVER |
7c81c60f | 5193 | M: Jean Delvare <[email protected]> |
b0461a44 JD |
5194 | S: Maintained |
5195 | F: Documentation/misc-devices/eeprom | |
5196 | F: drivers/misc/eeprom/eeprom.c | |
5197 | ||
1da177e4 | 5198 | LEGO USB Tower driver |
8b58be88 | 5199 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
5200 | L: [email protected] |
5201 | W: http://legousb.sourceforge.net/ | |
5202 | S: Maintained | |
679655da | 5203 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5204 | |
055616a8 MK |
5205 | LG2160 MEDIA DRIVER |
5206 | M: Michael Krufky <[email protected]> | |
5207 | L: [email protected] | |
5208 | W: http://linuxtv.org/ | |
5209 | W: http://github.com/mkrufky | |
5210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5211 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5212 | S: Maintained | |
5213 | F: drivers/media/dvb-frontends/lg2160.* | |
5214 | ||
6f0e7725 MK |
5215 | LGDT3305 MEDIA DRIVER |
5216 | M: Michael Krufky <[email protected]> | |
5217 | L: [email protected] | |
5218 | W: http://linuxtv.org/ | |
5219 | W: http://github.com/mkrufky | |
5220 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5221 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5222 | S: Maintained | |
5223 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5224 | ||
568a17ff | 5225 | LGUEST |
8b58be88 | 5226 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5227 | L: [email protected] |
568a17ff | 5228 | W: http://lguest.ozlabs.org/ |
72e91863 | 5229 | S: Odd Fixes |
070f420b | 5230 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5231 | F: arch/x86/lguest/ |
5232 | F: drivers/lguest/ | |
5233 | F: include/linux/lguest*.h | |
070f420b | 5234 | F: tools/lguest/ |
568a17ff | 5235 | |
1acd437c SL |
5236 | LIBLOCKDEP |
5237 | M: Sasha Levin <[email protected]> | |
5238 | S: Maintained | |
5239 | F: tools/lib/lockdep/ | |
5240 | ||
1da177e4 | 5241 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5242 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5243 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5244 | S: Supported | |
11c34c7d | 5245 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5246 | |
852bb9f5 | 5247 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5248 | M: Benjamin Herrenschmidt <[email protected]> |
5249 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 5250 | W: http://www.penguinppc.org/ |
a4724ed6 | 5251 | L: [email protected] |
8a6e2535 | 5252 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5254 | S: Supported |
11c34c7d JP |
5255 | F: Documentation/powerpc/ |
5256 | F: arch/powerpc/ | |
1da177e4 LT |
5257 | |
5258 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5259 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5260 | W: http://www.penguinppc.org/ |
a4724ed6 | 5261 | L: [email protected] |
1da177e4 | 5262 | S: Maintained |
11c34c7d JP |
5263 | F: arch/powerpc/platforms/powermac/ |
5264 | F: drivers/macintosh/ | |
1da177e4 | 5265 | |
77a76369 | 5266 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5267 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5268 | L: [email protected] |
a149507b | 5269 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5270 | S: Maintained |
11c34c7d JP |
5271 | F: arch/powerpc/platforms/512x/ |
5272 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5273 | |
5274 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
1d11cd67 | 5275 | M: Alistair Popple <[email protected]> |
8b58be88 | 5276 | M: Matt Porter <[email protected]> |
1da177e4 | 5277 | W: http://www.penguinppc.org/ |
a4724ed6 | 5278 | L: [email protected] |
1da177e4 | 5279 | S: Maintained |
11c34c7d JP |
5280 | F: arch/powerpc/platforms/40x/ |
5281 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5282 | |
260c02a9 | 5283 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5284 | L: [email protected] |
cdeb8994 | 5285 | S: Orphan |
11c34c7d JP |
5286 | F: arch/powerpc/*/*virtex* |
5287 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5288 | |
e93adf1e | 5289 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5290 | M: Vitaly Bordug <[email protected]> |
5291 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5292 | W: http://www.penguinppc.org/ |
a4724ed6 | 5293 | L: [email protected] |
e93adf1e | 5294 | S: Maintained |
a2b1f7c8 | 5295 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5296 | |
1da177e4 | 5297 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5298 | M: Kumar Gala <[email protected]> |
ce00f85c | 5299 | W: http://www.penguinppc.org/ |
a4724ed6 | 5300 | L: [email protected] |
ce00f85c | 5301 | S: Maintained |
11c34c7d | 5302 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5303 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5304 | |
ab06ff3a | 5305 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5306 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5307 | L: [email protected] |
92e19709 | 5308 | S: Maintained |
11c34c7d JP |
5309 | F: arch/powerpc/platforms/pasemi/ |
5310 | F: drivers/*/*pasemi* | |
5311 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5312 | |
1da177e4 | 5313 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5314 | M: Chris Wright <[email protected]> |
1a4520be | 5315 | L: [email protected] |
1da177e4 LT |
5316 | S: Supported |
5317 | ||
a23ce6da HW |
5318 | LIS3LV02D ACCELEROMETER DRIVER |
5319 | M: Eric Piel <[email protected]> | |
5320 | S: Maintained | |
ff606677 JD |
5321 | F: Documentation/misc-devices/lis3lv02d |
5322 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5323 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5324 | |
e2d1d6c0 | 5325 | LLC (802.2) |
8b58be88 | 5326 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5327 | S: Maintained |
679655da | 5328 | F: include/linux/llc.h |
c117ab84 | 5329 | F: include/uapi/linux/llc.h |
679655da JP |
5330 | F: include/net/llc* |
5331 | F: net/llc/ | |
e2d1d6c0 | 5332 | |
4e233cbe AD |
5333 | LM73 HARDWARE MONITOR DRIVER |
5334 | M: Guillaume Ligneul <[email protected]> | |
5335 | L: [email protected] | |
5336 | S: Maintained | |
5337 | F: drivers/hwmon/lm73.c | |
5338 | ||
156e2d1a | 5339 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5340 | M: Jean Delvare <[email protected]> |
156e2d1a JD |
5341 | L: [email protected] |
5342 | S: Maintained | |
5343 | F: Documentation/hwmon/lm78 | |
5344 | F: drivers/hwmon/lm78.c | |
5345 | ||
1da177e4 | 5346 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5347 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5348 | L: [email protected] |
1da177e4 | 5349 | S: Maintained |
679655da JP |
5350 | F: Documentation/hwmon/lm83 |
5351 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5352 | |
5353 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5354 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5355 | L: [email protected] |
1da177e4 | 5356 | S: Maintained |
679655da | 5357 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5358 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5359 | F: drivers/hwmon/lm90.c |
1da177e4 | 5360 | |
917cc4e6 GR |
5361 | LM95234 HARDWARE MONITOR DRIVER |
5362 | M: Guenter Roeck <[email protected]> | |
5363 | L: [email protected] | |
5364 | S: Maintained | |
5365 | F: Documentation/hwmon/lm95234 | |
5366 | F: drivers/hwmon/lm95234.c | |
5367 | ||
68620bdd MP |
5368 | LME2510 MEDIA DRIVER |
5369 | M: Malcolm Priestley <[email protected]> | |
5370 | L: [email protected] | |
5371 | W: http://linuxtv.org/ | |
5372 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5373 | S: Maintained | |
5374 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5375 | ||
512e67f9 | 5376 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5377 | M: Peter Zijlstra <[email protected]> |
5378 | M: Ingo Molnar <[email protected]> | |
981c3a4f | 5379 | L: [email protected] |
75fc2d37 | 5380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5381 | S: Maintained |
679655da JP |
5382 | F: Documentation/lockdep*.txt |
5383 | F: Documentation/lockstat.txt | |
5384 | F: include/linux/lockdep.h | |
7486d6da | 5385 | F: kernel/locking/ |
512e67f9 | 5386 | |
dde33348 | 5387 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5388 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5389 | L: [email protected] |
5390 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5391 | S: Maintained |
679655da | 5392 | F: Documentation/ldm.txt |
20d16fef | 5393 | F: block/partitions/ldm.* |
1da177e4 | 5394 | |
ef6ada3d JE |
5395 | LogFS |
5396 | M: Joern Engel <[email protected]> | |
756ccb3c | 5397 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5398 | L: [email protected] |
5399 | W: logfs.org | |
5400 | S: Maintained | |
5401 | F: fs/logfs/ | |
5402 | ||
b62d7946 RS |
5403 | LPC32XX MACHINE SUPPORT |
5404 | M: Roland Stigge <[email protected]> | |
5405 | L: [email protected] (moderated for non-subscribers) | |
5406 | S: Maintained | |
5407 | F: arch/arm/mach-lpc32xx/ | |
5408 | ||
c87e34ef | 5409 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5410 | M: Nagalakshmi Nandigama <[email protected]> |
5411 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5412 | M: [email protected] |
cec744fb | 5413 | L: [email protected] |
c87e34ef MED |
5414 | L: [email protected] |
5415 | W: http://www.lsilogic.com/support | |
5416 | S: Supported | |
679655da | 5417 | F: drivers/message/fusion/ |
500c152a | 5418 | F: drivers/scsi/mpt2sas/ |
5419 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5420 | |
1da177e4 | 5421 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5422 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5423 | L: [email protected] |
5424 | S: Maintained | |
679655da | 5425 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5426 | |
e5f5c99a GR |
5427 | LTC4261 HARDWARE MONITOR DRIVER |
5428 | M: Guenter Roeck <[email protected]> | |
5429 | L: [email protected] | |
5430 | S: Maintained | |
5431 | F: Documentation/hwmon/ltc4261 | |
5432 | F: drivers/hwmon/ltc4261.c | |
5433 | ||
81365c31 | 5434 | LTP (Linux Test Project) |
7d1ae8a8 | 5435 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5436 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5437 | M: Cyril Hrubis <[email protected]> |
5438 | M: Caspar Zhang <[email protected]> | |
5439 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5440 | L: [email protected] (subscribers-only) |
5441 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5442 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5443 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5444 | S: Maintained |
5445 | ||
c12a54b3 | 5446 | M32R ARCHITECTURE |
8b58be88 | 5447 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5448 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5449 | L: [email protected] (in Japanese) |
5450 | W: http://www.linux-m32r.org/ | |
5451 | S: Maintained | |
679655da | 5452 | F: arch/m32r/ |
c12a54b3 | 5453 | |
1da177e4 | 5454 | M68K ARCHITECTURE |
8b58be88 | 5455 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5456 | L: [email protected] |
5457 | W: http://www.linux-m68k.org/ | |
54e5881d | 5458 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5459 | S: Maintained |
679655da | 5460 | F: arch/m68k/ |
9db35182 | 5461 | F: drivers/zorro/ |
1da177e4 LT |
5462 | |
5463 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5464 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5465 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5466 | L: [email protected] |
1da177e4 | 5467 | S: Maintained |
9db35182 | 5468 | F: arch/m68k/mac/ |
1da177e4 LT |
5469 | |
5470 | M68K ON HP9000/300 | |
8b58be88 | 5471 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5472 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5473 | S: Maintained | |
679655da | 5474 | F: arch/m68k/hp300/ |
1da177e4 | 5475 | |
74425546 AP |
5476 | M88DS3103 MEDIA DRIVER |
5477 | M: Antti Palosaari <[email protected]> | |
5478 | L: [email protected] | |
5479 | W: http://linuxtv.org/ | |
5480 | W: http://palosaari.fi/linux/ | |
5481 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5482 | T: git git://linuxtv.org/anttip/media_tree.git | |
5483 | S: Maintained | |
5484 | F: drivers/media/dvb-frontends/m88ds3103* | |
5485 | ||
68620bdd MP |
5486 | M88RS2000 MEDIA DRIVER |
5487 | M: Malcolm Priestley <[email protected]> | |
5488 | L: [email protected] | |
5489 | W: http://linuxtv.org/ | |
5490 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5491 | S: Maintained | |
5492 | F: drivers/media/dvb-frontends/m88rs2000* | |
5493 | ||
0d62f800 AP |
5494 | M88TS2022 MEDIA DRIVER |
5495 | M: Antti Palosaari <[email protected]> | |
5496 | L: [email protected] | |
5497 | W: http://linuxtv.org/ | |
5498 | W: http://palosaari.fi/linux/ | |
5499 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5500 | T: git git://linuxtv.org/anttip/media_tree.git | |
5501 | S: Maintained | |
5502 | F: drivers/media/tuners/m88ts2022* | |
5503 | ||
07a092fa | 5504 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
5505 | M: Alexey Klimov <[email protected]> |
5506 | L: [email protected] | |
5507 | T: git git://linuxtv.org/media_tree.git | |
5508 | S: Maintained | |
5509 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 5510 | |
64a327a7 | 5511 | MAC80211 |
8b58be88 | 5512 | M: Johannes Berg <[email protected]> |
64a327a7 | 5513 | L: [email protected] |
491b26b4 | 5514 | W: http://wireless.kernel.org/ |
ce466579 JB |
5515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5517 | S: Maintained |
679655da JP |
5518 | F: Documentation/networking/mac80211-injection.txt |
5519 | F: include/net/mac80211.h | |
5520 | F: net/mac80211/ | |
64a327a7 | 5521 | |
1036d864 | 5522 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5523 | M: Stefano Brivio <[email protected]> |
5524 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5525 | L: [email protected] |
491b26b4 | 5526 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5529 | S: Maintained |
679655da | 5530 | F: net/mac80211/rc80211_pid* |
1036d864 | 5531 | |
b863ceb7 | 5532 | MACVLAN DRIVER |
8b58be88 | 5533 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5534 | L: [email protected] |
5535 | S: Maintained | |
679655da JP |
5536 | F: drivers/net/macvlan.c |
5537 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5538 | |
faf1668c | 5539 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5540 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5541 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5542 | L: [email protected] |
1b53dc74 | 5543 | S: Maintained |
faf1668c | 5544 | |
8427defd RK |
5545 | MARVELL ARMADA DRM SUPPORT |
5546 | M: Russell King <[email protected]> | |
5547 | S: Maintained | |
5548 | F: drivers/gpu/drm/armada/ | |
5549 | ||
44c14c1d | 5550 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5551 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5552 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5553 | L: [email protected] |
5554 | S: Maintained | |
5555 | F: drivers/net/ethernet/marvell/sk* | |
5556 | ||
74cda169 | 5557 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5558 | L: [email protected] |
8ac3e99e | 5559 | S: Orphan |
679655da | 5560 | F: drivers/net/wireless/libertas/ |
74cda169 | 5561 | |
b60d6975 | 5562 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5563 | M: Sebastian Hesselbarth <[email protected]> |
979b6c13 | 5564 | L: [email protected] |
f5ca8502 | 5565 | S: Maintained |
527a6266 | 5566 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5567 | F: include/linux/mv643xx.h |
1da177e4 | 5568 | |
370b8ed9 TP |
5569 | MARVELL MVNETA ETHERNET DRIVER |
5570 | M: Thomas Petazzoni <[email protected]> | |
5571 | L: [email protected] | |
5572 | S: Maintained | |
5573 | F: drivers/net/ethernet/marvell/mvneta.* | |
5574 | ||
fcad584d BZ |
5575 | MARVELL MWIFIEX WIRELESS DRIVER |
5576 | M: Bing Zhao <[email protected]> | |
5577 | L: [email protected] | |
5578 | S: Maintained | |
5579 | F: drivers/net/wireless/mwifiex/ | |
5580 | ||
a2c3f656 | 5581 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5582 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5583 | L: [email protected] |
16345910 | 5584 | S: Odd Fixes |
a2c3f656 LB |
5585 | F: drivers/net/wireless/mwl8k.c |
5586 | ||
2a69567b | 5587 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5588 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5589 | S: Odd Fixes |
1fa7e547 | 5590 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5591 | |
1da177e4 | 5592 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5593 | L: [email protected] |
52653199 | 5594 | S: Orphan |
679655da | 5595 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5596 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5597 | |
ca462085 GR |
5598 | MAX16065 HARDWARE MONITOR DRIVER |
5599 | M: Guenter Roeck <[email protected]> | |
5600 | L: [email protected] | |
5601 | S: Maintained | |
5602 | F: Documentation/hwmon/max16065 | |
5603 | F: drivers/hwmon/max16065.c | |
5604 | ||
d20620de | 5605 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5606 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5607 | L: [email protected] |
5608 | S: Maintained | |
679655da JP |
5609 | F: Documentation/hwmon/max6650 |
5610 | F: drivers/hwmon/max6650.c | |
d20620de | 5611 | |
e89ab51f GR |
5612 | MAX6697 HARDWARE MONITOR DRIVER |
5613 | M: Guenter Roeck <[email protected]> | |
5614 | L: [email protected] | |
5615 | S: Maintained | |
5616 | F: Documentation/hwmon/max6697 | |
5617 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5618 | F: drivers/hwmon/max6697.c | |
5619 | F: include/linux/platform_data/max6697.h | |
5620 | ||
9be3c9a5 HV |
5621 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5622 | M: Hans Verkuil <[email protected]> | |
5623 | L: [email protected] | |
5624 | T: git git://linuxtv.org/media_tree.git | |
5625 | W: http://linuxtv.org | |
5626 | S: Maintained | |
5627 | F: drivers/media/radio/radio-maxiradio* | |
5628 | ||
127c49ae | 5629 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5630 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5631 | P: LinuxTV.org Project |
5632 | L: [email protected] | |
5633 | W: http://linuxtv.org | |
8a6e2535 | 5634 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5635 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5636 | S: Maintained |
5637 | F: Documentation/dvb/ | |
5638 | F: Documentation/video4linux/ | |
ffe06198 | 5639 | F: Documentation/DocBook/media/ |
127c49ae | 5640 | F: drivers/media/ |
ffe06198 | 5641 | F: drivers/staging/media/ |
127c49ae | 5642 | F: include/media/ |
6c0f0359 MCC |
5643 | F: include/uapi/linux/dvb/ |
5644 | F: include/uapi/linux/videodev2.h | |
5645 | F: include/uapi/linux/media.h | |
5646 | F: include/uapi/linux/v4l2-* | |
5647 | F: include/uapi/linux/meye.h | |
5648 | F: include/uapi/linux/ivtv* | |
5649 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5650 | |
6149a936 HV |
5651 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5652 | M: Hans Verkuil <[email protected]> | |
5653 | L: [email protected] | |
5654 | T: git git://linuxtv.org/media_tree.git | |
5655 | W: http://linuxtv.org | |
5656 | S: Odd Fixes | |
5657 | F: drivers/media/parport/pms* | |
5658 | ||
757e0108 | 5659 | MEGARAID SCSI DRIVERS |
8b58be88 | 5660 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5661 | L: [email protected] |
ce00f85c JC |
5662 | W: http://megaraid.lsilogic.com |
5663 | S: Maintained | |
679655da JP |
5664 | F: Documentation/scsi/megaraid.txt |
5665 | F: drivers/scsi/megaraid.* | |
5666 | F: drivers/scsi/megaraid/ | |
757e0108 | 5667 | |
2c46c9d5 AV |
5668 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5669 | M: Amir Vadai <[email protected]> | |
b75f0050 | 5670 | L: [email protected] |
2c46c9d5 AV |
5671 | S: Supported |
5672 | W: http://www.mellanox.com | |
5673 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5674 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5675 | ||
70ea91f1 SR |
5676 | MEMORY MANAGEMENT |
5677 | L: [email protected] | |
70ea91f1 SR |
5678 | W: http://www.linux-mm.org |
5679 | S: Maintained | |
679655da | 5680 | F: include/linux/mm.h |
551450bb CS |
5681 | F: include/linux/gfp.h |
5682 | F: include/linux/mmzone.h | |
5683 | F: include/linux/memory_hotplug.h | |
5684 | F: include/linux/vmalloc.h | |
679655da | 5685 | F: mm/ |
70ea91f1 | 5686 | |
938a9204 | 5687 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5688 | M: Johannes Weiner <[email protected]> |
5689 | M: Michal Hocko <[email protected]> | |
185e595f | 5690 | M: Balbir Singh <[email protected]> |
8b58be88 | 5691 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5692 | L: [email protected] |
938a9204 | 5693 | L: [email protected] |
938a9204 | 5694 | S: Maintained |
679655da | 5695 | F: mm/memcontrol.c |
4e4c941c | 5696 | F: mm/page_cgroup.c |
938a9204 | 5697 | |
f4e9ce66 | 5698 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5699 | M: David Woodhouse <[email protected]> |
242c325e | 5700 | M: Brian Norris <[email protected]> |
1da177e4 | 5701 | L: [email protected] |
8a6e2535 JP |
5702 | W: http://www.linux-mtd.infradead.org/ |
5703 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5704 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5705 | S: Maintained |
679655da JP |
5706 | F: drivers/mtd/ |
5707 | F: include/linux/mtd/ | |
c117ab84 | 5708 | F: include/uapi/mtd/ |
1da177e4 | 5709 | |
26c57ef1 | 5710 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 5711 | M: Johannes Thumshirn <[email protected]> |
26c57ef1 JT |
5712 | L: [email protected] |
5713 | S: Supported | |
5714 | F: drivers/watchdog/mena21_wdt.c | |
5715 | ||
3764e82e JT |
5716 | MEN CHAMELEON BUS (mcb) |
5717 | M: Johannes Thumshirn <[email protected]> | |
5718 | S: Supported | |
5719 | F: drivers/mcb/ | |
5720 | F: include/linux/mcb.h | |
5721 | ||
12285945 JH |
5722 | METAG ARCHITECTURE |
5723 | M: James Hogan <[email protected]> | |
d668d9ed | 5724 | L: [email protected] |
12285945 JH |
5725 | S: Supported |
5726 | F: arch/metag/ | |
5727 | F: Documentation/metag/ | |
5728 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5729 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5730 | F: drivers/irqchip/irq-metag.c |
5731 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5732 | F: drivers/tty/metag_da.c |
5733 | F: fs/imgdafs/ | |
12285945 | 5734 | |
c6375b0a | 5735 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5736 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5737 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5738 | W: http://www.monstr.eu/fdt/ |
5739 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5740 | S: Supported | |
0a8c7914 | 5741 | F: arch/microblaze/ |
1da177e4 LT |
5742 | |
5743 | MICROTEK X6 SCANNER | |
61eee9a7 | 5744 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5745 | S: Maintained |
679655da | 5746 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5747 | |
5748 | MIPS | |
8b58be88 | 5749 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5750 | L: [email protected] |
6097050d | 5751 | W: http://www.linux-mips.org/ |
b05e988e | 5752 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5753 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5754 | S: Supported |
679655da JP |
5755 | F: Documentation/mips/ |
5756 | F: arch/mips/ | |
1da177e4 | 5757 | |
08b7620a HV |
5758 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5759 | M: Hans Verkuil <[email protected]> | |
5760 | L: [email protected] | |
5761 | T: git git://linuxtv.org/media_tree.git | |
5762 | W: http://linuxtv.org | |
5763 | S: Odd Fixes | |
5764 | F: drivers/media/radio/radio-miropcm20* | |
5765 | ||
e126ba97 EC |
5766 | Mellanox MLX5 core VPI driver |
5767 | M: Eli Cohen <[email protected]> | |
5768 | L: [email protected] | |
5769 | L: [email protected] | |
5770 | W: http://www.mellanox.com | |
5771 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5772 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5773 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
5774 | S: Supported |
5775 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5776 | F: include/linux/mlx5/ | |
5777 | ||
5778 | Mellanox MLX5 IB driver | |
b75f0050 JP |
5779 | M: Eli Cohen <[email protected]> |
5780 | L: [email protected] | |
5781 | W: http://www.mellanox.com | |
5782 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5783 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
5784 | S: Supported |
5785 | F: include/linux/mlx5/ | |
5786 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 5787 | |
1da177e4 | 5788 | MODULE SUPPORT |
8b58be88 | 5789 | M: Rusty Russell <[email protected]> |
1da177e4 | 5790 | S: Maintained |
679655da JP |
5791 | F: include/linux/module.h |
5792 | F: kernel/module.c | |
1da177e4 LT |
5793 | |
5794 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5795 | W: http://popies.net/meye/ |
b7788e13 | 5796 | S: Orphan |
679655da | 5797 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5798 | F: drivers/media/pci/meye/ |
6c0f0359 | 5799 | F: include/uapi/linux/meye.h |
1da177e4 | 5800 | |
b9705b60 | 5801 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5802 | M: Jiri Slaby <[email protected]> |
d735410a | 5803 | S: Maintained |
679655da | 5804 | F: Documentation/serial/moxa-smartio |
c897401b | 5805 | F: drivers/tty/mxser.* |
d735410a | 5806 | |
889b2f87 AK |
5807 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5808 | M: Alexey Klimov <[email protected]> | |
5809 | L: [email protected] | |
5810 | T: git git://linuxtv.org/media_tree.git | |
5811 | S: Maintained | |
5812 | F: drivers/media/radio/radio-mr800.c | |
5813 | ||
8c4c731a | 5814 | MSI LAPTOP SUPPORT |
182ae55c | 5815 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5816 | L: [email protected] |
8c4c731a | 5817 | S: Maintained |
679655da | 5818 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5819 | |
0f1006b1 AA |
5820 | MSI WMI SUPPORT |
5821 | M: Anisse Astier <[email protected]> | |
d0944853 | 5822 | L: [email protected] |
0f1006b1 AA |
5823 | S: Supported |
5824 | F: drivers/platform/x86/msi-wmi.c | |
5825 | ||
62a37dc7 | 5826 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5827 | M: Laurent Pinchart <[email protected]> |
5828 | L: [email protected] | |
5829 | T: git git://linuxtv.org/media_tree.git | |
5830 | S: Maintained | |
5831 | F: drivers/media/i2c/mt9m032.c | |
5832 | F: include/media/mt9m032.h | |
5833 | ||
62a37dc7 | 5834 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5835 | M: Laurent Pinchart <[email protected]> |
5836 | L: [email protected] | |
5837 | T: git git://linuxtv.org/media_tree.git | |
5838 | S: Maintained | |
5839 | F: drivers/media/i2c/mt9p031.c | |
5840 | F: include/media/mt9p031.h | |
5841 | ||
62a37dc7 | 5842 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5843 | M: Laurent Pinchart <[email protected]> |
5844 | L: [email protected] | |
5845 | T: git git://linuxtv.org/media_tree.git | |
5846 | S: Maintained | |
5847 | F: drivers/media/i2c/mt9t001.c | |
5848 | F: include/media/mt9t001.h | |
5849 | ||
62a37dc7 | 5850 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5851 | M: Laurent Pinchart <[email protected]> |
5852 | L: [email protected] | |
5853 | T: git git://linuxtv.org/media_tree.git | |
5854 | S: Maintained | |
5855 | F: drivers/media/i2c/mt9v032.c | |
5856 | F: include/media/mt9v032.h | |
5857 | ||
4e0d13cb | 5858 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5859 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5860 | M: Lee Jones <[email protected]> |
5861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5862 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5863 | S: Supported |
679655da | 5864 | F: drivers/mfd/ |
55b5940d | 5865 | F: include/linux/mfd/ |
4e0d13cb | 5866 | |
5c4e6f13 | 5867 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 5868 | M: Chris Ball <[email protected]> |
b2503a94 | 5869 | L: [email protected] |
245feaa6 CB |
5870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5871 | S: Maintained | |
679655da JP |
5872 | F: drivers/mmc/ |
5873 | F: include/linux/mmc/ | |
c117ab84 | 5874 | F: include/uapi/linux/mmc/ |
baca2da4 | 5875 | |
15a0580c | 5876 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5877 | S: Orphan |
679655da JP |
5878 | F: drivers/mmc/host/mmc_spi.c |
5879 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5880 | |
1da177e4 | 5881 | MULTISOUND SOUND DRIVER |
8b58be88 | 5882 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5883 | S: Maintained |
679655da JP |
5884 | F: Documentation/sound/oss/MultiSound |
5885 | F: sound/oss/msnd* | |
1da177e4 | 5886 | |
d735410a | 5887 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5888 | S: Orphan |
c897401b | 5889 | F: drivers/tty/isicom.c |
679655da | 5890 | F: include/linux/isicom.h |
d735410a | 5891 | |
550a7375 | 5892 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5893 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5894 | L: [email protected] |
43b416e5 | 5895 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5896 | S: Maintained |
679655da | 5897 | F: drivers/usb/musb/ |
550a7375 | 5898 | |
ea0af5f6 MK |
5899 | MXL5007T MEDIA DRIVER |
5900 | M: Michael Krufky <[email protected]> | |
5901 | L: [email protected] | |
5902 | W: http://linuxtv.org/ | |
5903 | W: http://github.com/mkrufky | |
5904 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5905 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5906 | S: Maintained | |
5907 | F: drivers/media/tuners/mxl5007t.* | |
5908 | ||
2d3cf588 | 5909 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5910 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 5911 | L: [email protected] |
205057ae | 5912 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5913 | S: Supported |
93f7848b | 5914 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5915 | |
1da177e4 | 5916 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5917 | S: Orphan |
d9fb9f38 | 5918 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5919 | |
23dc05a3 DM |
5920 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5921 | M: Daniel Mack <[email protected]> | |
5922 | S: Maintained | |
5923 | L: [email protected] | |
5924 | W: http://www.native-instruments.com | |
5925 | F: sound/usb/caiaq/ | |
5926 | ||
1da177e4 | 5927 | NCP FILESYSTEM |
52653199 PV |
5928 | M: Petr Vandrovec <[email protected]> |
5929 | S: Odd Fixes | |
679655da | 5930 | F: fs/ncpfs/ |
1da177e4 LT |
5931 | |
5932 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5933 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5934 | L: [email protected] |
5935 | S: Maintained | |
679655da | 5936 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5937 | |
4aa3eb4c GR |
5938 | NCT6775 HARDWARE MONITOR DRIVER |
5939 | M: Guenter Roeck <[email protected]> | |
5940 | L: [email protected] | |
5941 | S: Maintained | |
5942 | F: Documentation/hwmon/nct6775 | |
5943 | F: drivers/hwmon/nct6775.c | |
5944 | ||
3c2d774c | 5945 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5946 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5947 | L: [email protected] |
e3d33cb1 | 5948 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5949 | S: Supported |
5950 | F: drivers/infiniband/hw/nes/ | |
5951 | ||
be2f2e84 | 5952 | NETEM NETWORK EMULATOR |
adbbf69d | 5953 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5954 | L: [email protected] |
be2f2e84 | 5955 | S: Maintained |
679655da | 5956 | F: net/sched/sch_netem.c |
be2f2e84 | 5957 | |
b2f5a051 | 5958 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5959 | M: Jon Mason <[email protected]> |
4a58448b | 5960 | L: [email protected] |
4a58448b | 5961 | S: Supported |
679655da | 5962 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5963 | F: Documentation/networking/vxge.txt |
86387e1a | 5964 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5965 | |
42010ed0 | 5966 | NETFILTER/IPTABLES |
0e05e192 | 5967 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5968 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5969 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5970 | L: [email protected] |
5971 | L: [email protected] | |
82b98543 | 5972 | L: [email protected] |
1da177e4 LT |
5973 | W: http://www.netfilter.org/ |
5974 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5975 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5976 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5978 | S: Supported |
679655da JP |
5979 | F: include/linux/netfilter* |
5980 | F: include/linux/netfilter/ | |
5981 | F: include/net/netfilter/ | |
c117ab84 CEB |
5982 | F: include/uapi/linux/netfilter* |
5983 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5984 | F: net/*/netfilter.c |
5985 | F: net/*/netfilter/ | |
5986 | F: net/netfilter/ | |
1da177e4 | 5987 | |
4cc67735 | 5988 | NETLABEL |
87a0874c | 5989 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5990 | W: http://netlabel.sf.net |
5991 | L: [email protected] | |
87a0874c | 5992 | S: Maintained |
80811493 | 5993 | F: Documentation/netlabel/ |
679655da JP |
5994 | F: include/net/netlabel.h |
5995 | F: net/netlabel/ | |
4cc67735 | 5996 | |
1da177e4 | 5997 | NETROM NETWORK LAYER |
8b58be88 | 5998 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5999 | L: [email protected] |
d34cb28a | 6000 | W: http://www.linux-ax25.org/ |
1da177e4 | 6001 | S: Maintained |
679655da | 6002 | F: include/net/netrom.h |
c117ab84 | 6003 | F: include/uapi/linux/netrom.h |
679655da | 6004 | F: net/netrom/ |
1da177e4 | 6005 | |
5ddb88c0 | 6006 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 6007 | M: Paul Clements <[email protected]> |
1da177e4 | 6008 | S: Maintained |
5e4b269b | 6009 | L: [email protected] |
679655da JP |
6010 | F: Documentation/blockdev/nbd.txt |
6011 | F: drivers/block/nbd.c | |
6012 | F: include/linux/nbd.h | |
c117ab84 | 6013 | F: include/uapi/linux/nbd.h |
1da177e4 | 6014 | |
6e43650c NH |
6015 | NETWORK DROP MONITOR |
6016 | M: Neil Horman <[email protected]> | |
6017 | L: [email protected] | |
6018 | S: Maintained | |
6019 | W: https://fedorahosted.org/dropwatch/ | |
6020 | F: net/core/drop_monitor.c | |
6021 | ||
1da177e4 | 6022 | NETWORKING [GENERAL] |
8b58be88 | 6023 | M: "David S. Miller" <[email protected]> |
979b6c13 | 6024 | L: [email protected] |
b1e8fd54 | 6025 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6026 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6027 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6029 | S: Maintained |
679655da JP |
6030 | F: net/ |
6031 | F: include/net/ | |
018d21ed JP |
6032 | F: include/linux/in.h |
6033 | F: include/linux/net.h | |
6034 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6035 | F: include/uapi/linux/in.h |
6036 | F: include/uapi/linux/net.h | |
6037 | F: include/uapi/linux/netdevice.h | |
7e814a6c | 6038 | F: tools/net/ |
f4e53f9a | 6039 | F: tools/testing/selftests/net/ |
335a67d2 | 6040 | F: lib/random32.c |
1da177e4 LT |
6041 | |
6042 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6043 | M: "David S. Miller" <[email protected]> |
6044 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
6045 | M: James Morris <[email protected]> |
6046 | M: Hideaki YOSHIFUJI <[email protected]> | |
6047 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 6048 | L: [email protected] |
08deed1e | 6049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6050 | S: Maintained |
679655da JP |
6051 | F: net/ipv4/ |
6052 | F: net/ipv6/ | |
6053 | F: include/net/ip* | |
0a14842f | 6054 | F: arch/x86/net/* |
1da177e4 | 6055 | |
73b7656c DM |
6056 | NETWORKING [IPSEC] |
6057 | M: Steffen Klassert <[email protected]> | |
6058 | M: Herbert Xu <[email protected]> | |
6059 | M: "David S. Miller" <[email protected]> | |
6060 | L: [email protected] | |
d1fc5024 SK |
6061 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6063 | S: Maintained |
5826bdd1 | 6064 | F: net/core/flow.c |
73b7656c DM |
6065 | F: net/xfrm/ |
6066 | F: net/key/ | |
6067 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6068 | F: net/ipv4/esp4.c |
6069 | F: net/ipv4/ah4.c | |
6070 | F: net/ipv4/ipcomp.c | |
6071 | F: net/ipv4/ip_vti.c | |
73b7656c | 6072 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6073 | F: net/ipv6/esp6.c |
6074 | F: net/ipv6/ah6.c | |
6075 | F: net/ipv6/ipcomp6.c | |
6076 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6077 | F: include/uapi/linux/xfrm.h |
6078 | F: include/net/xfrm.h | |
6079 | ||
10e2ff1c | 6080 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6081 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
6082 | L: [email protected] |
6083 | S: Maintained | |
6084 | ||
29f8f632 | 6085 | NETWORKING [WIRELESS] |
8b58be88 | 6086 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 6087 | L: [email protected] |
8a6e2535 | 6088 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6090 | S: Maintained |
34b921cf JP |
6091 | F: net/mac80211/ |
6092 | F: net/rfkill/ | |
679655da JP |
6093 | F: net/wireless/ |
6094 | F: include/net/ieee80211* | |
cc8b4a2b | 6095 | F: include/linux/wireless.h |
c117ab84 | 6096 | F: include/uapi/linux/wireless.h |
c984e24d | 6097 | F: include/net/iw_handler.h |
34b921cf | 6098 | F: drivers/net/wireless/ |
29f8f632 | 6099 | |
788873ac JP |
6100 | NETWORKING DRIVERS |
6101 | L: [email protected] | |
6102 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6103 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6104 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6106 | S: Odd Fixes |
6107 | F: drivers/net/ | |
018d21ed | 6108 | F: include/linux/if_* |
0b63bf1f JD |
6109 | F: include/linux/netdevice.h |
6110 | F: include/linux/arcdevice.h | |
6111 | F: include/linux/etherdevice.h | |
6112 | F: include/linux/fcdevice.h | |
6113 | F: include/linux/fddidevice.h | |
6114 | F: include/linux/hippidevice.h | |
6115 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6116 | F: include/uapi/linux/if_* |
6117 | F: include/uapi/linux/netdevice.h | |
788873ac | 6118 | |
3d396eb1 | 6119 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6120 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
6121 | M: Sony Chacko <[email protected]> |
6122 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 6123 | L: [email protected] |
9c2b5bde | 6124 | W: http://www.qlogic.com |
3d396eb1 | 6125 | S: Supported |
aa43c215 | 6126 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6127 | |
6423d30f AAJ |
6128 | NFC SUBSYSTEM |
6129 | M: Lauro Ramos Venancio <[email protected]> | |
6130 | M: Aloisio Almeida Jr <[email protected]> | |
6131 | M: Samuel Ortiz <[email protected]> | |
6132 | L: [email protected] | |
5adf54de | 6133 | L: [email protected] (moderated for non-subscribers) |
0293ba20 | 6134 | S: Supported |
6423d30f | 6135 | F: net/nfc/ |
55eb94f9 | 6136 | F: include/net/nfc/ |
c117ab84 | 6137 | F: include/uapi/linux/nfc.h |
6423d30f | 6138 | F: drivers/nfc/ |
08eaa1e0 | 6139 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6140 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6141 | |
e8b43555 | 6142 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6143 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
6144 | L: [email protected] |
6145 | W: http://client.linux-nfs.org | |
cd7b996a | 6146 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6147 | S: Maintained |
679655da JP |
6148 | F: fs/lockd/ |
6149 | F: fs/nfs/ | |
6150 | F: fs/nfs_common/ | |
6151 | F: net/sunrpc/ | |
6152 | F: include/linux/lockd/ | |
6153 | F: include/linux/nfs* | |
6154 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6155 | F: include/uapi/linux/nfs* |
6156 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6157 | |
85ef9cea | 6158 | NILFS2 FILESYSTEM |
8b58be88 | 6159 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 6160 | L: [email protected] |
85ef9cea | 6161 | W: http://www.nilfs.org/en/ |
af1761f2 | 6162 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 6163 | S: Supported |
679655da JP |
6164 | F: Documentation/filesystems/nilfs2.txt |
6165 | F: fs/nilfs2/ | |
6166 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6167 | |
1da177e4 | 6168 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6169 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
6170 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6171 | S: Maintained | |
679655da JP |
6172 | F: Documentation/scsi/NinjaSCSI.txt |
6173 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6174 | |
6175 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6176 | M: GOTO Masanori <[email protected]> |
6177 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
6178 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6179 | S: Maintained | |
679655da JP |
6180 | F: Documentation/scsi/NinjaSCSI.txt |
6181 | F: drivers/scsi/nsp32* | |
1da177e4 | 6182 | |
fce8a7bb JM |
6183 | NTB DRIVER |
6184 | M: Jon Mason <[email protected]> | |
6185 | S: Supported | |
2984411f JM |
6186 | W: https://github.com/jonmason/ntb/wiki |
6187 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6188 | F: drivers/ntb/ |
548c237c | 6189 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6190 | F: include/linux/ntb.h |
6191 | ||
1da177e4 | 6192 | NTFS FILESYSTEM |
2818ef50 | 6193 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 6194 | L: [email protected] |
2818ef50 | 6195 | W: http://www.tuxera.com/ |
e6f4dee7 | 6196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6197 | S: Supported |
679655da JP |
6198 | F: Documentation/filesystems/ntfs.txt |
6199 | F: fs/ntfs/ | |
1da177e4 | 6200 | |
9eb8ef74 | 6201 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6202 | M: Antonino Daplas <[email protected]> |
c69f677c | 6203 | L: [email protected] |
ce00f85c | 6204 | S: Maintained |
679655da JP |
6205 | F: drivers/video/riva/ |
6206 | F: drivers/video/nvidia/ | |
1da177e4 | 6207 | |
79461681 MW |
6208 | NVM EXPRESS DRIVER |
6209 | M: Matthew Wilcox <[email protected]> | |
6210 | L: [email protected] | |
6211 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6212 | S: Supported | |
5be37bf9 | 6213 | F: drivers/block/nvme* |
79461681 MW |
6214 | F: include/linux/nvme.h |
6215 | ||
f50d7146 RK |
6216 | NXP TDA998X DRM DRIVER |
6217 | M: Russell King <[email protected]> | |
6218 | S: Supported | |
6219 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
6220 | F: include/drm/i2c/tda998x.h | |
6221 | ||
f5525786 | 6222 | OMAP SUPPORT |
0e24bdd4 | 6223 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
6224 | L: [email protected] |
6225 | W: http://www.muru.com/linux/omap/ | |
6226 | W: http://linux.omap.com/ | |
8a6e2535 | 6227 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6229 | S: Maintained |
4e04d5a3 | 6230 | F: arch/arm/*omap*/ |
046d0a37 JD |
6231 | F: drivers/i2c/busses/i2c-omap.c |
6232 | F: include/linux/i2c-omap.h | |
f5525786 | 6233 | |
50f29fbd | 6234 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6235 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
6236 | M: Tony Lindgren <[email protected]> |
6237 | L: [email protected] | |
d0fb18c5 | 6238 | L: [email protected] |
50f29fbd TL |
6239 | S: Maintained |
6240 | F: arch/arm/boot/dts/*omap* | |
6241 | F: arch/arm/boot/dts/*am3* | |
6242 | ||
f5525786 | 6243 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6244 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
6245 | L: [email protected] |
6246 | S: Maintained | |
6247 | F: arch/arm/*omap*/*clock* | |
6248 | ||
6249 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6250 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
6251 | L: [email protected] |
6252 | S: Maintained | |
6253 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6254 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6255 | |
d21db568 | 6256 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6257 | M: Rajendra Nayak <[email protected]> |
6258 | M: Paul Walmsley <[email protected]> | |
6259 | L: [email protected] | |
6260 | S: Maintained | |
d21db568 | 6261 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6262 | |
f5525786 | 6263 | OMAP AUDIO SUPPORT |
6c284903 | 6264 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 6265 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
6266 | L: [email protected] (subscribers-only) |
6267 | L: [email protected] | |
6268 | S: Maintained | |
6269 | F: sound/soc/omap/ | |
6270 | ||
6271 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6272 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 6273 | L: [email protected] |
f5525786 TL |
6274 | L: [email protected] |
6275 | S: Maintained | |
6276 | F: drivers/video/omap/ | |
6277 | ||
676eec0d | 6278 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6279 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 6280 | L: [email protected] |
676eec0d | 6281 | L: [email protected] |
178ff4c9 | 6282 | S: Maintained |
676eec0d | 6283 | F: drivers/video/omap2/ |
178ff4c9 TV |
6284 | F: Documentation/arm/OMAP/DSS |
6285 | ||
8b37fcfc OBC |
6286 | OMAP HARDWARE SPINLOCK SUPPORT |
6287 | M: Ohad Ben-Cohen <[email protected]> | |
6288 | L: [email protected] | |
6289 | S: Maintained | |
6290 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6291 | F: arch/arm/mach-omap2/hwspinlock.c | |
6292 | ||
f5525786 | 6293 | OMAP MMC SUPPORT |
8b58be88 | 6294 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
6295 | L: [email protected] |
6296 | S: Maintained | |
653f41b5 MC |
6297 | F: drivers/mmc/host/omap.c |
6298 | ||
6299 | OMAP HS MMC SUPPORT | |
14006bfb | 6300 | M: Balaji T K <[email protected]> |
0a4585c6 | 6301 | L: [email protected] |
653f41b5 | 6302 | L: [email protected] |
0a4585c6 | 6303 | S: Maintained |
653f41b5 | 6304 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6305 | |
6306 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6307 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
6308 | S: Maintained |
6309 | F: drivers/char/hw_random/omap-rng.c | |
6310 | ||
f400c82e | 6311 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6312 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6313 | M: Paul Walmsley <[email protected]> |
6314 | L: [email protected] | |
6315 | S: Maintained | |
8fc8b12b | 6316 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6317 | |
6318 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6319 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6320 | L: [email protected] |
6321 | S: Maintained | |
6322 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6323 | ||
7e8970e1 LP |
6324 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6325 | M: Laurent Pinchart <[email protected]> | |
6326 | L: [email protected] | |
6327 | S: Maintained | |
90d72ac6 | 6328 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6329 | |
f5525786 | 6330 | OMAP USB SUPPORT |
f299470a | 6331 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
6332 | L: [email protected] |
6333 | L: [email protected] | |
43b416e5 | 6334 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6335 | S: Maintained |
a16fbd65 JP |
6336 | F: drivers/usb/*/*omap* |
6337 | F: arch/arm/*omap*/usb* | |
f5525786 | 6338 | |
6d994710 KH |
6339 | OMAP GPIO DRIVER |
6340 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 6341 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
6342 | L: [email protected] |
6343 | S: Maintained | |
6344 | F: drivers/gpio/gpio-omap.c | |
6345 | ||
c351e290 MJ |
6346 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6347 | M: Mark Jackson <[email protected]> | |
6348 | L: [email protected] | |
6349 | S: Maintained | |
6350 | F: arch/arm/boot/dts/am335x-nano.dts | |
6351 | ||
0ad122d9 | 6352 | OMFS FILESYSTEM |
8b58be88 | 6353 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6354 | L: [email protected] |
6355 | S: Maintained | |
679655da JP |
6356 | F: Documentation/filesystems/omfs.txt |
6357 | F: fs/omfs/ | |
0ad122d9 | 6358 | |
c1986ee9 | 6359 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6360 | M: Harald Welte <[email protected]> |
c1986ee9 | 6361 | S: Maintained |
679655da JP |
6362 | F: drivers/char/pcmcia/cm4000_cs.c |
6363 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6364 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6365 | |
77c44ab1 | 6366 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6367 | M: Harald Welte <[email protected]> |
77c44ab1 | 6368 | S: Maintained |
679655da | 6369 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6370 | |
77d5140f | 6371 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6372 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6373 | L: [email protected] |
275ffde4 | 6374 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6375 | S: Maintained |
90d72ac6 | 6376 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6377 | |
431bca73 | 6378 | ONENAND FLASH DRIVER |
8b58be88 | 6379 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6380 | L: [email protected] |
6381 | S: Maintained | |
679655da JP |
6382 | F: drivers/mtd/onenand/ |
6383 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6384 | |
1da177e4 | 6385 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6386 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6387 | L: [email protected] |
6388 | L: [email protected] | |
6389 | S: Maintained | |
f7269cfc JD |
6390 | F: Documentation/scsi/osst.txt |
6391 | F: drivers/scsi/osst.* | |
6392 | F: drivers/scsi/osst_*.h | |
6393 | F: drivers/scsi/st.h | |
1da177e4 | 6394 | |
e2d1d6c0 | 6395 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6396 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6397 | L: [email protected] |
e2d1d6c0 | 6398 | S: Maintained |
679655da JP |
6399 | F: Documentation/i2c/busses/i2c-ocores |
6400 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6401 | |
860c44c1 | 6402 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6403 | M: Grant Likely <[email protected]> |
5d3ad8a6 | 6404 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6405 | L: [email protected] |
860c44c1 | 6406 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6407 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6408 | S: Maintained |
f8828205 | 6409 | F: drivers/of/ |
860c44c1 | 6410 | F: include/linux/of*.h |
f8828205 | 6411 | F: scripts/dtc/ |
860c44c1 | 6412 | K: of_get_property |
d945fa0d | 6413 | K: of_match_table |
860c44c1 | 6414 | |
f8828205 | 6415 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6416 | M: Rob Herring <[email protected]> |
f8828205 GL |
6417 | M: Pawel Moll <[email protected]> |
6418 | M: Mark Rutland <[email protected]> | |
de80963e | 6419 | M: Ian Campbell <[email protected]> |
bdbff6ba | 6420 | M: Kumar Gala <[email protected]> |
f8828205 GL |
6421 | L: [email protected] |
6422 | S: Maintained | |
6423 | F: Documentation/devicetree/ | |
6424 | F: arch/*/boot/dts/ | |
6425 | F: include/dt-bindings/ | |
6426 | ||
19f9d392 JB |
6427 | OPENRISC ARCHITECTURE |
6428 | M: Jonas Bonn <[email protected]> | |
6429 | W: http://openrisc.net | |
eab7c1c0 | 6430 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6431 | S: Maintained |
6432 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6433 | F: arch/openrisc/ |
19f9d392 | 6434 | |
ccb1352e JG |
6435 | OPENVSWITCH |
6436 | M: Jesse Gross <[email protected]> | |
6437 | L: [email protected] | |
6438 | W: http://openvswitch.org | |
6439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6440 | S: Maintained | |
6441 | F: net/openvswitch/ | |
6442 | ||
af39917d CL |
6443 | OPL4 DRIVER |
6444 | M: Clemens Ladisch <[email protected]> | |
6445 | L: [email protected] (moderated for non-subscribers) | |
6446 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6447 | S: Maintained | |
6448 | F: sound/drivers/opl4/ | |
6449 | ||
1da177e4 | 6450 | OPROFILE |
4cf7e718 | 6451 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6452 | L: [email protected] |
6453 | S: Maintained | |
81c4a8a6 | 6454 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6455 | F: arch/*/oprofile/ |
6456 | F: drivers/oprofile/ | |
6457 | F: include/linux/oprofile.h | |
1da177e4 | 6458 | |
e2d1d6c0 | 6459 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6460 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6461 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6462 | L: [email protected] (moderated for non-subscribers) |
6463 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6465 | S: Supported |
679655da JP |
6466 | F: Documentation/filesystems/ocfs2.txt |
6467 | F: Documentation/filesystems/dlmfs.txt | |
6468 | F: fs/ocfs2/ | |
e2d1d6c0 | 6469 | |
1da177e4 | 6470 | ORINOCO DRIVER |
724c6b35 | 6471 | L: [email protected] |
491b26b4 | 6472 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6473 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6474 | S: Orphan |
679655da | 6475 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6476 | |
42c55aa8 | 6477 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6478 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6479 | M: Benny Halevy <[email protected]> |
68274794 BH |
6480 | L: [email protected] |
6481 | W: http://open-osd.org | |
54e5881d | 6482 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6483 | S: Maintained |
42c55aa8 | 6484 | F: drivers/scsi/osd/ |
6b6f0b6c | 6485 | F: include/scsi/osd_* |
42c55aa8 | 6486 | F: fs/exofs/ |
68274794 | 6487 | |
e2d1d6c0 | 6488 | P54 WIRELESS DRIVER |
084cb0fe | 6489 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6490 | L: [email protected] |
084cb0fe | 6491 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6492 | S: Maintained |
679655da | 6493 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6494 | |
f5cd7872 | 6495 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6496 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6497 | L: [email protected] |
6498 | S: Maintained | |
ded19add | 6499 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6500 | |
beb58aa3 | 6501 | PA SEMI SMBUS DRIVER |
8b58be88 | 6502 | M: Olof Johansson <[email protected]> |
846557d3 | 6503 | L: [email protected] |
beb58aa3 | 6504 | S: Maintained |
679655da | 6505 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6506 | |
48fc267e SK |
6507 | PADATA PARALLEL EXECUTION MECHANISM |
6508 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6509 | L: [email protected] |
6510 | S: Maintained | |
6511 | F: kernel/padata.c | |
6512 | F: include/linux/padata.h | |
6513 | F: Documentation/padata.txt | |
6514 | ||
709ee531 | 6515 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6516 | M: Harald Welte <[email protected]> |
d0944853 | 6517 | L: [email protected] |
709ee531 | 6518 | S: Maintained |
679655da | 6519 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6520 | |
368dd5ac | 6521 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6522 | M: David Howells <[email protected]> |
6523 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6524 | L: [email protected] (moderated for non-subscribers) |
6525 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6526 | S: Maintained | |
679655da JP |
6527 | F: Documentation/mn10300/ |
6528 | F: arch/mn10300/ | |
4fa97181 | 6529 | |
1da177e4 | 6530 | PARALLEL PORT SUPPORT |
3dd1a329 | 6531 | L: [email protected] (subscribers-only) |
5fdc2abe | 6532 | S: Orphan |
679655da JP |
6533 | F: drivers/parport/ |
6534 | F: include/linux/parport*.h | |
6535 | F: drivers/char/ppdev.c | |
c117ab84 | 6536 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6537 | |
4cdf6bc2 | 6538 | PARAVIRT_OPS INTERFACE |
d633180c | 6539 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6540 | M: Chris Wright <[email protected]> |
6541 | M: Alok Kataria <[email protected]> | |
6542 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6543 | L: [email protected] |
4cdf6bc2 | 6544 | S: Supported |
679655da JP |
6545 | F: Documentation/ia64/paravirt_ops.txt |
6546 | F: arch/*/kernel/paravirt* | |
6547 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6548 | |
e2d1d6c0 | 6549 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6550 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6551 | L: [email protected] (subscribers-only) |
6552 | W: http://www.torque.net/linux-pp.html | |
6553 | S: Maintained | |
679655da JP |
6554 | F: Documentation/blockdev/paride.txt |
6555 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6556 | |
6557 | PARISC ARCHITECTURE | |
b8828770 | 6558 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6559 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6560 | L: [email protected] |
6561 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6562 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6565 | S: Maintained |
679655da | 6566 | F: arch/parisc/ |
2b6bac9e | 6567 | F: Documentation/parisc/ |
679655da | 6568 | F: drivers/parisc/ |
2b6bac9e HD |
6569 | F: drivers/char/agp/parisc-agp.c |
6570 | F: drivers/input/serio/gscps2.c | |
6571 | F: drivers/parport/parport_gsc.* | |
6572 | F: drivers/tty/serial/8250/8250_gsc.c | |
6573 | F: drivers/video/sti* | |
6574 | F: drivers/video/console/sti* | |
6575 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6576 | |
1662d32c | 6577 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6578 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6579 | L: [email protected] |
6580 | S: Maintained | |
679655da JP |
6581 | F: Documentation/hwmon/pc87360 |
6582 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6583 | |
6584 | PC8736x GPIO DRIVER | |
8b58be88 | 6585 | M: Jim Cromie <[email protected]> |
1662d32c | 6586 | S: Maintained |
679655da | 6587 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6588 | |
1ad107fd | 6589 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6590 | M: Jean Delvare <[email protected]> |
1ad107fd JD |
6591 | L: [email protected] |
6592 | S: Maintained | |
6593 | F: Documentation/hwmon/pc87427 | |
6594 | F: drivers/hwmon/pc87427.c | |
6595 | ||
b26e0ed4 | 6596 | PCA9532 LED DRIVER |
8b58be88 | 6597 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6598 | S: Maintained |
d5ca6918 JP |
6599 | F: drivers/leds/leds-pca9532.c |
6600 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6601 | |
5ce914a8 | 6602 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6603 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6604 | L: [email protected] |
6605 | S: Maintained | |
b4f0b74e | 6606 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6607 | |
3971dae5 | 6608 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6609 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6610 | S: Maintained |
6611 | F: drivers/firmware/pcdp.* | |
6612 | ||
065c6359 | 6613 | PCI ERROR RECOVERY |
6305902c | 6614 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6615 | L: [email protected] |
065c6359 | 6616 | S: Supported |
679655da | 6617 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6618 | |
1da177e4 | 6619 | PCI SUBSYSTEM |
5ac3a6d2 | 6620 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6621 | L: [email protected] |
99662dd1 | 6622 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6623 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6624 | S: Supported |
679655da JP |
6625 | F: Documentation/PCI/ |
6626 | F: drivers/pci/ | |
6627 | F: include/linux/pci* | |
6b49ee49 | 6628 | F: arch/x86/pci/ |
1da177e4 | 6629 | |
f0b75693 BH |
6630 | PCI DRIVER FOR IMX6 |
6631 | M: Richard Zhu <[email protected]> | |
6632 | M: Shawn Guo <[email protected]> | |
6633 | L: [email protected] | |
6634 | L: [email protected] (moderated for non-subscribers) | |
6635 | S: Maintained | |
6636 | F: drivers/pci/host/*imx6* | |
6637 | ||
6638 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6639 | M: Thomas Petazzoni <[email protected]> | |
6640 | M: Jason Cooper <[email protected]> | |
6641 | L: [email protected] | |
6642 | L: [email protected] (moderated for non-subscribers) | |
6643 | S: Maintained | |
6644 | F: drivers/pci/host/*mvebu* | |
6645 | ||
0447cfd7 TR |
6646 | PCI DRIVER FOR NVIDIA TEGRA |
6647 | M: Thierry Reding <[email protected]> | |
6648 | L: [email protected] | |
f0b75693 | 6649 | L: [email protected] |
0447cfd7 TR |
6650 | S: Supported |
6651 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6652 | F: drivers/pci/host/pci-tegra.c | |
6653 | ||
f0b75693 BH |
6654 | PCI DRIVER FOR RENESAS R-CAR |
6655 | M: Simon Horman <[email protected]> | |
6656 | L: [email protected] | |
6657 | L: [email protected] | |
6658 | S: Maintained | |
6659 | F: drivers/pci/host/*rcar* | |
6660 | ||
4af82255 JH |
6661 | PCI DRIVER FOR SAMSUNG EXYNOS |
6662 | M: Jingoo Han <[email protected]> | |
6663 | L: [email protected] | |
f0b75693 BH |
6664 | L: [email protected] (moderated for non-subscribers) |
6665 | L: [email protected] (moderated for non-subscribers) | |
4af82255 JH |
6666 | S: Maintained |
6667 | F: drivers/pci/host/pci-exynos.c | |
6668 | ||
f0b75693 BH |
6669 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6670 | M: Mohit Kumar <[email protected]> | |
6671 | M: Jingoo Han <[email protected]> | |
6672 | L: [email protected] | |
6673 | S: Maintained | |
6674 | F: drivers/pci/host/*designware* | |
6675 | ||
1da177e4 | 6676 | PCMCIA SUBSYSTEM |
4230dfc9 | 6677 | P: Linux PCMCIA Team |
f5df5881 | 6678 | L: [email protected] |
6650e0a5 | 6679 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6681 | S: Maintained |
679655da JP |
6682 | F: Documentation/pcmcia/ |
6683 | F: drivers/pcmcia/ | |
6684 | F: include/pcmcia/ | |
1da177e4 LT |
6685 | |
6686 | PCNET32 NETWORK DRIVER | |
227fb925 | 6687 | M: Don Fry <[email protected]> |
979b6c13 | 6688 | L: [email protected] |
1da177e4 | 6689 | S: Maintained |
b955f6ca | 6690 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6691 | |
48fc267e SK |
6692 | PCRYPT PARALLEL CRYPTO ENGINE |
6693 | M: Steffen Klassert <[email protected]> | |
6694 | L: [email protected] | |
6695 | S: Maintained | |
6696 | F: crypto/pcrypt.c | |
6697 | F: include/crypto/pcrypt.h | |
6698 | ||
e72df0b8 TH |
6699 | PER-CPU MEMORY ALLOCATOR |
6700 | M: Tejun Heo <[email protected]> | |
6701 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6703 | S: Maintained | |
6704 | F: include/linux/percpu*.h | |
6705 | F: mm/percpu*.c | |
6706 | F: arch/*/include/asm/percpu.h | |
6707 | ||
ad4ecbcb | 6708 | PER-TASK DELAY ACCOUNTING |
185e595f | 6709 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6710 | S: Maintained |
679655da JP |
6711 | F: include/linux/delayacct.h |
6712 | F: kernel/delayacct.c | |
ad4ecbcb | 6713 | |
57c0c15b | 6714 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6715 | M: Peter Zijlstra <[email protected]> |
6716 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6717 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6718 | M: Arnaldo Carvalho de Melo <[email protected]> |
981c3a4f | 6719 | L: [email protected] |
75fc2d37 | 6720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6721 | S: Supported |
d53e8365 | 6722 | F: kernel/events/* |
a003236c | 6723 | F: include/linux/perf_event.h |
c117ab84 | 6724 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6725 | F: arch/*/kernel/perf_event*.c |
6726 | F: arch/*/kernel/*/perf_event*.c | |
6727 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6728 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6729 | F: arch/*/kernel/perf_callchain.c |
6730 | F: tools/perf/ | |
6c0b3244 | 6731 | |
dd49d0f5 | 6732 | PERSONALITY HANDLING |
8b58be88 | 6733 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6734 | L: [email protected] |
6735 | S: Maintained | |
679655da | 6736 | F: include/linux/personality.h |
c117ab84 | 6737 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6738 | |
838e7a03 | 6739 | PHONET PROTOCOL |
2a06b40f | 6740 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6741 | S: Supported |
6742 | F: Documentation/networking/phonet.txt | |
6743 | F: include/linux/phonet.h | |
6744 | F: include/net/phonet/ | |
c117ab84 | 6745 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6746 | F: net/phonet/ |
6747 | ||
1da177e4 | 6748 | PHRAM MTD DRIVER |
8b58be88 | 6749 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6750 | L: [email protected] |
6751 | S: Maintained | |
679655da | 6752 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6753 | |
efdbb10e BP |
6754 | PICOLCD HID DRIVER |
6755 | M: Bruno Prémont <[email protected]> | |
6756 | L: [email protected] | |
6757 | S: Maintained | |
6758 | F: drivers/hid/hid-picolcd* | |
6759 | ||
a53bfa07 JI |
6760 | PICOXCELL SUPPORT |
6761 | M: Jamie Iles <[email protected]> | |
6762 | L: [email protected] (moderated for non-subscribers) | |
6763 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6764 | S: Supported | |
14430813 | 6765 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6766 | F: drivers/*/picoxcell* |
6767 | F: drivers/*/*/picoxcell* | |
6768 | ||
2744e8af LW |
6769 | PIN CONTROL SUBSYSTEM |
6770 | M: Linus Walleij <[email protected]> | |
6771 | S: Maintained | |
07f29ba6 | 6772 | F: drivers/pinctrl/ |
8e406fe4 | 6773 | F: include/linux/pinctrl/ |
2744e8af | 6774 | |
2201bbb8 JCPV |
6775 | PIN CONTROLLER - ATMEL AT91 |
6776 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6777 | L: [email protected] (moderated for non-subscribers) | |
6778 | S: Maintained | |
6779 | F: drivers/pinctrl/pinctrl-at91.c | |
6780 | ||
b75e60d6 DA |
6781 | PIN CONTROLLER - SAMSUNG |
6782 | M: Tomasz Figa <[email protected]> | |
6783 | M: Thomas Abraham <[email protected]> | |
6784 | L: [email protected] (moderated for non-subscribers) | |
6785 | L: [email protected] (moderated for non-subscribers) | |
6786 | S: Maintained | |
6787 | F: drivers/pinctrl/pinctrl-exynos.* | |
6788 | F: drivers/pinctrl/pinctrl-s3c* | |
6789 | F: drivers/pinctrl/pinctrl-samsung.* | |
6790 | ||
deda8287 | 6791 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6792 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6793 | L: [email protected] |
6794 | L: [email protected] (moderated for non-subscribers) | |
6795 | W: http://www.st.com/spear | |
6796 | S: Maintained | |
8e406fe4 | 6797 | F: drivers/pinctrl/spear/ |
deda8287 | 6798 | |
249a6771 | 6799 | PKTCDVD DRIVER |
dbd47133 | 6800 | M: Jiri Kosina <[email protected]> |
249a6771 | 6801 | S: Maintained |
679655da JP |
6802 | F: drivers/block/pktcdvd.c |
6803 | F: include/linux/pktcdvd.h | |
c117ab84 | 6804 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6805 | |
b31d8273 G |
6806 | PKUNITY SOC DRIVERS |
6807 | M: Guan Xuetao <[email protected]> | |
6808 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6809 | S: Maintained | |
6810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6811 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6812 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6813 | F: drivers/video/fb-puv3.c |
2809e80b | 6814 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6815 | |
9d2ecfb7 | 6816 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6817 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6818 | L: [email protected] |
6819 | W: http://www.lm-sensors.org/ | |
6820 | W: http://www.roeck-us.net/linux/drivers/ | |
6821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6822 | S: Maintained | |
6823 | F: Documentation/hwmon/pmbus | |
6824 | F: drivers/hwmon/pmbus/ | |
6825 | F: include/linux/i2c/pmbus.h | |
6826 | ||
89a36810 | 6827 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6828 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6829 | L: [email protected] |
6830 | W: http://www.pmc-sierra.com/ | |
6831 | S: Supported | |
6832 | F: drivers/scsi/pmcraid.* | |
6833 | ||
dbf9bfe6 | 6834 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6835 | M: [email protected] |
dbf9bfe6 | 6836 | M: [email protected] |
6837 | L: [email protected] | |
6838 | S: Supported | |
6839 | F: drivers/scsi/pm8001/ | |
6840 | ||
1da177e4 | 6841 | POSIX CLOCKS and TIMERS |
8b58be88 | 6842 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 6843 | L: [email protected] |
75fc2d37 | 6844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6845 | S: Supported |
679655da JP |
6846 | F: fs/timerfd.c |
6847 | F: include/linux/timer* | |
6848 | F: kernel/*timer* | |
1da177e4 | 6849 | |
3be86148 | 6850 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
57318935 | 6851 | M: Dmitry Eremin-Solenikov <[email protected]> |
8b58be88 | 6852 | M: David Woodhouse <[email protected]> |
54e5881d | 6853 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6854 | S: Maintained |
679655da | 6855 | F: include/linux/power_supply.h |
8cd725a1 | 6856 | F: drivers/power/ |
3be86148 | 6857 | |
1da177e4 | 6858 | PNP SUPPORT |
46a1f21a | 6859 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6860 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6861 | S: Maintained |
679655da | 6862 | F: drivers/pnp/ |
1da177e4 | 6863 | |
999445d4 | 6864 | PNXxxxx I2C DRIVER |
8b58be88 | 6865 | M: Vitaly Wool <[email protected]> |
846557d3 | 6866 | L: [email protected] |
999445d4 | 6867 | S: Maintained |
679655da | 6868 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6869 | |
1da177e4 | 6870 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6871 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6872 | L: [email protected] |
6873 | S: Maintained | |
224cf5ad | 6874 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6875 | |
6876 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6877 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6878 | S: Maintained |
679655da | 6879 | F: net/atm/pppoatm.c |
c117ab84 | 6880 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6881 | |
6882 | PPP OVER ETHERNET | |
8b58be88 | 6883 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6884 | S: Maintained |
224cf5ad JK |
6885 | F: drivers/net/ppp/pppoe.c |
6886 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6887 | |
a6d2370b | 6888 | PPP OVER L2TP |
8b58be88 | 6889 | M: James Chapman <[email protected]> |
a6d2370b | 6890 | S: Maintained |
90ca28d1 | 6891 | F: net/l2tp/l2tp_ppp.c |
679655da | 6892 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6893 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6894 | |
eae9d2ba | 6895 | PPS SUPPORT |
8b58be88 | 6896 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6897 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6898 | L: [email protected] (subscribers-only) | |
6899 | S: Maintained | |
cabaaf41 JP |
6900 | F: Documentation/pps/ |
6901 | F: drivers/pps/ | |
6902 | F: include/linux/pps*.h | |
eae9d2ba | 6903 | |
71a6d0af HW |
6904 | PPTP DRIVER |
6905 | M: Dmitry Kozlov <[email protected]> | |
6906 | L: [email protected] | |
6907 | S: Maintained | |
224cf5ad | 6908 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6909 | W: http://sourceforge.net/projects/accel-pptp |
6910 | ||
1da177e4 | 6911 | PREEMPTIBLE KERNEL |
8b58be88 | 6912 | M: Robert Love <[email protected]> |
1da177e4 LT |
6913 | L: [email protected] |
6914 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6915 | S: Supported | |
679655da JP |
6916 | F: Documentation/preempt-locking.txt |
6917 | F: include/linux/preempt.h | |
1da177e4 LT |
6918 | |
6919 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6920 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6921 | L: [email protected] |
9ef80804 | 6922 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6923 | S: Obsolete |
679655da | 6924 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6925 | |
b3277dfa | 6926 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 6927 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6928 | L: [email protected] |
6929 | S: Maintained | |
679655da | 6930 | F: drivers/ata/sata_promise.* |
b3277dfa | 6931 | |
02c18891 | 6932 | PS3 NETWORK SUPPORT |
b809b9ca | 6933 | M: Geoff Levand <[email protected]> |
02c18891 | 6934 | L: [email protected] |
a4724ed6 | 6935 | L: [email protected] |
b809b9ca | 6936 | S: Maintained |
8df158ac | 6937 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6938 | |
f58a9d17 | 6939 | PS3 PLATFORM SUPPORT |
b809b9ca | 6940 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6941 | L: [email protected] |
6942 | L: [email protected] | |
b809b9ca | 6943 | S: Maintained |
679655da JP |
6944 | F: arch/powerpc/boot/ps3* |
6945 | F: arch/powerpc/include/asm/lv1call.h | |
6946 | F: arch/powerpc/include/asm/ps3*.h | |
6947 | F: arch/powerpc/platforms/ps3/ | |
6948 | F: drivers/*/ps3* | |
6949 | F: drivers/ps3/ | |
fec629b8 | 6950 | F: drivers/rtc/rtc-ps3.c |
679655da | 6951 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6952 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6953 | |
cffb4add | 6954 | PS3VRAM DRIVER |
8b58be88 | 6955 | M: Jim Paris <[email protected]> |
a4724ed6 | 6956 | L: [email protected] |
cffb4add | 6957 | S: Maintained |
8a3977cb | 6958 | F: drivers/block/ps3vram.c |
cffb4add | 6959 | |
8defe599 | 6960 | PSTORE FILESYSTEM |
9d5e2a02 | 6961 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6962 | M: Colin Cross <[email protected]> |
6963 | M: Kees Cook <[email protected]> | |
6964 | M: Tony Luck <[email protected]> | |
6965 | S: Maintained | |
6966 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6967 | F: fs/pstore/ | |
6968 | F: include/linux/pstore* | |
04851772 | 6969 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6970 | F: drivers/acpi/apei/erst.c |
6971 | ||
7fbc415d RC |
6972 | PTP HARDWARE CLOCK SUPPORT |
6973 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6974 | L: [email protected] |
7fbc415d RC |
6975 | S: Maintained |
6976 | W: http://linuxptp.sourceforge.net/ | |
6977 | F: Documentation/ABI/testing/sysfs-ptp | |
6978 | F: Documentation/ptp/* | |
0ecb3cdd | 6979 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6980 | F: drivers/net/phy/dp83640* |
6981 | F: drivers/ptp/* | |
6982 | F: include/linux/ptp_cl* | |
6983 | ||
cf94a4d1 | 6984 | PTRACE SUPPORT |
8b58be88 JP |
6985 | M: Roland McGrath <[email protected]> |
6986 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6987 | S: Maintained |
6988 | F: include/asm-generic/syscall.h | |
6989 | F: include/linux/ptrace.h | |
6990 | F: include/linux/regset.h | |
6991 | F: include/linux/tracehook.h | |
c117ab84 | 6992 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6993 | F: kernel/ptrace.c |
6994 | ||
8320204a | 6995 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6996 | M: Mike Isely <[email protected]> |
16e9495d | 6997 | L: [email protected] (subscribers-only) |
661263b5 | 6998 | L: [email protected] |
8320204a | 6999 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7000 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7001 | S: Maintained |
679655da | 7002 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7003 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7004 | |
39532e6c HG |
7005 | PWC WEBCAM DRIVER |
7006 | M: Hans de Goede <[email protected]> | |
7007 | L: [email protected] | |
7008 | T: git git://linuxtv.org/media_tree.git | |
7009 | S: Maintained | |
7010 | F: drivers/media/usb/pwc/* | |
7011 | ||
200efedd | 7012 | PWM SUBSYSTEM |
aa3495f7 TR |
7013 | M: Thierry Reding <[email protected]> |
7014 | L: [email protected] | |
0c2498f1 | 7015 | S: Maintained |
006e854f | 7016 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7017 | F: Documentation/pwm.txt |
7018 | F: Documentation/devicetree/bindings/pwm/ | |
7019 | F: include/linux/pwm.h | |
0c2498f1 | 7020 | F: drivers/pwm/ |
a140b98d TR |
7021 | F: drivers/video/backlight/pwm_bl.c |
7022 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7023 | |
30ec261e | 7024 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
7025 | M: Eric Miao <[email protected]> |
7026 | M: Russell King <[email protected]> | |
a323f664 | 7027 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 7028 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
7029 | T: git git://github.com/hzhuang1/linux.git |
7030 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 7031 | S: Maintained |
679655da JP |
7032 | F: arch/arm/mach-pxa/ |
7033 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7034 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
7035 | F: drivers/usb/gadget/pxa2* |
7036 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 7037 | F: sound/arm/pxa* |
14430813 | 7038 | F: sound/soc/pxa/ |
1da177e4 | 7039 | |
ec64d3bf EG |
7040 | PXA3xx NAND FLASH DRIVER |
7041 | M: Ezequiel Garcia <[email protected]> | |
7042 | L: [email protected] | |
7043 | S: Maintained | |
7044 | F: drivers/mtd/nand/pxa3xx-nand.c | |
7045 | ||
3f640c61 | 7046 | MMP SUPPORT |
8b58be88 | 7047 | M: Eric Miao <[email protected]> |
a323f664 | 7048 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 7049 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
7050 | T: git git://github.com/hzhuang1/linux.git |
7051 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7052 | S: Maintained |
3f640c61 | 7053 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7054 | |
272f133a PO |
7055 | PXA MMCI DRIVER |
7056 | S: Orphan | |
7057 | ||
57f63bc8 | 7058 | PXA RTC DRIVER |
8b58be88 | 7059 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
7060 | L: [email protected] |
7061 | S: Maintained | |
7062 | ||
52a09a04 | 7063 | QIB DRIVER |
8473c603 | 7064 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
7065 | L: [email protected] |
7066 | S: Supported | |
7067 | F: drivers/infiniband/hw/qib/ | |
7068 | ||
5e9772b9 JS |
7069 | QLOGIC QLA1280 SCSI DRIVER |
7070 | M: Michael Reed <[email protected]> | |
7071 | L: [email protected] | |
7072 | S: Maintained | |
7073 | F: drivers/scsi/qla1280.[ch] | |
7074 | ||
1da177e4 | 7075 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 7076 | M: [email protected] |
1da177e4 LT |
7077 | L: [email protected] |
7078 | S: Supported | |
679655da JP |
7079 | F: Documentation/scsi/LICENSE.qla2xxx |
7080 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7081 | |
883c98fe | 7082 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7083 | M: Vikas Chaudhary <[email protected]> |
7084 | M: [email protected] | |
7085 | L: [email protected] | |
7086 | S: Supported | |
bacfb81b | 7087 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7088 | F: drivers/scsi/qla4xxx/ |
7089 | ||
5a4faa87 | 7090 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7091 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7092 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
7093 | M: [email protected] |
7094 | L: [email protected] | |
7095 | S: Supported | |
679655da | 7096 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7097 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7098 | |
0ec00f03 | 7099 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 7100 | M: Shahed Shaikh <[email protected]> |
e6b0b019 | 7101 | M: [email protected] |
0ec00f03 AKS |
7102 | L: [email protected] |
7103 | S: Supported | |
aa43c215 | 7104 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7105 | |
c4e84bde | 7106 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 7107 | M: Shahed Shaikh <[email protected]> |
b997d79a | 7108 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7109 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 7110 | M: [email protected] |
c4e84bde RM |
7111 | L: [email protected] |
7112 | S: Supported | |
aa43c215 | 7113 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7114 | |
1da177e4 | 7115 | QNX4 FILESYSTEM |
8b58be88 | 7116 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
7117 | W: http://www.alarsen.net/linux/qnx4fs/ |
7118 | S: Maintained | |
80811493 | 7119 | F: fs/qnx4/ |
c117ab84 CEB |
7120 | F: include/uapi/linux/qnx4_fs.h |
7121 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7122 | |
91952bc0 AP |
7123 | QT1010 MEDIA DRIVER |
7124 | M: Antti Palosaari <[email protected]> | |
7125 | L: [email protected] | |
7126 | W: http://linuxtv.org/ | |
7127 | W: http://palosaari.fi/linux/ | |
7128 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7129 | T: git git://linuxtv.org/anttip/media_tree.git | |
7130 | S: Maintained | |
7131 | F: drivers/media/tuners/qt1010* | |
7132 | ||
966fb5ec SM |
7133 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7134 | M: QCA ath9k Development <[email protected]> | |
7135 | L: [email protected] | |
7136 | L: [email protected] | |
7137 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7138 | S: Supported | |
7139 | F: drivers/net/wireless/ath/ath9k/ | |
7140 | ||
2ea0ffcb KV |
7141 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7142 | M: Kalle Valo <[email protected]> | |
7143 | L: [email protected] | |
7144 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7145 | T: git git://github.com/kvalo/ath.git | |
7146 | S: Supported | |
7147 | F: drivers/net/wireless/ath/ath10k/ | |
7148 | ||
4f4567cf RK |
7149 | QUALCOMM HEXAGON ARCHITECTURE |
7150 | M: Richard Kuo <[email protected]> | |
7151 | L: [email protected] | |
7152 | S: Supported | |
7153 | F: arch/hexagon/ | |
7154 | ||
8e84c258 EK |
7155 | QUALCOMM WCN36XX WIRELESS DRIVER |
7156 | M: Eugene Krasnikov <[email protected]> | |
7157 | L: [email protected] | |
7158 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7159 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7160 | S: Supported | |
7161 | F: drivers/net/wireless/ath/wcn36xx/ | |
7162 | ||
35e3540b HV |
7163 | QUICKCAM PARALLEL PORT WEBCAMS |
7164 | M: Hans Verkuil <[email protected]> | |
7165 | L: [email protected] | |
7166 | T: git git://linuxtv.org/media_tree.git | |
7167 | W: http://linuxtv.org | |
7168 | S: Odd Fixes | |
7169 | F: drivers/media/parport/*-qcam* | |
7170 | ||
602adf40 | 7171 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7172 | M: Yehuda Sadeh <[email protected]> |
7173 | M: Sage Weil <[email protected]> | |
527a88b9 | 7174 | M: Alex Elder <[email protected]> |
602adf40 | 7175 | M: [email protected] |
09d90327 SW |
7176 | W: http://ceph.com/ |
7177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7178 | S: Supported |
7179 | F: drivers/block/rbd.c | |
7180 | F: drivers/block/rbd_types.h | |
7181 | ||
1da177e4 | 7182 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7183 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 7184 | L: [email protected] |
1da177e4 | 7185 | S: Maintained |
679655da | 7186 | F: drivers/video/aty/radeon* |
c117ab84 | 7187 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7188 | |
c6c9b34c HG |
7189 | RADIOSHARK RADIO DRIVER |
7190 | M: Hans de Goede <[email protected]> | |
7191 | L: [email protected] | |
7192 | T: git git://linuxtv.org/media_tree.git | |
7193 | S: Maintained | |
7194 | F: drivers/media/radio/radio-shark.c | |
7195 | ||
7196 | RADIOSHARK2 RADIO DRIVER | |
7197 | M: Hans de Goede <[email protected]> | |
7198 | L: [email protected] | |
7199 | T: git git://linuxtv.org/media_tree.git | |
7200 | S: Maintained | |
7201 | F: drivers/media/radio/radio-shark2.c | |
7202 | F: drivers/media/radio/radio-tea5777.c | |
7203 | ||
1da177e4 | 7204 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7205 | M: Paul Mackerras <[email protected]> |
c69f677c | 7206 | L: [email protected] |
1da177e4 | 7207 | S: Maintained |
679655da | 7208 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 7209 | |
e7839f25 | 7210 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7211 | P: rt2x00 project |
e1a6542f | 7212 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 7213 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 7214 | M: Helmut Schaa <[email protected]> |
95ea3627 | 7215 | L: [email protected] |
83fc9c89 | 7216 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
7217 | W: http://rt2x00.serialmonkey.com/ |
7218 | S: Maintained | |
54e5881d | 7219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7220 | F: drivers/net/wireless/rt2x00/ |
7221 | ||
9db5579b | 7222 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7223 | M: Nick Piggin <[email protected]> |
9db5579b | 7224 | S: Maintained |
679655da JP |
7225 | F: Documentation/blockdev/ramdisk.txt |
7226 | F: drivers/block/brd.c | |
9db5579b | 7227 | |
9e95ce27 | 7228 | RANDOM NUMBER DRIVER |
330e0a01 | 7229 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 7230 | S: Maintained |
679655da | 7231 | F: drivers/char/random.c |
9e95ce27 | 7232 | |
394b701c | 7233 | RAPIDIO SUBSYSTEM |
8b58be88 | 7234 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 7235 | M: Alexandre Bounine <[email protected]> |
394b701c | 7236 | S: Maintained |
679655da | 7237 | F: drivers/rapidio/ |
394b701c | 7238 | |
e2d1d6c0 | 7239 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7240 | L: [email protected] |
f52a5490 | 7241 | S: Orphan |
679655da | 7242 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7243 | |
7244 | RCUTORTURE MODULE | |
8b58be88 JP |
7245 | M: Josh Triplett <[email protected]> |
7246 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7247 | L: [email protected] |
f9094d8e | 7248 | S: Supported |
08deed1e | 7249 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7250 | F: Documentation/RCU/torture.txt |
4102adab | 7251 | F: kernel/rcu/torture.c |
e2d1d6c0 | 7252 | |
c87b9c60 PM |
7253 | RCUTORTURE TEST FRAMEWORK |
7254 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7255 | L: [email protected] |
c87b9c60 PM |
7256 | S: Supported |
7257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7258 | F: tools/testing/selftests/rcutorture | |
7259 | ||
c1f766b5 | 7260 | RDC R-321X SoC |
8b58be88 | 7261 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
7262 | S: Maintained |
7263 | ||
db17f395 | 7264 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7265 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
7266 | L: [email protected] |
7267 | S: Maintained | |
58565a35 | 7268 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7269 | |
a09ed661 | 7270 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 7271 | M: Chien Yen <[email protected]> |
fbb5a558 | 7272 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 7273 | S: Supported |
679655da | 7274 | F: net/rds/ |
a09ed661 | 7275 | |
595182bc | 7276 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
7277 | M: Dipankar Sarma <[email protected]> |
7278 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7279 | L: [email protected] |
9fab9787 | 7280 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7281 | S: Supported |
08deed1e | 7282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7283 | F: Documentation/RCU/ |
9fab9787 | 7284 | X: Documentation/RCU/torture.txt |
f9094d8e | 7285 | F: include/linux/rcu* |
4102adab PM |
7286 | X: include/linux/srcu.h |
7287 | F: kernel/rcu/ | |
7288 | X: kernel/rcu/torture.c | |
595182bc | 7289 | |
0c86edc0 | 7290 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7291 | M: Alessandro Zummo <[email protected]> |
76465493 | 7292 | L: [email protected] |
8a6e2535 | 7293 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7294 | S: Maintained |
679655da JP |
7295 | F: Documentation/rtc.txt |
7296 | F: drivers/rtc/ | |
7297 | F: include/linux/rtc.h | |
c117ab84 | 7298 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7299 | |
1da177e4 | 7300 | REISERFS FILE SYSTEM |
76c4e5ea | 7301 | L: [email protected] |
1da177e4 | 7302 | S: Supported |
679655da | 7303 | F: fs/reiserfs/ |
1da177e4 | 7304 | |
b83a313b | 7305 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7306 | M: Mark Brown <[email protected]> |
b83a313b MB |
7307 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7308 | S: Supported | |
7309 | F: drivers/base/regmap/ | |
7310 | F: include/linux/regmap.h | |
7311 | ||
400e64df OBC |
7312 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7313 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 7314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7315 | S: Maintained |
7316 | F: drivers/remoteproc/ | |
7317 | F: Documentation/remoteproc.txt | |
6fc26488 | 7318 | F: include/linux/remoteproc.h |
400e64df | 7319 | |
d8115db5 OBC |
7320 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7321 | M: Ohad Ben-Cohen <[email protected]> | |
7322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7323 | S: Maintained | |
7324 | F: drivers/rpmsg/ | |
7325 | F: Documentation/rpmsg.txt | |
7326 | F: include/linux/rpmsg.h | |
7327 | ||
e0897645 | 7328 | RFKILL |
8b58be88 | 7329 | M: Johannes Berg <[email protected]> |
19d337df | 7330 | L: [email protected] |
ce466579 JB |
7331 | W: http://wireless.kernel.org/ |
7332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7333 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7334 | S: Maintained |
505c9247 | 7335 | F: Documentation/rfkill.txt |
80811493 | 7336 | F: net/rfkill/ |
e0897645 | 7337 | |
67e054e9 ML |
7338 | RICOH SMARTMEDIA/XD DRIVER |
7339 | M: Maxim Levitsky <[email protected]> | |
7340 | S: Maintained | |
21c26f50 JP |
7341 | F: drivers/mtd/nand/r852.c |
7342 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7343 | |
92634125 ML |
7344 | RICOH R5C592 MEMORYSTICK DRIVER |
7345 | M: Maxim Levitsky <[email protected]> | |
7346 | S: Maintained | |
7347 | F: drivers/memstick/host/r592.* | |
7348 | ||
27f1d2f9 SA |
7349 | ROCCAT DRIVERS |
7350 | M: Stefan Achatz <[email protected]> | |
7351 | W: http://sourceforge.net/projects/roccat/ | |
7352 | S: Maintained | |
7353 | F: drivers/hid/hid-roccat* | |
7354 | F: include/linux/hid-roccat* | |
7355 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7356 | ||
1da177e4 LT |
7357 | ROCKETPORT DRIVER |
7358 | P: Comtrol Corp. | |
1da177e4 LT |
7359 | W: http://www.comtrol.com |
7360 | S: Maintained | |
679655da | 7361 | F: Documentation/serial/rocket.txt |
c897401b | 7362 | F: drivers/tty/rocket* |
1da177e4 LT |
7363 | |
7364 | ROSE NETWORK LAYER | |
8b58be88 | 7365 | M: Ralf Baechle <[email protected]> |
1da177e4 | 7366 | L: [email protected] |
d34cb28a | 7367 | W: http://www.linux-ax25.org/ |
1da177e4 | 7368 | S: Maintained |
679655da | 7369 | F: include/net/rose.h |
c117ab84 | 7370 | F: include/uapi/linux/rose.h |
679655da | 7371 | F: net/rose/ |
1da177e4 | 7372 | |
91952bc0 AP |
7373 | RTL2830 MEDIA DRIVER |
7374 | M: Antti Palosaari <[email protected]> | |
7375 | L: [email protected] | |
7376 | W: http://linuxtv.org/ | |
7377 | W: http://palosaari.fi/linux/ | |
7378 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7379 | T: git git://linuxtv.org/anttip/media_tree.git | |
7380 | S: Maintained | |
7381 | F: drivers/media/dvb-frontends/rtl2830* | |
7382 | ||
27a0aacf AP |
7383 | RTL2832 MEDIA DRIVER |
7384 | M: Antti Palosaari <[email protected]> | |
7385 | L: [email protected] | |
7386 | W: http://linuxtv.org/ | |
7387 | W: http://palosaari.fi/linux/ | |
7388 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7389 | T: git git://linuxtv.org/anttip/media_tree.git | |
7390 | S: Maintained | |
7391 | F: drivers/media/dvb-frontends/rtl2832* | |
7392 | ||
59840488 | 7393 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7394 | M: "John W. Linville" <[email protected]> |
605bebe2 | 7395 | L: [email protected] |
491b26b4 | 7396 | W: http://wireless.kernel.org/ |
54e5881d | 7397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7398 | S: Maintained |
3cfeb0c3 | 7399 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7400 | |
59840488 | 7401 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7402 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
7403 | M: Hin-Tak Leung <[email protected]> |
7404 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 7405 | L: [email protected] |
491b26b4 | 7406 | W: http://wireless.kernel.org/ |
54e5881d | 7407 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7408 | S: Maintained |
3cfeb0c3 | 7409 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7410 | |
3cf0c8ad LF |
7411 | RTL8192CE WIRELESS DRIVER |
7412 | M: Larry Finger <[email protected]> | |
7413 | M: Chaoming Li <[email protected]> | |
7414 | L: [email protected] | |
491b26b4 | 7415 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7417 | S: Maintained | |
7418 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7419 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7420 | |
9eb8ef74 | 7421 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7422 | M: Antonino Daplas <[email protected]> |
c69f677c | 7423 | L: [email protected] |
ce00f85c | 7424 | S: Maintained |
679655da | 7425 | F: drivers/video/savage/ |
9eb8ef74 | 7426 | |
1da177e4 | 7427 | S390 |
8b58be88 JP |
7428 | M: Martin Schwidefsky <[email protected]> |
7429 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 7430 | M: [email protected] |
d58140cc | 7431 | L: [email protected] |
5238da45 HC |
7432 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7433 | S: Supported | |
679655da | 7434 | F: arch/s390/ |
a968cd3e | 7435 | F: drivers/s390/ |
3bfe6858 JN |
7436 | F: Documentation/s390/ |
7437 | F: Documentation/DocBook/s390* | |
5238da45 | 7438 | |
322986ca SO |
7439 | S390 COMMON I/O LAYER |
7440 | M: Sebastian Ott <[email protected]> | |
7441 | M: Peter Oberparleiter <[email protected]> | |
7442 | L: [email protected] | |
7443 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7444 | S: Supported | |
7445 | F: drivers/s390/cio/ | |
7446 | ||
7447 | S390 DASD DRIVER | |
7448 | M: Stefan Weinhuber <[email protected]> | |
7449 | M: Stefan Haberland <[email protected]> | |
7450 | L: [email protected] | |
7451 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7452 | S: Supported | |
7453 | F: drivers/s390/block/dasd* | |
7454 | F: block/partitions/ibm.c | |
7455 | ||
5238da45 | 7456 | S390 NETWORK DRIVERS |
8b58be88 JP |
7457 | M: Ursula Braun <[email protected]> |
7458 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7459 | M: [email protected] |
d58140cc | 7460 | L: [email protected] |
5238da45 HC |
7461 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7462 | S: Supported | |
679655da | 7463 | F: drivers/s390/net/ |
5238da45 | 7464 | |
322986ca SO |
7465 | S390 PCI SUBSYSTEM |
7466 | M: Sebastian Ott <[email protected]> | |
7467 | M: Gerald Schaefer <[email protected]> | |
7468 | L: [email protected] | |
7469 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7470 | S: Supported | |
7471 | F: arch/s390/pci/ | |
7472 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
7473 | ||
feed9b62 | 7474 | S390 ZCRYPT DRIVER |
5c8d0983 | 7475 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7476 | M: [email protected] |
7477 | L: [email protected] | |
a968cd3e | 7478 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7479 | S: Supported |
d5ca6918 | 7480 | F: drivers/s390/crypto/ |
feed9b62 | 7481 | |
5238da45 | 7482 | S390 ZFCP DRIVER |
d38e19d0 | 7483 | M: Steffen Maier <[email protected]> |
5238da45 | 7484 | M: [email protected] |
d58140cc | 7485 | L: [email protected] |
5238da45 | 7486 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7487 | S: Supported |
679655da | 7488 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7489 | |
dd96df2c | 7490 | S390 IUCV NETWORK LAYER |
8b58be88 | 7491 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7492 | M: [email protected] |
7493 | L: [email protected] | |
7494 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7495 | S: Supported | |
679655da JP |
7496 | F: drivers/s390/net/*iucv* |
7497 | F: include/net/iucv/ | |
7498 | F: net/iucv/ | |
dd96df2c | 7499 | |
4dde7f75 | 7500 | S3C24XX SD/MMC Driver |
8b58be88 | 7501 | M: Ben Dooks <[email protected]> |
efc03ecb | 7502 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7503 | S: Supported |
679655da | 7504 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7505 | |
1f15a229 HV |
7506 | SAA6588 RDS RECEIVER DRIVER |
7507 | M: Hans Verkuil <[email protected]> | |
7508 | L: [email protected] | |
7509 | T: git git://linuxtv.org/media_tree.git | |
7510 | W: http://linuxtv.org | |
7511 | S: Odd Fixes | |
7512 | F: drivers/media/i2c/saa6588* | |
7513 | ||
98ed12e6 | 7514 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7515 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7516 | L: [email protected] |
7517 | W: http://linuxtv.org | |
7518 | T: git git://linuxtv.org/media_tree.git | |
7519 | S: Odd fixes | |
e42bf501 | 7520 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7521 | F: drivers/media/pci/saa7134/ |
7522 | ||
1da177e4 | 7523 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7524 | M: Hans Verkuil <[email protected]> |
661263b5 | 7525 | L: [email protected] |
275ffde4 | 7526 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7527 | S: Maintained |
90d72ac6 MCC |
7528 | F: drivers/media/common/saa7146/ |
7529 | F: drivers/media/pci/saa7146/ | |
7530 | F: include/media/saa7146* | |
1da177e4 | 7531 | |
92304a40 | 7532 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7533 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7534 | L: [email protected] |
7535 | S: Maintained | |
7536 | F: drivers/platform/x86/samsung-laptop.c | |
7537 | ||
4a109cc0 | 7538 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7539 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7540 | L: [email protected] (moderated for non-subscribers) |
7541 | S: Supported | |
14430813 | 7542 | F: sound/soc/samsung/ |
4a109cc0 | 7543 | |
0d89a28b JH |
7544 | SAMSUNG FRAMEBUFFER DRIVER |
7545 | M: Jingoo Han <[email protected]> | |
7546 | L: [email protected] | |
7547 | S: Maintained | |
7548 | F: drivers/video/s3c-fb.c | |
7549 | ||
f69d3a17 SK |
7550 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7551 | M: Sangbeom Kim <[email protected]> | |
7552 | L: [email protected] | |
7553 | S: Supported | |
7554 | F: drivers/mfd/sec*.c | |
7555 | F: drivers/regulator/s2m*.c | |
7556 | F: drivers/regulator/s5m*.c | |
7557 | F: drivers/rtc/rtc-sec.c | |
7558 | F: include/linux/mfd/samsung/ | |
7559 | ||
038f5c4b SN |
7560 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7561 | M: Kyungmin Park <[email protected]> | |
7562 | M: Sylwester Nawrocki <[email protected]> | |
7563 | L: [email protected] | |
7564 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7565 | S: Supported | |
7566 | F: drivers/media/platform/exynos4-is/ | |
7567 | F: include/media/s5p_fimc.h | |
7568 | ||
6fd86ab2 SN |
7569 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7570 | M: Sylwester Nawrocki <[email protected]> | |
7571 | L: [email protected] | |
7572 | L: [email protected] (moderated for non-subscribers) | |
7573 | S: Maintained | |
7574 | F: drivers/media/platform/s3c-camif/ | |
7575 | F: include/media/s3c_camif.h | |
7576 | ||
b84ef24e AH |
7577 | SAMSUNG S5C73M3 CAMERA DRIVER |
7578 | M: Kyungmin Park <[email protected]> | |
7579 | M: Andrzej Hajda <[email protected]> | |
7580 | L: [email protected] | |
7581 | S: Supported | |
7582 | F: drivers/media/i2c/s5c73m3/* | |
7583 | ||
7d459937 AH |
7584 | SAMSUNG S5K5BAF CAMERA DRIVER |
7585 | M: Kyungmin Park <[email protected]> | |
7586 | M: Andrzej Hajda <[email protected]> | |
7587 | L: [email protected] | |
7588 | S: Supported | |
7589 | F: drivers/media/i2c/s5k5baf.c | |
7590 | ||
310e39c9 TF |
7591 | SAMSUNG SOC CLOCK DRIVERS |
7592 | M: Tomasz Figa <[email protected]> | |
7593 | S: Supported | |
7594 | L: [email protected] (moderated for non-subscribers) | |
7595 | F: drivers/clk/samsung/ | |
7596 | ||
66890ed6 BA |
7597 | SAMSUNG SXGBE DRIVERS |
7598 | M: Byungho An <[email protected]> | |
7599 | M: Girish K S <[email protected]> | |
7600 | M: Siva Reddy Kallam <[email protected]> | |
7601 | M: Vipul Pandya <[email protected]> | |
7602 | S: Supported | |
7603 | L: [email protected] | |
7604 | F: drivers/net/ethernet/samsung/sxgbe/ | |
7605 | ||
ca749e2a | 7606 | SERIAL DRIVERS |
5e30bbb7 | 7607 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7608 | L: [email protected] |
5e30bbb7 | 7609 | S: Maintained |
14430813 | 7610 | F: drivers/tty/serial/ |
ca749e2a | 7611 | |
aecb7b64 | 7612 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7613 | M: Viresh Kumar <[email protected]> |
337ae47c | 7614 | M: Andy Shevchenko <[email protected]> |
aecb7b64 VK |
7615 | S: Maintained |
7616 | F: include/linux/dw_dmac.h | |
61a76496 | 7617 | F: drivers/dma/dw/ |
aecb7b64 | 7618 | |
f9e37137 SJ |
7619 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7620 | M: Seungwon Jeon <[email protected]> | |
7621 | M: Jaehoon Chung <[email protected]> | |
7622 | L: [email protected] | |
7623 | S: Maintained | |
7624 | F: include/linux/mmc/dw_mmc.h | |
7625 | F: drivers/mmc/host/dw_mmc* | |
7626 | ||
9222d247 | 7627 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7628 | M: John Stultz <[email protected]> |
88606e80 | 7629 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 7630 | L: [email protected] |
75fc2d37 | 7631 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7632 | S: Supported |
7633 | F: include/linux/clocksource.h | |
7634 | F: include/linux/time.h | |
7635 | F: include/linux/timex.h | |
c117ab84 CEB |
7636 | F: include/uapi/linux/time.h |
7637 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7638 | F: kernel/time/clocksource.c |
7639 | F: kernel/time/time*.c | |
7640 | F: kernel/time/ntp.c | |
7641 | ||
5b3f03f0 | 7642 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7643 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7644 | M: Hans Verkuil <[email protected]> |
7645 | S: Odd Fixes | |
14430813 | 7646 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7647 | |
1da177e4 | 7648 | SC1200 WDT DRIVER |
b300645a | 7649 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7650 | S: Maintained |
679655da | 7651 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7652 | |
7653 | SCHEDULER | |
dd9b238c | 7654 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7655 | M: Peter Zijlstra <[email protected]> |
981c3a4f | 7656 | L: [email protected] |
75fc2d37 | 7657 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7658 | S: Maintained |
95c0d71d | 7659 | F: kernel/sched/ |
679655da | 7660 | F: include/linux/sched.h |
c117ab84 | 7661 | F: include/uapi/linux/sched.h |
c2eb505b | 7662 | F: include/linux/wait.h |
1da177e4 | 7663 | |
6bcf6737 | 7664 | SCORE ARCHITECTURE |
ed38665e | 7665 | M: Chen Liqin <[email protected]> |
a2681a75 | 7666 | M: Lennox Wu <[email protected]> |
ed38665e | 7667 | W: http://www.sunplus.com |
6bcf6737 | 7668 | S: Supported |
a2681a75 | 7669 | F: arch/score/ |
6bcf6737 | 7670 | |
1da177e4 | 7671 | SCSI CDROM DRIVER |
8b58be88 | 7672 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7673 | L: [email protected] |
7674 | W: http://www.kernel.dk | |
7675 | S: Maintained | |
679655da | 7676 | F: drivers/scsi/sr* |
1da177e4 | 7677 | |
fb50a83d | 7678 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 7679 | M: Bart Van Assche <[email protected]> |
fb50a83d RD |
7680 | L: [email protected] |
7681 | S: Supported | |
7682 | W: http://www.openfabrics.org | |
7683 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7685 | F: drivers/infiniband/ulp/srp/ | |
7686 | F: include/scsi/srp.h | |
7687 | ||
1da177e4 | 7688 | SCSI SG DRIVER |
8b58be88 | 7689 | M: Doug Gilbert <[email protected]> |
1da177e4 | 7690 | L: [email protected] |
59ab3c93 | 7691 | W: http://sg.danny.cz/sg |
1da177e4 | 7692 | S: Maintained |
59ab3c93 | 7693 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
7694 | F: drivers/scsi/sg.c |
7695 | F: include/scsi/sg.h | |
1da177e4 LT |
7696 | |
7697 | SCSI SUBSYSTEM | |
c95286d8 | 7698 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7699 | L: [email protected] |
54e5881d JP |
7700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7701 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7703 | S: Maintained |
679655da JP |
7704 | F: drivers/scsi/ |
7705 | F: include/scsi/ | |
1da177e4 LT |
7706 | |
7707 | SCSI TAPE DRIVER | |
8b58be88 | 7708 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7709 | L: [email protected] |
7710 | S: Maintained | |
679655da | 7711 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7712 | F: drivers/scsi/st.* |
7713 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7714 | |
7715 | SCTP PROTOCOL | |
8b6efb75 | 7716 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7717 | M: Neil Horman <[email protected]> |
1a418796 | 7718 | L: [email protected] |
5f85813c | 7719 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7720 | S: Maintained |
679655da JP |
7721 | F: Documentation/networking/sctp.txt |
7722 | F: include/linux/sctp.h | |
4d58c025 | 7723 | F: include/uapi/linux/sctp.h |
679655da JP |
7724 | F: include/net/sctp/ |
7725 | F: net/sctp/ | |
1da177e4 LT |
7726 | |
7727 | SCx200 CPU SUPPORT | |
8b58be88 | 7728 | M: Jim Cromie <[email protected]> |
1662d32c | 7729 | S: Odd Fixes |
679655da | 7730 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7731 | F: arch/x86/platform/scx200/ |
679655da JP |
7732 | F: drivers/watchdog/scx200_wdt.c |
7733 | F: drivers/i2c/busses/scx200* | |
7734 | F: drivers/mtd/maps/scx200_docflash.c | |
7735 | F: include/linux/scx200.h | |
1662d32c JC |
7736 | |
7737 | SCx200 GPIO DRIVER | |
8b58be88 | 7738 | M: Jim Cromie <[email protected]> |
1662d32c | 7739 | S: Maintained |
679655da JP |
7740 | F: drivers/char/scx200_gpio.c |
7741 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7742 | |
7743 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7744 | M: Jim Cromie <[email protected]> |
1662d32c | 7745 | S: Maintained |
679655da | 7746 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7747 | |
6a36913a | 7748 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7749 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7750 | L: [email protected] (subscribers-only) |
7751 | S: Maintained | |
679655da | 7752 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7753 | |
e7839f25 | 7754 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 7755 | M: Chris Ball <[email protected]> |
7a241d6e | 7756 | L: [email protected] |
245feaa6 CB |
7757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7758 | S: Maintained | |
7a241d6e | 7759 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7760 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7761 | |
3085e9c1 | 7762 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7763 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7764 | L: [email protected] |
7a241d6e | 7765 | L: [email protected] |
e2d1d6c0 | 7766 | S: Maintained |
d4a45787 | 7767 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7768 | |
0d1bb41a | 7769 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7770 | M: Ben Dooks <[email protected]> |
7a241d6e | 7771 | L: [email protected] |
0d1bb41a BD |
7772 | S: Maintained |
7773 | F: drivers/mmc/host/sdhci-s3c.c | |
7774 | ||
c63b3cba | 7775 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7776 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7777 | L: [email protected] |
c63b3cba VK |
7778 | L: [email protected] |
7779 | S: Maintained | |
7780 | F: drivers/mmc/host/sdhci-spear.c | |
7781 | ||
8711cca2 | 7782 | SECURITY SUBSYSTEM |
9b45c0d2 | 7783 | M: James Morris <[email protected]> |
8711cca2 | 7784 | L: [email protected] (suggested Cc:) |
89879a7e | 7785 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7786 | W: http://kernsec.org/ |
8711cca2 | 7787 | S: Supported |
7d2c86b5 | 7788 | F: security/ |
8711cca2 | 7789 | |
1da177e4 | 7790 | SECURITY CONTACT |
8b58be88 | 7791 | M: Security Officers <[email protected]> |
1da177e4 LT |
7792 | S: Supported |
7793 | ||
7794 | SELINUX SECURITY MODULE | |
e0238b4c | 7795 | M: Paul Moore <[email protected]> |
8b58be88 | 7796 | M: Stephen Smalley <[email protected]> |
8b58be88 | 7797 | M: Eric Paris <[email protected]> |
e0238b4c | 7798 | L: [email protected] (moderated for non-subscribers) |
f058925b | 7799 | W: http://selinuxproject.org |
5a5f2acf | 7800 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7801 | S: Supported |
679655da JP |
7802 | F: include/linux/selinux* |
7803 | F: security/selinux/ | |
6bde95ce | 7804 | F: scripts/selinux/ |
1da177e4 | 7805 | |
c1c124e9 JJ |
7806 | APPARMOR SECURITY MODULE |
7807 | M: John Johansen <[email protected]> | |
7808 | L: [email protected] (subscribers-only, general discussion) | |
7809 | W: apparmor.wiki.kernel.org | |
7810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7811 | S: Supported | |
7812 | F: security/apparmor/ | |
7813 | ||
cef2cf07 | 7814 | SENSABLE PHANTOM |
8b58be88 | 7815 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7816 | S: Maintained |
679655da | 7817 | F: drivers/misc/phantom.c |
c117ab84 | 7818 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7819 | |
4480f15b | 7820 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7821 | M: Tejun Heo <[email protected]> |
1da177e4 | 7822 | L: [email protected] |
3d9b9350 | 7823 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7824 | S: Supported |
d5ca6918 JP |
7825 | F: drivers/ata/ |
7826 | F: include/linux/ata.h | |
7827 | F: include/linux/libata.h | |
1da177e4 | 7828 | |
6733b39a | 7829 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7830 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7831 | L: [email protected] |
0ca43cc0 | 7832 | W: http://www.emulex.com |
3387f656 JP |
7833 | S: Supported |
7834 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7835 | |
6b7c5b94 | 7836 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7837 | M: Sathya Perla <[email protected]> |
7838 | M: Subbu Seetharaman <[email protected]> | |
7839 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7840 | L: [email protected] |
fea3af67 | 7841 | W: http://www.emulex.com |
7d2c86b5 | 7842 | S: Supported |
9aebddd1 | 7843 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7844 | |
8ceee660 | 7845 | SFC NETWORK DRIVER |
c06f51ea | 7846 | M: Solarflare linux maintainers <[email protected]> |
8533ccf3 | 7847 | M: Shradha Shah <[email protected]> |
c06f51ea | 7848 | L: [email protected] |
8ceee660 | 7849 | S: Supported |
874aeea5 | 7850 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7851 | |
e2d1d6c0 | 7852 | SGI GRU DRIVER |
cc883afc | 7853 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 7854 | S: Maintained |
679655da | 7855 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7856 | |
7857 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7858 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7859 | L: [email protected] |
7860 | S: Supported | |
679655da | 7861 | F: Documentation/ia64/serial.txt |
df621252 | 7862 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7863 | F: include/linux/ioc?.h |
e2d1d6c0 | 7864 | |
75312619 | 7865 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7866 | M: Cliff Whickman <[email protected]> |
7867 | M: Robin Holt <[email protected]> | |
75312619 | 7868 | S: Maintained |
679655da | 7869 | F: drivers/misc/sgi-xp/ |
75312619 | 7870 | |
49cc629d HV |
7871 | SI470X FM RADIO RECEIVER I2C DRIVER |
7872 | M: Hans Verkuil <[email protected]> | |
7873 | L: [email protected] | |
7874 | T: git git://linuxtv.org/media_tree.git | |
7875 | W: http://linuxtv.org | |
7876 | S: Odd Fixes | |
7877 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7878 | ||
7879 | SI470X FM RADIO RECEIVER USB DRIVER | |
7880 | M: Hans Verkuil <[email protected]> | |
7881 | L: [email protected] | |
7882 | T: git git://linuxtv.org/media_tree.git | |
7883 | W: http://linuxtv.org | |
7884 | S: Maintained | |
7885 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7886 | F: drivers/media/radio/si470x/radio-si470x.h | |
7887 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7888 | ||
c937ca03 EV |
7889 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7890 | M: Eduardo Valentin <[email protected]> | |
7891 | L: [email protected] | |
7892 | T: git git://linuxtv.org/media_tree.git | |
7893 | W: http://linuxtv.org | |
7894 | S: Odd Fixes | |
99995ded | 7895 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
7896 | |
7897 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7898 | M: Eduardo Valentin <[email protected]> | |
7899 | L: [email protected] | |
7900 | T: git git://linuxtv.org/media_tree.git | |
7901 | W: http://linuxtv.org | |
7902 | S: Odd Fixes | |
99995ded DR |
7903 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
7904 | ||
7905 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
7906 | M: Hans Verkuil <[email protected]> | |
7907 | L: [email protected] | |
7908 | T: git git://linuxtv.org/media_tree.git | |
7909 | W: http://linuxtv.org | |
7910 | S: Maintained | |
7911 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 7912 | |
beb91d46 | 7913 | SIANO DVB DRIVER |
1b2c14b4 | 7914 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7915 | L: [email protected] |
7916 | W: http://linuxtv.org | |
7917 | T: git git://linuxtv.org/media_tree.git | |
7918 | S: Odd fixes | |
7919 | F: drivers/media/common/siano/ | |
beb91d46 | 7920 | F: drivers/media/usb/siano/ |
beb91d46 | 7921 | F: drivers/media/usb/siano/ |
14430813 | 7922 | F: drivers/media/mmc/siano/ |
beb91d46 | 7923 | |
b618b69c GL |
7924 | SH_VEU V4L2 MEM2MEM DRIVER |
7925 | M: Guennadi Liakhovetski <[email protected]> | |
7926 | L: [email protected] | |
7927 | S: Maintained | |
7928 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7929 | |
7930 | SH_VOU V4L2 OUTPUT DRIVER | |
7931 | M: Guennadi Liakhovetski <[email protected]> | |
7932 | L: [email protected] | |
4290fd1a | 7933 | S: Odd Fixes |
b618b69c GL |
7934 | F: drivers/media/platform/sh_vou.c |
7935 | F: include/media/sh_vou.h | |
7936 | ||
6349d997 | 7937 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7938 | M: Len Brown <[email protected]> |
6349d997 LB |
7939 | L: [email protected] |
7940 | W: http://simplefirmware.org/ | |
7941 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7942 | S: Supported |
943fc810 | 7943 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7944 | F: drivers/sfi/ |
7945 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7946 | |
1da177e4 LT |
7947 | SIMTEC EB110ATX (Chalice CATS) |
7948 | P: Ben Dooks | |
b16957c6 BD |
7949 | P: Vincent Sanders <[email protected]> |
7950 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7951 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7952 | S: Supported | |
7953 | ||
7954 | SIMTEC EB2410ITX (BAST) | |
7955 | P: Ben Dooks | |
b16957c6 BD |
7956 | P: Vincent Sanders <[email protected]> |
7957 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7958 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7959 | S: Supported | |
15dba387 JP |
7960 | F: arch/arm/mach-s3c24xx/mach-bast.c |
7961 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
7962 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 7963 | |
4c5adde7 | 7964 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7965 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7966 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7967 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7968 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7969 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 7970 | S: Supported |
14430813 | 7971 | F: arch/arm/mach-davinci/ |
046d0a37 | 7972 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7973 | |
8d4b3f08 | 7974 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7975 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7976 | L: [email protected] |
7977 | L: [email protected] (moderated for non-subscribers) | |
7978 | W: http://linuxtv.org/ | |
7979 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7980 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7981 | S: Maintained |
8d4b3f08 LP |
7982 | F: drivers/media/platform/davinci/ |
7983 | F: include/media/davinci/ | |
7984 | ||
92aab3c0 | 7985 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7986 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7987 | L: [email protected] |
7988 | S: Maintained | |
8c7de408 | 7989 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7990 | |
1da177e4 | 7991 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7992 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7993 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7994 | L: [email protected] |
1da177e4 | 7995 | S: Maintained |
8c7de408 | 7996 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7997 | |
7998 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7999 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 8000 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 8001 | S: Maintained |
679655da JP |
8002 | F: Documentation/fb/sisfb.txt |
8003 | F: drivers/video/sis/ | |
8004 | F: include/video/sisfb.h | |
1da177e4 LT |
8005 | |
8006 | SIS USB2VGA DRIVER | |
8b58be88 | 8007 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
8008 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
8009 | S: Maintained | |
679655da | 8010 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 8011 | |
415ad26d | 8012 | SLAB ALLOCATOR |
8b58be88 | 8013 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 8014 | M: Pekka Enberg <[email protected]> |
8b58be88 | 8015 | M: Matt Mackall <[email protected]> |
415ad26d CL |
8016 | L: [email protected] |
8017 | S: Maintained | |
679655da JP |
8018 | F: include/linux/sl?b*.h |
8019 | F: mm/sl?b.c | |
415ad26d | 8020 | |
9fab9787 PM |
8021 | SLEEPABLE READ-COPY UPDATE (SRCU) |
8022 | M: Lai Jiangshan <[email protected]> | |
8023 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 8024 | L: [email protected] |
9fab9787 PM |
8025 | W: http://www.rdrop.com/users/paulmck/RCU/ |
8026 | S: Supported | |
8027 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
8028 | F: include/linux/srcu.h |
8029 | F: kernel/rcu/srcu.c | |
9fab9787 | 8030 | |
66372841 CS |
8031 | SMACK SECURITY MODULE |
8032 | M: Casey Schaufler <[email protected]> | |
8033 | L: [email protected] | |
8034 | W: http://schaufler-ca.com | |
8035 | T: git git://git.gitorious.org/smack-next/kernel.git | |
8036 | S: Maintained | |
8037 | F: Documentation/security/Smack.txt | |
8038 | F: security/smack/ | |
8039 | ||
68ace3e1 KH |
8040 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
8041 | M: Kevin Hilman <[email protected]> | |
8042 | M: Nishanth Menon <[email protected]> | |
8043 | S: Maintained | |
8044 | F: drivers/power/avs/smartreflex.c | |
8045 | F: include/linux/power/smartreflex.h | |
8046 | L: [email protected] | |
8047 | ||
1da177e4 | 8048 | SMC91x ETHERNET DRIVER |
2f82af08 | 8049 | M: Nicolas Pitre <[email protected]> |
18e2842b | 8050 | S: Odd Fixes |
ae150435 | 8051 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 8052 | |
e8e31622 SA |
8053 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
8054 | M: Sakari Ailus <[email protected]> | |
8055 | L: [email protected] | |
8056 | S: Maintained | |
14430813 | 8057 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
8058 | F: include/media/smiapp.h |
8059 | F: drivers/media/i2c/smiapp-pll.c | |
8060 | F: drivers/media/i2c/smiapp-pll.h | |
8061 | ||
920fa1ff GR |
8062 | SMM665 HARDWARE MONITOR DRIVER |
8063 | M: Guenter Roeck <[email protected]> | |
8064 | L: [email protected] | |
8065 | S: Maintained | |
8066 | F: Documentation/hwmon/smm665 | |
8067 | F: drivers/hwmon/smm665.c | |
8068 | ||
9df7305b | 8069 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 8070 | M: Steve Glendinning <[email protected]> |
9df7305b | 8071 | L: [email protected] |
90b24cfb | 8072 | S: Maintained |
9df7305b SG |
8073 | F: Documentation/hwmon/emc2103 |
8074 | F: drivers/hwmon/emc2103.c | |
8075 | ||
a98d506c HG |
8076 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
8077 | M: Hans de Goede <[email protected]> | |
8078 | L: [email protected] | |
8079 | S: Supported | |
8080 | F: Documentation/hwmon/sch5627 | |
8081 | F: drivers/hwmon/sch5627.c | |
8082 | ||
6ea884db | 8083 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 8084 | M: Jean Delvare <[email protected]> |
6ea884db MH |
8085 | L: [email protected] |
8086 | S: Maintained | |
679655da JP |
8087 | F: Documentation/hwmon/smsc47b397 |
8088 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 8089 | |
fd9abb3d | 8090 | SMSC911x ETHERNET DRIVER |
90b24cfb | 8091 | M: Steve Glendinning <[email protected]> |
2cb37728 | 8092 | L: [email protected] |
90b24cfb | 8093 | S: Maintained |
679655da | 8094 | F: include/linux/smsc911x.h |
ae150435 | 8095 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
8096 | |
8097 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8098 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 8099 | L: [email protected] |
90b24cfb | 8100 | S: Maintained |
ae150435 | 8101 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8102 | |
3c8a63e2 | 8103 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8104 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 8105 | L: [email protected] |
90b24cfb | 8106 | S: Maintained |
3c8a63e2 SG |
8107 | F: drivers/video/smscufx.c |
8108 | ||
668acf32 | 8109 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8110 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 8111 | L: [email protected] |
275ffde4 | 8112 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8113 | S: Maintained |
90d72ac6 MCC |
8114 | F: include/media/soc* |
8115 | F: drivers/media/i2c/soc_camera/ | |
8116 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8117 | |
e2d1d6c0 | 8118 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8119 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 8120 | S: Maintained |
679655da | 8121 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8122 | |
1da177e4 | 8123 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8124 | M: Neil Brown <[email protected]> |
1da177e4 | 8125 | L: [email protected] |
524418bb | 8126 | S: Supported |
679655da JP |
8127 | F: drivers/md/ |
8128 | F: include/linux/raid/ | |
c117ab84 | 8129 | F: include/uapi/linux/raid/ |
1da177e4 | 8130 | |
1da177e4 | 8131 | SONIC NETWORK DRIVER |
8b58be88 | 8132 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 8133 | L: [email protected] |
1da177e4 | 8134 | S: Maintained |
d9fb9f38 | 8135 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8136 | |
61e115a5 | 8137 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8138 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
8139 | L: [email protected] |
8140 | S: Maintained | |
679655da JP |
8141 | F: drivers/ssb/ |
8142 | F: include/linux/ssb/ | |
61e115a5 | 8143 | |
1da177e4 | 8144 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8145 | M: Mattia Dongili <[email protected]> |
d0944853 | 8146 | L: [email protected] |
5b18167d | 8147 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8148 | S: Maintained |
679655da JP |
8149 | F: Documentation/laptops/sony-laptop.txt |
8150 | F: drivers/char/sonypi.c | |
8151 | F: drivers/platform/x86/sony-laptop.c | |
8152 | F: include/linux/sony-laptop.h | |
1da177e4 | 8153 | |
baf8532a | 8154 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8155 | M: Alex Dubov <[email protected]> |
baf8532a AD |
8156 | W: http://tifmxx.berlios.de/ |
8157 | S: Maintained | |
679655da | 8158 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8159 | |
0ab30494 ML |
8160 | SONY MEMORYSTICK STANDARD SUPPORT |
8161 | M: Maxim Levitsky <[email protected]> | |
8162 | S: Maintained | |
8163 | F: drivers/memstick/core/ms_block.* | |
8164 | ||
1da177e4 | 8165 | SOUND |
8b58be88 JP |
8166 | M: Jaroslav Kysela <[email protected]> |
8167 | M: Takashi Iwai <[email protected]> | |
93711660 | 8168 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 8169 | W: http://www.alsa-project.org/ |
dde7ad8d | 8170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8171 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 8172 | S: Maintained |
3126a179 JP |
8173 | F: Documentation/sound/ |
8174 | F: include/sound/ | |
c117ab84 | 8175 | F: include/uapi/sound/ |
679655da | 8176 | F: sound/ |
1da177e4 | 8177 | |
33bbe149 MB |
8178 | SOUND - COMPRESSED AUDIO |
8179 | M: Vinod Koul <[email protected]> | |
8180 | L: [email protected] (moderated for non-subscribers) | |
8181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8182 | S: Supported | |
f672f31a | 8183 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8184 | F: include/sound/compress_driver.h |
f672f31a | 8185 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8186 | F: sound/core/compress_offload.c |
8187 | F: sound/soc/soc-compress.c | |
8188 | ||
bd903bde | 8189 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8190 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 8191 | M: Mark Brown <[email protected]> |
86f14df8 | 8192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8193 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 8194 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8195 | S: Supported |
2820f615 | 8196 | F: Documentation/sound/alsa/soc/ |
679655da | 8197 | F: sound/soc/ |
e6e55122 | 8198 | F: include/sound/soc* |
eb1a6af3 | 8199 | |
d7f8761b MB |
8200 | SOUND - DMAENGINE HELPERS |
8201 | M: Lars-Peter Clausen <[email protected]> | |
8202 | S: Supported | |
8203 | F: include/sound/dmaengine_pcm.h | |
8204 | F: sound/core/pcm_dmaengine.c | |
8205 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8206 | ||
473321fc | 8207 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8208 | M: "David S. Miller" <[email protected]> |
1da177e4 | 8209 | L: [email protected] |
8a6e2535 | 8210 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8213 | S: Maintained |
679655da | 8214 | F: arch/sparc/ |
7765b8bb | 8215 | F: drivers/sbus/ |
1da177e4 | 8216 | |
6404fcca DM |
8217 | SPARC SERIAL DRIVERS |
8218 | M: "David S. Miller" <[email protected]> | |
8219 | L: [email protected] | |
08deed1e JP |
8220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8222 | S: Maintained |
6816383a | 8223 | F: include/linux/sunserialcore.h |
df621252 | 8224 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8225 | F: drivers/tty/serial/sunhv.c |
8226 | F: drivers/tty/serial/sunsab.c | |
8227 | F: drivers/tty/serial/sunsab.h | |
8228 | F: drivers/tty/serial/sunsu.c | |
8229 | F: drivers/tty/serial/sunzilog.c | |
8230 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8231 | |
389325b4 CL |
8232 | SPARSE CHECKER |
8233 | M: "Christopher Li" <[email protected]> | |
8234 | L: [email protected] | |
8235 | W: https://sparse.wiki.kernel.org/ | |
8236 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8237 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8238 | S: Maintained | |
8239 | F: include/linux/compiler.h | |
8240 | ||
fc0c195a | 8241 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8242 | M: Viresh Kumar <[email protected]> |
71e09a9e | 8243 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
8244 | L: [email protected] |
8245 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8246 | W: http://www.st.com/spear |
8247 | S: Maintained | |
281e192f | 8248 | F: arch/arm/mach-spear/ |
fc0c195a VK |
8249 | |
8250 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8251 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
8252 | L: [email protected] |
8253 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8254 | W: http://www.st.com/spear |
8255 | S: Maintained | |
5df33a62 | 8256 | F: drivers/clk/spear/ |
fc0c195a | 8257 | |
e2d1d6c0 | 8258 | SPI SUBSYSTEM |
b02e48f2 | 8259 | M: Mark Brown <[email protected]> |
dfbe403c | 8260 | L: [email protected] |
e7e4e13c | 8261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8262 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8263 | S: Maintained |
679655da JP |
8264 | F: Documentation/spi/ |
8265 | F: drivers/spi/ | |
8266 | F: include/linux/spi/ | |
c117ab84 | 8267 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8268 | |
2752e401 | 8269 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8270 | M: Ishizaki Kou <[email protected]> |
8271 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
8272 | L: [email protected] |
8273 | S: Supported | |
679655da | 8274 | F: Documentation/networking/spider_net.txt |
8df158ac | 8275 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8276 | |
e2d1d6c0 | 8277 | SPU FILE SYSTEM |
8b58be88 | 8278 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
8279 | L: [email protected] |
8280 | L: [email protected] | |
e2d1d6c0 RD |
8281 | W: http://www.ibm.com/developerworks/power/cell/ |
8282 | S: Supported | |
679655da JP |
8283 | F: Documentation/filesystems/spufs.txt |
8284 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8285 | |
fc555841 | 8286 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8287 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
8288 | L: [email protected] (subscribers-only) |
8289 | W: http://squashfs.org.uk | |
8290 | S: Maintained | |
679655da JP |
8291 | F: Documentation/filesystems/squashfs.txt |
8292 | F: fs/squashfs/ | |
fc555841 | 8293 | |
1da177e4 | 8294 | SRM (Alpha) environment access |
8b58be88 | 8295 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 8296 | S: Maintained |
679655da | 8297 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8298 | |
26e9a397 | 8299 | STABLE BRANCH |
879a5a00 | 8300 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 8301 | L: [email protected] |
879a5a00 | 8302 | S: Supported |
7b175c46 | 8303 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8304 | |
26e9a397 | 8305 | STAGING SUBSYSTEM |
879a5a00 | 8306 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 8307 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8308 | L: [email protected] |
879a5a00 | 8309 | S: Supported |
679655da | 8310 | F: drivers/staging/ |
dbc6c2cc | 8311 | |
c8c8b105 JP |
8312 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
8313 | M: Henk de Groot <[email protected]> | |
8314 | S: Odd Fixes | |
8315 | F: drivers/staging/wlags49_h2/ | |
8316 | F: drivers/staging/wlags49_h25/ | |
8317 | ||
c9555159 JP |
8318 | STAGING - ASUS OLED |
8319 | M: Jakub Schmidtke <[email protected]> | |
8320 | S: Odd Fixes | |
8321 | F: drivers/staging/asus_oled/ | |
8322 | ||
ebd3d010 JP |
8323 | STAGING - COMEDI |
8324 | M: Ian Abbott <[email protected]> | |
81b884c9 | 8325 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
8326 | S: Odd Fixes |
8327 | F: drivers/staging/comedi/ | |
8328 | ||
8ca572c9 JP |
8329 | STAGING - CRYSTAL HD VIDEO DECODER |
8330 | M: Naren Sankar <[email protected]> | |
8331 | M: Jarod Wilson <[email protected]> | |
8332 | M: Scott Davilla <[email protected]> | |
8333 | M: Manu Abraham <[email protected]> | |
8334 | S: Odd Fixes | |
8335 | F: drivers/staging/crystalhd/ | |
8336 | ||
0f16ffc4 JP |
8337 | STAGING - ECHO CANCELLER |
8338 | M: Steve Underwood <[email protected]> | |
8339 | M: David Rowe <[email protected]> | |
8340 | S: Odd Fixes | |
8341 | F: drivers/staging/echo/ | |
8342 | ||
8dc2bbe7 ME |
8343 | STAGING - ET131X NETWORK DRIVER |
8344 | M: Mark Einon <[email protected]> | |
8345 | S: Odd Fixes | |
8346 | F: drivers/staging/et131x/ | |
8347 | ||
a0138163 JP |
8348 | STAGING - FLARION FT1000 DRIVERS |
8349 | M: Marek Belisko <[email protected]> | |
8350 | S: Odd Fixes | |
8351 | F: drivers/staging/ft1000/ | |
8352 | ||
ec3fab92 JP |
8353 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
8354 | M: David Täht <[email protected]> | |
8355 | S: Odd Fixes | |
8356 | F: drivers/staging/frontier/ | |
8357 | ||
98ded590 HV |
8358 | STAGING - GO7007 MPEG CODEC |
8359 | M: Hans Verkuil <[email protected]> | |
8360 | S: Maintained | |
8361 | F: drivers/staging/media/go7007/ | |
8362 | ||
6c1bb424 | 8363 | STAGING - INDUSTRIAL IO |
030a13d7 | 8364 | M: Jonathan Cameron <[email protected]> |
a0138163 | 8365 | L: [email protected] |
6c1bb424 JP |
8366 | S: Odd Fixes |
8367 | F: drivers/staging/iio/ | |
8368 | ||
a0138163 JP |
8369 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8370 | M: Jarod Wilson <[email protected]> | |
8371 | W: http://www.lirc.org/ | |
8372 | S: Odd Fixes | |
b2b0186d | 8373 | F: drivers/staging/media/lirc/ |
a0138163 | 8374 | |
7c6b6c71 | 8375 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8376 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
8377 | M: Marc Dietrich <[email protected]> |
8378 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 8379 | L: [email protected] |
7c6b6c71 MD |
8380 | S: Maintained |
8381 | F: drivers/staging/nvec/ | |
8382 | ||
a0138163 | 8383 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8384 | M: Jens Frederich <[email protected]> |
8385 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
8386 | M: Jon Nettleton <[email protected]> |
8387 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8388 | S: Maintained |
a0138163 JP |
8389 | F: drivers/staging/olpc_dcon/ |
8390 | ||
94cfdd15 | 8391 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 8392 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
8393 | S: Maintained |
8394 | F: drivers/staging/ozwpan/ | |
8395 | ||
a0138163 | 8396 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8397 | M: Willy Tarreau <[email protected]> |
8398 | S: Odd Fixes | |
8399 | F: drivers/staging/panel/ | |
8400 | ||
a0138163 JP |
8401 | STAGING - REALTEK RTL8712U DRIVERS |
8402 | M: Larry Finger <[email protected]> | |
8403 | M: Florian Schilhabel <[email protected]>. | |
8404 | S: Odd Fixes | |
8405 | F: drivers/staging/rtl8712/ | |
8406 | ||
9629fa86 JP |
8407 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8408 | M: Teddy Wang <[email protected]> | |
8409 | S: Odd Fixes | |
9df0a245 | 8410 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8411 | |
510fa408 JP |
8412 | STAGING - SLICOSS |
8413 | M: Lior Dotan <[email protected]> | |
8414 | M: Christopher Harrer <[email protected]> | |
8415 | S: Odd Fixes | |
8416 | F: drivers/staging/slicoss/ | |
8417 | ||
a0138163 | 8418 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8419 | M: Ismael Luceno <[email protected]> |
8420 | S: Supported | |
b2b0186d | 8421 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8422 | |
8423 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8424 | M: William Hubbs <[email protected]> | |
8425 | M: Chris Brannon <[email protected]> | |
d33bce31 | 8426 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
8427 | M: Samuel Thibault <[email protected]> |
8428 | L: [email protected] | |
8429 | W: http://www.linux-speakup.org/ | |
8430 | S: Odd Fixes | |
8431 | F: drivers/staging/speakup/ | |
8432 | ||
8433 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8434 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
8435 | S: Odd Fixes |
8436 | F: drivers/staging/tidspbridge/ | |
8437 | ||
a0138163 JP |
8438 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8439 | M: Al Cho <[email protected]> | |
8440 | S: Odd Fixes | |
8441 | F: drivers/staging/keucr/ | |
8442 | ||
b3e871ce JP |
8443 | STAGING - VIA VT665X DRIVERS |
8444 | M: Forest Bond <[email protected]> | |
8445 | S: Odd Fixes | |
8446 | F: drivers/staging/vt665?/ | |
8447 | ||
81a9a526 JP |
8448 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8449 | M: Pavel Machek <[email protected]> | |
8450 | S: Odd Fixes | |
8451 | F: drivers/staging/winbond/ | |
8452 | ||
709bcb07 | 8453 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8454 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
8455 | S: Odd Fixes |
8456 | F: drivers/staging/xgifb/ | |
8457 | ||
1da177e4 | 8458 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8459 | M: Ion Badulescu <[email protected]> |
b4f90189 | 8460 | S: Odd Fixes |
9bba23b0 | 8461 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8462 | |
e2d1d6c0 | 8463 | SUN3/3X |
8b58be88 | 8464 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
8465 | W: http://sammy.net/sun3/ |
8466 | S: Maintained | |
679655da JP |
8467 | F: arch/m68k/kernel/*sun3* |
8468 | F: arch/m68k/sun3*/ | |
8469 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8470 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8471 | |
2bc9ff01 DK |
8472 | SUNDANCE NETWORK DRIVER |
8473 | M: Denis Kirjanov <[email protected]> | |
8474 | L: [email protected] | |
8475 | S: Maintained | |
8476 | F: drivers/net/ethernet/dlink/sundance.c | |
8477 | ||
2cbb12a4 | 8478 | SUPERH |
8b58be88 | 8479 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 8480 | L: [email protected] |
1da177e4 | 8481 | W: http://www.linux-sh.org |
8a6e2535 | 8482 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 8483 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 8484 | S: Supported |
066069e1 | 8485 | F: Documentation/sh/ |
679655da | 8486 | F: arch/sh/ |
066069e1 | 8487 | F: drivers/sh/ |
1da177e4 | 8488 | |
4480f15b | 8489 | SUSPEND TO RAM |
7fb06082 | 8490 | M: "Rafael J. Wysocki" <[email protected]> |
8b58be88 JP |
8491 | M: Len Brown <[email protected]> |
8492 | M: Pavel Machek <[email protected]> | |
bf1c138e | 8493 | L: [email protected] |
e2d1d6c0 | 8494 | S: Supported |
679655da JP |
8495 | F: Documentation/power/ |
8496 | F: arch/x86/kernel/acpi/ | |
8497 | F: drivers/base/power/ | |
8498 | F: kernel/power/ | |
8499 | F: include/linux/suspend.h | |
8500 | F: include/linux/freezer.h | |
8501 | F: include/linux/pm.h | |
1da177e4 LT |
8502 | |
8503 | SVGA HANDLING | |
8b58be88 | 8504 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8505 | L: [email protected] |
8506 | S: Maintained | |
679655da JP |
8507 | F: Documentation/svga.txt |
8508 | F: arch/x86/boot/video* | |
1da177e4 | 8509 | |
6e28b761 KRW |
8510 | SWIOTLB SUBSYSTEM |
8511 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8512 | L: [email protected] | |
8513 | S: Supported | |
8514 | F: lib/swiotlb.c | |
8515 | F: arch/*/kernel/pci-swiotlb.c | |
8516 | F: include/linux/swiotlb.h | |
8517 | ||
db8e35d5 VG |
8518 | SYNOPSYS ARC ARCHITECTURE |
8519 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8520 | S: Supported |
8521 | F: arch/arc/ | |
6659a20a | 8522 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8523 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8524 | |
1da177e4 | 8525 | SYSV FILESYSTEM |
8b58be88 | 8526 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8527 | S: Maintained |
679655da JP |
8528 | F: Documentation/filesystems/sysv-fs.txt |
8529 | F: fs/sysv/ | |
8530 | F: include/linux/sysv_fs.h | |
1da177e4 | 8531 | |
86cfa7fc NB |
8532 | TARGET SUBSYSTEM |
8533 | M: Nicholas A. Bellinger <[email protected]> | |
8534 | L: [email protected] | |
b9f5edc2 | 8535 | L: [email protected] |
86cfa7fc | 8536 | W: http://www.linux-iscsi.org |
cf015e9f | 8537 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 8538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8539 | S: Supported |
8540 | F: drivers/target/ | |
8541 | F: include/target/ | |
8542 | F: Documentation/target/ | |
8543 | ||
4e68852d | 8544 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8545 | M: Balbir Singh <[email protected]> |
4e68852d | 8546 | S: Maintained |
679655da JP |
8547 | F: Documentation/accounting/taskstats* |
8548 | F: include/linux/taskstats* | |
8549 | F: kernel/taskstats.c | |
4e68852d | 8550 | |
781b456a | 8551 | TC CLASSIFIER |
f935f3f8 | 8552 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8553 | L: [email protected] |
8554 | S: Maintained | |
679655da | 8555 | F: include/net/pkt_cls.h |
c117ab84 | 8556 | F: include/uapi/linux/pkt_cls.h |
679655da | 8557 | F: net/sched/ |
781b456a | 8558 | |
5067f08a | 8559 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8560 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8561 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8562 | W: http://tcp-lp-mod.sourceforge.net/ |
8563 | S: Maintained | |
679655da | 8564 | F: net/ipv4/tcp_lp.c |
5067f08a | 8565 | |
91952bc0 AP |
8566 | TDA10071 MEDIA DRIVER |
8567 | M: Antti Palosaari <[email protected]> | |
8568 | L: [email protected] | |
8569 | W: http://linuxtv.org/ | |
8570 | W: http://palosaari.fi/linux/ | |
8571 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8572 | T: git git://linuxtv.org/anttip/media_tree.git | |
8573 | S: Maintained | |
8574 | F: drivers/media/dvb-frontends/tda10071* | |
8575 | ||
8576 | TDA18212 MEDIA DRIVER | |
8577 | M: Antti Palosaari <[email protected]> | |
8578 | L: [email protected] | |
8579 | W: http://linuxtv.org/ | |
8580 | W: http://palosaari.fi/linux/ | |
8581 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8582 | T: git git://linuxtv.org/anttip/media_tree.git | |
8583 | S: Maintained | |
8584 | F: drivers/media/tuners/tda18212* | |
8585 | ||
8586 | TDA18218 MEDIA DRIVER | |
8587 | M: Antti Palosaari <[email protected]> | |
8588 | L: [email protected] | |
8589 | W: http://linuxtv.org/ | |
8590 | W: http://palosaari.fi/linux/ | |
8591 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8592 | T: git git://linuxtv.org/anttip/media_tree.git | |
8593 | S: Maintained | |
8594 | F: drivers/media/tuners/tda18218* | |
8595 | ||
3b2f6aba MK |
8596 | TDA18271 MEDIA DRIVER |
8597 | M: Michael Krufky <[email protected]> | |
8598 | L: [email protected] | |
8599 | W: http://linuxtv.org/ | |
8600 | W: http://github.com/mkrufky | |
8601 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8602 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8603 | S: Maintained | |
8604 | F: drivers/media/tuners/tda18271* | |
8605 | ||
e48307a9 MK |
8606 | TDA827x MEDIA DRIVER |
8607 | M: Michael Krufky <[email protected]> | |
8608 | L: [email protected] | |
8609 | W: http://linuxtv.org/ | |
8610 | W: http://github.com/mkrufky | |
8611 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8612 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8613 | S: Maintained | |
8614 | F: drivers/media/tuners/tda8290.* | |
8615 | ||
66cf9212 MK |
8616 | TDA8290 MEDIA DRIVER |
8617 | M: Michael Krufky <[email protected]> | |
8618 | L: [email protected] | |
8619 | W: http://linuxtv.org/ | |
8620 | W: http://github.com/mkrufky | |
8621 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8622 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8623 | S: Maintained | |
8624 | F: drivers/media/tuners/tda8290.* | |
8625 | ||
4b9fba30 HV |
8626 | TDA9840 MEDIA DRIVER |
8627 | M: Hans Verkuil <[email protected]> | |
8628 | L: [email protected] | |
8629 | T: git git://linuxtv.org/media_tree.git | |
8630 | W: http://linuxtv.org | |
8631 | S: Maintained | |
8632 | F: drivers/media/i2c/tda9840* | |
8633 | ||
2cb654fd | 8634 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8635 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8636 | L: [email protected] |
8637 | W: http://linuxtv.org | |
8638 | T: git git://linuxtv.org/media_tree.git | |
8639 | S: Odd fixes | |
8640 | F: drivers/media/tuners/tea5761.* | |
8641 | ||
8642 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8643 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8644 | L: [email protected] |
8645 | W: http://linuxtv.org | |
8646 | T: git git://linuxtv.org/media_tree.git | |
8647 | S: Maintained | |
8648 | F: drivers/media/tuners/tea5767.* | |
8649 | ||
4b9fba30 HV |
8650 | TEA6415C MEDIA DRIVER |
8651 | M: Hans Verkuil <[email protected]> | |
8652 | L: [email protected] | |
8653 | T: git git://linuxtv.org/media_tree.git | |
8654 | W: http://linuxtv.org | |
8655 | S: Maintained | |
8656 | F: drivers/media/i2c/tea6415c* | |
8657 | ||
8658 | TEA6420 MEDIA DRIVER | |
8659 | M: Hans Verkuil <[email protected]> | |
8660 | L: [email protected] | |
8661 | T: git git://linuxtv.org/media_tree.git | |
8662 | W: http://linuxtv.org | |
8663 | S: Maintained | |
8664 | F: drivers/media/i2c/tea6420* | |
8665 | ||
3d249d4c | 8666 | TEAM DRIVER |
dca9ab92 | 8667 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8668 | L: [email protected] |
8669 | S: Supported | |
8670 | F: drivers/net/team/ | |
8671 | F: include/linux/if_team.h | |
c117ab84 | 8672 | F: include/uapi/linux/if_team.h |
3d249d4c | 8673 | |
7d029125 VD |
8674 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8675 | M: Savoir-faire Linux Inc. <[email protected]> | |
8676 | S: Maintained | |
8677 | F: arch/x86/platform/ts5500/ | |
8678 | ||
40ad4a30 SY |
8679 | TECHNOTREND USB IR RECEIVER |
8680 | M: Sean Young <[email protected]> | |
8681 | L: [email protected] | |
8682 | S: Maintained | |
8683 | F: drivers/media/rc/ttusbir.c | |
8684 | ||
adabdb0c | 8685 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8686 | M: Stephen Warren <[email protected]> |
adabdb0c | 8687 | M: Thierry Reding <[email protected]> |
84b9414b | 8688 | L: [email protected] |
fd117cd1 OJ |
8689 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8690 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8691 | S: Supported |
bbbe96ed | 8692 | N: [^a-z]tegra |
84b9414b | 8693 | |
adabdb0c SW |
8694 | TEGRA ASOC DRIVER |
8695 | M: Stephen Warren <[email protected]> | |
8696 | S: Supported | |
8697 | F: sound/soc/tegra/ | |
8698 | ||
8699 | TEGRA CLOCK DRIVER | |
8700 | M: Peter De Schrijver <[email protected]> | |
8701 | M: Prashant Gaikwad <[email protected]> | |
8702 | S: Supported | |
8703 | F: drivers/clk/tegra/ | |
8704 | ||
8705 | TEGRA DMA DRIVER | |
8706 | M: Laxman Dewangan <[email protected]> | |
8707 | S: Supported | |
8708 | F: drivers/dma/tegra20-apb-dma.c | |
8709 | ||
8710 | TEGRA GPIO DRIVER | |
8711 | M: Stephen Warren <[email protected]> | |
8712 | S: Supported | |
8713 | F: drivers/gpio/gpio-tegra.c | |
8714 | ||
8715 | TEGRA I2C DRIVER | |
8716 | M: Laxman Dewangan <[email protected]> | |
8717 | S: Supported | |
8718 | F: drivers/i2c/busses/i2c-tegra.c | |
8719 | ||
8720 | TEGRA IOMMU DRIVERS | |
8721 | M: Hiroshi Doyu <[email protected]> | |
8722 | S: Supported | |
8723 | F: drivers/iommu/tegra* | |
8724 | ||
8725 | TEGRA KBC DRIVER | |
8726 | M: Rakesh Iyer <[email protected]> | |
8727 | M: Laxman Dewangan <[email protected]> | |
8728 | S: Supported | |
8729 | F: drivers/input/keyboard/tegra-kbc.c | |
8730 | ||
8731 | TEGRA PINCTRL DRIVER | |
8732 | M: Stephen Warren <[email protected]> | |
8733 | S: Supported | |
8734 | F: drivers/pinctrl/pinctrl-tegra* | |
8735 | ||
8736 | TEGRA PWM DRIVER | |
8737 | M: Thierry Reding <[email protected]> | |
8738 | S: Supported | |
8739 | F: drivers/pwm/pwm-tegra.c | |
8740 | ||
8741 | TEGRA SERIAL DRIVER | |
8742 | M: Laxman Dewangan <[email protected]> | |
8743 | S: Supported | |
8744 | F: drivers/tty/serial/serial-tegra.c | |
8745 | ||
8746 | TEGRA SPI DRIVER | |
8747 | M: Laxman Dewangan <[email protected]> | |
8748 | S: Supported | |
8749 | F: drivers/spi/spi-tegra* | |
8750 | ||
1a348ccc | 8751 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8752 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8753 | L: [email protected] |
8754 | S: Supported | |
ef7f5429 | 8755 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8756 | |
4e68852d | 8757 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8758 | M: Mark Gross <[email protected]> |
4e68852d | 8759 | S: Supported |
679655da | 8760 | F: drivers/char/tlclk.c |
4e68852d | 8761 | |
4480f15b | 8762 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8763 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8764 | M: Max Filippov <[email protected]> |
8765 | L: [email protected] | |
4e68852d | 8766 | S: Maintained |
679655da | 8767 | F: arch/xtensa/ |
4e68852d | 8768 | |
5313ba66 HV |
8769 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
8770 | M: Hans Verkuil <[email protected]> | |
8771 | L: [email protected] | |
8772 | T: git git://linuxtv.org/media_tree.git | |
8773 | W: http://linuxtv.org | |
8774 | S: Maintained | |
8775 | F: drivers/media/radio/radio-raremono.c | |
8776 | ||
d3fb6955 | 8777 | THERMAL |
b75f0050 JP |
8778 | M: Zhang Rui <[email protected]> |
8779 | M: Eduardo Valentin <[email protected]> | |
8780 | L: [email protected] | |
8781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
8782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
8783 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
8784 | S: Supported | |
8785 | F: drivers/thermal/ | |
8786 | F: include/linux/thermal.h | |
8787 | F: include/linux/cpu_cooling.h | |
8788 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 8789 | |
30ba2fbd VD |
8790 | THINGM BLINK(1) USB RGB LED DRIVER |
8791 | M: Vivien Didelot <[email protected]> | |
8792 | S: Maintained | |
8793 | F: drivers/hid/hid-thingm.c | |
8794 | ||
4e68852d | 8795 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8796 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8797 | L: [email protected] |
d0944853 | 8798 | L: [email protected] |
4e68852d AC |
8799 | W: http://ibm-acpi.sourceforge.net |
8800 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8801 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8802 | S: Maintained |
679655da | 8803 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8804 | |
1b46f2a2 EV |
8805 | TI BANDGAP AND THERMAL DRIVER |
8806 | M: Eduardo Valentin <[email protected]> | |
8807 | L: [email protected] | |
794b2e25 EV |
8808 | S: Supported |
8809 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8810 | |
4020f2d7 | 8811 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8812 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8813 | S: Maintained |
679655da JP |
8814 | F: drivers/misc/tifm* |
8815 | F: drivers/mmc/host/tifm_sd.c | |
8816 | F: include/linux/tifm.h | |
4020f2d7 | 8817 | |
152ad442 SR |
8818 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8819 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8820 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8821 | L: [email protected] (moderated for non-subscribers) |
8822 | S: Maintained | |
8823 | F: sound/soc/codecs/lm49453* | |
d392dead | 8824 | F: sound/soc/codecs/isabelle* |
152ad442 | 8825 | |
0edd807d KM |
8826 | TI LP855x BACKLIGHT DRIVER |
8827 | M: Milo Kim <[email protected]> | |
8828 | S: Maintained | |
8829 | F: Documentation/backlight/lp855x-driver.txt | |
8830 | F: drivers/video/backlight/lp855x_bl.c | |
8831 | F: include/linux/platform_data/lp855x.h | |
8832 | ||
faf13f6d KM |
8833 | TI LP8727 CHARGER DRIVER |
8834 | M: Milo Kim <[email protected]> | |
8835 | S: Maintained | |
8836 | F: drivers/power/lp8727_charger.c | |
8837 | F: include/linux/platform_data/lp8727.h | |
8838 | ||
22f1229f KM |
8839 | TI LP8788 MFD DRIVER |
8840 | M: Milo Kim <[email protected]> | |
8841 | S: Maintained | |
8842 | F: drivers/iio/adc/lp8788_adc.c | |
8843 | F: drivers/leds/leds-lp8788.c | |
8844 | F: drivers/mfd/lp8788*.c | |
8845 | F: drivers/power/lp8788-charger.c | |
8846 | F: drivers/regulator/lp8788-*.c | |
8847 | F: include/linux/mfd/lp8788*.h | |
8848 | ||
dd5e8e6b | 8849 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8850 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8851 | L: [email protected] (moderated for non-subscribers) |
8852 | S: Maintained | |
8853 | F: sound/soc/codecs/twl4030* | |
8854 | ||
90921014 | 8855 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
8856 | L: [email protected] |
8857 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8858 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 8860 | S: Orphan |
90921014 LC |
8861 | F: drivers/net/wireless/ti/ |
8862 | F: include/linux/wl12xx.h | |
8863 | ||
e86eaa3a | 8864 | TIPC NETWORK LAYER |
8b58be88 JP |
8865 | M: Jon Maloy <[email protected]> |
8866 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8867 | L: [email protected] (core kernel code) |
8868 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8869 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8870 | S: Maintained |
c117ab84 | 8871 | F: include/uapi/linux/tipc*.h |
679655da | 8872 | F: net/tipc/ |
e86eaa3a | 8873 | |
867e359b CM |
8874 | TILE ARCHITECTURE |
8875 | M: Chris Metcalf <[email protected]> | |
8876 | W: http://www.tilera.com/scm/ | |
8877 | S: Supported | |
8878 | F: arch/tile/ | |
6b940606 | 8879 | F: drivers/char/tile-srom.c |
5c770755 | 8880 | F: drivers/edac/tile_edac.c |
6b940606 CM |
8881 | F: drivers/net/ethernet/tile/ |
8882 | F: drivers/rtc/rtc-tile.c | |
8883 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 8884 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
8885 | F: drivers/usb/host/*-tilegx.c |
8886 | F: include/linux/usb/tilegx.h | |
867e359b | 8887 | |
1da177e4 | 8888 | TLAN NETWORK DRIVER |
8b58be88 | 8889 | M: Samuel Chessman <[email protected]> |
88c07dde | 8890 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8891 | W: http://sourceforge.net/projects/tlan/ |
8892 | S: Maintained | |
679655da | 8893 | F: Documentation/networking/tlan.txt |
b544dbac | 8894 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8895 | |
d74db3b2 | 8896 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8897 | M: Kentaro Takeda <[email protected]> |
8898 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8899 | L: [email protected] (subscribers-only, for developers in English) |
8900 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8901 | L: [email protected] (subscribers-only, for developers in Japanese) |
8902 | L: [email protected] (subscribers-only, for users in Japanese) | |
8903 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8904 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8905 | S: Maintained |
679655da | 8906 | F: security/tomoyo/ |
d74db3b2 | 8907 | |
9caeb532 | 8908 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8909 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8910 | L: [email protected] |
9caeb532 HRK |
8911 | S: Maintained |
8912 | F: drivers/platform/x86/topstar-laptop.c | |
8913 | ||
1da177e4 | 8914 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8915 | L: [email protected] |
15065531 | 8916 | S: Orphan |
679655da | 8917 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8918 | |
8919 | TOSHIBA SMM DRIVER | |
8b58be88 | 8920 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8921 | L: [email protected] |
8922 | W: http://www.buzzard.org.uk/toshiba/ | |
8923 | S: Maintained | |
679655da JP |
8924 | F: drivers/char/toshiba.c |
8925 | F: include/linux/toshiba.h | |
c117ab84 | 8926 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8927 | |
d719f900 | 8928 | TMIO MMC DRIVER |
8b58be88 | 8929 | M: Ian Molton <[email protected]> |
d1057c40 | 8930 | L: [email protected] |
d719f900 | 8931 | S: Maintained |
d1057c40 GL |
8932 | F: drivers/mmc/host/tmio_mmc* |
8933 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8934 | F: include/linux/mmc/tmio.h | |
8935 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8936 | |
917cc4e6 GR |
8937 | TMP401 HARDWARE MONITOR DRIVER |
8938 | M: Guenter Roeck <[email protected]> | |
8939 | L: [email protected] | |
8940 | S: Maintained | |
8941 | F: Documentation/hwmon/tmp401 | |
8942 | F: drivers/hwmon/tmp401.c | |
8943 | ||
98f32602 | 8944 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8945 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8946 | L: [email protected] |
8947 | S: Maintained | |
8948 | F: include/linux/shmem_fs.h | |
8949 | F: mm/shmem.c | |
8950 | ||
45f95b53 | 8951 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8952 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8953 | L: [email protected] |
8954 | W: http://linuxtv.org | |
8955 | T: git git://linuxtv.org/media_tree.git | |
8956 | S: Odd fixes | |
8957 | F: drivers/media/usb/tm6000/ | |
8958 | ||
4e68852d | 8959 | TPM DEVICE DRIVER |
901486b8 | 8960 | M: Peter Huewe <[email protected]> |
383dec1f | 8961 | M: Ashley Lai <[email protected]> |
cbb2d5e4 | 8962 | M: Marcel Selhorst <[email protected]> |
383dec1f | 8963 | W: http://tpmdd.sourceforge.net |
63a10dfd | 8964 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8965 | S: Maintained |
679655da | 8966 | F: drivers/char/tpm/ |
4e68852d | 8967 | |
d6f005a1 JP |
8968 | TRACING |
8969 | M: Steven Rostedt <[email protected]> | |
8970 | M: Frederic Weisbecker <[email protected]> | |
8971 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8973 | S: Maintained |
8974 | F: Documentation/trace/ftrace.txt | |
8975 | F: arch/*/*/*/ftrace.h | |
8976 | F: arch/*/kernel/ftrace.c | |
8977 | F: include/*/ftrace.h | |
8978 | F: include/linux/trace*.h | |
8979 | F: include/trace/ | |
8980 | F: kernel/trace/ | |
8981 | ||
1da177e4 | 8982 | TRIVIAL PATCHES |
8b58be88 | 8983 | M: Jiri Kosina <[email protected]> |
54e5881d | 8984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8985 | S: Maintained |
86ef925f | 8986 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8987 | |
4e68852d | 8988 | TTY LAYER |
879a5a00 | 8989 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8990 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8991 | S: Supported |
08deed1e | 8992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8993 | F: drivers/tty/ |
df621252 | 8994 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8995 | F: include/linux/serial_core.h |
8996 | F: include/linux/serial.h | |
8997 | F: include/linux/tty.h | |
c117ab84 CEB |
8998 | F: include/uapi/linux/serial_core.h |
8999 | F: include/uapi/linux/serial.h | |
9000 | F: include/uapi/linux/tty.h | |
4e68852d | 9001 | |
91952bc0 AP |
9002 | TUA9001 MEDIA DRIVER |
9003 | M: Antti Palosaari <[email protected]> | |
9004 | L: [email protected] | |
9005 | W: http://linuxtv.org/ | |
9006 | W: http://palosaari.fi/linux/ | |
9007 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9008 | T: git git://linuxtv.org/anttip/media_tree.git | |
9009 | S: Maintained | |
9010 | F: drivers/media/tuners/tua9001* | |
9011 | ||
740db6d7 | 9012 | TULIP NETWORK DRIVERS |
8b58be88 | 9013 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
9014 | L: [email protected] |
9015 | S: Maintained | |
0f04e2aa | 9016 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
9017 | |
9018 | TUN/TAP driver | |
ba57b6f2 | 9019 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
9020 | W: http://vtun.sourceforge.net/tun |
9021 | S: Maintained | |
679655da JP |
9022 | F: Documentation/networking/tuntap.txt |
9023 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 9024 | |
b454cc66 | 9025 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 9026 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 9027 | S: Maintained |
679655da JP |
9028 | F: drivers/tc/ |
9029 | F: include/linux/tc.h | |
b454cc66 | 9030 | |
1da177e4 | 9031 | U14-34F SCSI DRIVER |
8b58be88 | 9032 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
9033 | L: [email protected] |
9034 | S: Maintained | |
679655da | 9035 | F: drivers/scsi/u14-34f.c |
1da177e4 | 9036 | |
e2d1d6c0 | 9037 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 9038 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 9039 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 9040 | L: [email protected] |
e2966cbe | 9041 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
9042 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
9043 | S: Maintained | |
679655da JP |
9044 | F: Documentation/filesystems/ubifs.txt |
9045 | F: fs/ubifs/ | |
e2d1d6c0 | 9046 | |
cc2020e6 | 9047 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 9048 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
9049 | W: http://www.uclinux.org/ |
9050 | L: [email protected] (subscribers-only) | |
9051 | S: Maintained | |
61bc02bb JP |
9052 | F: arch/m68k/*/*_no.* |
9053 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 9054 | |
1da177e4 | 9055 | UDF FILESYSTEM |
8b58be88 | 9056 | M: Jan Kara <[email protected]> |
1da177e4 | 9057 | S: Maintained |
679655da JP |
9058 | F: Documentation/filesystems/udf.txt |
9059 | F: fs/udf/ | |
1da177e4 | 9060 | |
cc2020e6 | 9061 | UFS FILESYSTEM |
8b58be88 | 9062 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 9063 | S: Maintained |
679655da JP |
9064 | F: Documentation/filesystems/ufs.txt |
9065 | F: fs/ufs/ | |
cc2020e6 | 9066 | |
0a09d3ab DR |
9067 | UHID USERSPACE HID IO DRIVER: |
9068 | M: David Herrmann <[email protected]> | |
9069 | L: [email protected] | |
9070 | S: Maintained | |
9071 | F: drivers/hid/uhid.c | |
c117ab84 | 9072 | F: include/uapi/linux/uhid.h |
0a09d3ab | 9073 | |
18332a80 | 9074 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 9075 | L: [email protected] |
10c6c9c9 | 9076 | S: Orphan |
355ffe69 | 9077 | F: drivers/uwb/ |
679655da JP |
9078 | F: include/linux/uwb.h |
9079 | F: include/linux/uwb/ | |
18332a80 | 9080 | |
b31d8273 G |
9081 | UNICORE32 ARCHITECTURE: |
9082 | M: Guan Xuetao <[email protected]> | |
9083 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9084 | S: Maintained | |
9085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
9086 | F: arch/unicore32/ | |
9087 | ||
d8379ab1 TF |
9088 | UNIFDEF |
9089 | M: Tony Finch <[email protected]> | |
9090 | W: http://dotat.at/prog/unifdef | |
9091 | S: Maintained | |
9092 | F: scripts/unifdef.c | |
9093 | ||
1da177e4 | 9094 | UNIFORM CDROM DRIVER |
8b58be88 | 9095 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
9096 | W: http://www.kernel.dk |
9097 | S: Maintained | |
679655da JP |
9098 | F: Documentation/cdrom/ |
9099 | F: drivers/cdrom/cdrom.c | |
9100 | F: include/linux/cdrom.h | |
c117ab84 | 9101 | F: include/uapi/linux/cdrom.h |
1da177e4 | 9102 | |
56df0122 BR |
9103 | UNISYS S-PAR DRIVERS |
9104 | M: Benjamin Romer <[email protected]> | |
9105 | M: David Kershner <[email protected]> | |
9106 | L: [email protected] (Unisys internal) | |
9107 | S: Supported | |
9108 | F: drivers/staging/unisys/ | |
9109 | ||
9941fa6e VH |
9110 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9111 | M: Vinayak Holikatti <[email protected]> | |
9112 | M: Santosh Y <[email protected]> | |
9113 | L: [email protected] | |
9114 | S: Supported | |
9115 | F: Documentation/scsi/ufs.txt | |
9116 | F: drivers/scsi/ufs/ | |
9117 | ||
e2d1d6c0 | 9118 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9119 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
9120 | W: http://www.linux-mtd.infradead.org/ |
9121 | L: [email protected] | |
b6b44e0a | 9122 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9123 | S: Maintained |
80811493 | 9124 | F: drivers/mtd/ubi/ |
679655da | 9125 | F: include/linux/mtd/ubi.h |
c117ab84 | 9126 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9127 | |
76ac66e4 RW |
9128 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9129 | M: Richard Weinberger <[email protected]> | |
9130 | L: [email protected] | |
9131 | S: Maintained | |
9132 | F: drivers/mtd/ubi/fastmap.c | |
9133 | ||
1da177e4 | 9134 | USB ACM DRIVER |
61eee9a7 | 9135 | M: Oliver Neukum <[email protected]> |
6372594a | 9136 | L: [email protected] |
1da177e4 | 9137 | S: Maintained |
679655da JP |
9138 | F: Documentation/usb/acm.txt |
9139 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9140 | |
b7d572e1 PF |
9141 | USB AR5523 WIRELESS DRIVER |
9142 | M: Pontus Fuchs <[email protected]> | |
9143 | L: [email protected] | |
9144 | S: Maintained | |
9145 | F: drivers/net/wireless/ath/ar5523/ | |
9146 | ||
115bb1ff | 9147 | USB ATTACHED SCSI |
f50a4968 | 9148 | M: Hans de Goede <[email protected]> |
8eae0fb7 | 9149 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
9150 | L: [email protected] |
9151 | L: [email protected] | |
8eae0fb7 | 9152 | S: Maintained |
115bb1ff MW |
9153 | F: drivers/usb/storage/uas.c |
9154 | ||
1da177e4 | 9155 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9156 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 9157 | L: [email protected] |
1da177e4 | 9158 | S: Maintained |
679655da | 9159 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9160 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9161 | |
b02b371e | 9162 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9163 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
9164 | L: [email protected] |
9165 | S: Maintained | |
679655da | 9166 | F: drivers/usb/c67x00/ |
b02b371e | 9167 | |
d0374f4f | 9168 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9169 | M: Peter Korsgaard <[email protected]> |
043600a6 | 9170 | L: [email protected] |
d0374f4f PK |
9171 | W: http://www.linux-usb.org/usbnet |
9172 | S: Maintained | |
679655da | 9173 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9174 | |
cc2020e6 | 9175 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9176 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
9177 | L: [email protected] |
9178 | W: http://rio500.sourceforge.net | |
9179 | S: Maintained | |
679655da | 9180 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9181 | |
1da177e4 | 9182 | USB EHCI DRIVER |
578333ab | 9183 | M: Alan Stern <[email protected]> |
795fb7e7 | 9184 | L: [email protected] |
578333ab | 9185 | S: Maintained |
679655da JP |
9186 | F: Documentation/usb/ehci.txt |
9187 | F: drivers/usb/host/ehci* | |
1da177e4 | 9188 | |
69ae9e3e | 9189 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9190 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 9191 | L: [email protected] |
69ae9e3e | 9192 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9193 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9194 | S: Maintained | |
679655da JP |
9195 | F: drivers/usb/gadget/ |
9196 | F: include/linux/usb/gadget* | |
69ae9e3e | 9197 | |
2dea64b4 | 9198 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9199 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 9200 | L: [email protected] |
54e5881d | 9201 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9202 | S: Maintained |
c2f01971 | 9203 | F: Documentation/hid/hiddev.txt |
679655da | 9204 | F: drivers/hid/usbhid/ |
1da177e4 | 9205 | |
857aab34 | 9206 | USB/IP DRIVERS |
857aab34 | 9207 | L: [email protected] |
3ff4afe8 | 9208 | S: Orphan |
857aab34 | 9209 | F: drivers/staging/usbip/ |
9210 | ||
959eea21 | 9211 | USB ISP116X DRIVER |
8b58be88 | 9212 | M: Olav Kongas <[email protected]> |
795fb7e7 | 9213 | L: [email protected] |
959eea21 | 9214 | S: Maintained |
679655da JP |
9215 | F: drivers/usb/host/isp116x* |
9216 | F: include/linux/usb/isp116x.h | |
959eea21 | 9217 | |
1da177e4 | 9218 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 9219 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 9220 | L: [email protected] |
1da177e4 | 9221 | S: Maintained |
679655da | 9222 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
9223 | |
9224 | USB MASS STORAGE DRIVER | |
8b58be88 | 9225 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 9226 | L: [email protected] |
8836aeb8 | 9227 | L: [email protected] |
1da177e4 LT |
9228 | S: Maintained |
9229 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9230 | F: drivers/usb/storage/ |
1da177e4 | 9231 | |
af39917d CL |
9232 | USB MIDI DRIVER |
9233 | M: Clemens Ladisch <[email protected]> | |
9234 | L: [email protected] (moderated for non-subscribers) | |
9235 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9236 | S: Maintained | |
9237 | F: sound/usb/midi.* | |
9238 | ||
444ce9d4 JP |
9239 | USB NETWORKING DRIVERS |
9240 | L: [email protected] | |
9241 | S: Odd Fixes | |
9242 | F: drivers/net/usb/ | |
9243 | ||
1da177e4 | 9244 | USB OHCI DRIVER |
578333ab | 9245 | M: Alan Stern <[email protected]> |
795fb7e7 | 9246 | L: [email protected] |
578333ab | 9247 | S: Maintained |
679655da JP |
9248 | F: Documentation/usb/ohci.txt |
9249 | F: drivers/usb/host/ohci* | |
1da177e4 | 9250 | |
ba460e48 | 9251 | USB OPTION-CARD DRIVER |
8b58be88 | 9252 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 9253 | L: [email protected] |
ba460e48 | 9254 | S: Maintained |
679655da | 9255 | F: drivers/usb/serial/option.c |
ba460e48 | 9256 | |
1da177e4 | 9257 | USB PEGASUS DRIVER |
a16b945c | 9258 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9259 | L: [email protected] |
043600a6 | 9260 | L: [email protected] |
052e3128 PM |
9261 | T: git git://github.com/petkan/pegasus.git |
9262 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9263 | S: Maintained |
679655da | 9264 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9265 | |
d3ad558f FB |
9266 | USB PHY LAYER |
9267 | M: Felipe Balbi <[email protected]> | |
9268 | L: [email protected] | |
9269 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9270 | S: Maintained | |
9271 | F: drivers/usb/phy/ | |
d3ad558f | 9272 | |
73e4fb3f | 9273 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9274 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 9275 | L: [email protected] |
73e4fb3f | 9276 | S: Supported |
679655da | 9277 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9278 | |
9279 | USB RTL8150 DRIVER | |
a16b945c | 9280 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9281 | L: [email protected] |
043600a6 | 9282 | L: [email protected] |
052e3128 PM |
9283 | T: git git://github.com/petkan/rtl8150.git |
9284 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9285 | S: Maintained |
679655da | 9286 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9287 | |
f896b796 GK |
9288 | USB SERIAL SUBSYSTEM |
9289 | M: Johan Hovold <[email protected]> | |
795fb7e7 | 9290 | L: [email protected] |
4e68852d | 9291 | S: Maintained |
679655da | 9292 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9293 | F: drivers/usb/serial/ |
679655da | 9294 | F: include/linux/usb/serial.h |
1da177e4 | 9295 | |
b3f0db1c SG |
9296 | USB SMSC75XX ETHERNET DRIVER |
9297 | M: Steve Glendinning <[email protected]> | |
9298 | L: [email protected] | |
9299 | S: Maintained | |
9300 | F: drivers/net/usb/smsc75xx.* | |
9301 | ||
2f7ca802 | 9302 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9303 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 9304 | L: [email protected] |
90b24cfb | 9305 | S: Maintained |
679655da | 9306 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9307 | |
f423b9a8 | 9308 | USB SN9C1xx DRIVER |
8b58be88 | 9309 | M: Luca Risolia <[email protected]> |
795fb7e7 | 9310 | L: [email protected] |
661263b5 | 9311 | L: [email protected] |
275ffde4 | 9312 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
9313 | W: http://www.linux-projects.org |
9314 | S: Maintained | |
b8da9d3a | 9315 | F: drivers/staging/media/sn9c102/ |
1da177e4 LT |
9316 | |
9317 | USB SUBSYSTEM | |
879a5a00 | 9318 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 9319 | L: [email protected] |
1da177e4 | 9320 | W: http://www.linux-usb.org |
08deed1e | 9321 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9322 | S: Supported |
679655da | 9323 | F: Documentation/usb/ |
679655da JP |
9324 | F: drivers/usb/ |
9325 | F: include/linux/usb.h | |
9326 | F: include/linux/usb/ | |
1da177e4 LT |
9327 | |
9328 | USB UHCI DRIVER | |
8b58be88 | 9329 | M: Alan Stern <[email protected]> |
795fb7e7 | 9330 | L: [email protected] |
1da177e4 | 9331 | S: Maintained |
679655da | 9332 | F: drivers/usb/host/uhci* |
1da177e4 | 9333 | |
69ae9e3e | 9334 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9335 | M: Oliver Neukum <[email protected]> |
043600a6 | 9336 | L: [email protected] |
69ae9e3e | 9337 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9338 | S: Maintained |
679655da JP |
9339 | F: drivers/net/usb/usbnet.c |
9340 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9341 | |
c0efd232 | 9342 | USB VIDEO CLASS |
c53ac071 | 9343 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 9344 | L: [email protected] (subscribers-only) |
661263b5 | 9345 | L: [email protected] |
275ffde4 | 9346 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9347 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9348 | S: Maintained |
0c0d06ca | 9349 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9350 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9351 | |
b60b9c45 HV |
9352 | USB VISION DRIVER |
9353 | M: Hans Verkuil <[email protected]> | |
9354 | L: [email protected] | |
9355 | T: git git://linuxtv.org/media_tree.git | |
9356 | W: http://linuxtv.org | |
9357 | S: Odd Fixes | |
9358 | F: drivers/media/usb/usbvision/ | |
9359 | ||
8282da47 LP |
9360 | USB WEBCAM GADGET |
9361 | M: Laurent Pinchart <[email protected]> | |
9362 | L: [email protected] | |
9363 | S: Maintained | |
9364 | F: drivers/usb/gadget/*uvc*.c | |
9365 | F: drivers/usb/gadget/webcam.c | |
9366 | ||
bf164cc0 | 9367 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9368 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
9369 | L: [email protected] |
9370 | S: Maintained | |
679655da | 9371 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9372 | |
eb6bab13 | 9373 | USB XHCI DRIVER |
03d85053 | 9374 | M: Mathias Nyman <[email protected]> |
eb6bab13 SS |
9375 | L: [email protected] |
9376 | S: Supported | |
36d0344c SS |
9377 | F: drivers/usb/host/xhci* |
9378 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9379 | |
1da177e4 | 9380 | USB ZD1201 DRIVER |
4086b9ca | 9381 | L: [email protected] |
1da177e4 | 9382 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9383 | S: Orphan |
679655da | 9384 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9385 | |
b7eee616 | 9386 | USB ZR364XX DRIVER |
8b58be88 | 9387 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 9388 | L: [email protected] |
661263b5 | 9389 | L: [email protected] |
275ffde4 | 9390 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9391 | W: http://royale.zerezo.com/zr364xx/ |
9392 | S: Maintained | |
679655da | 9393 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9394 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9395 | |
e7839f25 | 9396 | USER-MODE LINUX (UML) |
8b58be88 | 9397 | M: Jeff Dike <[email protected]> |
b15194b7 | 9398 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
9399 | L: [email protected] |
9400 | L: [email protected] | |
9401 | W: http://user-mode-linux.sourceforge.net | |
9402 | S: Maintained | |
61516587 | 9403 | F: Documentation/virtual/uml/ |
679655da | 9404 | F: arch/um/ |
b070989a | 9405 | F: arch/x86/um/ |
679655da JP |
9406 | F: fs/hostfs/ |
9407 | F: fs/hppfs/ | |
b7eee616 | 9408 | |
e5f114e9 | 9409 | USERSPACE I/O (UIO) |
6a534c9d | 9410 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 9411 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 9412 | S: Maintained |
679655da JP |
9413 | F: Documentation/DocBook/uio-howto.tmpl |
9414 | F: drivers/uio/ | |
9415 | F: include/linux/uio*.h | |
e5f114e9 | 9416 | |
256cccbe | 9417 | UTIL-LINUX PACKAGE |
8b58be88 | 9418 | M: Karel Zak <[email protected]> |
256cccbe KZ |
9419 | L: [email protected] |
9420 | W: http://en.wikipedia.org/wiki/Util-linux | |
9421 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9422 | S: Maintained |
9423 | ||
c1fd1c07 | 9424 | UVESAFB DRIVER |
8b58be88 | 9425 | M: Michal Januszewski <[email protected]> |
c69f677c | 9426 | L: [email protected] |
c1fd1c07 MJ |
9427 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9428 | S: Maintained | |
679655da JP |
9429 | F: Documentation/fb/uvesafb.txt |
9430 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9431 | |
4480f15b | 9432 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9433 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 9434 | S: Maintained |
679655da JP |
9435 | F: Documentation/filesystems/vfat.txt |
9436 | F: fs/fat/ | |
1da177e4 | 9437 | |
cba3345c AW |
9438 | VFIO DRIVER |
9439 | M: Alex Williamson <[email protected]> | |
9440 | L: [email protected] | |
9441 | S: Maintained | |
9442 | F: Documentation/vfio.txt | |
9443 | F: drivers/vfio/ | |
9444 | F: include/linux/vfio.h | |
c117ab84 | 9445 | F: include/uapi/linux/vfio.h |
cba3345c | 9446 | |
9e6f3438 PO |
9447 | VIDEOBUF2 FRAMEWORK |
9448 | M: Pawel Osciak <[email protected]> | |
9449 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 9450 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
9451 | L: [email protected] |
9452 | S: Maintained | |
90d72ac6 | 9453 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9454 | F: include/media/videobuf2-* |
9455 | ||
9a82446b AS |
9456 | VIRTIO CONSOLE DRIVER |
9457 | M: Amit Shah <[email protected]> | |
9458 | L: [email protected] | |
9459 | S: Maintained | |
9460 | F: drivers/char/virtio_console.c | |
9461 | F: include/linux/virtio_console.h | |
c117ab84 | 9462 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9463 | |
2426ec8f MT |
9464 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9465 | M: Rusty Russell <[email protected]> | |
9466 | M: "Michael S. Tsirkin" <[email protected]> | |
9467 | L: [email protected] | |
9468 | S: Maintained | |
9469 | F: drivers/virtio/ | |
c893c8d7 | 9470 | F: tools/virtio/ |
2426ec8f MT |
9471 | F: drivers/net/virtio_net.c |
9472 | F: drivers/block/virtio_blk.c | |
9473 | F: include/linux/virtio_*.h | |
916cdabc | 9474 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9475 | |
3a4d5c94 MT |
9476 | VIRTIO HOST (VHOST) |
9477 | M: "Michael S. Tsirkin" <[email protected]> | |
9478 | L: [email protected] | |
c996d8b9 | 9479 | L: [email protected] |
3a4d5c94 MT |
9480 | L: [email protected] |
9481 | S: Maintained | |
9482 | F: drivers/vhost/ | |
c117ab84 | 9483 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9484 | |
1da177e4 | 9485 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9486 | M: Roger Luethi <[email protected]> |
1da177e4 | 9487 | S: Maintained |
f2148a47 | 9488 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9489 | |
f0bf7f61 | 9490 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9491 | M: Bruce Chang <[email protected]> |
8b58be88 | 9492 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
9493 | S: Maintained |
9494 | F: drivers/mmc/host/via-sdmmc.c | |
9495 | ||
69e4a7c2 | 9496 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9497 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 9498 | L: [email protected] |
69e4a7c2 | 9499 | S: Maintained |
c7babebd FTS |
9500 | F: include/linux/via-core.h |
9501 | F: include/linux/via-gpio.h | |
9502 | F: include/linux/via_i2c.h | |
679655da | 9503 | F: drivers/video/via/ |
69e4a7c2 | 9504 | |
01f20734 | 9505 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9506 | M: Francois Romieu <[email protected]> |
01f20734 FR |
9507 | L: [email protected] |
9508 | S: Maintained | |
f2148a47 | 9509 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9510 | |
0b7bc1fa HV |
9511 | VIVI VIRTUAL VIDEO DRIVER |
9512 | M: Hans Verkuil <[email protected]> | |
9513 | L: [email protected] | |
9514 | T: git git://linuxtv.org/media_tree.git | |
9515 | W: http://linuxtv.org | |
9516 | S: Maintained | |
9517 | F: drivers/media/platform/vivi* | |
9518 | ||
be7f8273 | 9519 | VLAN (802.1Q) |
8b58be88 | 9520 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9521 | L: [email protected] |
9522 | S: Maintained | |
679655da JP |
9523 | F: drivers/net/macvlan.c |
9524 | F: include/linux/if_*vlan.h | |
9525 | F: net/8021q/ | |
be7f8273 | 9526 | |
55e331cf | 9527 | VLYNQ BUS |
8b58be88 | 9528 | M: Florian Fainelli <[email protected]> |
8578d7af | 9529 | L: [email protected] (subscribers-only) |
55e331cf FF |
9530 | S: Maintained |
9531 | F: drivers/vlynq/vlynq.c | |
9532 | F: include/linux/vlynq.h | |
9533 | ||
390beae4 MW |
9534 | VME SUBSYSTEM |
9535 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9536 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9537 | M: Greg Kroah-Hartman <[email protected]> |
9538 | L: [email protected] | |
9539 | S: Maintained | |
9540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9541 | F: Documentation/vme_api.txt | |
9542 | F: drivers/staging/vme/ | |
9543 | F: drivers/vme/ | |
9544 | F: include/linux/vme* | |
9545 | ||
4488e09b AK |
9546 | VMWARE HYPERVISOR INTERFACE |
9547 | M: Alok Kataria <[email protected]> | |
9548 | L: [email protected] | |
9549 | S: Supported | |
9550 | F: arch/x86/kernel/cpu/vmware.c | |
9551 | ||
d1a890fa | 9552 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9553 | M: Shreyas Bhatewara <[email protected]> |
9554 | M: "VMware, Inc." <[email protected]> | |
9555 | L: [email protected] | |
9556 | S: Maintained | |
9557 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9558 | |
851b1642 | 9559 | VMware PVSCSI driver |
f2d7e40e | 9560 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9561 | M: VMware PV-Drivers <[email protected]> |
9562 | L: [email protected] | |
9563 | S: Maintained | |
9564 | F: drivers/scsi/vmw_pvscsi.c | |
9565 | F: drivers/scsi/vmw_pvscsi.h | |
9566 | ||
e53e86c7 | 9567 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9568 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9569 | M: Mark Brown <[email protected]> |
e53e86c7 | 9570 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9571 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9572 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9573 | S: Supported |
679655da JP |
9574 | F: drivers/regulator/ |
9575 | F: include/linux/regulator/ | |
e53e86c7 | 9576 | |
ab41319e | 9577 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9578 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9579 | L: [email protected] |
9580 | S: Maintained | |
679655da JP |
9581 | F: Documentation/hwmon/vt1211 |
9582 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9583 | |
1de9e371 | 9584 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9585 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9586 | L: [email protected] |
9587 | S: Maintained | |
679655da | 9588 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9589 | |
88095e7b TO |
9590 | VUB300 USB to SDIO/SD/MMC bridge chip |
9591 | M: Tony Olech <[email protected]> | |
9592 | L: [email protected] | |
9593 | L: [email protected] | |
9594 | S: Supported | |
9595 | F: drivers/mmc/host/vub300.c | |
9596 | ||
1da177e4 | 9597 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9598 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9599 | S: Maintained |
679655da JP |
9600 | F: Documentation/w1/ |
9601 | F: drivers/w1/ | |
1da177e4 | 9602 | |
13927079 | 9603 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9604 | M: Marc Hulsman <[email protected]> |
13927079 | 9605 | L: [email protected] |
25845c22 | 9606 | S: Maintained |
679655da JP |
9607 | F: Documentation/hwmon/w83791d |
9608 | F: drivers/hwmon/w83791d.c | |
13927079 | 9609 | |
61db011d | 9610 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9611 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9612 | L: [email protected] |
9613 | S: Maintained | |
679655da JP |
9614 | F: Documentation/hwmon/w83793 |
9615 | F: drivers/hwmon/w83793.c | |
61db011d | 9616 | |
e3760b43 | 9617 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 9618 | M: Jean Delvare <[email protected]> |
e3760b43 JD |
9619 | L: [email protected] |
9620 | S: Maintained | |
9621 | F: drivers/hwmon/w83795.c | |
9622 | ||
1da177e4 | 9623 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9624 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9625 | S: Maintained |
679655da | 9626 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9627 | |
3527761c | 9628 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9629 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9630 | L: [email protected] |
9631 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9632 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9633 | S: Maintained |
679655da JP |
9634 | F: Documentation/watchdog/ |
9635 | F: drivers/watchdog/ | |
9636 | F: include/linux/watchdog.h | |
c117ab84 | 9637 | F: include/uapi/linux/watchdog.h |
3527761c | 9638 | |
1da177e4 | 9639 | WD7000 SCSI DRIVER |
8b58be88 | 9640 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9641 | L: [email protected] |
9642 | S: Maintained | |
679655da | 9643 | F: drivers/scsi/wd7000.c |
1da177e4 | 9644 | |
b22e00f3 DR |
9645 | WIIMOTE HID DRIVER |
9646 | M: David Herrmann <[email protected]> | |
9647 | L: [email protected] | |
9648 | S: Maintained | |
9649 | F: drivers/hid/hid-wiimote* | |
9650 | ||
e258b80e | 9651 | WINBOND CIR DRIVER |
364e9e18 | 9652 | M: David Härdeman <[email protected]> |
e258b80e | 9653 | S: Maintained |
116ab806 | 9654 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9655 | |
8a70da82 | 9656 | WIMAX STACK |
8b58be88 | 9657 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9658 | M: [email protected] |
9659 | L: [email protected] | |
9660 | S: Supported | |
9661 | W: http://linuxwimax.org | |
315987dc | 9662 | F: Documentation/wimax/README.wimax |
315987dc JP |
9663 | F: include/linux/wimax/debug.h |
9664 | F: include/net/wimax.h | |
c117ab84 | 9665 | F: include/uapi/linux/wimax.h |
315987dc | 9666 | F: net/wimax/ |
8a70da82 | 9667 | |
5fc14680 | 9668 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9669 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9670 | S: Maintained |
679655da | 9671 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9672 | |
1da177e4 | 9673 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9674 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9675 | L: [email protected] |
926554c4 | 9676 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9677 | S: Maintained |
679655da | 9678 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9679 | |
febf1dff | 9680 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9681 | M: Mark Brown <[email protected]> |
8b58be88 | 9682 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9683 | L: [email protected] |
9684 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9685 | W: http://opensource.wolfsonmicro.com/node/7 | |
9686 | S: Supported | |
679655da JP |
9687 | F: drivers/input/touchscreen/*wm97* |
9688 | F: include/linux/wm97xx.h | |
febf1dff | 9689 | |
055bcbcb | 9690 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9691 | L: [email protected] |
cf8eda3e | 9692 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9693 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9694 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9695 | S: Supported |
3768f0b1 | 9696 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9697 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9698 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9699 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9700 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9701 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9702 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9703 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9704 | F: drivers/input/misc/wm831x-on.c |
9705 | F: drivers/input/touchscreen/wm831x-ts.c | |
9706 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9707 | F: drivers/mfd/arizona* |
9708 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9709 | F: drivers/power/wm83*.c |
9710 | F: drivers/rtc/rtc-wm83*.c | |
9711 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9712 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9713 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9714 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9715 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9716 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9717 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9718 | F: include/linux/wm97xx.h |
055bcbcb | 9719 | F: include/sound/wm????.h |
9c309598 | 9720 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9721 | F: sound/soc/codecs/wm* |
b75ea16a | 9722 | |
3e6cd7a4 TH |
9723 | WORKQUEUE |
9724 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9725 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9726 | S: Maintained | |
9727 | F: include/linux/workqueue.h | |
9728 | F: kernel/workqueue.c | |
9729 | F: Documentation/workqueue.txt | |
9730 | ||
1da177e4 | 9731 | X.25 NETWORK LAYER |
8bf28059 | 9732 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9733 | L: [email protected] |
8bf28059 | 9734 | S: Odd Fixes |
679655da JP |
9735 | F: Documentation/networking/x25* |
9736 | F: include/net/x25* | |
9737 | F: net/x25/ | |
1da177e4 | 9738 | |
e2d1d6c0 | 9739 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9740 | M: Thomas Gleixner <[email protected]> |
9741 | M: Ingo Molnar <[email protected]> | |
9742 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9743 | M: [email protected] |
981c3a4f | 9744 | L: [email protected] |
75fc2d37 | 9745 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9746 | S: Maintained |
679655da JP |
9747 | F: Documentation/x86/ |
9748 | F: arch/x86/ | |
e2d1d6c0 | 9749 | |
d0944853 | 9750 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9751 | M: Matthew Garrett <[email protected]> |
d0944853 | 9752 | L: [email protected] |
28b8e8d4 | 9753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9754 | S: Maintained |
14430813 | 9755 | F: drivers/platform/x86/ |
d0944853 | 9756 | |
c1f5c54b IM |
9757 | X86 MCE INFRASTRUCTURE |
9758 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9759 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9760 | L: [email protected] |
9761 | S: Maintained | |
9762 | F: arch/x86/kernel/cpu/mcheck/* | |
9763 | ||
d6fad502 | 9764 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9765 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9766 | L: [email protected] |
9767 | W: http://linuxtv.org | |
9768 | T: git git://linuxtv.org/media_tree.git | |
9769 | S: Maintained | |
9770 | F: drivers/media/tuners/tuner-xc2028.* | |
9771 | ||
c4468085 | 9772 | XEN HYPERVISOR INTERFACE |
c4468085 | 9773 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
9774 | M: Boris Ostrovsky <[email protected]> |
9775 | M: David Vrabel <[email protected]> | |
11dbb52b | 9776 | L: [email protected] (moderated for non-subscribers) |
ea70ba3a | 9777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
9778 | S: Supported |
9779 | F: arch/x86/xen/ | |
9780 | F: drivers/*/xen-*front.c | |
9781 | F: drivers/xen/ | |
9782 | F: arch/x86/include/asm/xen/ | |
9783 | F: include/xen/ | |
c117ab84 | 9784 | F: include/uapi/xen/ |
c4468085 | 9785 | |
77bfb479 SS |
9786 | XEN HYPERVISOR ARM |
9787 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9788 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
9789 | S: Supported |
9790 | F: arch/arm/xen/ | |
9791 | F: arch/arm/include/asm/xen/ | |
9792 | ||
b475e83f SS |
9793 | XEN HYPERVISOR ARM64 |
9794 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9795 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
9796 | S: Supported |
9797 | F: arch/arm64/xen/ | |
9798 | F: arch/arm64/include/asm/xen/ | |
9799 | ||
9b57e1a7 IC |
9800 | XEN NETWORK BACKEND DRIVER |
9801 | M: Ian Campbell <[email protected]> | |
8386040b | 9802 | M: Wei Liu <[email protected]> |
11dbb52b | 9803 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
9804 | L: [email protected] |
9805 | S: Supported | |
9806 | F: drivers/net/xen-netback/* | |
9807 | ||
c5f8e29d KRW |
9808 | XEN PCI SUBSYSTEM |
9809 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9810 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9811 | S: Supported |
9812 | F: arch/x86/pci/*xen* | |
9813 | F: drivers/pci/*xen* | |
9814 | ||
9815 | XEN SWIOTLB SUBSYSTEM | |
9816 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9817 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9818 | S: Supported |
9819 | F: arch/x86/xen/*swiotlb* | |
9820 | F: drivers/xen/*swiotlb* | |
9821 | ||
1da177e4 LT |
9822 | XFS FILESYSTEM |
9823 | P: Silicon Graphics Inc | |
809625ca | 9824 | M: Dave Chinner <[email protected]> |
18caa67a | 9825 | M: [email protected] |
d7ede1aa | 9826 | L: [email protected] |
1da177e4 | 9827 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9828 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9829 | S: Supported |
679655da JP |
9830 | F: Documentation/filesystems/xfs.txt |
9831 | F: fs/xfs/ | |
1da177e4 | 9832 | |
8a3b7a25 | 9833 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9834 | M: Anirudha Sarangi <[email protected]> |
9835 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9836 | S: Maintained |
9837 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9838 | ||
c9d3d8ec | 9839 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9840 | S: Orphan |
679655da | 9841 | F: drivers/block/xsysace.c |
c9d3d8ec | 9842 | |
238b8721 | 9843 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9844 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9845 | L: [email protected] |
9846 | S: Maintained | |
df621252 | 9847 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9848 | |
f620e4b8 MF |
9849 | XTENSA XTFPGA PLATFORM SUPPORT |
9850 | M: Max Filippov <[email protected]> | |
9851 | L: [email protected] | |
9852 | S: Maintained | |
9853 | F: drivers/spi/spi-xtensa-xtfpga.c | |
9854 | ||
1da177e4 | 9855 | YAM DRIVER FOR AX.25 |
8b58be88 | 9856 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9857 | L: [email protected] |
9858 | S: Maintained | |
679655da JP |
9859 | F: drivers/net/hamradio/yam* |
9860 | F: include/linux/yam.h | |
1da177e4 | 9861 | |
af64a5eb | 9862 | YEALINK PHONE DRIVER |
8b58be88 | 9863 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9864 | L: [email protected] |
9865 | S: Maintained | |
679655da JP |
9866 | F: Documentation/input/yealink.txt |
9867 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9868 | |
1da177e4 | 9869 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9870 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9871 | W: http://yaina.de/jreuter/ |
9872 | W: http://www.qsl.net/dl1bke/ | |
9873 | L: [email protected] | |
9874 | S: Maintained | |
679655da JP |
9875 | F: Documentation/networking/z8530drv.txt |
9876 | F: drivers/net/hamradio/*scc.c | |
9877 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9878 | |
0cf31ec1 SJ |
9879 | ZBUD COMPRESSED PAGE ALLOCATOR |
9880 | M: Seth Jennings <[email protected]> | |
9881 | L: [email protected] | |
9882 | S: Maintained | |
9883 | F: mm/zbud.c | |
9884 | F: include/linux/zbud.h | |
9885 | ||
7c0c3afb | 9886 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9887 | M: Daniel Drake <[email protected]> |
9888 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9889 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9890 | L: [email protected] |
7c0c3afb DD |
9891 | L: [email protected] (subscribers-only) |
9892 | S: Maintained | |
679655da | 9893 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9894 | |
1da177e4 | 9895 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9896 | L: [email protected] |
f63145e2 | 9897 | L: [email protected] |
1da177e4 | 9898 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 9899 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 9900 | S: Odd Fixes |
90d72ac6 | 9901 | F: drivers/media/pci/zoran/ |
1da177e4 | 9902 | |
6920f2cc MK |
9903 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
9904 | M: Minchan Kim <[email protected]> | |
9905 | M: Nitin Gupta <[email protected]> | |
9906 | L: [email protected] | |
9907 | S: Maintained | |
9908 | F: drivers/block/zram/ | |
9909 | F: Documentation/blockdev/zram.txt | |
9910 | ||
8b4a4080 | 9911 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9912 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9913 | S: Maintained |
df621252 | 9914 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9915 | |
eae70d06 MK |
9916 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
9917 | M: Minchan Kim <[email protected]> | |
9918 | M: Nitin Gupta <[email protected]> | |
9919 | L: [email protected] | |
9920 | S: Maintained | |
9921 | F: mm/zsmalloc.c | |
9922 | F: include/linux/zsmalloc.h | |
9923 | ||
0cf31ec1 SJ |
9924 | ZSWAP COMPRESSED SWAP CACHING |
9925 | M: Seth Jennings <[email protected]> | |
9926 | L: [email protected] | |
9927 | S: Maintained | |
9928 | F: mm/zswap.c | |
9929 | ||
1da177e4 | 9930 | THE REST |
8b58be88 | 9931 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9932 | L: [email protected] |
8a6e2535 | 9933 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9935 | S: Buried alive in reporters |
34d03cc1 JP |
9936 | F: * |
9937 | F: */ |