]>
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 | |
ea8f8fc8 JT |
213 | ABI/API |
214 | L: [email protected] | |
215 | F: Documentation/ABI/ | |
216 | F: include/linux/syscalls.h | |
217 | F: include/uapi/ | |
218 | F: kernel/sys_ni.c | |
219 | ||
249e3c85 | 220 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 221 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
222 | L: [email protected] |
223 | S: Maintained | |
679655da | 224 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 225 | |
249e3c85 | 226 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 227 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
228 | L: [email protected] |
229 | S: Maintained | |
679655da | 230 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 231 | |
1da177e4 | 232 | ACENIC DRIVER |
8b58be88 | 233 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
234 | L: [email protected] |
235 | S: Maintained | |
531c4f89 | 236 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 237 | |
e86435eb | 238 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 239 | M: Peter Feuerer <[email protected]> |
d0944853 | 240 | L: [email protected] |
4fc26e36 JP |
241 | W: http://piie.net/?section=acerhdf |
242 | S: Maintained | |
243 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 244 | |
745a5d21 | 245 | ACER WMI LAPTOP EXTRAS |
182ae55c | 246 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 247 | L: [email protected] |
745a5d21 | 248 | S: Maintained |
679655da | 249 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 250 | |
1da177e4 | 251 | ACPI |
49db1903 | 252 | M: Rafael J. Wysocki <[email protected]> |
7fb06082 | 253 | M: Len Brown <[email protected]> |
6968e50c | 254 | L: [email protected] |
360818b8 RW |
255 | W: https://01.org/linux-acpi |
256 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 258 | S: Supported |
679655da JP |
259 | F: drivers/acpi/ |
260 | F: drivers/pnp/pnpacpi/ | |
261 | F: include/linux/acpi.h | |
43368e74 | 262 | F: include/acpi/ |
994b942f | 263 | F: Documentation/acpi |
89ca78a0 | 264 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
265 | F: drivers/pci/*acpi* |
266 | F: drivers/pci/*/*acpi* | |
267 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 268 | F: tools/power/acpi |
8b59a454 | 269 | |
3774929d RW |
270 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
271 | M: Robert Moore <[email protected]> | |
272 | M: Lv Zheng <[email protected]> | |
273 | M: Rafael J. Wysocki <[email protected]> | |
274 | L: [email protected] | |
275 | L: [email protected] | |
276 | W: https://acpica.org/ | |
277 | W: https://github.com/acpica/acpica/ | |
278 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
279 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
280 | S: Supported | |
281 | F: drivers/acpi/acpica/ | |
282 | F: include/acpi/ | |
2754c447 | 283 | F: tools/power/acpi/ |
3774929d | 284 | |
8b59a454 | 285 | ACPI FAN 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/fan.c |
1da177e4 | 291 | |
8b59a454 | 292 | ACPI THERMAL 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/*thermal* |
998be20f | 298 | |
359acec8 | 299 | ACPI VIDEO DRIVER |
8b58be88 | 300 | M: Zhang Rui <[email protected]> |
8b59a454 | 301 | L: [email protected] |
5ca92bd9 | 302 | W: https://01.org/linux-acpi |
8b59a454 | 303 | S: Supported |
679655da | 304 | F: drivers/acpi/video.c |
998be20f | 305 | |
bff431e4 | 306 | ACPI WMI DRIVER |
d0944853 | 307 | L: [email protected] |
5b927259 | 308 | S: Orphan |
679655da | 309 | F: drivers/platform/x86/wmi.c |
bff431e4 | 310 | |
2f39d519 | 311 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 312 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
313 | W: http://wiki.parisc-linux.org/AD1889 |
314 | L: [email protected] | |
315 | S: Maintained | |
679655da | 316 | F: sound/pci/ad1889.* |
2f39d519 | 317 | |
527a1a83 MH |
318 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
319 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 320 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 321 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
322 | S: Supported |
323 | F: drivers/misc/ad525x_dpot.c | |
324 | ||
325 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
326 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 327 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 328 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
329 | S: Supported |
330 | F: drivers/regulator/ad5398.c | |
331 | ||
332 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
333 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 334 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 335 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
336 | S: Supported |
337 | F: drivers/input/misc/ad714x.c | |
338 | ||
339 | AD7877 TOUCHSCREEN DRIVER | |
340 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 341 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 342 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
343 | S: Supported |
344 | F: drivers/input/touchscreen/ad7877.c | |
345 | ||
346 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
347 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 348 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 349 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
350 | S: Supported |
351 | F: drivers/input/touchscreen/ad7879.c | |
352 | ||
1330b0dc JK |
353 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
354 | M: Jiri Kosina <[email protected]> | |
355 | S: Maintained | |
356 | ||
1da177e4 | 357 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 358 | M: Jean Delvare <[email protected]> |
cc0b07ed | 359 | L: [email protected] |
1da177e4 | 360 | S: Maintained |
679655da JP |
361 | F: Documentation/hwmon/adm1025 |
362 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 363 | |
cae2caae | 364 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 365 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
366 | L: [email protected] |
367 | S: Maintained | |
679655da | 368 | F: drivers/hwmon/adm1029.c |
cae2caae | 369 | |
cc0b88cf | 370 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 371 | L: [email protected] |
491b26b4 | 372 | W: http://wireless.kernel.org/ |
e71bcbd0 | 373 | S: Orphan |
679655da | 374 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 375 | |
e8e31622 SA |
376 | ADP1653 FLASH CONTROLLER DRIVER |
377 | M: Sakari Ailus <[email protected]> | |
378 | L: [email protected] | |
379 | S: Maintained | |
380 | F: drivers/media/i2c/adp1653.c | |
381 | F: include/media/adp1653.h | |
382 | ||
527a1a83 MH |
383 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
384 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 385 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 386 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
387 | S: Supported |
388 | F: drivers/mfd/adp5520.c | |
389 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 390 | F: drivers/leds/leds-adp5520.c |
77278d50 | 391 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
392 | F: drivers/input/keyboard/adp5520-keys.c |
393 | ||
394 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
395 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 396 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 397 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
398 | S: Supported |
399 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 400 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
401 | |
402 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
403 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 404 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 405 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
406 | S: Supported |
407 | F: drivers/video/backlight/adp8860_bl.c | |
408 | ||
8c22a8f5 DE |
409 | ADS1015 HARDWARE MONITOR DRIVER |
410 | M: Dirk Eibach <[email protected]> | |
411 | L: [email protected] | |
412 | S: Maintained | |
413 | F: Documentation/hwmon/ads1015 | |
414 | F: drivers/hwmon/ads1015.c | |
415 | F: include/linux/i2c/ads1015.h | |
416 | ||
1da177e4 | 417 | ADT746X FAN DRIVER |
8b58be88 | 418 | M: Colin Leroy <[email protected]> |
1da177e4 | 419 | S: Maintained |
679655da | 420 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 421 | |
b058b859 | 422 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 423 | M: Jean Delvare <[email protected]> |
b058b859 JD |
424 | L: [email protected] |
425 | S: Maintained | |
426 | F: Documentation/hwmon/adt7475 | |
427 | F: drivers/hwmon/adt7475.c | |
428 | ||
527a1a83 MH |
429 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
430 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 431 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 432 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
433 | S: Supported |
434 | F: drivers/input/misc/adxl34x.c | |
435 | ||
8c6af9e1 | 436 | ADVANSYS SCSI DRIVER |
8b58be88 | 437 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
438 | L: [email protected] |
439 | S: Maintained | |
679655da JP |
440 | F: Documentation/scsi/advansys.txt |
441 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 442 | |
1da177e4 | 443 | AEDSP16 DRIVER |
8b58be88 | 444 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 445 | S: Maintained |
679655da | 446 | F: sound/oss/aedsp16.c |
1da177e4 | 447 | |
91952bc0 AP |
448 | AF9013 MEDIA DRIVER |
449 | M: Antti Palosaari <[email protected]> | |
450 | L: [email protected] | |
451 | W: http://linuxtv.org/ | |
452 | W: http://palosaari.fi/linux/ | |
453 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
454 | T: git git://linuxtv.org/anttip/media_tree.git | |
455 | S: Maintained | |
456 | F: drivers/media/dvb-frontends/af9013* | |
457 | ||
458 | AF9033 MEDIA DRIVER | |
459 | M: Antti Palosaari <[email protected]> | |
460 | L: [email protected] | |
461 | W: http://linuxtv.org/ | |
462 | W: http://palosaari.fi/linux/ | |
463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
464 | T: git git://linuxtv.org/anttip/media_tree.git | |
465 | S: Maintained | |
466 | F: drivers/media/dvb-frontends/af9033* | |
467 | ||
1da177e4 | 468 | AFFS FILE SYSTEM |
6cf515e1 GU |
469 | L: [email protected] |
470 | S: Orphan | |
679655da JP |
471 | F: Documentation/filesystems/affs.txt |
472 | F: fs/affs/ | |
1da177e4 | 473 | |
e2d1d6c0 | 474 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 475 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
476 | L: [email protected] |
477 | S: Supported | |
679655da JP |
478 | F: fs/afs/ |
479 | F: include/net/af_rxrpc.h | |
480 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 481 | |
1da177e4 | 482 | AGPGART DRIVER |
8b58be88 | 483 | M: David Airlie <[email protected]> |
878eaf61 | 484 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 485 | S: Maintained |
679655da JP |
486 | F: drivers/char/agp/ |
487 | F: include/linux/agp* | |
c117ab84 | 488 | F: include/uapi/linux/agp* |
1da177e4 LT |
489 | |
490 | AHA152X SCSI DRIVER | |
8b58be88 | 491 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
492 | L: [email protected] |
493 | S: Maintained | |
679655da JP |
494 | F: drivers/scsi/aha152x* |
495 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 496 | |
64624d4f | 497 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 498 | M: Hannes Reinecke <[email protected]> |
64624d4f | 499 | L: [email protected] |
1da177e4 | 500 | S: Maintained |
679655da | 501 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 502 | |
450500ad HV |
503 | AIMSLAB FM RADIO RECEIVER DRIVER |
504 | M: Hans Verkuil <[email protected]> | |
505 | L: [email protected] | |
506 | T: git git://linuxtv.org/media_tree.git | |
507 | W: http://linuxtv.org | |
508 | S: Maintained | |
509 | F: drivers/media/radio/radio-aimslab* | |
510 | ||
e2d1d6c0 | 511 | AIO |
8b58be88 | 512 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
513 | L: [email protected] |
514 | S: Supported | |
679655da JP |
515 | F: fs/aio.c |
516 | F: include/linux/*aio*.h | |
e2d1d6c0 | 517 | |
1da177e4 | 518 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 519 | M: Duncan Sands <[email protected]> |
6372594a | 520 | L: [email protected] |
1da177e4 LT |
521 | W: http://www.linux-usb.org/SpeedTouch/ |
522 | S: Maintained | |
679655da JP |
523 | F: drivers/usb/atm/speedtch.c |
524 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 525 | |
272f133a | 526 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 527 | M: Manuel Lauss <[email protected]> |
08fcb720 | 528 | S: Maintained |
679655da | 529 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 530 | |
4a4e5787 | 531 | ALI1563 I2C DRIVER |
8b58be88 | 532 | M: Rudolf Marek <[email protected]> |
846557d3 | 533 | L: [email protected] |
4a4e5787 | 534 | S: Maintained |
679655da JP |
535 | F: Documentation/i2c/busses/i2c-ali1563 |
536 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 537 | |
1da177e4 | 538 | ALPHA PORT |
8b58be88 | 539 | M: Richard Henderson <[email protected]> |
8b58be88 | 540 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 541 | M: Matt Turner <[email protected]> |
c89f4f9a | 542 | S: Odd Fixes |
a9406699 | 543 | L: [email protected] |
679655da | 544 | F: arch/alpha/ |
1da177e4 | 545 | |
16b8b922 | 546 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
0d9327ab | 547 | M: Vince Bridgers <[email protected]> |
16b8b922 VB |
548 | L: [email protected] |
549 | L: [email protected] (moderated for non-subscribers) | |
550 | S: Maintained | |
551 | F: drivers/net/ethernet/altera/ | |
552 | ||
adf9251f TK |
553 | ALTERA UART/JTAG UART SERIAL DRIVERS |
554 | M: Tobias Klauser <[email protected]> | |
555 | L: [email protected] | |
61bd0943 | 556 | L: [email protected] (moderated for non-subscribers) |
adf9251f TK |
557 | S: Maintained |
558 | F: drivers/tty/serial/altera_uart.c | |
559 | F: drivers/tty/serial/altera_jtaguart.c | |
560 | F: include/linux/altera_uart.h | |
561 | F: include/linux/altera_jtaguart.h | |
562 | ||
f4875e12 TL |
563 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
564 | M: Tom Lendacky <[email protected]> | |
565 | L: [email protected] | |
566 | S: Supported | |
567 | F: drivers/crypto/ccp/ | |
568 | F: include/linux/ccp.h | |
569 | ||
512d1027 | 570 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 571 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
572 | L: [email protected] |
573 | S: Maintained | |
574 | F: Documentation/hwmon/fam15h_power | |
575 | F: drivers/hwmon/fam15h_power.c | |
576 | ||
167a675a | 577 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 578 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 579 | L: [email protected] (moderated for non-subscribers) |
167a675a | 580 | S: Supported |
679655da | 581 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 582 | |
f90b8116 | 583 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 584 | P: Andres Salomon <[email protected]> |
67d76710 | 585 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
586 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
587 | S: Supported | |
679655da JP |
588 | F: drivers/char/hw_random/geode-rng.c |
589 | F: drivers/crypto/geode* | |
590 | F: drivers/video/geode/ | |
591 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 592 | |
919ee7dd | 593 | AMD IOMMU (AMD-VI) |
e4110568 | 594 | M: Joerg Roedel <[email protected]> |
919ee7dd | 595 | L: [email protected] |
525b233c | 596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 597 | S: Maintained |
b2c16391 JP |
598 | F: drivers/iommu/amd_iommu*.[ch] |
599 | F: include/linux/amd-iommu.h | |
919ee7dd | 600 | |
e7f5b309 | 601 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 602 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 603 | L: [email protected] |
943482d0 | 604 | S: Maintained |
679655da | 605 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 606 | |
45198c7b LT |
607 | AMD XGBE DRIVER |
608 | M: Tom Lendacky <[email protected]> | |
609 | L: [email protected] | |
610 | S: Supported | |
611 | F: drivers/net/ethernet/amd/xgbe/ | |
612 | F: drivers/net/phy/amd-xgbe-phy.c | |
613 | ||
284f42b6 | 614 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 615 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 616 | S: Supported |
bd5f47ec | 617 | F: drivers/macintosh/ams/ |
284f42b6 | 618 | |
f94b533d | 619 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
620 | M: Tom Tucker <[email protected]> |
621 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 622 | L: [email protected] |
f94b533d | 623 | S: Maintained |
679655da | 624 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 625 | |
531fca16 HV |
626 | ANALOG DEVICES INC AD9389B DRIVER |
627 | M: Hans Verkuil <[email protected]> | |
628 | L: [email protected] | |
629 | S: Maintained | |
630 | F: drivers/media/i2c/ad9389b* | |
631 | ||
c40ddfa3 HV |
632 | ANALOG DEVICES INC ADV7511 DRIVER |
633 | M: Hans Verkuil <[email protected]> | |
634 | L: [email protected] | |
635 | S: Maintained | |
636 | F: drivers/media/i2c/adv7511* | |
637 | ||
531fca16 HV |
638 | ANALOG DEVICES INC ADV7604 DRIVER |
639 | M: Hans Verkuil <[email protected]> | |
640 | L: [email protected] | |
641 | S: Maintained | |
642 | F: drivers/media/i2c/adv7604* | |
643 | ||
c40ddfa3 HV |
644 | ANALOG DEVICES INC ADV7842 DRIVER |
645 | M: Hans Verkuil <[email protected]> | |
646 | L: [email protected] | |
647 | S: Maintained | |
648 | F: drivers/media/i2c/adv7842* | |
649 | ||
527a1a83 | 650 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 651 | M: Lars-Peter Clausen <[email protected]> |
4bdef3bd | 652 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 653 | W: http://wiki.analog.com/ |
a4edbc10 | 654 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 655 | S: Supported |
39c9d199 | 656 | F: sound/soc/codecs/adau* |
cc52688a | 657 | F: sound/soc/codecs/adav* |
4bdef3bd | 658 | F: sound/soc/codecs/ad1* |
ae48f5ef | 659 | F: sound/soc/codecs/ad7* |
4bdef3bd | 660 | F: sound/soc/codecs/ssm* |
40216ce7 | 661 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 662 | |
527a1a83 | 663 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 664 | L: [email protected] (moderated for non-subscribers) |
527a1a83 MH |
665 | L: [email protected] (moderated for non-subscribers) |
666 | W: http://blackfin.uclinux.org/ | |
667 | S: Supported | |
668 | F: sound/soc/blackfin/* | |
669 | ||
42269063 | 670 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 671 | M: Johannes Berg <[email protected]> |
a4724ed6 | 672 | L: [email protected] |
93711660 | 673 | L: [email protected] (moderated for non-subscribers) |
42269063 | 674 | S: Maintained |
679655da | 675 | F: sound/aoa/ |
42269063 | 676 | |
1da177e4 | 677 | APM DRIVER |
81024fc4 JK |
678 | M: Jiri Kosina <[email protected]> |
679 | S: Odd fixes | |
679655da JP |
680 | F: arch/x86/kernel/apm_32.c |
681 | F: include/linux/apm_bios.h | |
c117ab84 | 682 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 683 | F: drivers/char/apm-emulation.c |
1da177e4 | 684 | |
bd7aa4b2 | 685 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 686 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
687 | L: [email protected] |
688 | S: Maintained | |
679655da | 689 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 690 | |
6f2fad74 | 691 | APPLE SMC DRIVER |
d618540f HR |
692 | M: Henrik Rydberg <[email protected]> |
693 | L: [email protected] | |
6f2fad74 | 694 | S: Maintained |
679655da | 695 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 696 | |
1da177e4 | 697 | APPLETALK NETWORK LAYER |
8b58be88 | 698 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 699 | S: Maintained |
679655da JP |
700 | F: drivers/net/appletalk/ |
701 | F: net/appletalk/ | |
1da177e4 | 702 | |
62a37dc7 LP |
703 | APTINA CAMERA SENSOR PLL |
704 | M: Laurent Pinchart <[email protected]> | |
705 | L: [email protected] | |
706 | S: Maintained | |
707 | F: drivers/media/i2c/aptina-pll.* | |
708 | ||
a480167b | 709 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 710 | M: Viresh Kumar <[email protected]> |
a480167b VK |
711 | L: [email protected] |
712 | S: Maintained | |
713 | F: include/linux/pata_arasan_cf_data.h | |
714 | F: drivers/ata/pata_arasan_cf.c | |
715 | ||
1154ea7d | 716 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 717 | M: Jaya Kumar <[email protected]> |
1154ea7d | 718 | S: Maintained |
679655da JP |
719 | F: drivers/video/arcfb.c |
720 | F: drivers/video/fb_defio.c | |
1154ea7d | 721 | |
1da177e4 | 722 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 723 | M: Ian Molton <[email protected]> |
1da177e4 | 724 | S: Maintained |
679655da JP |
725 | F: arch/arm/lib/floppydma.S |
726 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 727 | |
6f96521f WD |
728 | ARM PMU PROFILING AND DEBUGGING |
729 | M: Will Deacon <[email protected]> | |
730 | S: Maintained | |
731 | F: arch/arm/kernel/perf_event* | |
732 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
733 | F: arch/arm/include/asm/pmu.h |
734 | F: arch/arm/kernel/hw_breakpoint.c | |
735 | F: arch/arm/include/asm/hw_breakpoint.h | |
736 | ||
d4275354 | 737 | ARM PORT |
8b58be88 | 738 | M: Russell King <[email protected]> |
efc03ecb | 739 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
740 | W: http://www.arm.linux.org.uk/ |
741 | S: Maintained | |
742 | F: arch/arm/ | |
743 | ||
d323c243 SB |
744 | ARM SUB-ARCHITECTURES |
745 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 746 | S: Maintained |
d323c243 SB |
747 | F: arch/arm/mach-*/ |
748 | F: arch/arm/plat-*/ | |
749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
750 | ||
cefbf4ea RK |
751 | ARM PRIMECELL AACI PL041 DRIVER |
752 | M: Russell King <[email protected]> | |
753 | S: Maintained | |
754 | F: sound/arm/aaci.* | |
755 | ||
756 | ARM PRIMECELL CLCD PL110 DRIVER | |
757 | M: Russell King <[email protected]> | |
758 | S: Maintained | |
759 | F: drivers/video/amba-clcd.* | |
760 | ||
761 | ARM PRIMECELL KMI PL050 DRIVER | |
762 | M: Russell King <[email protected]> | |
763 | S: Maintained | |
764 | F: drivers/input/serio/ambakmi.* | |
765 | F: include/linux/amba/kmi.h | |
766 | ||
2761f5c2 | 767 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
768 | M: Russell King <[email protected]> |
769 | S: Maintained | |
679655da | 770 | F: drivers/mmc/host/mmci.* |
2f748aaa | 771 | F: include/linux/amba/mmci.h |
2761f5c2 | 772 | |
1b4304e5 RK |
773 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
774 | M: Russell King <[email protected]> | |
775 | S: Maintained | |
776 | F: drivers/tty/serial/amba-pl01*.c | |
777 | F: include/linux/amba/serial.h | |
2761f5c2 | 778 | |
cefbf4ea RK |
779 | ARM PRIMECELL BUS SUPPORT |
780 | M: Russell King <[email protected]> | |
781 | S: Maintained | |
782 | F: drivers/amba/ | |
783 | F: include/linux/amba/bus.h | |
784 | ||
2b7a52a4 | 785 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 786 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 787 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
788 | S: Maintained |
789 | ||
9c784f95 | 790 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 791 | M: Sergey Lapin <[email protected]> |
efc03ecb | 792 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
793 | S: Maintained |
794 | ||
2b7a52a4 | 795 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 796 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 797 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
798 | S: Maintained |
799 | ||
1b106699 MR |
800 | ARM/Allwinner A1X SoC support |
801 | M: Maxime Ripard <[email protected]> | |
802 | L: [email protected] (moderated for non-subscribers) | |
803 | S: Maintained | |
60b0f380 MR |
804 | N: sun[x4567]i |
805 | ||
806 | ARM/Allwinner SoC Clock Support | |
807 | M: Emilio López <[email protected]> | |
808 | S: Maintained | |
809 | F: drivers/clk/sunxi/ | |
1b106699 | 810 | |
c1fc8675 | 811 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 812 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
813 | M: Nicolas Ferre <[email protected]> |
814 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 815 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 816 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
817 | W: http://www.linux4sam.org |
818 | S: Supported | |
819 | F: arch/arm/mach-at91/ | |
70e389cc MB |
820 | F: arch/arm/boot/dts/at91*.dts |
821 | F: arch/arm/boot/dts/at91*.dtsi | |
822 | F: arch/arm/boot/dts/sama*.dts | |
823 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 824 | |
6e05dd4e BB |
825 | ARM/ATMEL AT91 Clock Support |
826 | M: Boris Brezillon <[email protected]> | |
827 | S: Maintained | |
828 | F: drivers/clk/at91 | |
829 | ||
986cf2e9 | 830 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 831 | M: Rob Herring <[email protected]> |
986cf2e9 RH |
832 | L: [email protected] (moderated for non-subscribers) |
833 | S: Maintained | |
834 | F: arch/arm/mach-highbank/ | |
835 | ||
d94f944e | 836 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 837 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
838 | S: Maintained |
839 | F: arch/arm/mach-cns3xxx/ | |
840 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
841 | ||
386ab516 AS |
842 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
843 | M: Alexander Shiyan <[email protected]> | |
844 | L: [email protected] (moderated for non-subscribers) | |
845 | S: Odd Fixes | |
b8ba3874 | 846 | N: clps711x |
386ab516 | 847 | |
2b7a52a4 | 848 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 849 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 850 | M: Ryan Mallon <[email protected]> |
efc03ecb | 851 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 852 | S: Maintained |
d19d3667 HS |
853 | F: arch/arm/mach-ep93xx/ |
854 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
855 | |
856 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 857 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 858 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
859 | S: Maintained |
860 | ||
d4275354 | 861 | ARM/CLKDEV SUPPORT |
8b58be88 | 862 | M: Russell King <[email protected]> |
efc03ecb | 863 | L: [email protected] (moderated for non-subscribers) |
37417046 | 864 | S: Maintained |
d4275354 | 865 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 866 | F: drivers/clk/clkdev.c |
d4275354 | 867 | |
d48134e7 | 868 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 869 | M: Mike Rapoport <[email protected]> |
efc03ecb | 870 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
871 | S: Maintained |
872 | ||
94150095 HF |
873 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
874 | M: Hubert Feurstein <[email protected]> | |
875 | S: Maintained | |
876 | F: arch/arm/mach-ep93xx/micro9.c | |
877 | ||
1da177e4 | 878 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 879 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
880 | S: Maintained |
881 | ||
881a95f9 | 882 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 883 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 884 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
885 | T: git git://git.berlios.de/gemini-board |
886 | S: Maintained | |
f49afbb5 | 887 | F: arch/arm/mach-gemini/ |
881a95f9 | 888 | |
a990cbd8 | 889 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 890 | M: Barry Song <[email protected]> |
a990cbd8 | 891 | L: [email protected] (moderated for non-subscribers) |
85529d14 | 892 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
893 | S: Maintained |
894 | F: arch/arm/mach-prima2/ | |
05f30e8d BS |
895 | F: drivers/clk/clk-prima2.c |
896 | F: drivers/clocksource/timer-prima2.c | |
897 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 898 | N: [^a-z]sirf |
a990cbd8 | 899 | |
d4275354 | 900 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 901 | M: Russell King <[email protected]> |
efc03ecb | 902 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
903 | W: http://www.arm.linux.org.uk/ |
904 | S: Maintained | |
905 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 906 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 907 | |
4721f3ce UKK |
908 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
909 | M: Uwe Kleine-König <[email protected]> | |
910 | L: [email protected] (moderated for non-subscribers) | |
911 | S: Maintained | |
912 | N: efm32 | |
913 | ||
a9da4f7e | 914 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
915 | M: Daniel Ribeiro <[email protected]> |
916 | M: Stefan Schmidt <[email protected]> | |
917 | M: Harald Welte <[email protected]> | |
d66f1886 | 918 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
919 | W: http://www.openezx.org/ |
920 | S: Maintained | |
cafc2265 SS |
921 | T: topgit git://git.openezx.org/openezx.git |
922 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 923 | |
6a915af9 | 924 | ARM/FARADAY FA526 PORT |
162500b3 | 925 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 926 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 927 | S: Maintained |
1fa7e547 | 928 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 929 | F: arch/arm/mm/*-fa* |
6a915af9 | 930 | |
d4275354 | 931 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 932 | M: Russell King <[email protected]> |
efc03ecb | 933 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
934 | W: http://www.arm.linux.org.uk/ |
935 | S: Maintained | |
936 | F: arch/arm/include/asm/hardware/dec21285.h | |
937 | F: arch/arm/mach-footbridge/ | |
938 | ||
86183a5f | 939 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
f1c12837 | 940 | M: Shawn Guo <[email protected]> |
8b58be88 | 941 | M: Sascha Hauer <[email protected]> |
efc03ecb | 942 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 943 | S: Maintained |
f1c12837 | 944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 945 | F: arch/arm/mach-imx/ |
ce515a6b | 946 | F: arch/arm/mach-mxs/ |
2a82f95c | 947 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 948 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 949 | |
2b7a52a4 | 950 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 951 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 952 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
953 | S: Maintained |
954 | ||
90b8fc34 | 955 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 956 | M: Steve Sakoman <[email protected]> |
efc03ecb | 957 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
958 | S: Maintained |
959 | ||
ef47d5f0 | 960 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 961 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
962 | M: Paul Parsons <[email protected]> |
963 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
964 | S: Maintained |
965 | F: arch/arm/mach-pxa/hx4700.c | |
966 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 967 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 968 | |
21f37bc3 | 969 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 970 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
971 | W: www.jlime.com |
972 | S: Maintained | |
084bad91 KE |
973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
974 | F: arch/arm/mach-sa1100/jornada720.c | |
975 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 976 | |
5e767ab9 JMC |
977 | ARM/IGEP MACHINE SUPPORT |
978 | M: Enric Balletbo i Serra <[email protected]> | |
979 | M: Javier Martinez Canillas <[email protected]> | |
980 | L: [email protected] | |
981 | L: [email protected] (moderated for non-subscribers) | |
982 | S: Maintained | |
06ff74fd | 983 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 984 | |
403d2971 MV |
985 | ARM/INCOME PXA270 SUPPORT |
986 | M: Marek Vasut <[email protected]> | |
987 | L: [email protected] (moderated for non-subscribers) | |
988 | S: Maintained | |
ec154082 | 989 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 990 | |
2b7a52a4 | 991 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 992 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 993 | M: Dan Williams <[email protected]> |
efc03ecb | 994 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 995 | S: Maintained |
e2bdb176 DW |
996 | |
997 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 998 | M: Dan Williams <[email protected]> |
efc03ecb | 999 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1000 | S: Maintained |
2b7a52a4 LB |
1001 | |
1002 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1003 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1004 | M: Dan Williams <[email protected]> |
efc03ecb | 1005 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1006 | S: Maintained |
2b7a52a4 LB |
1007 | |
1008 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1009 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1010 | M: Dan Williams <[email protected]> |
efc03ecb | 1011 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1012 | S: Maintained |
2b7a52a4 | 1013 | |
2b7a52a4 | 1014 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1015 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1016 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1017 | S: Maintained |
1018 | ||
dfdd8cc9 KH |
1019 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1020 | M: Imre Kaloz <[email protected]> | |
1021 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 1022 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
1023 | S: Maintained |
1024 | F: arch/arm/mach-ixp4xx/ | |
1025 | ||
838553c5 | 1026 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1027 | M: Jonathan Cameron <[email protected]> |
1028 | L: [email protected] (moderated for non-subscribers) | |
1029 | S: Maintained | |
1030 | F: arch/arm/mach-pxa/stargate2.c | |
1031 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1032 | ||
2b7a52a4 | 1033 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1034 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1035 | M: Dan Williams <[email protected]> |
efc03ecb | 1036 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1037 | S: Maintained |
2b7a52a4 LB |
1038 | |
1039 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1040 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1041 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1042 | S: Maintained |
1043 | ||
1154f858 SS |
1044 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1045 | M: Santosh Shilimkar <[email protected]> | |
1046 | L: [email protected] (moderated for non-subscribers) | |
1047 | S: Maintained | |
1048 | F: arch/arm/mach-keystone/ | |
317929cd | 1049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1050 | |
bc6aa566 SS |
1051 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
1052 | M: Santosh Shilimkar <[email protected]> | |
1053 | L: [email protected] | |
1054 | S: Maintained | |
1055 | F: drivers/clk/keystone/ | |
1056 | ||
1057 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
1058 | M: Santosh Shilimkar <[email protected]> | |
1059 | L: [email protected] (moderated for non-subscribers) | |
1060 | L: [email protected] | |
1061 | S: Maintained | |
1062 | F: drivers/clocksource/timer-keystone.c | |
1063 | ||
1064 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
1065 | M: Santosh Shilimkar <[email protected]> | |
1066 | L: [email protected] | |
1067 | S: Maintained | |
1068 | F: drivers/power/reset/keystone-reset.c | |
1069 | ||
1070 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
1071 | M: Santosh Shilimkar <[email protected]> | |
1072 | L: [email protected] | |
1073 | S: Maintained | |
1074 | F: drivers/memory/*emif* | |
1075 | ||
2b7a52a4 | 1076 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1077 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1078 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1079 | S: Maintained |
1080 | ||
3b886171 | 1081 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1082 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1083 | S: Maintained |
1084 | ||
75f41273 TP |
1085 | ARM/Marvell Armada 370 and Armada XP SOC support |
1086 | M: Jason Cooper <[email protected]> | |
1087 | M: Andrew Lunn <[email protected]> | |
1088 | M: Gregory Clement <[email protected]> | |
dcb71503 | 1089 | M: Sebastian Hesselbarth <[email protected]> |
75f41273 TP |
1090 | L: [email protected] (moderated for non-subscribers) |
1091 | S: Maintained | |
1092 | F: arch/arm/mach-mvebu/ | |
1093 | ||
40f4978b SH |
1094 | ARM/Marvell Berlin SoC support |
1095 | M: Sebastian Hesselbarth <[email protected]> | |
1096 | L: [email protected] (moderated for non-subscribers) | |
1097 | S: Maintained | |
1098 | F: arch/arm/mach-berlin/ | |
1099 | ||
4f1312b0 NP |
1100 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1101 | M: Jason Cooper <[email protected]> | |
1102 | M: Andrew Lunn <[email protected]> | |
dcb71503 | 1103 | M: Sebastian Hesselbarth <[email protected]> |
efc03ecb | 1104 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1105 | S: Maintained |
1106 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1107 | F: arch/arm/mach-kirkwood/ |
1108 | F: arch/arm/mach-mv78xx0/ | |
1109 | F: arch/arm/mach-orion5x/ | |
1110 | F: arch/arm/plat-orion/ | |
3b886171 | 1111 | |
d69ac131 AC |
1112 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1113 | M: Alexander Clouter <[email protected]> | |
1114 | L: [email protected] (moderated for non-subscribers) | |
1115 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1116 | S: Maintained | |
1117 | F: arch/arm/mach-orion5x/ts78xx-* | |
1118 | ||
adcb079f AB |
1119 | ARM/MICREL KS8695 ARCHITECTURE |
1120 | M: Greg Ungerer <[email protected]> | |
1121 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1122 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1123 | S: Odd Fixes |
1124 | ||
d78ff0a5 | 1125 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1126 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1127 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1128 | F: arch/arm/mach-pxa/mioa701.c |
1129 | S: Maintained | |
1130 | ||
9624dfe6 | 1131 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1132 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1133 | S: Maintained |
1134 | ||
e0ee9851 | 1135 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1136 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1137 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1138 | L: [email protected] (moderated for non-subscribers) |
1139 | S: Maintained | |
1140 | F: arch/arm/mach-nomadik/ | |
87572880 | 1141 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1142 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1143 | |
9d76295a | 1144 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1145 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1146 | L: [email protected] (subscribers-only) |
1147 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1148 | S: Supported | |
1149 | ||
0c19d21e DW |
1150 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1151 | M: David Brown <[email protected]> | |
b4c9bfab | 1152 | M: Daniel Walker <[email protected]> |
0c19d21e | 1153 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1154 | L: [email protected] |
0c19d21e DW |
1155 | F: arch/arm/mach-msm/ |
1156 | F: drivers/video/msm/ | |
1157 | F: drivers/mmc/host/msm_sdcc.c | |
1158 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1159 | F: drivers/tty/serial/msm_serial.h |
1160 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1161 | F: drivers/*/pm8???-* |
31a12b31 | 1162 | F: drivers/mfd/ssbi/ |
ea91db52 | 1163 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1164 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1165 | S: Maintained |
1166 | ||
8459c159 | 1167 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1168 | M: Dmitry Eremin-Solenikov <[email protected]> |
1169 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1170 | S: Maintained |
1171 | ||
5d783a2d | 1172 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1173 | M: Marek Vasut <[email protected]> |
75280787 | 1174 | L: [email protected] |
b5e4ad57 MV |
1175 | W: http://hackndev.com |
1176 | S: Maintained | |
933d35f0 JP |
1177 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1178 | F: arch/arm/mach-pxa/palmtx.c | |
1179 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1180 | F: arch/arm/mach-pxa/palmt5.c | |
1181 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1182 | F: arch/arm/mach-pxa/palmld.c | |
1183 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1184 | F: arch/arm/mach-pxa/palmte2.c | |
1185 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1186 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1187 | |
b57fe924 | 1188 | ARM/PALM TREO SUPPORT |
8b58be88 | 1189 | M: Tomas Cech <[email protected]> |
75280787 | 1190 | L: [email protected] |
90af5811 TSC |
1191 | W: http://hackndev.com |
1192 | S: Maintained | |
b57fe924 JP |
1193 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1194 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1195 | |
c49e1e63 | 1196 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1197 | M: Sergey Lapin <[email protected]> |
75280787 | 1198 | L: [email protected] |
7d2c86b5 JP |
1199 | W: http://hackndev.com |
1200 | S: Maintained | |
933d35f0 JP |
1201 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1202 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1203 | |
1da177e4 | 1204 | ARM/PLEB SUPPORT |
8b58be88 | 1205 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1206 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1207 | S: Maintained | |
1208 | ||
1209 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1210 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1211 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1212 | W: http://www.arm.linux.org.uk/ |
1213 | S: Maintained | |
1214 | ||
8fc1b0f8 KG |
1215 | ARM/QUALCOMM SUPPORT |
1216 | M: Kumar Gala <[email protected]> | |
1217 | M: David Brown <[email protected]> | |
1218 | L: [email protected] | |
1219 | S: Maintained | |
1220 | F: arch/arm/mach-qcom/ | |
1221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | |
1222 | ||
2b7a52a4 | 1223 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1224 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1225 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1226 | S: Maintained |
1227 | ||
d4275354 | 1228 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1229 | M: Russell King <[email protected]> |
efc03ecb | 1230 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1231 | W: http://www.arm.linux.org.uk/ |
1232 | S: Maintained | |
d4275354 RK |
1233 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1234 | F: arch/arm/include/asm/hardware/ioc.h | |
1235 | F: arch/arm/include/asm/hardware/iomd.h | |
1236 | F: arch/arm/include/asm/hardware/memc.h | |
1237 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1238 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1239 | F: drivers/net/ethernet/i825xx/ether1* |
1240 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1241 | F: drivers/scsi/arm/ |
1242 | ||
08ddbb0a HS |
1243 | ARM/Rockchip SoC support |
1244 | M: Heiko Stuebner <[email protected]> | |
1245 | L: [email protected] (moderated for non-subscribers) | |
1246 | S: Maintained | |
1247 | F: arch/arm/mach-rockchip/ | |
1248 | F: drivers/*/*rockchip* | |
1249 | ||
b21477f9 | 1250 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1251 | M: Ben Dooks <[email protected]> |
482ce512 | 1252 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1253 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1254 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1255 | W: http://www.fluff.org/ben/linux/ |
1256 | S: Maintained | |
6f0589c8 MB |
1257 | F: arch/arm/boot/dts/s3c* |
1258 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1259 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1260 | F: arch/arm/mach-s3c24*/ |
1261 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1262 | F: drivers/*/*s3c2410* |
1263 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1264 | F: drivers/spi/spi-s3c* |
1265 | F: sound/soc/samsung/* | |
1da177e4 | 1266 | |
0dcecae2 | 1267 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1268 | M: Kukjin Kim <[email protected]> |
1269 | L: [email protected] (moderated for non-subscribers) | |
1270 | L: [email protected] (moderated for non-subscribers) | |
1271 | S: Maintained | |
1272 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1273 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1274 | N: exynos |
f556cb07 | 1275 | |
10ffa964 KP |
1276 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1277 | M: Kyungmin Park <[email protected]> | |
1278 | L: [email protected] (moderated for non-subscribers) | |
1279 | S: Maintained | |
1280 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1281 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1282 | |
3ce4ccb6 KD |
1283 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1284 | M: Kyungmin Park <[email protected]> | |
1285 | M: Kamil Debski <[email protected]> | |
1286 | L: [email protected] | |
1287 | L: [email protected] | |
1288 | S: Maintained | |
1289 | F: drivers/media/platform/s5p-g2d/ | |
1290 | ||
e6a476fd MS |
1291 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1292 | M: Kyungmin Park <[email protected]> | |
1293 | M: Kamil Debski <[email protected]> | |
6305902c | 1294 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1295 | L: [email protected] |
1296 | L: [email protected] | |
1297 | S: Maintained | |
934455d7 | 1298 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1299 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1300 | |
1301 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1302 | M: Kyungmin Park <[email protected]> | |
1303 | M: Tomasz Stanislawski <[email protected]> | |
1304 | L: [email protected] | |
1305 | L: [email protected] | |
1306 | S: Maintained | |
90d72ac6 | 1307 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1308 | |
d48d38e8 | 1309 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1310 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1311 | M: Magnus Damm <[email protected]> |
1312 | L: [email protected] | |
d48d38e8 | 1313 | W: http://oss.renesas.com |
bbff48f5 | 1314 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1316 | S: Supported |
0b514fdb SH |
1317 | F: arch/arm/boot/dts/emev2* |
1318 | F: arch/arm/boot/dts/r7s* | |
1319 | F: arch/arm/boot/dts/r8a* | |
1320 | F: arch/arm/boot/dts/sh* | |
1321 | F: arch/arm/configs/ape6evm_defconfig | |
1322 | F: arch/arm/configs/armadillo800eva_defconfig | |
1323 | F: arch/arm/configs/bockw_defconfig | |
1324 | F: arch/arm/configs/genmai_defconfig | |
1325 | F: arch/arm/configs/koelsch_defconfig | |
1326 | F: arch/arm/configs/kzm9g_defconfig | |
1327 | F: arch/arm/configs/lager_defconfig | |
1328 | F: arch/arm/configs/mackerel_defconfig | |
1329 | F: arch/arm/configs/marzen_defconfig | |
1330 | F: arch/arm/configs/shmobile_defconfig | |
d48d38e8 PM |
1331 | F: arch/arm/mach-shmobile/ |
1332 | F: drivers/sh/ | |
1333 | ||
66314223 DN |
1334 | ARM/SOCFPGA ARCHITECTURE |
1335 | M: Dinh Nguyen <[email protected]> | |
1336 | S: Maintained | |
1337 | F: arch/arm/mach-socfpga/ | |
1338 | ||
1339 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1340 | M: Dinh Nguyen <[email protected]> | |
1341 | S: Maintained | |
1342 | F: drivers/clk/socfpga/ | |
1343 | ||
65ebcc11 | 1344 | ARM/STI ARCHITECTURE |
a92177ea SK |
1345 | M: Srinivas Kandagatla <[email protected]> |
1346 | M: Maxime Coquelin <[email protected]> | |
1347 | M: Patrice Chotard <[email protected]> | |
65ebcc11 SK |
1348 | L: [email protected] (moderated for non-subscribers) |
1349 | L: [email protected] | |
1350 | W: http://www.stlinux.com | |
1351 | S: Maintained | |
1352 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1353 | F: arch/arm/boot/dts/sti* |
1354 | F: drivers/clocksource/arm_global_timer.c | |
1355 | F: drivers/reset/sti/ | |
1356 | F: drivers/pinctrl/pinctrl-st.c | |
1357 | F: drivers/media/rc/st_rc.c | |
1358 | F: drivers/i2c/busses/i2c-st.c | |
1359 | F: drivers/tty/serial/st-asc.c | |
65ebcc11 | 1360 | |
2b7a52a4 | 1361 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1362 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1363 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1364 | S: Maintained |
1365 | ||
1bbd7089 | 1366 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1367 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1368 | L: [email protected] (moderated for non-subscribers) |
1369 | S: Maintained | |
1370 | ||
2b7a52a4 | 1371 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1372 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1373 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1374 | S: Maintained |
1375 | ||
98ad6e3b | 1376 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1377 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1378 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1379 | W: http://www.mcuos.com |
1380 | S: Maintained | |
4e89e8f6 | 1381 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1382 | F: drivers/input/keyboard/w90p910_keypad.c |
1383 | F: drivers/input/touchscreen/w90p910_ts.c | |
1384 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1385 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1386 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1387 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1388 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1389 | F: drivers/usb/host/ehci-w90x900.c |
1390 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1391 | |
54274d71 | 1392 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1393 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1394 | L: [email protected] (moderated for non-subscribers) |
1395 | S: Supported | |
1396 | F: arch/arm/mach-u300/ | |
9affbd24 | 1397 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1398 | F: drivers/i2c/busses/i2c-stu300.c |
1399 | F: drivers/rtc/rtc-coh901331.c | |
1400 | F: drivers/watchdog/coh901327_wdt.c | |
1401 | F: drivers/dma/coh901318* | |
87572880 LW |
1402 | F: drivers/mfd/ab3100* |
1403 | F: drivers/rtc/rtc-ab3100.c | |
1404 | F: drivers/rtc/rtc-coh901331.c | |
1405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1406 | |
87572880 | 1407 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1408 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1409 | L: [email protected] (moderated for non-subscribers) |
1410 | S: Maintained | |
1411 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1412 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1413 | F: drivers/dma/ste_dma40* |
e4651a9f | 1414 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1415 | F: drivers/mfd/abx500* |
1416 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1417 | F: drivers/mfd/dbx500* |
1418 | F: drivers/mfd/db8500* | |
1419 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1420 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1421 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1422 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1423 | |
e93fde28 UH |
1424 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1425 | M: Ulf Hansson <[email protected]> | |
1426 | L: [email protected] (moderated for non-subscribers) | |
1427 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1428 | S: Maintained | |
1429 | F: drivers/clk/ux500/ | |
1430 | F: include/linux/platform_data/clk-ux500.h | |
1431 | ||
d4275354 | 1432 | ARM/VFP SUPPORT |
8b58be88 | 1433 | M: Russell King <[email protected]> |
efc03ecb | 1434 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1435 | W: http://www.arm.linux.org.uk/ |
1436 | S: Maintained | |
1437 | F: arch/arm/vfp/ | |
1438 | ||
e66b6d8e MV |
1439 | ARM/VOIPAC PXA270 SUPPORT |
1440 | M: Marek Vasut <[email protected]> | |
1441 | L: [email protected] (moderated for non-subscribers) | |
1442 | S: Maintained | |
1443 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1444 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1445 | |
04529fe2 TP |
1446 | ARM/VT8500 ARM ARCHITECTURE |
1447 | M: Tony Prisk <[email protected]> | |
1448 | L: [email protected] (moderated for non-subscribers) | |
1449 | S: Maintained | |
1450 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1451 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1452 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1453 | F: drivers/mmc/host/wmt-sdmmc.c |
1454 | F: drivers/pwm/pwm-vt8500.c | |
1455 | F: drivers/rtc/rtc-vt8500.c | |
1456 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1457 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1458 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1459 | F: drivers/video/vt8500lcdfb.* |
1460 | F: drivers/video/wm8505fb* | |
1461 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1462 | |
e66b6d8e MV |
1463 | ARM/ZIPIT Z2 SUPPORT |
1464 | M: Marek Vasut <[email protected]> | |
1465 | L: [email protected] (moderated for non-subscribers) | |
1466 | S: Maintained | |
1467 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1468 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1469 | |
51f29d44 MS |
1470 | ARM/ZYNQ ARCHITECTURE |
1471 | M: Michal Simek <[email protected]> | |
1472 | L: [email protected] (moderated for non-subscribers) | |
1473 | W: http://wiki.xilinx.com | |
1474 | T: git git://git.xilinx.com/linux-xlnx.git | |
1475 | S: Supported | |
1476 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1477 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1478 | N: zynq |
1479 | N: xilinx | |
1480 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1481 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1482 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1483 | |
b8f9879e WD |
1484 | ARM SMMU DRIVER |
1485 | M: Will Deacon <[email protected]> | |
1486 | L: [email protected] (moderated for non-subscribers) | |
1487 | S: Maintained | |
1488 | F: drivers/iommu/arm-smmu.c | |
1489 | ||
38074229 CM |
1490 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1491 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1492 | M: Will Deacon <[email protected]> |
38074229 CM |
1493 | L: [email protected] (moderated for non-subscribers) |
1494 | S: Maintained | |
1495 | F: arch/arm64/ | |
d19766ec | 1496 | F: Documentation/arm64/ |
38074229 | 1497 | |
9d7005f9 LP |
1498 | AS3645A LED FLASH CONTROLLER DRIVER |
1499 | M: Laurent Pinchart <[email protected]> | |
1500 | L: [email protected] | |
1501 | T: git git://linuxtv.org/media_tree.git | |
1502 | S: Maintained | |
1503 | F: drivers/media/i2c/as3645a.c | |
1504 | F: include/media/as3645a.h | |
1505 | ||
d58de038 GJ |
1506 | ASC7621 HARDWARE MONITOR DRIVER |
1507 | M: George Joseph <[email protected]> | |
1508 | L: [email protected] | |
1509 | S: Maintained | |
1510 | F: Documentation/hwmon/asc7621 | |
1511 | F: drivers/hwmon/asc7621.c | |
1512 | ||
b229ece9 | 1513 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1514 | M: Corentin Chary <[email protected]> |
1da177e4 | 1515 | L: [email protected] |
d0944853 | 1516 | L: [email protected] |
76593d6f | 1517 | W: http://acpi4asus.sf.net |
85091b71 | 1518 | S: Maintained |
b229ece9 CC |
1519 | F: drivers/platform/x86/asus*.c |
1520 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1521 | |
953a6479 | 1522 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1523 | M: Dan Williams <[email protected]> |
b3e5f263 | 1524 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1525 | S: Maintained |
679655da JP |
1526 | F: Documentation/crypto/async-tx-api.txt |
1527 | F: crypto/async_tx/ | |
1528 | F: drivers/dma/ | |
1529 | F: include/linux/dmaengine.h | |
1530 | F: include/linux/async_tx.h | |
b3e5f263 | 1531 | |
a1867d36 | 1532 | AT24 EEPROM DRIVER |
14d77c4d | 1533 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1534 | L: [email protected] |
1535 | S: Maintained | |
1536 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1537 | F: include/linux/platform_data/at24.h |
a1867d36 | 1538 | |
e7839f25 | 1539 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1540 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1541 | W: http://support.coraid.com/support/linux |
1da177e4 | 1542 | S: Supported |
679655da JP |
1543 | F: Documentation/aoe/ |
1544 | F: drivers/block/aoe/ | |
1da177e4 | 1545 | |
9a10a870 | 1546 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1547 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1548 | L: [email protected] |
1549 | S: Supported | |
1550 | F: drivers/net/wireless/ath/* | |
1551 | ||
fa1c114f | 1552 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1553 | M: Jiri Slaby <[email protected]> |
1554 | M: Nick Kossifidis <[email protected]> | |
f726ee65 | 1555 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1556 | L: [email protected] |
1557 | L: [email protected] | |
72c706b7 | 1558 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1559 | S: Maintained |
fa451753 | 1560 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1561 | |
12e62d6f KV |
1562 | ATHEROS ATH6KL WIRELESS DRIVER |
1563 | M: Kalle Valo <[email protected]> | |
1564 | L: [email protected] | |
1565 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1566 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1567 | S: Supported |
1568 | F: drivers/net/wireless/ath/ath6kl/ | |
1569 | ||
2be7d22f VK |
1570 | WILOCITY WIL6210 WIRELESS DRIVER |
1571 | M: Vladimir Kondratiev <[email protected]> | |
1572 | L: [email protected] | |
1573 | L: [email protected] | |
1574 | S: Supported | |
1575 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1576 | F: drivers/net/wireless/ath/wil6210/ | |
1577 | ||
1d7e1e6b CL |
1578 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1579 | M: Christian Lamparter <[email protected]> | |
1580 | L: [email protected] | |
1581 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1582 | S: Maintained | |
1583 | F: drivers/net/wireless/ath/carl9170/ | |
1584 | ||
2c2a6172 LT |
1585 | ATK0110 HWMON DRIVER |
1586 | M: Luca Tettamanti <[email protected]> | |
1587 | L: [email protected] | |
1588 | S: Maintained | |
1589 | F: drivers/hwmon/asus_atk0110.c | |
1590 | ||
6f69a6d7 | 1591 | ATI_REMOTE2 DRIVER |
8b58be88 | 1592 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1593 | S: Maintained |
679655da | 1594 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1595 | |
7ae115b4 | 1596 | ATLX ETHERNET DRIVERS |
8b58be88 | 1597 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1598 | M: Chris Snook <[email protected]> |
e443e383 | 1599 | L: [email protected] |
8d5ca6ec JC |
1600 | W: http://sourceforge.net/projects/atl1 |
1601 | W: http://atl1.sourceforge.net | |
1602 | S: Maintained | |
2b133ad6 | 1603 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1604 | |
1da177e4 | 1605 | ATM |
8b58be88 | 1606 | M: Chas Williams <[email protected]> |
476604de | 1607 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1608 | L: [email protected] |
1da177e4 LT |
1609 | W: http://linux-atm.sourceforge.net |
1610 | S: Maintained | |
679655da JP |
1611 | F: drivers/atm/ |
1612 | F: include/linux/atm* | |
c117ab84 | 1613 | F: include/uapi/linux/atm* |
1da177e4 | 1614 | |
04ac2f46 | 1615 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1616 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1617 | S: Maintained |
1618 | F: drivers/mmc/host/atmel-mci.c | |
1619 | F: drivers/mmc/host/atmel-mci-regs.h | |
1620 | ||
a1cfac48 | 1621 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1622 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1623 | S: Supported |
df621252 | 1624 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1625 | |
b414dc16 NF |
1626 | ATMEL DMA DRIVER |
1627 | M: Nicolas Ferre <[email protected]> | |
1628 | L: [email protected] (moderated for non-subscribers) | |
1629 | S: Supported | |
1630 | F: drivers/dma/at_hdmac.c | |
1631 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1632 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1633 | |
888f2804 LD |
1634 | ATMEL I2C DRIVER |
1635 | M: Ludovic Desroches <[email protected]> | |
1636 | L: [email protected] | |
1637 | S: Supported | |
1638 | F: drivers/i2c/busses/i2c-at91.c | |
1639 | ||
15515545 JW |
1640 | ATMEL ISI DRIVER |
1641 | M: Josh Wu <[email protected]> | |
1642 | L: [email protected] | |
1643 | S: Supported | |
f2294c2d | 1644 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1645 | F: include/media/atmel-isi.h |
1646 | ||
8f4c79ce | 1647 | ATMEL LCDFB DRIVER |
8b58be88 | 1648 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1649 | L: [email protected] |
8f4c79ce | 1650 | S: Maintained |
679655da JP |
1651 | F: drivers/video/atmel_lcdfb.c |
1652 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1653 | |
89e5785f | 1654 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1655 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1656 | S: Supported |
9f2f381f | 1657 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1658 | |
754ce4f2 | 1659 | ATMEL SPI DRIVER |
a02875a6 | 1660 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1661 | S: Supported |
9df92e6c | 1662 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1663 | |
e9cb1c5a NF |
1664 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1665 | M: Nicolas Ferre <[email protected]> | |
1666 | L: [email protected] (moderated for non-subscribers) | |
1667 | S: Supported | |
1668 | F: drivers/misc/atmel_tclib.c | |
1669 | F: drivers/clocksource/tcb_clksrc.c | |
1670 | ||
914a3f3b | 1671 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1672 | M: Nicolas Ferre <[email protected]> |
1673 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1674 | S: Supported |
679655da | 1675 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1676 | |
1da177e4 | 1677 | ATMEL WIRELESS DRIVER |
8b58be88 | 1678 | M: Simon Kelley <[email protected]> |
724c6b35 | 1679 | L: [email protected] |
1da177e4 LT |
1680 | W: http://www.thekelleys.org.uk/atmel |
1681 | W: http://atmelwlandriver.sourceforge.net/ | |
1682 | S: Maintained | |
679655da | 1683 | F: drivers/net/wireless/atmel* |
1da177e4 | 1684 | |
26780d9e | 1685 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1686 | M: Bradley Grove <[email protected]> |
1687 | L: [email protected] | |
1688 | W: http://www.attotech.com | |
1689 | S: Supported | |
1690 | F: drivers/scsi/esas2r | |
26780d9e | 1691 | |
a92b7b80 | 1692 | AUDIT SUBSYSTEM |
8b58be88 | 1693 | M: Eric Paris <[email protected]> |
b9a06207 | 1694 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1695 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1696 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1697 | S: Maintained |
679655da | 1698 | F: include/linux/audit.h |
c117ab84 | 1699 | F: include/uapi/linux/audit.h |
679655da | 1700 | F: kernel/audit* |
a92b7b80 | 1701 | |
70e84049 | 1702 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1703 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1704 | W: http://miguelojeda.es/auxdisplay.htm |
1705 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1706 | S: Maintained |
679655da JP |
1707 | F: drivers/auxdisplay/ |
1708 | F: include/linux/cfag12864b.h | |
70e84049 | 1709 | |
5f97f7f9 | 1710 | AVR32 ARCHITECTURE |
e336f61f HCE |
1711 | M: Haavard Skinnemoen <[email protected]> |
1712 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1713 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1714 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1715 | W: http://avrfreaks.net/ |
e336f61f | 1716 | S: Maintained |
679655da | 1717 | F: arch/avr32/ |
5f97f7f9 HS |
1718 | |
1719 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1720 | M: Haavard Skinnemoen <[email protected]> |
1721 | M: Hans-Christian Egtvedt <[email protected]> | |
1722 | S: Maintained | |
679655da | 1723 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1724 | |
1da177e4 | 1725 | AX.25 NETWORK LAYER |
8b58be88 | 1726 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1727 | L: [email protected] |
d34cb28a | 1728 | W: http://www.linux-ax25.org/ |
1da177e4 | 1729 | S: Maintained |
c117ab84 | 1730 | F: include/uapi/linux/ax25.h |
679655da JP |
1731 | F: include/net/ax25.h |
1732 | F: net/ax25/ | |
1da177e4 | 1733 | |
d5269395 | 1734 | AZ6007 DVB DRIVER |
1b2c14b4 | 1735 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1736 | L: [email protected] |
1737 | W: http://linuxtv.org | |
1738 | T: git git://linuxtv.org/media_tree.git | |
1739 | S: Maintained | |
1740 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1741 | ||
6777376e HV |
1742 | AZTECH FM RADIO RECEIVER DRIVER |
1743 | M: Hans Verkuil <[email protected]> | |
1744 | L: [email protected] | |
1745 | T: git git://linuxtv.org/media_tree.git | |
1746 | W: http://linuxtv.org | |
1747 | S: Maintained | |
1748 | F: drivers/media/radio/radio-aztech* | |
1749 | ||
e2d1d6c0 | 1750 | B43 WIRELESS DRIVER |
8b58be88 | 1751 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1752 | L: [email protected] |
ed072f9e | 1753 | L: [email protected] |
491b26b4 | 1754 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1755 | S: Maintained |
679655da | 1756 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1757 | |
1758 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1759 | M: Larry Finger <[email protected]> |
1760 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1761 | L: [email protected] |
ed072f9e | 1762 | L: [email protected] |
491b26b4 | 1763 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1764 | S: Maintained |
679655da | 1765 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1766 | |
300abeb5 | 1767 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1768 | M: Jingoo Han <[email protected]> |
70d14fcf JH |
1769 | M: Bryan Wu <[email protected]> |
1770 | M: Lee Jones <[email protected]> | |
300abeb5 | 1771 | S: Maintained |
679655da JP |
1772 | F: drivers/video/backlight/ |
1773 | F: include/linux/backlight.h | |
300abeb5 | 1774 | |
c6c8fea2 | 1775 | BATMAN ADVANCED |
207df49e | 1776 | M: Marek Lindner <[email protected]> |
c679ff8f | 1777 | M: Simon Wunderlich <[email protected]> |
207df49e | 1778 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1779 | L: [email protected] |
1780 | W: http://www.open-mesh.org/ | |
1781 | S: Maintained | |
1782 | F: net/batman-adv/ | |
1783 | ||
e2d1d6c0 | 1784 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1785 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1786 | L: [email protected] |
1787 | W: http://www.baycom.org/~tom/ham/ham.html | |
1788 | S: Maintained | |
679655da | 1789 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1790 | |
cafe5635 | 1791 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1792 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1793 | L: [email protected] |
1794 | W: http://bcache.evilpiepirate.org | |
1795 | S: Maintained: | |
1796 | F: drivers/md/bcache/ | |
1797 | ||
e2d1d6c0 | 1798 | BEFS FILE SYSTEM |
55817d3d | 1799 | S: Orphan |
679655da JP |
1800 | F: Documentation/filesystems/befs.txt |
1801 | F: fs/befs/ | |
e2d1d6c0 RD |
1802 | |
1803 | BFS FILE SYSTEM | |
8b58be88 | 1804 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1805 | S: Maintained |
679655da JP |
1806 | F: Documentation/filesystems/bfs.txt |
1807 | F: fs/bfs/ | |
c117ab84 | 1808 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1809 | |
1394f032 | 1810 | BLACKFIN ARCHITECTURE |
a4edbc10 | 1811 | M: Steven Miao <[email protected]> |
b3fe92b0 | 1812 | L: [email protected] (moderated for non-subscribers) |
1443176f | 1813 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1814 | W: http://blackfin.uclinux.org |
1815 | S: Supported | |
679655da | 1816 | F: arch/blackfin/ |
566da5b2 | 1817 | |
e190d6b1 | 1818 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 1819 | L: [email protected] (moderated for non-subscribers) |
e190d6b1 BW |
1820 | W: http://blackfin.uclinux.org |
1821 | S: Supported | |
7b35f033 | 1822 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1823 | |
566da5b2 | 1824 | BLACKFIN RTC DRIVER |
b3fe92b0 | 1825 | L: [email protected] (moderated for non-subscribers) |
566da5b2 MF |
1826 | W: http://blackfin.uclinux.org |
1827 | S: Supported | |
679655da | 1828 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1829 | |
936ed49a | 1830 | BLACKFIN SDH DRIVER |
109ec8c3 | 1831 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 1832 | L: [email protected] (moderated for non-subscribers) |
936ed49a MF |
1833 | W: http://blackfin.uclinux.org |
1834 | S: Supported | |
1835 | F: drivers/mmc/host/bfin_sdh.c | |
1836 | ||
1394f032 | 1837 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1838 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 1839 | L: [email protected] (moderated for non-subscribers) |
e3b2d3f3 BW |
1840 | W: http://blackfin.uclinux.org |
1841 | S: Supported | |
8460241e | 1842 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1843 | |
1e6d320f | 1844 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 1845 | L: [email protected] (moderated for non-subscribers) |
1e6d320f BW |
1846 | W: http://blackfin.uclinux.org |
1847 | S: Supported | |
679655da | 1848 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1849 | |
d24ecfcc | 1850 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1851 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 1852 | L: [email protected] (moderated for non-subscribers) |
d24ecfcc BW |
1853 | W: http://blackfin.uclinux.org/ |
1854 | S: Supported | |
679655da | 1855 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1856 | |
1e204377 SJ |
1857 | BLACKFIN MEDIA DRIVER |
1858 | M: Scott Jiang <[email protected]> | |
b3fe92b0 | 1859 | L: [email protected] (moderated for non-subscribers) |
1e204377 SJ |
1860 | W: http://blackfin.uclinux.org/ |
1861 | S: Supported | |
1862 | F: drivers/media/platform/blackfin/ | |
1863 | F: drivers/media/i2c/adv7183* | |
1864 | F: drivers/media/i2c/vs6624* | |
1865 | ||
b54cf35a JSM |
1866 | BLINKM RGB LED DRIVER |
1867 | M: Jan-Simon Moeller <[email protected]> | |
1868 | S: Maintained | |
1869 | F: drivers/leds/leds-blinkm.c | |
1870 | ||
1da177e4 | 1871 | BLOCK LAYER |
8b58be88 | 1872 | M: Jens Axboe <[email protected]> |
08deed1e | 1873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1874 | S: Maintained |
679655da | 1875 | F: block/ |
1da177e4 | 1876 | |
2b54aaef | 1877 | BLOCK2MTD DRIVER |
8b58be88 | 1878 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1879 | L: [email protected] |
1880 | S: Maintained | |
679655da | 1881 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1882 | |
63fbd24e | 1883 | BLUETOOTH DRIVERS |
8b58be88 | 1884 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1885 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1886 | M: Johan Hedberg <[email protected]> |
781c2844 | 1887 | L: [email protected] |
63fbd24e | 1888 | W: http://www.bluez.org/ |
22e7a424 MH |
1889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1890 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1891 | S: Maintained |
679655da | 1892 | F: drivers/bluetooth/ |
1da177e4 | 1893 | |
63fbd24e | 1894 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1895 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1896 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1897 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1898 | L: [email protected] |
1899 | W: http://www.bluez.org/ | |
22e7a424 MH |
1900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1902 | S: Maintained |
679655da JP |
1903 | F: net/bluetooth/ |
1904 | F: include/net/bluetooth/ | |
1da177e4 LT |
1905 | |
1906 | BONDING DRIVER | |
79b30750 | 1907 | M: Jay Vosburgh <[email protected]> |
898602a0 | 1908 | M: Veaceslav Falico <[email protected]> |
4cd72c6e | 1909 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1910 | L: [email protected] |
ce00f85c JC |
1911 | W: http://sourceforge.net/projects/bonding/ |
1912 | S: Supported | |
679655da | 1913 | F: drivers/net/bonding/ |
c117ab84 | 1914 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1915 | |
39105890 | 1916 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1917 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1918 | L: [email protected] |
1919 | S: Supported | |
adfc5217 | 1920 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1921 | |
32ec90d5 FF |
1922 | BROADCOM GENET ETHERNET DRIVER |
1923 | M: Florian Fainelli <[email protected]> | |
1924 | L: [email protected] | |
1925 | S: Supported | |
1926 | F: drivers/net/ethernet/broadcom/genet/ | |
1927 | ||
948c51e6 | 1928 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1929 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1930 | L: [email protected] |
1931 | S: Supported | |
adfc5217 JK |
1932 | F: drivers/net/ethernet/broadcom/bnx2.* |
1933 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1934 | |
4d9d2cb0 | 1935 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 1936 | M: Ariel Elior <[email protected]> |
4d9d2cb0 ET |
1937 | L: [email protected] |
1938 | S: Supported | |
adfc5217 | 1939 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1940 | |
90f4c594 | 1941 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
497a045d | 1942 | M: Christian Daudt <[email protected]> |
a3db2bba | 1943 | M: Matt Porter <[email protected]> |
497a045d | 1944 | L: [email protected] |
90f4c594 | 1945 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
1946 | S: Maintained |
1947 | F: arch/arm/mach-bcm/ | |
1948 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 1949 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
1950 | F: arch/arm/boot/dts/bcm281* |
1951 | F: arch/arm/configs/bcm_defconfig | |
1952 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1953 | F: drivers/clocksource/bcm_kona_timer.c | |
1954 | ||
f680f25c SW |
1955 | BROADCOM BCM2835 ARM ARCHICTURE |
1956 | M: Stephen Warren <[email protected]> | |
1957 | L: [email protected] (moderated for non-subscribers) | |
1958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1959 | S: Maintained | |
d30fe627 | 1960 | F: arch/arm/mach-bcm/board_bcm2835.c |
f680f25c SW |
1961 | F: arch/arm/boot/dts/bcm2835* |
1962 | F: arch/arm/configs/bcm2835_defconfig | |
1963 | F: drivers/*/*bcm2835* | |
1964 | ||
5b293ebe HM |
1965 | BROADCOM BCM5301X ARM ARCHICTURE |
1966 | M: Hauke Mehrtens <[email protected]> | |
1967 | L: [email protected] | |
1968 | S: Maintained | |
1969 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1970 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
1971 | F: arch/arm/boot/dts/bcm470* | |
1972 | ||
948c51e6 | 1973 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1974 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1975 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1976 | L: [email protected] |
1977 | S: Supported | |
adfc5217 | 1978 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1979 | |
a9533e7e HP |
1980 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1981 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1982 | M: Arend van Spriel <[email protected]> |
85d63686 | 1983 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1984 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1985 | L: [email protected] |
5615171c | 1986 | L: [email protected] |
a9533e7e | 1987 | S: Supported |
f62ebdd5 | 1988 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1989 | |
9958d6f9 | 1990 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
f69098c5 | 1991 | M: Eddie Wai <[email protected]> |
9958d6f9 BPG |
1992 | L: [email protected] |
1993 | S: Supported | |
1994 | F: drivers/scsi/bnx2fc/ | |
1995 | ||
6a6b5ad0 EW |
1996 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1997 | M: Eddie Wai <[email protected]> | |
1998 | L: [email protected] | |
1999 | S: Supported | |
2000 | F: drivers/scsi/bnx2i/ | |
2001 | ||
7b7f588b MM |
2002 | BROADCOM KONA GPIO DRIVER |
2003 | M: Markus Mayer <[email protected]> | |
2004 | L: [email protected] | |
2005 | S: Supported | |
2006 | F: drivers/gpio/gpio-bcm-kona.c | |
2007 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt | |
2008 | ||
c9678d86 RM |
2009 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2010 | M: Rafał Miłecki <[email protected]> | |
2011 | L: [email protected] | |
2012 | S: Maintained | |
2013 | F: drivers/bcma/ | |
2014 | F: include/linux/bcma/ | |
2015 | ||
b8302205 FF |
2016 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2017 | M: Florian Fainelli <[email protected]> | |
2018 | L: [email protected] | |
2019 | S: Supported | |
2020 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2021 | ||
7725ccfd | 2022 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2023 | M: Anil Gurumurthy <[email protected]> |
2024 | M: Sudarsana Kalluru <[email protected]> | |
455518e7 JP |
2025 | L: [email protected] |
2026 | S: Supported | |
2027 | F: drivers/scsi/bfa/ | |
7725ccfd | 2028 | |
8b230ed8 RM |
2029 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
2030 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
2031 | L: [email protected] |
2032 | S: Supported | |
f844a0ea | 2033 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2034 | |
5cdf7f76 | 2035 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2036 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
2037 | L: [email protected] |
2038 | S: Supported | |
679655da JP |
2039 | F: block/bsg.c |
2040 | F: include/linux/bsg.h | |
c117ab84 | 2041 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2042 | |
af39917d CL |
2043 | BT87X AUDIO DRIVER |
2044 | M: Clemens Ladisch <[email protected]> | |
2045 | L: [email protected] (moderated for non-subscribers) | |
2046 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2047 | S: Maintained | |
2048 | F: Documentation/sound/alsa/Bt87x.txt | |
2049 | F: sound/pci/bt87x.c | |
2050 | ||
ff1d5c2f | 2051 | BT8XXGPIO DRIVER |
eb032b98 | 2052 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
2053 | W: http://bu3sch.de/btgpio.php |
2054 | S: Maintained | |
72dbb705 | 2055 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2056 | |
eb1eb04f | 2057 | BTRFS FILE SYSTEM |
c0778e25 CM |
2058 | M: Chris Mason <[email protected]> |
2059 | M: Josef Bacik <[email protected]> | |
eb1eb04f JP |
2060 | L: [email protected] |
2061 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2062 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2064 | S: Maintained |
679655da JP |
2065 | F: Documentation/filesystems/btrfs.txt |
2066 | F: fs/btrfs/ | |
eb1eb04f | 2067 | |
1da177e4 | 2068 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 2069 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 2070 | L: [email protected] |
96b6aba0 | 2071 | W: http://linuxtv.org |
275ffde4 | 2072 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2073 | S: Odd fixes |
679655da | 2074 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2075 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2076 | |
1f34923c KA |
2077 | BUSLOGIC SCSI DRIVER |
2078 | M: Khalid Aziz <[email protected]> | |
2079 | L: [email protected] | |
2080 | S: Maintained | |
2081 | F: drivers/scsi/BusLogic.* | |
2082 | F: drivers/scsi/FlashPoint.* | |
2083 | ||
af39917d CL |
2084 | C-MEDIA CMI8788 DRIVER |
2085 | M: Clemens Ladisch <[email protected]> | |
2086 | L: [email protected] (moderated for non-subscribers) | |
2087 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2088 | S: Maintained | |
2089 | F: sound/pci/oxygen/ | |
2090 | ||
2141355f MS |
2091 | C6X ARCHITECTURE |
2092 | M: Mark Salter <[email protected]> | |
2093 | M: Aurelien Jacquiot <[email protected]> | |
2094 | L: [email protected] | |
2095 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2096 | S: Maintained | |
2097 | F: arch/c6x/ | |
2098 | ||
a5432f5a | 2099 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2100 | M: David Howells <[email protected]> |
a5432f5a DH |
2101 | L: [email protected] |
2102 | S: Supported | |
2103 | F: Documentation/filesystems/caching/cachefiles.txt | |
2104 | F: fs/cachefiles/ | |
2105 | ||
c815ca39 HV |
2106 | CADET FM/AM RADIO RECEIVER DRIVER |
2107 | M: Hans Verkuil <[email protected]> | |
2108 | L: [email protected] | |
2109 | T: git git://linuxtv.org/media_tree.git | |
2110 | W: http://linuxtv.org | |
2111 | S: Maintained | |
2112 | F: drivers/media/radio/radio-cadet* | |
2113 | ||
77d5140f | 2114 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2115 | M: Jonathan Corbet <[email protected]> |
661263b5 | 2116 | L: [email protected] |
275ffde4 | 2117 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2118 | S: Maintained |
679655da | 2119 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2120 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2121 | |
201b6bab | 2122 | CAIF NETWORK LAYER |
5c574f50 | 2123 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
2124 | L: [email protected] |
2125 | S: Supported | |
2126 | F: Documentation/networking/caif/ | |
2127 | F: drivers/net/caif/ | |
c117ab84 | 2128 | F: include/uapi/linux/caif/ |
201b6bab JP |
2129 | F: include/net/caif/ |
2130 | F: net/caif/ | |
2131 | ||
77dac90f | 2132 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2133 | M: Muli Ben-Yehuda <[email protected]> |
2134 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
2135 | L: [email protected] |
2136 | S: Maintained | |
679655da JP |
2137 | F: arch/x86/kernel/pci-calgary_64.c |
2138 | F: arch/x86/kernel/tce_64.c | |
2139 | F: arch/x86/include/asm/calgary.h | |
2140 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2141 | |
e2d1d6c0 | 2142 | CAN NETWORK LAYER |
8d15d386 | 2143 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 2144 | L: [email protected] |
ec78213a | 2145 | W: http://gitorious.org/linux-can |
405cc273 | 2146 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2147 | S: Maintained |
f35f6c8f | 2148 | F: Documentation/networking/can.txt |
8d15d386 | 2149 | F: net/can/ |
8d15d386 | 2150 | F: include/linux/can/core.h |
c117ab84 CEB |
2151 | F: include/uapi/linux/can.h |
2152 | F: include/uapi/linux/can/bcm.h | |
2153 | F: include/uapi/linux/can/raw.h | |
2154 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2155 | |
4261a204 | 2156 | CAN NETWORK DRIVERS |
8b58be88 | 2157 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2158 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2159 | L: [email protected] |
ec78213a | 2160 | W: http://gitorious.org/linux-can |
405cc273 | 2161 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2162 | S: Maintained |
8d15d386 OH |
2163 | F: drivers/net/can/ |
2164 | F: include/linux/can/dev.h | |
8d15d386 | 2165 | F: include/linux/can/platform/ |
c117ab84 CEB |
2166 | F: include/uapi/linux/can/error.h |
2167 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2168 | |
95d16c72 JM |
2169 | CAPABILITIES |
2170 | M: Serge Hallyn <[email protected]> | |
2171 | L: [email protected] | |
6305902c | 2172 | S: Supported |
95d16c72 | 2173 | F: include/linux/capability.h |
c117ab84 | 2174 | F: include/uapi/linux/capability.h |
95d16c72 | 2175 | F: security/capability.c |
6305902c | 2176 | F: security/commoncap.c |
38a94118 | 2177 | F: kernel/capability.c |
95d16c72 | 2178 | |
b8154542 | 2179 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2180 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2181 | L: [email protected] |
2182 | L: [email protected] | |
b8154542 AB |
2183 | W: http://www.ibm.com/developerworks/power/cell/ |
2184 | S: Supported | |
679655da | 2185 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2186 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2187 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2188 | F: arch/powerpc/oprofile/*cell* |
2189 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2190 | |
9030aaf9 | 2191 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2192 | M: Sage Weil <[email protected]> |
82593f87 | 2193 | L: [email protected] |
09d90327 | 2194 | W: http://ceph.com/ |
fb99f881 | 2195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2196 | S: Supported |
2197 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2198 | F: fs/ceph/ |
2199 | F: net/ceph/ | |
2200 | F: include/linux/ceph/ | |
2201 | F: include/linux/crush/ | |
9030aaf9 | 2202 | |
18332a80 | 2203 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2204 | L: [email protected] |
10c6c9c9 | 2205 | S: Orphan |
679655da JP |
2206 | F: Documentation/usb/WUSB-Design-overview.txt |
2207 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2208 | F: drivers/usb/host/hwa-hc.c |
2209 | F: drivers/usb/host/whci/ | |
679655da JP |
2210 | F: drivers/usb/wusbcore/ |
2211 | F: include/linux/usb/wusb* | |
18332a80 | 2212 | |
70e84049 | 2213 | CFAG12864B LCD DRIVER |
8b58be88 | 2214 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2215 | W: http://miguelojeda.es/auxdisplay.htm |
2216 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2217 | S: Maintained |
679655da JP |
2218 | F: drivers/auxdisplay/cfag12864b.c |
2219 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2220 | |
2221 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2222 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2223 | W: http://miguelojeda.es/auxdisplay.htm |
2224 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2225 | S: Maintained |
679655da JP |
2226 | F: drivers/auxdisplay/cfag12864bfb.c |
2227 | F: include/linux/cfag12864b.h | |
70e84049 | 2228 | |
704232c2 | 2229 | CFG80211 and NL80211 |
8b58be88 | 2230 | M: Johannes Berg <[email protected]> |
704232c2 | 2231 | L: [email protected] |
ce466579 JB |
2232 | W: http://wireless.kernel.org/ |
2233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2235 | S: Maintained |
c117ab84 | 2236 | F: include/uapi/linux/nl80211.h |
679655da JP |
2237 | F: include/net/cfg80211.h |
2238 | F: net/wireless/* | |
2239 | X: net/wireless/wext* | |
704232c2 | 2240 | |
46e64261 GKH |
2241 | CHAR and MISC DRIVERS |
2242 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2243 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2245 | S: Supported |
46e64261 GKH |
2246 | F: drivers/char/* |
2247 | F: drivers/misc/* | |
471322a8 | 2248 | F: include/linux/miscdevice.h |
46e64261 | 2249 | |
0a920b5b | 2250 | CHECKPATCH |
8b58be88 | 2251 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2252 | M: Joe Perches <[email protected]> |
2253 | S: Maintained | |
679655da | 2254 | F: scripts/checkpatch.pl |
0a920b5b | 2255 | |
f8407f26 HW |
2256 | CHINESE DOCUMENTATION |
2257 | M: Harry Wei <[email protected]> | |
9740153c | 2258 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2259 | L: [email protected] (moderated for non-subscribers) |
2260 | S: Maintained | |
2261 | F: Documentation/zh_CN/ | |
2262 | ||
2721ea2c | 2263 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2264 | M: Peter Chen <[email protected]> |
cea8321c | 2265 | T: git git://github.com/hzpeterchen/linux-usb.git |
2721ea2c AS |
2266 | L: [email protected] |
2267 | S: Maintained | |
2268 | F: drivers/usb/chipidea/ | |
2269 | ||
ab043105 OJ |
2270 | CHROME HARDWARE PLATFORM SUPPORT |
2271 | M: Olof Johansson <[email protected]> | |
2272 | S: Maintained | |
2273 | F: drivers/platform/chrome/ | |
2274 | ||
641cb85e | 2275 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2276 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2277 | M: Sujith Sankar <[email protected]> |
c327e8f4 | 2278 | M: Govindarajulu Varadarajan <[email protected]> |
5c6652f5 | 2279 | M: Neel Patel <[email protected]> |
7063fbf2 | 2280 | S: Supported |
a6a5580c | 2281 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2282 | |
e3cf00d0 | 2283 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2284 | M: Upinder Malhi <[email protected]> |
2285 | S: Supported | |
2286 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2287 | |
2b7a52a4 | 2288 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2289 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2290 | L: [email protected] |
2291 | S: Maintained | |
57d0b7a0 | 2292 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2293 | |
2b7a52a4 | 2294 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2295 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2296 | L: [email protected] |
2b7a52a4 | 2297 | S: Maintained |
679655da | 2298 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2299 | |
3d4cfdc9 MB |
2300 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2301 | M: Brian Austin <[email protected]> | |
2302 | M: Paul Handrigan <[email protected]> | |
2303 | L: [email protected] (moderated for non-subscribers) | |
2304 | S: Maintained | |
2305 | F: sound/soc/codecs/cs* | |
2306 | ||
94574d9a KRW |
2307 | CLEANCACHE API |
2308 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2309 | L: [email protected] | |
2310 | S: Maintained | |
2311 | F: mm/cleancache.c | |
2312 | F: include/linux/cleancache.h | |
2313 | ||
d4275354 | 2314 | CLK API |
8b58be88 | 2315 | M: Russell King <[email protected]> |
37417046 | 2316 | S: Maintained |
d4275354 RK |
2317 | F: include/linux/clk.h |
2318 | ||
9222d247 JS |
2319 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2320 | M: Daniel Lezcano <[email protected]> | |
2321 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 2322 | L: [email protected] |
9222d247 JS |
2323 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2324 | S: Supported | |
2325 | F: drivers/clocksource | |
2326 | ||
5df6d737 | 2327 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2328 | M: Hiral Patel <[email protected]> |
2329 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2330 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2331 | L: [email protected] |
2332 | S: Supported | |
2a99921a | 2333 | F: drivers/scsi/fnic/ |
5df6d737 | 2334 | |
529aa8cb TLSC |
2335 | CMPC ACPI DRIVER |
2336 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2337 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2338 | L: [email protected] |
529aa8cb TLSC |
2339 | S: Supported |
2340 | F: drivers/platform/x86/classmate-laptop.c | |
2341 | ||
74425eee | 2342 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2343 | M: Julia Lawall <[email protected]> |
74425eee | 2344 | M: Gilles Muller <[email protected]> |
26de9c26 | 2345 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2346 | M: Michal Marek <[email protected]> |
26de9c26 | 2347 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2349 | W: http://coccinelle.lip6.fr/ |
2350 | S: Supported | |
4b92b2aa | 2351 | F: Documentation/coccinelle.txt |
74425eee NP |
2352 | F: scripts/coccinelle/ |
2353 | F: scripts/coccicheck | |
2354 | ||
1da177e4 | 2355 | CODA FILE SYSTEM |
8b58be88 | 2356 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2357 | M: [email protected] |
2358 | L: [email protected] | |
2359 | W: http://www.coda.cs.cmu.edu/ | |
2360 | S: Maintained | |
679655da JP |
2361 | F: Documentation/filesystems/coda.txt |
2362 | F: fs/coda/ | |
2363 | F: include/linux/coda*.h | |
c117ab84 | 2364 | F: include/uapi/linux/coda*.h |
1da177e4 | 2365 | |
7704addb | 2366 | COMMON CLK FRAMEWORK |
7704addb | 2367 | M: Mike Turquette <[email protected]> |
35c1983e | 2368 | L: [email protected] |
7704addb MT |
2369 | T: git git://git.linaro.org/people/mturquette/linux.git |
2370 | S: Maintained | |
60bea3b5 SW |
2371 | F: drivers/clk/ |
2372 | X: drivers/clk/clkdev.c | |
7704addb | 2373 | F: include/linux/clk-pr* |
60bea3b5 | 2374 | F: include/linux/clk/ |
7704addb | 2375 | |
e2d1d6c0 | 2376 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2377 | M: Steve French <[email protected]> |
51223df6 | 2378 | L: [email protected] |
d1f28953 | 2379 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2380 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2381 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2383 | S: Supported |
679655da JP |
2384 | F: Documentation/filesystems/cifs.txt |
2385 | F: fs/cifs/ | |
e2d1d6c0 | 2386 | |
1da177e4 | 2387 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2388 | M: Scott Murray <[email protected]> |
64dab204 | 2389 | L: [email protected] |
82c4dfc7 | 2390 | S: Maintained |
679655da | 2391 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2392 | |
2393 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2394 | M: Scott Murray <[email protected]> |
64dab204 | 2395 | L: [email protected] |
82c4dfc7 | 2396 | S: Maintained |
679655da | 2397 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2398 | |
2399 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2400 | M: Scott Murray <[email protected]> |
64dab204 | 2401 | L: [email protected] |
82c4dfc7 | 2402 | S: Maintained |
679655da | 2403 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2404 | |
5411552c | 2405 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2406 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2407 | L: [email protected] |
5411552c | 2408 | S: Maintained |
679655da | 2409 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2410 | |
949be0f7 | 2411 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2412 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2413 | L: [email protected] |
2414 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2415 | S: Maintained |
679655da | 2416 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2417 | |
e2d1d6c0 | 2418 | CONFIGFS |
d6351db2 JB |
2419 | M: Joel Becker <[email protected]> |
2420 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2421 | S: Supported |
679655da JP |
2422 | F: fs/configfs/ |
2423 | F: include/linux/configfs.h | |
e2d1d6c0 | 2424 | |
acb9c1b2 | 2425 | CONNECTOR |
8b58be88 | 2426 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2427 | L: [email protected] |
2428 | S: Maintained | |
2429 | F: drivers/connector/ | |
2430 | ||
a3e3354d | 2431 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2432 | M: Tejun Heo <[email protected]> |
ad50c159 | 2433 | M: Li Zefan <[email protected]> |
12340313 | 2434 | L: [email protected] |
860ca0e6 | 2435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2436 | S: Maintained |
a3e3354d | 2437 | F: Documentation/cgroups/ |
679655da JP |
2438 | F: include/linux/cgroup* |
2439 | F: kernel/cgroup* | |
a3e3354d TH |
2440 | |
2441 | CONTROL GROUP - CPUSET | |
2442 | M: Li Zefan <[email protected]> | |
2443 | L: [email protected] | |
2444 | W: http://www.bullopensource.org/cpuset/ | |
2445 | W: http://oss.sgi.com/projects/cpusets/ | |
2446 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2447 | S: Maintained | |
2448 | F: Documentation/cgroups/cpusets.txt | |
2449 | F: include/linux/cpuset.h | |
2450 | F: kernel/cpuset.c | |
2451 | ||
2452 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2453 | M: Johannes Weiner <[email protected]> | |
2454 | M: Michal Hocko <[email protected]> | |
2455 | L: [email protected] | |
2456 | L: [email protected] | |
2457 | S: Maintained | |
2458 | F: mm/memcontrol.c | |
2459 | F: mm/page_cgroup.c | |
fb3a0fb6 | 2460 | |
bebe4678 | 2461 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2462 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2463 | L: [email protected] |
2464 | S: Maintained | |
679655da JP |
2465 | F: Documentation/hwmon/coretemp |
2466 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2467 | |
1da177e4 | 2468 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2469 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2470 | W: http://www.fi.muni.cz/~kas/cosa/ |
2471 | S: Maintained | |
679655da | 2472 | F: drivers/net/wan/cosa* |
1da177e4 | 2473 | |
4371ee35 | 2474 | CPMAC ETHERNET DRIVER |
8b58be88 | 2475 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2476 | L: [email protected] |
2477 | S: Maintained | |
b544dbac | 2478 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2479 | |
1da177e4 | 2480 | CPU FREQUENCY DRIVERS |
49db1903 | 2481 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2482 | M: Viresh Kumar <[email protected]> |
a6c072c7 | 2483 | L: [email protected] |
1da177e4 | 2484 | S: Maintained |
27209d91 VK |
2485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2486 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2487 | F: drivers/cpufreq/ |
2488 | F: include/linux/cpufreq.h | |
1da177e4 | 2489 | |
8a67f0ef VK |
2490 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2491 | M: Viresh Kumar <[email protected]> | |
171d0ba8 | 2492 | M: Sudeep Holla <[email protected]> |
8a67f0ef VK |
2493 | L: [email protected] |
2494 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2495 | S: Maintained | |
2496 | F: drivers/cpufreq/arm_big_little.h | |
2497 | F: drivers/cpufreq/arm_big_little.c | |
2498 | F: drivers/cpufreq/arm_big_little_dt.c | |
2499 | ||
14d2c34c | 2500 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2501 | M: Lorenzo Pieralisi <[email protected]> |
2502 | M: Daniel Lezcano <[email protected]> | |
2503 | L: [email protected] | |
2504 | L: [email protected] | |
cea8321c | 2505 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2506 | S: Maintained |
2507 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2508 | |
a8e39c35 | 2509 | CPUIDLE DRIVERS |
49db1903 | 2510 | M: Rafael J. Wysocki <[email protected]> |
a8e39c35 DL |
2511 | M: Daniel Lezcano <[email protected]> |
2512 | L: [email protected] | |
2513 | S: Maintained | |
cea8321c | 2514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2515 | F: drivers/cpuidle/* |
2516 | F: include/linux/cpuidle.h | |
2517 | ||
1da177e4 | 2518 | CPUID/MSR DRIVER |
8b58be88 | 2519 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2520 | S: Maintained |
679655da JP |
2521 | F: arch/x86/kernel/cpuid.c |
2522 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2523 | |
7fe2f639 DB |
2524 | CPU POWER MONITORING SUBSYSTEM |
2525 | M: Dominik Brodowski <[email protected]> | |
2526 | M: Thomas Renninger <[email protected]> | |
2527 | S: Maintained | |
14430813 | 2528 | F: tools/power/cpupower/ |
7fe2f639 | 2529 | |
1da177e4 | 2530 | CRAMFS FILESYSTEM |
ce00f85c | 2531 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2532 | S: Orphan / Obsolete |
679655da JP |
2533 | F: Documentation/filesystems/cramfs.txt |
2534 | F: fs/cramfs/ | |
1da177e4 LT |
2535 | |
2536 | CRIS PORT | |
8b58be88 JP |
2537 | M: Mikael Starvik <[email protected]> |
2538 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2539 | L: [email protected] |
1da177e4 LT |
2540 | W: http://developer.axis.com |
2541 | S: Maintained | |
679655da | 2542 | F: arch/cris/ |
df621252 | 2543 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2544 | |
2545 | CRYPTO API | |
8b58be88 JP |
2546 | M: Herbert Xu <[email protected]> |
2547 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2548 | L: [email protected] |
54e5881d | 2549 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2550 | S: Maintained |
679655da JP |
2551 | F: Documentation/crypto/ |
2552 | F: arch/*/crypto/ | |
2553 | F: crypto/ | |
2554 | F: drivers/crypto/ | |
2555 | F: include/crypto/ | |
1da177e4 | 2556 | |
5b07bd57 | 2557 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2558 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2559 | L: [email protected] |
2560 | S: Maintained | |
51a2228a JP |
2561 | F: crypto/ansi_cprng.c |
2562 | F: crypto/rng.c | |
5b07bd57 | 2563 | |
9b4ffa48 | 2564 | CS5535 Audio ALSA driver |
8b58be88 | 2565 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2566 | S: Maintained |
679655da | 2567 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2568 | |
a910e4a9 | 2569 | CW1200 WLAN driver |
b75f0050 JP |
2570 | M: Solomon Peachy <[email protected]> |
2571 | S: Maintained | |
2572 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2573 | |
6d8425b1 | 2574 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2575 | M: Andy Walls <[email protected]> |
c4240509 | 2576 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2577 | L: [email protected] |
275ffde4 | 2578 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2579 | W: http://linuxtv.org |
30e10993 | 2580 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2581 | S: Maintained |
679655da | 2582 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2583 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2584 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2585 | |
3f101d91 HV |
2586 | CX2341X MPEG ENCODER HELPER MODULE |
2587 | M: Hans Verkuil <[email protected]> | |
2588 | L: [email protected] | |
2589 | T: git git://linuxtv.org/media_tree.git | |
2590 | W: http://linuxtv.org | |
2591 | S: Maintained | |
c368360b | 2592 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2593 | F: include/media/cx2341x* |
2594 | ||
20357578 | 2595 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2596 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2597 | L: [email protected] |
2598 | W: http://linuxtv.org | |
2599 | T: git git://linuxtv.org/media_tree.git | |
2600 | S: Odd fixes | |
2601 | F: Documentation/video4linux/cx88/ | |
2602 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2603 | |
91952bc0 AP |
2604 | CXD2820R MEDIA DRIVER |
2605 | M: Antti Palosaari <[email protected]> | |
2606 | L: [email protected] | |
2607 | W: http://linuxtv.org/ | |
2608 | W: http://palosaari.fi/linux/ | |
2609 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2610 | T: git git://linuxtv.org/anttip/media_tree.git | |
2611 | S: Maintained | |
2612 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2613 | |
e5ec3789 | 2614 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2615 | M: Santosh Raspatur <[email protected]> |
e5ec3789 SW |
2616 | L: [email protected] |
2617 | W: http://www.chelsio.com | |
2618 | S: Supported | |
f7917c00 | 2619 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2620 | |
2621 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2622 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2623 | L: [email protected] |
e5ec3789 SW |
2624 | W: http://www.openfabrics.org |
2625 | S: Supported | |
679655da | 2626 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2627 | |
be4c9bad | 2628 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 2629 | M: Hariprasad S <[email protected]> |
be4c9bad RD |
2630 | L: [email protected] |
2631 | W: http://www.chelsio.com | |
2632 | S: Supported | |
f7917c00 | 2633 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2634 | |
2635 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2636 | M: Steve Wise <[email protected]> | |
2637 | L: [email protected] | |
2638 | W: http://www.openfabrics.org | |
2639 | S: Supported | |
2640 | F: drivers/infiniband/hw/cxgb4/ | |
2641 | ||
5c20a5c7 CL |
2642 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2643 | M: Casey Leedom <[email protected]> | |
2644 | L: [email protected] | |
2645 | W: http://www.chelsio.com | |
2646 | S: Supported | |
f7917c00 | 2647 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2648 | |
b52b97a3 GC |
2649 | STMMAC ETHERNET DRIVER |
2650 | M: Giuseppe Cavallaro <[email protected]> | |
2651 | L: [email protected] | |
2652 | W: http://www.stlinux.com | |
2653 | S: Supported | |
7ac6653a | 2654 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2655 | |
1da177e4 | 2656 | CYBERPRO FB DRIVER |
8b58be88 | 2657 | M: Russell King <[email protected]> |
efc03ecb | 2658 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2659 | W: http://www.arm.linux.org.uk/ |
2660 | S: Maintained | |
679655da | 2661 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2662 | |
1da177e4 | 2663 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2664 | W: http://www.cyclades.com/ |
d459883e | 2665 | S: Orphan |
c897401b | 2666 | F: drivers/tty/cyclades.c |
679655da | 2667 | F: include/linux/cyclades.h |
c117ab84 | 2668 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2669 | |
2670 | CYCLADES PC300 DRIVER | |
1da177e4 | 2671 | W: http://www.cyclades.com/ |
d459883e | 2672 | S: Orphan |
679655da | 2673 | F: drivers/net/wan/pc300* |
1da177e4 | 2674 | |
402f6ae4 AP |
2675 | CYPRESS_FIRMWARE MEDIA DRIVER |
2676 | M: Antti Palosaari <[email protected]> | |
2677 | L: [email protected] | |
2678 | W: http://linuxtv.org/ | |
2679 | W: http://palosaari.fi/linux/ | |
2680 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2681 | T: git git://linuxtv.org/anttip/media_tree.git | |
2682 | S: Maintained | |
2683 | F: drivers/media/common/cypress_firmware* | |
2684 | ||
e3ae3525 | 2685 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2686 | M: Ferruh Yigit <[email protected]> |
6305902c | 2687 | L: [email protected] |
be9a6f40 | 2688 | S: Supported |
6305902c JP |
2689 | F: drivers/input/touchscreen/cyttsp* |
2690 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2691 | |
1da177e4 | 2692 | DAMA SLAVE for AX.25 |
8b58be88 | 2693 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2694 | W: http://yaina.de/jreuter/ |
2695 | W: http://www.qsl.net/dl1bke/ | |
2696 | L: [email protected] | |
2697 | S: Maintained | |
679655da JP |
2698 | F: net/ax25/af_ax25.c |
2699 | F: net/ax25/ax25_dev.c | |
2700 | F: net/ax25/ax25_ds_* | |
2701 | F: net/ax25/ax25_in.c | |
2702 | F: net/ax25/ax25_out.c | |
2703 | F: net/ax25/ax25_timer.c | |
2704 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2705 | |
e2d1d6c0 | 2706 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2707 | L: [email protected] |
5ff77428 | 2708 | S: Orphan |
679655da | 2709 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2710 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2711 | |
2712 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2713 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2714 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2715 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2716 | S: Maintained |
679655da | 2717 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2718 | |
1da177e4 | 2719 | DC395x SCSI driver |
61eee9a7 | 2720 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2721 | M: Ali Akcaagac <[email protected]> |
2722 | M: Jamie Lenehan <[email protected]> | |
f5df5881 | 2723 | L: [email protected] |
cf015e9f JP |
2724 | W: http://twibble.org/dist/dc395x/ |
2725 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 2726 | S: Maintained |
679655da JP |
2727 | F: Documentation/scsi/dc395x.txt |
2728 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2729 | |
eb8edb08 | 2730 | DCCP PROTOCOL |
a89d030e | 2731 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2732 | L: [email protected] |
c996d8b9 | 2733 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2734 | S: Maintained |
679655da | 2735 | F: include/linux/dccp.h |
c117ab84 | 2736 | F: include/uapi/linux/dccp.h |
679655da JP |
2737 | F: include/linux/tfrc.h |
2738 | F: net/dccp/ | |
eb8edb08 | 2739 | |
1da177e4 | 2740 | DECnet NETWORK LAYER |
1da177e4 LT |
2741 | W: http://linux-decnet.sourceforge.net |
2742 | L: [email protected] | |
f546444d | 2743 | S: Orphan |
679655da JP |
2744 | F: Documentation/networking/decnet.txt |
2745 | F: net/decnet/ | |
1da177e4 | 2746 | |
ebff05b9 MR |
2747 | DECSTATION PLATFORM SUPPORT |
2748 | M: "Maciej W. Rozycki" <[email protected]> | |
2749 | L: [email protected] | |
2750 | W: http://www.linux-mips.org/wiki/DECstation | |
2751 | S: Maintained | |
2752 | F: arch/mips/dec/ | |
2753 | F: arch/mips/include/asm/dec/ | |
2754 | F: arch/mips/include/asm/mach-dec/ | |
2755 | ||
1da177e4 | 2756 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 2757 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2758 | S: Maintained |
33f810b2 | 2759 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2760 | |
ad8f07cc | 2761 | DELL LAPTOP DRIVER |
8b58be88 | 2762 | M: Matthew Garrett <[email protected]> |
d0944853 | 2763 | L: [email protected] |
ad8f07cc | 2764 | S: Maintained |
679655da | 2765 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2766 | |
1da177e4 | 2767 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2768 | M: Guenter Roeck <[email protected]> |
679655da | 2769 | F: drivers/char/i8k.c |
c117ab84 | 2770 | F: include/uapi/linux/i8k.h |
1da177e4 | 2771 | |
90563ec4 | 2772 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2773 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2774 | S: Maintained |
679655da JP |
2775 | F: Documentation/dcdbas.txt |
2776 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2777 | |
0b3f6109 | 2778 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2779 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2780 | S: Maintained |
36b3a96f | 2781 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2782 | |
5efc75e3 PZ |
2783 | DESIGNWARE USB2 DRD IP DRIVER |
2784 | M: Paul Zimmerman <[email protected]> | |
2785 | L: [email protected] | |
2786 | S: Maintained | |
197ba5f4 | 2787 | F: drivers/usb/dwc2/ |
5efc75e3 | 2788 | |
94ab23dd FB |
2789 | DESIGNWARE USB3 DRD IP DRIVER |
2790 | M: Felipe Balbi <[email protected]> | |
2791 | L: [email protected] | |
2792 | L: [email protected] | |
2793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2794 | S: Maintained | |
2795 | F: drivers/usb/dwc3/ | |
2796 | ||
89d07767 KP |
2797 | DEVICE FREQUENCY (DEVFREQ) |
2798 | M: MyungJoo Ham <[email protected]> | |
2799 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2800 | L: [email protected] |
89d07767 KP |
2801 | S: Maintained |
2802 | F: drivers/devfreq/ | |
2803 | ||
1da177e4 | 2804 | DEVICE NUMBER REGISTRY |
8b58be88 | 2805 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2806 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2807 | S: Maintained |
2808 | ||
e2d1d6c0 | 2809 | DEVICE-MAPPER (LVM) |
854ecaad | 2810 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2811 | M: Mike Snitzer <[email protected]> |
854ecaad | 2812 | M: [email protected] |
e2d1d6c0 RD |
2813 | L: [email protected] |
2814 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2815 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2816 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2817 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2818 | S: Maintained |
679655da JP |
2819 | F: Documentation/device-mapper/ |
2820 | F: drivers/md/dm* | |
854ecaad | 2821 | F: drivers/md/persistent-data/ |
679655da JP |
2822 | F: include/linux/device-mapper.h |
2823 | F: include/linux/dm-*.h | |
8504eed3 | 2824 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2825 | |
c0d995aa OST |
2826 | DIALOG SEMICONDUCTOR DRIVERS |
2827 | M: Support Opensource <[email protected]> | |
2828 | W: http://www.dialog-semiconductor.com/products | |
2829 | S: Supported | |
2830 | F: Documentation/hwmon/da90?? | |
2831 | F: drivers/gpio/gpio-da90??.c | |
2832 | F: drivers/hwmon/da90??-hwmon.c | |
2833 | F: drivers/input/misc/da90??_onkey.c | |
2834 | F: drivers/input/touchscreen/da9052_tsi.c | |
2835 | F: drivers/leds/leds-da90??.c | |
2836 | F: drivers/mfd/da903x.c | |
2837 | F: drivers/mfd/da90??-*.c | |
2838 | F: drivers/power/da9052-battery.c | |
2839 | F: drivers/regulator/da903x.c | |
2840 | F: drivers/regulator/da9???-regulator.[ch] | |
2841 | F: drivers/rtc/rtc-da90??.c | |
2842 | F: drivers/video/backlight/da90??_bl.c | |
2843 | F: drivers/watchdog/da90??_wdt.c | |
2844 | F: include/linux/mfd/da903x.h | |
2845 | F: include/linux/mfd/da9052/ | |
2846 | F: include/linux/mfd/da9055/ | |
2847 | F: include/linux/mfd/da9063/ | |
2848 | F: include/sound/da[79]*.h | |
2849 | F: sound/soc/codecs/da[79]*.[ch] | |
2850 | ||
599aa697 LL |
2851 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2852 | M: Lidza Louina <[email protected]> | |
542f3d5a | 2853 | M: Mark Hounschell <[email protected]> |
599aa697 LL |
2854 | L: [email protected] |
2855 | S: Maintained | |
2856 | F: drivers/staging/dgnc/ | |
2857 | ||
2858 | DIGI EPCA PCI PRODUCTS | |
2859 | M: Lidza Louina <[email protected]> | |
abeb935f | 2860 | M: Mark Hounschell <[email protected]> |
599aa697 LL |
2861 | L: [email protected] |
2862 | S: Maintained | |
2863 | F: drivers/staging/dgap/ | |
2864 | ||
335d7c58 | 2865 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2866 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2867 | L: [email protected] |
2868 | S: Maintained | |
2869 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2870 | ||
e7839f25 | 2871 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2872 | M: Eric Paris <[email protected]> |
3c5119c0 | 2873 | S: Maintained |
679655da JP |
2874 | F: Documentation/filesystems/dnotify.txt |
2875 | F: fs/notify/dnotify/ | |
2876 | F: include/linux/dnotify.h | |
1da177e4 LT |
2877 | |
2878 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2879 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2880 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2881 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2882 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2883 | S: Maintained | |
2884 | ||
4480f15b | 2885 | DISKQUOTA |
8b58be88 | 2886 | M: Jan Kara <[email protected]> |
1da177e4 | 2887 | S: Maintained |
679655da JP |
2888 | F: Documentation/filesystems/quota.txt |
2889 | F: fs/quota/ | |
2890 | F: include/linux/quota*.h | |
c117ab84 | 2891 | F: include/uapi/linux/quota*.h |
1da177e4 | 2892 | |
702686ad BT |
2893 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2894 | M: Bernie Thompson <[email protected]> | |
2895 | L: [email protected] | |
2896 | S: Maintained | |
2897 | W: http://plugable.com/category/projects/udlfb/ | |
2898 | F: drivers/video/udlfb.c | |
2899 | F: include/video/udlfb.h | |
2900 | F: Documentation/fb/udlfb.txt | |
2901 | ||
e7839f25 | 2902 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2903 | M: Christine Caulfield <[email protected]> |
2904 | M: David Teigland <[email protected]> | |
a4644184 | 2905 | L: [email protected] |
5be7b50f | 2906 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2908 | S: Supported |
679655da | 2909 | F: fs/dlm/ |
5be7b50f | 2910 | |
53b6b3e0 SS |
2911 | DMA BUFFER SHARING FRAMEWORK |
2912 | M: Sumit Semwal <[email protected]> | |
2913 | S: Maintained | |
2914 | L: [email protected] | |
2915 | L: [email protected] | |
2916 | L: [email protected] | |
2917 | F: drivers/base/dma-buf* | |
2918 | F: include/linux/dma-buf* | |
2919 | F: Documentation/dma-buf-sharing.txt | |
2920 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2921 | ||
b3e5f263 | 2922 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2923 | M: Vinod Koul <[email protected]> |
ab5f8c6e | 2924 | M: Dan Williams <[email protected]> |
17b59560 VK |
2925 | L: [email protected] |
2926 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2927 | S: Supported |
679655da JP |
2928 | F: drivers/dma/ |
2929 | F: include/linux/dma* | |
5dbd05d4 VK |
2930 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2931 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2932 | |
b825037d | 2933 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2934 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2935 | L: [email protected] |
2936 | S: Maintained | |
679655da JP |
2937 | F: Documentation/hwmon/dme1737 |
2938 | F: drivers/hwmon/dme1737.c | |
b825037d | 2939 | |
5b9c9bf6 | 2940 | DOCKING STATION DRIVER |
8b58be88 | 2941 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2942 | L: [email protected] |
8b59a454 | 2943 | S: Supported |
679655da | 2944 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2945 | |
7d2c86b5 | 2946 | DOCUMENTATION |
01358e56 | 2947 | M: Randy Dunlap <[email protected]> |
795fb7e7 | 2948 | L: [email protected] |
01358e56 | 2949 | T: quilt http://www.infradead.org/~rdunlap/Doc/patches/ |
795fb7e7 | 2950 | S: Maintained |
679655da | 2951 | F: Documentation/ |
97be078b RD |
2952 | X: Documentation/ABI/ |
2953 | X: Documentation/devicetree/ | |
2954 | X: Documentation/[a-z][a-z]_[A-Z][A-Z]/ | |
abbaeff3 | 2955 | |
1da177e4 | 2956 | DOUBLETALK DRIVER |
8b58be88 | 2957 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2958 | L: [email protected] |
2959 | S: Maintained | |
679655da JP |
2960 | F: drivers/char/dtlk.c |
2961 | F: include/linux/dtlk.h | |
1da177e4 | 2962 | |
e2d1d6c0 | 2963 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2964 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2965 | L: [email protected] |
2966 | W: http://www.adaptec.com/ | |
2967 | S: Maintained | |
679655da JP |
2968 | F: drivers/scsi/dpt* |
2969 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2970 | |
b411b363 | 2971 | DRBD DRIVER |
28b8e8d4 JP |
2972 | P: Philipp Reisner |
2973 | P: Lars Ellenberg | |
2974 | M: [email protected] | |
2975 | L: [email protected] | |
2976 | W: http://www.drbd.org | |
2977 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2978 | T: git git://git.drbd.org/drbd-8.3.git | |
2979 | S: Supported | |
2980 | F: drivers/block/drbd/ | |
2981 | F: lib/lru_cache.c | |
2982 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2983 | |
87544653 | 2984 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2985 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2986 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2987 | S: Supported |
679655da | 2988 | F: Documentation/kobject.txt |
7cfc51b9 | 2989 | F: drivers/base/ |
679655da | 2990 | F: fs/sysfs/ |
87544653 | 2991 | F: fs/debugfs/ |
679655da | 2992 | F: include/linux/kobj* |
87544653 | 2993 | F: include/linux/debugfs.h |
679655da | 2994 | F: lib/kobj* |
1da177e4 LT |
2995 | |
2996 | DRM DRIVERS | |
8b58be88 | 2997 | M: David Airlie <[email protected]> |
4c6a3999 | 2998 | L: [email protected] |
b0447888 | 2999 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3000 | S: Maintained |
679655da | 3001 | F: drivers/gpu/drm/ |
433e3b34 | 3002 | F: drivers/gpu/vga/ |
850e9411 | 3003 | F: include/drm/ |
c117ab84 | 3004 | F: include/uapi/drm/ |
1da177e4 | 3005 | |
566f5939 AD |
3006 | RADEON DRM DRIVERS |
3007 | M: Alex Deucher <[email protected]> | |
3008 | M: Christian König <[email protected]> | |
3009 | L: [email protected] | |
3010 | T: git git://people.freedesktop.org/~agd5f/linux | |
3011 | S: Supported | |
3012 | F: drivers/gpu/drm/radeon/ | |
3013 | F: include/drm/radeon* | |
3014 | F: include/uapi/drm/radeon* | |
3015 | ||
03e255b9 TR |
3016 | DRM PANEL DRIVERS |
3017 | M: Thierry Reding <[email protected]> | |
3018 | L: [email protected] | |
3019 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3020 | S: Maintained | |
3021 | F: drivers/gpu/drm/drm_panel.c | |
3022 | F: drivers/gpu/drm/panel/ | |
3023 | F: include/drm/drm_panel.h | |
3024 | F: Documentation/devicetree/bindings/panel/ | |
3025 | ||
8daf7473 | 3026 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 3027 | M: Daniel Vetter <[email protected]> |
47f95647 | 3028 | M: Jani Nikula <[email protected]> |
362132d2 | 3029 | L: [email protected] |
8daf7473 | 3030 | L: [email protected] |
47f95647 | 3031 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3032 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3033 | S: Supported |
14430813 | 3034 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3035 | F: include/drm/i915* |
c117ab84 | 3036 | F: include/uapi/drm/i915* |
8daf7473 | 3037 | |
398a6d4a KP |
3038 | DRM DRIVERS FOR EXYNOS |
3039 | M: Inki Dae <[email protected]> | |
f1501303 ID |
3040 | M: Joonyoung Shim <[email protected]> |
3041 | M: Seung-Woo Kim <[email protected]> | |
3042 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 3043 | L: [email protected] |
25a58030 | 3044 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3045 | S: Supported |
14430813 | 3046 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3047 | F: include/drm/exynos* |
c117ab84 | 3048 | F: include/uapi/drm/exynos* |
398a6d4a | 3049 | |
bd3b49f2 | 3050 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3051 | M: Thierry Reding <[email protected]> |
3052 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
3053 | L: [email protected] |
3054 | L: [email protected] | |
a5ad7a63 | 3055 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3056 | S: Supported |
dee8268f | 3057 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3058 | F: drivers/gpu/host1x/ |
e1e90644 | 3059 | F: include/linux/host1x.h |
a5ad7a63 | 3060 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
3061 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3062 | ||
598df1ac AK |
3063 | DSBR100 USB FM RADIO DRIVER |
3064 | M: Alexey Klimov <[email protected]> | |
3065 | L: [email protected] | |
3066 | T: git git://linuxtv.org/media_tree.git | |
3067 | S: Maintained | |
3068 | F: drivers/media/radio/dsbr100.c | |
3069 | ||
1da177e4 | 3070 | DSCC4 DRIVER |
8b58be88 | 3071 | M: Francois Romieu <[email protected]> |
01f20734 | 3072 | L: [email protected] |
1da177e4 | 3073 | S: Maintained |
679655da | 3074 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3075 | |
91952bc0 AP |
3076 | DVB_USB_AF9015 MEDIA DRIVER |
3077 | M: Antti Palosaari <[email protected]> | |
3078 | L: [email protected] | |
3079 | W: http://linuxtv.org/ | |
3080 | W: http://palosaari.fi/linux/ | |
3081 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3082 | T: git git://linuxtv.org/anttip/media_tree.git | |
3083 | S: Maintained | |
3084 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3085 | ||
3086 | DVB_USB_AF9035 MEDIA DRIVER | |
3087 | M: Antti Palosaari <[email protected]> | |
3088 | L: [email protected] | |
3089 | W: http://linuxtv.org/ | |
3090 | W: http://palosaari.fi/linux/ | |
3091 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3092 | T: git git://linuxtv.org/anttip/media_tree.git | |
3093 | S: Maintained | |
3094 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3095 | ||
3096 | DVB_USB_ANYSEE MEDIA DRIVER | |
3097 | M: Antti Palosaari <[email protected]> | |
3098 | L: [email protected] | |
3099 | W: http://linuxtv.org/ | |
3100 | W: http://palosaari.fi/linux/ | |
3101 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3102 | T: git git://linuxtv.org/anttip/media_tree.git | |
3103 | S: Maintained | |
3104 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3105 | ||
3106 | DVB_USB_AU6610 MEDIA DRIVER | |
3107 | M: Antti Palosaari <[email protected]> | |
3108 | L: [email protected] | |
3109 | W: http://linuxtv.org/ | |
3110 | W: http://palosaari.fi/linux/ | |
3111 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3112 | T: git git://linuxtv.org/anttip/media_tree.git | |
3113 | S: Maintained | |
3114 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3115 | ||
3116 | DVB_USB_CE6230 MEDIA DRIVER | |
3117 | M: Antti Palosaari <[email protected]> | |
3118 | L: [email protected] | |
3119 | W: http://linuxtv.org/ | |
3120 | W: http://palosaari.fi/linux/ | |
3121 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3122 | T: git git://linuxtv.org/anttip/media_tree.git | |
3123 | S: Maintained | |
3124 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3125 | ||
d099dea2 MK |
3126 | DVB_USB_CXUSB MEDIA DRIVER |
3127 | M: Michael Krufky <[email protected]> | |
3128 | L: [email protected] | |
3129 | W: http://linuxtv.org/ | |
3130 | W: http://github.com/mkrufky | |
3131 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3132 | T: git git://linuxtv.org/media_tree.git | |
3133 | S: Maintained | |
9819da66 | 3134 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3135 | |
91952bc0 | 3136 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3137 | M: Antti Palosaari <[email protected]> |
3138 | L: [email protected] | |
3139 | W: http://linuxtv.org/ | |
3140 | W: http://palosaari.fi/linux/ | |
3141 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3142 | T: git git://linuxtv.org/anttip/media_tree.git | |
3143 | S: Maintained | |
91952bc0 | 3144 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3145 | |
5560983b | 3146 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3147 | M: Antti Palosaari <[email protected]> |
3148 | L: [email protected] | |
3149 | W: http://linuxtv.org/ | |
91952bc0 AP |
3150 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3151 | T: git git://linuxtv.org/anttip/media_tree.git | |
3152 | S: Maintained | |
5560983b | 3153 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3154 | |
8856f5f2 MK |
3155 | DVB_USB_MXL111SF MEDIA DRIVER |
3156 | M: Michael Krufky <[email protected]> | |
3157 | L: [email protected] | |
3158 | W: http://linuxtv.org/ | |
3159 | W: http://github.com/mkrufky | |
3160 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3161 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3162 | S: Maintained | |
3163 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3164 | ||
91952bc0 AP |
3165 | DVB_USB_RTL28XXU MEDIA DRIVER |
3166 | M: Antti Palosaari <[email protected]> | |
3167 | L: [email protected] | |
3168 | W: http://linuxtv.org/ | |
3169 | W: http://palosaari.fi/linux/ | |
3170 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3171 | T: git git://linuxtv.org/anttip/media_tree.git | |
3172 | S: Maintained | |
3173 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3174 | ||
3175 | DVB_USB_V2 MEDIA DRIVER | |
3176 | M: Antti Palosaari <[email protected]> | |
3177 | L: [email protected] | |
3178 | W: http://linuxtv.org/ | |
3179 | W: http://palosaari.fi/linux/ | |
3180 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3181 | T: git git://linuxtv.org/anttip/media_tree.git | |
3182 | S: Maintained | |
3183 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3184 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3185 | ||
ac0ac38f | 3186 | DYNAMIC DEBUG |
5c4a97d1 | 3187 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
3188 | S: Maintained |
3189 | F: lib/dynamic_debug.c | |
3190 | F: include/linux/dynamic_debug.h | |
3191 | ||
789c7048 | 3192 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3193 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 3194 | S: Maintained |
df621252 | 3195 | F: drivers/tty/serial/dz.* |
789c7048 | 3196 | |
91952bc0 AP |
3197 | E4000 MEDIA DRIVER |
3198 | M: Antti Palosaari <[email protected]> | |
3199 | L: [email protected] | |
3200 | W: http://linuxtv.org/ | |
3201 | W: http://palosaari.fi/linux/ | |
3202 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3203 | T: git git://linuxtv.org/anttip/media_tree.git | |
3204 | S: Maintained | |
3205 | F: drivers/media/tuners/e4000* | |
3206 | ||
1da177e4 | 3207 | EATA-DMA SCSI DRIVER |
8b58be88 | 3208 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3209 | L: [email protected] |
3210 | L: [email protected] | |
1da177e4 | 3211 | S: Maintained |
679655da | 3212 | F: drivers/scsi/eata* |
1da177e4 LT |
3213 | |
3214 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 3215 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
3216 | L: [email protected] |
3217 | S: Maintained | |
679655da | 3218 | F: drivers/scsi/eata.c |
1da177e4 LT |
3219 | |
3220 | EATA-PIO SCSI DRIVER | |
8b58be88 | 3221 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3222 | L: [email protected] |
3223 | L: [email protected] | |
1da177e4 | 3224 | S: Maintained |
679655da | 3225 | F: drivers/scsi/eata_pio.* |
1da177e4 | 3226 | |
91952bc0 AP |
3227 | EC100 MEDIA DRIVER |
3228 | M: Antti Palosaari <[email protected]> | |
3229 | L: [email protected] | |
3230 | W: http://linuxtv.org/ | |
3231 | W: http://palosaari.fi/linux/ | |
3232 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3233 | T: git git://linuxtv.org/anttip/media_tree.git | |
3234 | S: Maintained | |
3235 | F: drivers/media/dvb-frontends/ec100* | |
3236 | ||
237fead6 | 3237 | ECRYPT FILE SYSTEM |
0de9adf2 | 3238 | M: Tyler Hicks <[email protected]> |
a058bfbb | 3239 | L: [email protected] |
24a923e4 | 3240 | W: http://ecryptfs.org |
6dc7516e | 3241 | W: https://launchpad.net/ecryptfs |
237fead6 | 3242 | S: Supported |
679655da JP |
3243 | F: Documentation/filesystems/ecryptfs.txt |
3244 | F: fs/ecryptfs/ | |
237fead6 | 3245 | |
da9bb1d2 | 3246 | EDAC-CORE |
8b58be88 | 3247 | M: Doug Thompson <[email protected]> |
aa15aa0e BP |
3248 | M: Borislav Petkov <[email protected]> |
3249 | M: Mauro Carvalho Chehab <[email protected]> | |
91445c72 | 3250 | L: [email protected] |
0e438e3f | 3251 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3252 | S: Supported |
679655da | 3253 | F: Documentation/edac.txt |
91445c72 | 3254 | F: drivers/edac/ |
679655da | 3255 | F: include/linux/edac.h |
0e438e3f | 3256 | |
c476c23b | 3257 | EDAC-AMD64 |
8b58be88 | 3258 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3259 | M: Borislav Petkov <[email protected]> |
91445c72 | 3260 | L: [email protected] |
c476c23b | 3261 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3262 | S: Maintained |
c476c23b BP |
3263 | F: drivers/edac/amd64_edac* |
3264 | ||
836dae5d RR |
3265 | EDAC-CALXEDA |
3266 | M: Doug Thompson <[email protected]> | |
3267 | M: Robert Richter <[email protected]> | |
3268 | L: [email protected] | |
3269 | W: bluesmoke.sourceforge.net | |
3270 | S: Maintained | |
3271 | F: drivers/edac/highbank* | |
3272 | ||
f65aad41 RB |
3273 | EDAC-CAVIUM |
3274 | M: Ralf Baechle <[email protected]> | |
3275 | M: David Daney <[email protected]> | |
3276 | L: [email protected] | |
3277 | L: [email protected] | |
3278 | W: bluesmoke.sourceforge.net | |
3279 | S: Supported | |
3280 | F: drivers/edac/octeon_edac* | |
3281 | ||
0e438e3f | 3282 | EDAC-E752X |
8b58be88 JP |
3283 | M: Mark Gross <[email protected]> |
3284 | M: Doug Thompson <[email protected]> | |
91445c72 | 3285 | L: [email protected] |
0e438e3f DP |
3286 | W: bluesmoke.sourceforge.net |
3287 | S: Maintained | |
679655da | 3288 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3289 | |
3290 | EDAC-E7XXX | |
8b58be88 | 3291 | M: Doug Thompson <[email protected]> |
91445c72 | 3292 | L: [email protected] |
0e438e3f DP |
3293 | W: bluesmoke.sourceforge.net |
3294 | S: Maintained | |
679655da | 3295 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3296 | |
77c5f5d2 | 3297 | EDAC-GHES |
1b2c14b4 | 3298 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3299 | L: [email protected] |
3300 | W: bluesmoke.sourceforge.net | |
3301 | S: Maintained | |
2caa67a6 | 3302 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3303 | |
6bc78404 | 3304 | EDAC-I82443BXGX |
8b58be88 | 3305 | M: Tim Small <[email protected]> |
91445c72 | 3306 | L: [email protected] |
6bc78404 DT |
3307 | W: bluesmoke.sourceforge.net |
3308 | S: Maintained | |
679655da | 3309 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3310 | |
3311 | EDAC-I3000 | |
8b58be88 | 3312 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3313 | L: [email protected] |
6bc78404 DT |
3314 | W: bluesmoke.sourceforge.net |
3315 | S: Maintained | |
679655da | 3316 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3317 | |
3318 | EDAC-I5000 | |
8b58be88 | 3319 | M: Doug Thompson <[email protected]> |
91445c72 | 3320 | L: [email protected] |
ba9a5918 DT |
3321 | W: bluesmoke.sourceforge.net |
3322 | S: Maintained | |
679655da | 3323 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3324 | |
44c12cb2 | 3325 | EDAC-I5400 |
1b2c14b4 | 3326 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3327 | L: [email protected] |
44c12cb2 MCC |
3328 | W: bluesmoke.sourceforge.net |
3329 | S: Maintained | |
679655da | 3330 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3331 | |
3c9c92b6 | 3332 | EDAC-I7300 |
1b2c14b4 | 3333 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3334 | L: [email protected] |
3335 | W: bluesmoke.sourceforge.net | |
3336 | S: Maintained | |
3337 | F: drivers/edac/i7300_edac.c | |
3338 | ||
67c89316 | 3339 | EDAC-I7CORE |
1b2c14b4 | 3340 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3341 | L: [email protected] |
3342 | W: bluesmoke.sourceforge.net | |
3343 | S: Maintained | |
70aff0ce | 3344 | F: drivers/edac/i7core_edac.c |
67c89316 | 3345 | |
ba9a5918 | 3346 | EDAC-I82975X |
8b58be88 | 3347 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3348 | M: "Arvind R." <[email protected]> |
91445c72 | 3349 | L: [email protected] |
ba9a5918 DT |
3350 | W: bluesmoke.sourceforge.net |
3351 | S: Maintained | |
679655da | 3352 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3353 | |
ccdfb979 JT |
3354 | EDAC-MPC85XX |
3355 | M: Johannes Thumshirn <[email protected]> | |
3356 | L: [email protected] | |
3357 | W: bluesmoke.sourceforge.net | |
3358 | S: Maintained | |
3359 | F: drivers/edac/mpc85xx_edac.[ch] | |
3360 | ||
ba9a5918 | 3361 | EDAC-PASEMI |
8b58be88 | 3362 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3363 | L: [email protected] |
6bc78404 DT |
3364 | W: bluesmoke.sourceforge.net |
3365 | S: Maintained | |
679655da | 3366 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3367 | |
0e438e3f | 3368 | EDAC-R82600 |
8b58be88 | 3369 | M: Tim Small <[email protected]> |
91445c72 | 3370 | L: [email protected] |
0e438e3f DP |
3371 | W: bluesmoke.sourceforge.net |
3372 | S: Maintained | |
679655da | 3373 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3374 | |
4d096ca7 | 3375 | EDAC-SBRIDGE |
1b2c14b4 | 3376 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3377 | L: [email protected] |
3378 | W: bluesmoke.sourceforge.net | |
3379 | S: Maintained | |
3380 | F: drivers/edac/sb_edac.c | |
3381 | ||
af39917d CL |
3382 | EDIROL UA-101/UA-1000 DRIVER |
3383 | M: Clemens Ladisch <[email protected]> | |
3384 | L: [email protected] (moderated for non-subscribers) | |
3385 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3386 | S: Maintained | |
3387 | F: sound/usb/misc/ua101.c | |
3388 | ||
1f7df953 MF |
3389 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3390 | M: Matt Fleming <[email protected]> | |
3391 | L: [email protected] | |
78bef24e | 3392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3393 | S: Maintained |
3394 | F: Documentation/x86/efi-stub.txt | |
3395 | F: arch/ia64/kernel/efi.c | |
3396 | F: arch/x86/boot/compressed/eboot.[ch] | |
3397 | F: arch/x86/include/asm/efi.h | |
3398 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3399 | F: drivers/firmware/efi/* |
1f7df953 MF |
3400 | F: include/linux/efi*.h |
3401 | ||
d68772b7 MF |
3402 | EFI VARIABLE FILESYSTEM |
3403 | M: Matthew Garrett <[email protected]> | |
3404 | M: Jeremy Kerr <[email protected]> | |
3405 | M: Matt Fleming <[email protected]> | |
3406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3407 | L: [email protected] | |
3408 | S: Maintained | |
3409 | F: fs/efivarfs/ | |
3410 | ||
85a00d9b PJ |
3411 | EFIFB FRAMEBUFFER DRIVER |
3412 | L: [email protected] | |
3413 | M: Peter Jones <[email protected]> | |
3414 | S: Maintained | |
3415 | F: drivers/video/efifb.c | |
3416 | ||
0bee8d28 JT |
3417 | EFS FILESYSTEM |
3418 | W: http://aeschi.ch.eu.org/efs/ | |
3419 | S: Orphan | |
679655da | 3420 | F: fs/efs/ |
0bee8d28 | 3421 | |
4480f15b | 3422 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3423 | M: Hoang-Nam Nguyen <[email protected]> |
3424 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3425 | L: [email protected] |
fab97220 | 3426 | S: Supported |
679655da | 3427 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3428 | |
aa8a9e25 | 3429 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3430 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3431 | L: [email protected] |
3432 | S: Maintained | |
9aa32835 | 3433 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3434 | |
f0319efe | 3435 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3436 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3437 | L: [email protected] |
3438 | W: http://linuxtv.org | |
3439 | T: git git://linuxtv.org/media_tree.git | |
3440 | S: Maintained | |
3441 | F: drivers/media/usb/em28xx/ | |
3442 | ||
3e3a7d66 | 3443 | EMBEDDED LINUX |
8b58be88 JP |
3444 | M: Paul Gortmaker <[email protected]> |
3445 | M: Matt Mackall <[email protected]> | |
3446 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3447 | L: [email protected] |
3448 | S: Maintained | |
3449 | ||
3a1c1d44 | 3450 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3451 | M: James Smart <[email protected]> |
ce00f85c JC |
3452 | L: [email protected] |
3453 | W: http://sourceforge.net/projects/lpfcxxxx | |
3454 | S: Supported | |
679655da | 3455 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3456 | |
5f5bac82 | 3457 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3458 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3459 | S: Maintained |
3460 | F: drivers/misc/cb710/ | |
3461 | F: drivers/mmc/host/cb710-mmc.* | |
3462 | F: include/linux/cb710.h | |
3463 | ||
931e39a1 ML |
3464 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3465 | M: Maxim Levitsky <[email protected]> | |
3466 | S: Maintained | |
2a837449 | 3467 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3468 | |
ec207dcc GS |
3469 | ENHANCED ERROR HANDLING (EEH) |
3470 | M: Gavin Shan <[email protected]> | |
3471 | L: [email protected] | |
3472 | S: Supported | |
3473 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3474 | F: arch/powerpc/kernel/eeh*.c | |
3475 | ||
d5ca9006 | 3476 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3477 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3478 | S: Maintained |
084bad91 | 3479 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3480 | F: drivers/video/s1d13xxxfb.c |
3481 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3482 | |
1da177e4 | 3483 | ETHERNET BRIDGE |
adbbf69d | 3484 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3485 | L: [email protected] |
4c325313 | 3486 | L: [email protected] |
c996d8b9 | 3487 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3488 | S: Maintained |
679655da JP |
3489 | F: include/linux/netfilter_bridge/ |
3490 | F: net/bridge/ | |
1da177e4 | 3491 | |
22f08ad9 FF |
3492 | ETHERNET PHY LIBRARY |
3493 | M: Florian Fainelli <[email protected]> | |
3494 | L: [email protected] | |
3495 | S: Maintained | |
3496 | F: include/linux/phy.h | |
3497 | F: include/linux/phy_fixed.h | |
3498 | F: drivers/net/phy/ | |
3499 | F: Documentation/networking/phy.txt | |
3500 | F: drivers/of/of_mdio.c | |
3501 | F: drivers/of/of_net.c | |
3502 | ||
1da177e4 | 3503 | EXT2 FILE SYSTEM |
01971952 | 3504 | M: Jan Kara <[email protected]> |
72be2ccf | 3505 | L: [email protected] |
1da177e4 | 3506 | S: Maintained |
679655da JP |
3507 | F: Documentation/filesystems/ext2.txt |
3508 | F: fs/ext2/ | |
3509 | F: include/linux/ext2* | |
1da177e4 LT |
3510 | |
3511 | EXT3 FILE SYSTEM | |
01971952 | 3512 | M: Jan Kara <[email protected]> |
8b58be88 | 3513 | M: Andrew Morton <[email protected]> |
3c373a5f | 3514 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3515 | L: [email protected] |
3516 | S: Maintained | |
679655da JP |
3517 | F: Documentation/filesystems/ext3.txt |
3518 | F: fs/ext3/ | |
72be2ccf EM |
3519 | |
3520 | EXT4 FILE SYSTEM | |
8b58be88 | 3521 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3522 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3523 | L: [email protected] |
08a225f1 | 3524 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3525 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3526 | S: Maintained |
679655da JP |
3527 | F: Documentation/filesystems/ext4.txt |
3528 | F: fs/ext4/ | |
1da177e4 | 3529 | |
c5532b09 | 3530 | Extended Verification Module (EVM) |
74dd744f MZ |
3531 | M: Mimi Zohar <[email protected]> |
3532 | L: [email protected] | |
3533 | L: [email protected] | |
c5532b09 MZ |
3534 | S: Supported |
3535 | F: security/integrity/evm/ | |
3536 | ||
df6b3cfe MH |
3537 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3538 | M: MyungJoo Ham <[email protected]> | |
3539 | M: Chanwoo Choi <[email protected]> | |
3540 | L: [email protected] | |
81df63a9 | 3541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3542 | S: Maintained |
3543 | F: drivers/extcon/ | |
3544 | F: Documentation/extcon/ | |
3545 | ||
e2a75c44 JH |
3546 | EXYNOS DP DRIVER |
3547 | M: Jingoo Han <[email protected]> | |
3548 | L: [email protected] | |
3549 | S: Maintained | |
3550 | F: drivers/gpu/drm/exynos/exynos_dp* | |
3551 | ||
33ad3912 DL |
3552 | EXYNOS MIPI DISPLAY DRIVERS |
3553 | M: Inki Dae <[email protected]> | |
3554 | M: Donghwa Lee <[email protected]> | |
3555 | M: Kyungmin Park <[email protected]> | |
3556 | L: [email protected] | |
3557 | S: Maintained | |
3558 | F: drivers/video/exynos/exynos_mipi* | |
3559 | F: include/video/exynos_mipi* | |
3560 | ||
e53004e2 | 3561 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3562 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3563 | L: [email protected] |
3564 | S: Maintained | |
679655da JP |
3565 | F: Documentation/hwmon/f71805f |
3566 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3567 | |
eea977ed MB |
3568 | FC0011 TUNER DRIVER |
3569 | M: Michael Buesch <[email protected]> | |
3570 | L: [email protected] | |
3571 | S: Maintained | |
ccae7af2 MCC |
3572 | F: drivers/media/tuners/fc0011.h |
3573 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3574 | |
91952bc0 AP |
3575 | FC2580 MEDIA DRIVER |
3576 | M: Antti Palosaari <[email protected]> | |
3577 | L: [email protected] | |
3578 | W: http://linuxtv.org/ | |
3579 | W: http://palosaari.fi/linux/ | |
3580 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3581 | T: git git://linuxtv.org/anttip/media_tree.git | |
3582 | S: Maintained | |
3583 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3584 | |
88b2dbdb EP |
3585 | FANOTIFY |
3586 | M: Eric Paris <[email protected]> | |
3587 | S: Maintained | |
3588 | F: fs/notify/fanotify/ | |
3589 | F: include/linux/fanotify.h | |
c117ab84 | 3590 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3591 | |
1da177e4 | 3592 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3593 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3594 | W: http://www.farsite.co.uk/ |
3595 | S: Supported | |
679655da | 3596 | F: drivers/net/wan/farsync.* |
1da177e4 | 3597 | |
c5408b88 | 3598 | FAULT INJECTION SUPPORT |
8b58be88 | 3599 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3600 | S: Supported |
679655da JP |
3601 | F: Documentation/fault-injection/ |
3602 | F: lib/fault-inject.c | |
c5408b88 | 3603 | |
cae727db RL |
3604 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3605 | M: Robert Love <[email protected]> | |
f4aaea6d | 3606 | L: [email protected] |
cae727db RL |
3607 | W: www.Open-FCoE.org |
3608 | S: Supported | |
3609 | F: drivers/scsi/libfc/ | |
3610 | F: drivers/scsi/fcoe/ | |
3611 | F: include/scsi/fc/ | |
3612 | F: include/scsi/libfc.h | |
3613 | F: include/scsi/libfcoe.h | |
c117ab84 | 3614 | F: include/uapi/scsi/fc/ |
cae727db | 3615 | |
e2d1d6c0 | 3616 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 3617 | M: Jeff Layton <[email protected]> |
18156e7e | 3618 | M: J. Bruce Fields <[email protected]> |
e2d1d6c0 | 3619 | L: [email protected] |
1da177e4 | 3620 | S: Maintained |
679655da JP |
3621 | F: include/linux/fcntl.h |
3622 | F: include/linux/fs.h | |
c117ab84 CEB |
3623 | F: include/uapi/linux/fcntl.h |
3624 | F: include/uapi/linux/fs.h | |
679655da JP |
3625 | F: fs/fcntl.c |
3626 | F: fs/locks.c | |
1da177e4 | 3627 | |
e2d1d6c0 | 3628 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3629 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3630 | L: [email protected] |
173acc7c | 3631 | S: Maintained |
679655da | 3632 | F: fs/* |
173acc7c | 3633 | |
b26e0ed4 | 3634 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3635 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3636 | L: [email protected] |
3637 | S: Maintained | |
d5ca6918 JP |
3638 | F: drivers/hwmon/f75375s.c |
3639 | F: include/linux/f75375s.h | |
b26e0ed4 | 3640 | |
a331b0c3 CL |
3641 | FIREWIRE AUDIO DRIVERS |
3642 | M: Clemens Ladisch <[email protected]> | |
3643 | L: [email protected] (moderated for non-subscribers) | |
3644 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3645 | S: Maintained | |
3646 | F: sound/firewire/ | |
3647 | ||
eb86ec51 SR |
3648 | FIREWIRE MEDIA DRIVERS (firedtv) |
3649 | M: Stefan Richter <[email protected]> | |
3650 | L: [email protected] | |
3651 | L: [email protected] | |
3652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3653 | S: Maintained | |
3654 | F: drivers/media/firewire/ | |
3655 | ||
a511ce33 CB |
3656 | FIREWIRE SBP-2 TARGET |
3657 | M: Chris Boot <[email protected]> | |
3658 | L: [email protected] | |
3659 | L: [email protected] | |
3660 | L: [email protected] | |
3661 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3662 | S: Maintained | |
3663 | F: drivers/target/sbp/ | |
3664 | ||
7d2c86b5 | 3665 | FIREWIRE SUBSYSTEM |
8b58be88 | 3666 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3667 | L: [email protected] |
958a29cb | 3668 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3669 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3670 | S: Maintained |
679655da | 3671 | F: drivers/firewire/ |
8f06ce3b SR |
3672 | F: include/linux/firewire.h |
3673 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3674 | F: tools/firewire/ |
e2d1d6c0 RD |
3675 | |
3676 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3677 | M: Ming Lei <[email protected]> |
3678 | L: [email protected] | |
3679 | S: Maintained | |
679655da JP |
3680 | F: Documentation/firmware_class/ |
3681 | F: drivers/base/firmware*.c | |
3682 | F: include/linux/firmware.h | |
e2d1d6c0 | 3683 | |
f730e3dc | 3684 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3685 | M: Joshua Morris <[email protected]> |
3686 | M: Philip Kelleher <[email protected]> | |
3687 | S: Maintained | |
3688 | F: drivers/block/rsxx/ | |
3689 | ||
8206f664 JK |
3690 | FLOPPY DRIVER |
3691 | M: Jiri Kosina <[email protected]> | |
3692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3693 | S: Odd fixes | |
3694 | F: drivers/block/floppy.c | |
3695 | ||
9c9f32ed AR |
3696 | FMC SUBSYSTEM |
3697 | M: Alessandro Rubini <[email protected]> | |
3698 | W: http://www.ohwr.org/projects/fmc-bus | |
3699 | S: Supported | |
3700 | F: drivers/fmc/ | |
3701 | F: include/linux/fmc*.h | |
3702 | F: include/linux/ipmi-fru.h | |
3703 | K: fmc_d.*register | |
3704 | ||
e2d1d6c0 | 3705 | FPU EMULATOR |
8b58be88 | 3706 | M: Bill Metzenthen <[email protected]> |
e769980f | 3707 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3708 | S: Maintained |
679655da | 3709 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3710 | |
3711 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3712 | L: [email protected] |
c173bfac | 3713 | S: Orphan |
679655da JP |
3714 | F: drivers/net/wan/dlci.c |
3715 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3716 | |
3717 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3718 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3719 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3720 | L: [email protected] |
e2d1d6c0 | 3721 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3722 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3723 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3724 | S: Maintained |
679655da | 3725 | F: Documentation/fb/ |
d958c62c | 3726 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3727 | F: drivers/video/ |
3728 | F: include/video/ | |
679655da | 3729 | F: include/linux/fb.h |
c117ab84 CEB |
3730 | F: include/uapi/video/ |
3731 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3732 | |
a57c188e | 3733 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3734 | M: Timur Tabi <[email protected]> |
a57c188e | 3735 | L: [email protected] |
c4ef9bc4 | 3736 | S: Maintained |
a57c188e TT |
3737 | F: drivers/video/fsl-diu-fb.* |
3738 | ||
e2d1d6c0 | 3739 | FREESCALE DMA DRIVER |
8b58be88 JP |
3740 | M: Li Yang <[email protected]> |
3741 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3742 | L: [email protected] |
e2d1d6c0 | 3743 | S: Maintained |
679655da | 3744 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3745 | |
3746 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3747 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3748 | L: [email protected] |
846557d3 | 3749 | L: [email protected] |
0d2b405a | 3750 | S: Maintained |
679655da | 3751 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3752 | |
60e8c5ab | 3753 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3754 | M: Sascha Hauer <[email protected]> |
c69f677c | 3755 | L: [email protected] |
efc03ecb | 3756 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3757 | S: Maintained |
bad985a1 | 3758 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3759 | F: drivers/video/imxfb.c |
60e8c5ab | 3760 | |
4689a6b1 | 3761 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3762 | M: Pantelis Antoniou <[email protected]> |
3763 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3764 | L: [email protected] |
4689a6b1 PA |
3765 | L: [email protected] |
3766 | S: Maintained | |
ec21e2ec | 3767 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3768 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3769 | |
d9e9d82c | 3770 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3771 | L: [email protected] |
c4ef9bc4 | 3772 | S: Orphan |
679655da JP |
3773 | F: arch/powerpc/sysdev/qe_lib/ |
3774 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3775 | |
b55ef929 | 3776 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3777 | M: Li Yang <[email protected]> |
6372594a | 3778 | L: [email protected] |
a4724ed6 | 3779 | L: [email protected] |
a7205b30 | 3780 | S: Maintained |
5429c731 | 3781 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3782 | |
beaf53bf | 3783 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3784 | M: Li Yang <[email protected]> |
beaf53bf | 3785 | L: [email protected] |
a4724ed6 | 3786 | L: [email protected] |
beaf53bf | 3787 | S: Maintained |
ec21e2ec | 3788 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3789 | |
d9e9d82c | 3790 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3791 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3792 | L: [email protected] |
c4ef9bc4 | 3793 | S: Maintained |
df621252 | 3794 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3795 | |
3796 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3797 | M: Timur Tabi <[email protected]> |
93711660 | 3798 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3799 | L: [email protected] |
c4ef9bc4 | 3800 | S: Maintained |
69aefcea JP |
3801 | F: sound/soc/fsl/fsl* |
3802 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3803 | |
1da177e4 | 3804 | FREEVXFS FILESYSTEM |
8b58be88 | 3805 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3806 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3807 | S: Maintained | |
679655da | 3808 | F: fs/freevxfs/ |
1da177e4 | 3809 | |
71038f52 | 3810 | FREEZER |
49db1903 | 3811 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 3812 | M: Pavel Machek <[email protected]> |
bf1c138e | 3813 | L: [email protected] |
71038f52 | 3814 | S: Supported |
679655da JP |
3815 | F: Documentation/power/freezing-of-tasks.txt |
3816 | F: include/linux/freezer.h | |
3817 | F: kernel/freezer.c | |
71038f52 | 3818 | |
839a1f79 KRW |
3819 | FRONTSWAP API |
3820 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3821 | L: [email protected] | |
3822 | S: Maintained | |
3823 | F: mm/frontswap.c | |
3824 | F: include/linux/frontswap.h | |
3825 | ||
a5432f5a | 3826 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3827 | M: David Howells <[email protected]> |
a5432f5a DH |
3828 | L: [email protected] |
3829 | S: Supported | |
3830 | F: Documentation/filesystems/caching/ | |
3831 | F: fs/fscache/ | |
3832 | F: include/linux/fscache*.h | |
3833 | ||
f58ad8f5 | 3834 | F2FS FILE SYSTEM |
9b29d481 | 3835 | M: Jaegeuk Kim <[email protected]> |
f6238a72 | 3836 | M: Changman Lee <[email protected]> |
f58ad8f5 JK |
3837 | L: [email protected] |
3838 | W: http://en.wikipedia.org/wiki/F2FS | |
3839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3840 | S: Maintained | |
3841 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3842 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3843 | F: fs/f2fs/ |
3844 | F: include/linux/f2fs_fs.h | |
3845 | ||
5ab7ffea | 3846 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3847 | M: David Howells <[email protected]> |
1da177e4 | 3848 | S: Maintained |
679655da | 3849 | F: arch/frv/ |
1da177e4 | 3850 | |
20b93734 | 3851 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3852 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3853 | L: [email protected] |
20b93734 | 3854 | S: Maintained |
679655da | 3855 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3856 | |
4da621b6 HK |
3857 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3858 | M: Kyungmin Park <[email protected]> | |
3859 | M: Heungjun Kim <[email protected]> | |
3860 | L: [email protected] | |
3861 | S: Maintained | |
90d72ac6 | 3862 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3863 | F: include/media/m5mols.h |
3864 | ||
2d24c490 RG |
3865 | FUJITSU TABLET EXTRAS |
3866 | M: Robert Gerlach <[email protected]> | |
3867 | L: [email protected] | |
3868 | S: Maintained | |
3869 | F: drivers/platform/x86/fujitsu-tablet.c | |
3870 | ||
04578f17 | 3871 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3872 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3873 | L: [email protected] |
3874 | W: http://fuse.sourceforge.net/ | |
3875 | S: Maintained | |
679655da | 3876 | F: fs/fuse/ |
c117ab84 | 3877 | F: include/uapi/linux/fuse.h |
04578f17 | 3878 | |
1da177e4 | 3879 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3880 | M: Rik Faith <[email protected]> |
1da177e4 | 3881 | L: [email protected] |
baaea1dc | 3882 | S: Odd Fixes (e.g., new signatures) |
679655da | 3883 | F: drivers/scsi/fdomain.* |
1da177e4 | 3884 | |
d8e2162c PO |
3885 | GCOV BASED KERNEL PROFILING |
3886 | M: Peter Oberparleiter <[email protected]> | |
3887 | S: Maintained | |
3888 | F: kernel/gcov/ | |
3889 | F: Documentation/gcov.txt | |
3890 | ||
1da177e4 | 3891 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3892 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3893 | L: [email protected] |
3894 | W: http://www.icp-vortex.com/ | |
3895 | S: Supported | |
679655da | 3896 | F: drivers/scsi/gdt* |
1da177e4 | 3897 | |
3169a1c7 HV |
3898 | GEMTEK FM RADIO RECEIVER DRIVER |
3899 | M: Hans Verkuil <[email protected]> | |
3900 | L: [email protected] | |
3901 | T: git git://linuxtv.org/media_tree.git | |
3902 | W: http://linuxtv.org | |
3903 | S: Maintained | |
3904 | F: drivers/media/radio/radio-gemtek* | |
3905 | ||
1c23af90 | 3906 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3907 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3908 | S: Supported |
679655da JP |
3909 | F: drivers/i2c/busses/i2c-gpio.c |
3910 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3911 | |
92ed1a76 PK |
3912 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3913 | M: Peter Korsgaard <[email protected]> | |
3914 | L: [email protected] | |
3915 | S: Supported | |
e7065e20 JD |
3916 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3917 | F: include/linux/i2c-mux-gpio.h | |
3918 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3919 | |
9251ce95 | 3920 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3921 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3922 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3923 | S: Maintained | |
679655da JP |
3924 | F: drivers/net/wan/c101.c |
3925 | F: drivers/net/wan/hd6457* | |
3926 | F: drivers/net/wan/hdlc* | |
3927 | F: drivers/net/wan/n2.c | |
3928 | F: drivers/net/wan/pc300too.c | |
3929 | F: drivers/net/wan/pci200syn.c | |
3930 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3931 | |
1527aab6 | 3932 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3933 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3934 | L: [email protected] |
3935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3936 | S: Maintained | |
14430813 JP |
3937 | F: include/asm-generic/ |
3938 | F: include/uapi/asm-generic/ | |
1527aab6 | 3939 | |
ff764963 KVA |
3940 | GENERIC PHY FRAMEWORK |
3941 | M: Kishon Vijay Abraham I <[email protected]> | |
3942 | L: [email protected] | |
3943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
3944 | S: Supported | |
3945 | F: drivers/phy/ | |
3946 | F: include/linux/phy/ | |
3947 | ||
ccb86a69 | 3948 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3949 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3950 | L: [email protected] |
ccb86a69 MT |
3951 | S: Supported |
3952 | F: drivers/uio/uio_pci_generic.c | |
3953 | ||
f8f1ec73 JP |
3954 | GET_MAINTAINER SCRIPT |
3955 | M: Joe Perches <[email protected]> | |
3956 | S: Maintained | |
3957 | F: scripts/get_maintainer.pl | |
3958 | ||
5be7b50f | 3959 | GFS2 FILE SYSTEM |
8b58be88 | 3960 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3961 | L: [email protected] |
5be7b50f | 3962 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3963 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3965 | S: Supported |
679655da JP |
3966 | F: Documentation/filesystems/gfs2*.txt |
3967 | F: fs/gfs2/ | |
c117ab84 | 3968 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3969 | |
0a34eb8f | 3970 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3971 | M: Hansjoerg Lipp <[email protected]> |
3972 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3973 | L: [email protected] |
3974 | W: http://gigaset307x.sourceforge.net/ | |
3975 | S: Maintained | |
679655da JP |
3976 | F: Documentation/isdn/README.gigaset |
3977 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3978 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3979 | |
a0dc00b4 | 3980 | GPIO SUBSYSTEM |
e4651a9f | 3981 | M: Linus Walleij <[email protected]> |
f2fa75cd | 3982 | M: Alexandre Courbot <[email protected]> |
d15b7179 | 3983 | L: [email protected] |
f2fa75cd LW |
3984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
3985 | S: Maintained | |
3986 | F: Documentation/gpio/ | |
a0dc00b4 GL |
3987 | F: drivers/gpio/ |
3988 | F: include/linux/gpio* | |
9b692346 | 3989 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3990 | |
71a6d0af HW |
3991 | GRE DEMULTIPLEXER DRIVER |
3992 | M: Dmitry Kozlov <[email protected]> | |
3993 | L: [email protected] | |
3994 | S: Maintained | |
11c26770 JP |
3995 | F: net/ipv4/gre_demux.c |
3996 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3997 | F: include/net/gre.h |
3998 | ||
d4c41139 KG |
3999 | GRETH 10/100/1G Ethernet MAC device driver |
4000 | M: Kristoffer Glembo <[email protected]> | |
4001 | L: [email protected] | |
4002 | S: Maintained | |
a31a96ad | 4003 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4004 | |
e8deeae2 | 4005 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4006 | M: Frank Zago <[email protected]> |
661263b5 | 4007 | L: [email protected] |
275ffde4 | 4008 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4009 | S: Maintained |
0c0d06ca | 4010 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4011 | |
4b3fa3c4 OL |
4012 | GSPCA GL860 SUBDRIVER |
4013 | M: Olivier Lorin <[email protected]> | |
4014 | L: [email protected] | |
275ffde4 | 4015 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4016 | S: Maintained |
0c0d06ca | 4017 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4018 | |
e8deeae2 | 4019 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4020 | M: Erik Andren <[email protected]> |
661263b5 | 4021 | L: [email protected] |
275ffde4 | 4022 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4023 | S: Maintained |
0c0d06ca | 4024 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4025 | |
4026 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4027 | M: Hans de Goede <[email protected]> |
661263b5 | 4028 | L: [email protected] |
275ffde4 | 4029 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4030 | S: Maintained |
0c0d06ca | 4031 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4032 | |
261982f1 | 4033 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4034 | M: Brian Johnson <[email protected]> |
261982f1 | 4035 | L: [email protected] |
275ffde4 | 4036 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4037 | S: Maintained |
0c0d06ca | 4038 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4039 | |
e8deeae2 | 4040 | GSPCA T613 SUBDRIVER |
8b58be88 | 4041 | M: Leandro Costantino <[email protected]> |
661263b5 | 4042 | L: [email protected] |
275ffde4 | 4043 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4044 | S: Maintained |
0c0d06ca | 4045 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4046 | |
4047 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4048 | M: Hans de Goede <[email protected]> |
661263b5 | 4049 | L: [email protected] |
275ffde4 | 4050 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4051 | S: Maintained |
0c0d06ca | 4052 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4053 | |
584ec979 DB |
4054 | GUID PARTITION TABLE (GPT) |
4055 | M: Davidlohr Bueso <[email protected]> | |
4056 | L: [email protected] | |
4057 | S: Maintained | |
4058 | F: block/partitions/efi.* | |
4059 | ||
aa3c598b EG |
4060 | STK1160 USB VIDEO CAPTURE DRIVER |
4061 | M: Ezequiel Garcia <[email protected]> | |
4062 | L: [email protected] | |
275ffde4 | 4063 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4064 | S: Maintained |
4065 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4066 | |
71a6d0af HW |
4067 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4068 | M: Frank Seidel <[email protected]> | |
4069 | L: [email protected] | |
4070 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4071 | S: Maintained | |
4072 | F: drivers/platform/x86/hdaps.c | |
4073 | ||
48fc9e26 HV |
4074 | HDPVR USB VIDEO ENCODER DRIVER |
4075 | M: Hans Verkuil <[email protected]> | |
4076 | L: [email protected] | |
4077 | T: git git://linuxtv.org/media_tree.git | |
4078 | W: http://linuxtv.org | |
4079 | S: Odd Fixes | |
14430813 | 4080 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4081 | |
71a6d0af | 4082 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4083 | M: Naoya Horiguchi <[email protected]> |
71a6d0af | 4084 | L: [email protected] |
71a6d0af HW |
4085 | S: Maintained |
4086 | F: mm/memory-failure.c | |
4087 | F: mm/hwpoison-inject.c | |
4088 | ||
4089 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4090 | L: [email protected] | |
4091 | S: Odd Fixes | |
4092 | F: drivers/tty/hvc/ | |
4093 | ||
5b543965 | 4094 | HARDWARE MONITORING |
7c81c60f | 4095 | M: Jean Delvare <[email protected]> |
ca462085 | 4096 | M: Guenter Roeck <[email protected]> |
5b543965 | 4097 | L: [email protected] |
595142e0 | 4098 | W: http://www.lm-sensors.org/ |
9e012c1a | 4099 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 4100 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4101 | S: Maintained |
047f4ec2 | 4102 | F: Documentation/hwmon/ |
679655da | 4103 | F: drivers/hwmon/ |
047f4ec2 | 4104 | F: include/linux/hwmon*.h |
5b543965 | 4105 | |
844dd05f | 4106 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4107 | M: Matt Mackall <[email protected]> |
4108 | M: Herbert Xu <[email protected]> | |
4109 | S: Odd fixes | |
679655da JP |
4110 | F: Documentation/hw_random.txt |
4111 | F: drivers/char/hw_random/ | |
4112 | F: include/linux/hw_random.h | |
844dd05f | 4113 | |
8b37fcfc OBC |
4114 | HARDWARE SPINLOCK CORE |
4115 | M: Ohad Ben-Cohen <[email protected]> | |
4116 | S: Maintained | |
4117 | F: Documentation/hwspinlock.txt | |
4118 | F: drivers/hwspinlock/hwspinlock_* | |
4119 | F: include/linux/hwspinlock.h | |
4120 | ||
1da177e4 | 4121 | HARMONY SOUND DRIVER |
ac6aecbf | 4122 | L: [email protected] |
1da177e4 | 4123 | S: Maintained |
679655da | 4124 | F: sound/parisc/harmony.* |
1da177e4 | 4125 | |
91952bc0 AP |
4126 | HD29L2 MEDIA DRIVER |
4127 | M: Antti Palosaari <[email protected]> | |
4128 | L: [email protected] | |
4129 | W: http://linuxtv.org/ | |
4130 | W: http://palosaari.fi/linux/ | |
4131 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4132 | T: git git://linuxtv.org/anttip/media_tree.git | |
4133 | S: Maintained | |
4134 | F: drivers/media/dvb-frontends/hd29l2* | |
4135 | ||
e2d1d6c0 | 4136 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 4137 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
4138 | L: [email protected] |
4139 | S: Maintained | |
679655da JP |
4140 | F: Documentation/blockdev/cpqarray.txt |
4141 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4142 | |
9257aa49 | 4143 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 4144 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
4145 | L: [email protected] |
4146 | S: Supported | |
4147 | F: Documentation/scsi/hpsa.txt | |
4148 | F: drivers/scsi/hpsa*.[ch] | |
4149 | F: include/linux/cciss*.h | |
c117ab84 | 4150 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4151 | |
e2d1d6c0 | 4152 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 4153 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
4154 | L: [email protected] |
4155 | S: Supported | |
679655da JP |
4156 | F: Documentation/blockdev/cciss.txt |
4157 | F: drivers/block/cciss* | |
4158 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4159 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4160 | |
1da177e4 | 4161 | HFS FILESYSTEM |
6cf515e1 GU |
4162 | L: [email protected] |
4163 | S: Orphan | |
679655da JP |
4164 | F: Documentation/filesystems/hfs.txt |
4165 | F: fs/hfs/ | |
1da177e4 | 4166 | |
ef575f47 GU |
4167 | HFSPLUS FILESYSTEM |
4168 | L: [email protected] | |
4169 | S: Orphan | |
4170 | F: Documentation/filesystems/hfsplus.txt | |
4171 | F: fs/hfsplus/ | |
4172 | ||
1da177e4 | 4173 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4174 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
4175 | L: [email protected] |
4176 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4177 | S: Maintained | |
679655da | 4178 | F: drivers/video/hgafb.c |
1da177e4 | 4179 | |
4480f15b | 4180 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4181 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 4182 | M: Pavel Machek <[email protected]> |
bf1c138e | 4183 | L: [email protected] |
e2d1d6c0 | 4184 | S: Supported |
679655da JP |
4185 | F: arch/x86/power/ |
4186 | F: drivers/base/power/ | |
4187 | F: kernel/power/ | |
4188 | F: include/linux/suspend.h | |
4189 | F: include/linux/freezer.h | |
4190 | F: include/linux/pm.h | |
679655da | 4191 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4192 | |
4ef4caad | 4193 | HID CORE LAYER |
8b58be88 | 4194 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 4195 | L: [email protected] |
54e5881d | 4196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4197 | S: Maintained |
679655da JP |
4198 | F: drivers/hid/ |
4199 | F: include/linux/hid* | |
c117ab84 | 4200 | F: include/uapi/linux/hid* |
4ef4caad | 4201 | |
38bed542 | 4202 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4203 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 4204 | L: [email protected] |
75fc2d37 | 4205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4206 | S: Maintained |
679655da JP |
4207 | F: Documentation/timers/ |
4208 | F: kernel/hrtimer.c | |
88606e80 TG |
4209 | F: kernel/time/clockevents.c |
4210 | F: kernel/time/tick*.* | |
4211 | F: kernel/time/timer_*.c | |
05ed8490 | 4212 | F: include/linux/clockchips.h |
679655da | 4213 | F: include/linux/hrtimer.h |
38bed542 | 4214 | |
1da177e4 | 4215 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4216 | L: [email protected] |
8b64f2a0 | 4217 | S: Orphan |
679655da JP |
4218 | F: drivers/net/hamradio/dmascc.c |
4219 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4220 | |
ede1e6f8 | 4221 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4222 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
4223 | W: http://www.highpoint-tech.com |
4224 | S: Supported | |
679655da JP |
4225 | F: Documentation/scsi/hptiop.txt |
4226 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4227 | |
1da177e4 | 4228 | HIPPI |
8b58be88 | 4229 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
4230 | L: [email protected] |
4231 | S: Maintained | |
679655da | 4232 | F: include/linux/hippidevice.h |
c117ab84 | 4233 | F: include/uapi/linux/if_hippi.h |
679655da | 4234 | F: net/802/hippi.c |
ff5a3b50 | 4235 | F: drivers/net/hippi/ |
1da177e4 | 4236 | |
ff1d2767 | 4237 | HOST AP DRIVER |
8b58be88 | 4238 | M: Jouni Malinen <[email protected]> |
85d32e7b | 4239 | L: [email protected] (subscribers-only) |
724c6b35 | 4240 | L: [email protected] |
ff1d2767 JM |
4241 | W: http://hostap.epitest.fi/ |
4242 | S: Maintained | |
679655da | 4243 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4244 | |
dd8cd779 | 4245 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4246 | L: [email protected] |
95c70215 | 4247 | S: Orphan |
679655da | 4248 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4249 | |
e2d1d6c0 | 4250 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4251 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4252 | S: Maintained |
7e25d724 | 4253 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4254 | |
7d2c86b5 | 4255 | HPET: High Precision Event Timers driver |
8b58be88 | 4256 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 4257 | S: Maintained |
679655da JP |
4258 | F: Documentation/timers/hpet.txt |
4259 | F: drivers/char/hpet.c | |
4260 | F: include/linux/hpet.h | |
c117ab84 | 4261 | F: include/uapi/linux/hpet.h |
b9b0332f | 4262 | |
e07b5d79 | 4263 | HPET: x86 |
9e06f631 | 4264 | S: Orphan |
679655da JP |
4265 | F: arch/x86/kernel/hpet.c |
4266 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4267 | |
1da177e4 | 4268 | HPFS FILESYSTEM |
8b58be88 | 4269 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
4270 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4271 | S: Maintained | |
679655da | 4272 | F: fs/hpfs/ |
1da177e4 | 4273 | |
3441cded | 4274 | HSI SUBSYSTEM |
56459ea9 SR |
4275 | M: Sebastian Reichel <[email protected]> |
4276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4277 | S: Maintained |
4278 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4279 | F: Documentation/hsi.txt |
3441cded SR |
4280 | F: drivers/hsi/ |
4281 | F: include/linux/hsi/ | |
4282 | F: include/uapi/linux/hsi/ | |
4283 | ||
7d2c86b5 | 4284 | HSO 3G MODEM DRIVER |
8b58be88 | 4285 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
4286 | W: http://www.pharscape.org |
4287 | S: Maintained | |
679655da | 4288 | F: drivers/net/usb/hso.c |
11cd29b0 | 4289 | |
19990e29 AB |
4290 | HSR NETWORK PROTOCOL |
4291 | M: Arvid Brodin <[email protected]> | |
4292 | L: [email protected] | |
4293 | S: Maintained | |
4294 | F: net/hsr/ | |
4295 | ||
5a18c343 | 4296 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4297 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
4298 | L: [email protected] |
4299 | S: Maintained | |
679655da | 4300 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4301 | |
1da177e4 | 4302 | HUGETLB FILESYSTEM |
6d49e352 | 4303 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 4304 | S: Maintained |
679655da | 4305 | F: fs/hugetlbfs/ |
1da177e4 | 4306 | |
05183189 S |
4307 | Hyper-V CORE AND DRIVERS |
4308 | M: K. Y. Srinivasan <[email protected]> | |
4309 | M: Haiyang Zhang <[email protected]> | |
4310 | L: [email protected] | |
4311 | S: Maintained | |
a4162747 HZ |
4312 | F: arch/x86/include/asm/mshyperv.h |
4313 | F: arch/x86/include/uapi/asm/hyperv.h | |
4314 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4315 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4316 | F: drivers/hv/ |
f92ca80b | 4317 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4318 | F: drivers/net/hyperv/ |
a4162747 HZ |
4319 | F: drivers/scsi/storvsc_drv.c |
4320 | F: drivers/video/hyperv_fb.c | |
4321 | F: include/linux/hyperv.h | |
4322 | F: tools/hv/ | |
05183189 | 4323 | |
d85c8a6a | 4324 | I2C OVER PARALLEL PORT |
7c81c60f | 4325 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4326 | L: [email protected] |
4327 | S: Maintained | |
4328 | F: Documentation/i2c/busses/i2c-parport | |
4329 | F: Documentation/i2c/busses/i2c-parport-light | |
4330 | F: drivers/i2c/busses/i2c-parport.c | |
4331 | F: drivers/i2c/busses/i2c-parport-light.c | |
4332 | ||
4333 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4334 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4335 | L: [email protected] |
4336 | S: Maintained | |
4337 | F: Documentation/i2c/busses/i2c-ali1535 | |
4338 | F: Documentation/i2c/busses/i2c-ali1563 | |
4339 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4340 | F: Documentation/i2c/busses/i2c-amd756 | |
4341 | F: Documentation/i2c/busses/i2c-amd8111 | |
4342 | F: Documentation/i2c/busses/i2c-i801 | |
4343 | F: Documentation/i2c/busses/i2c-nforce2 | |
4344 | F: Documentation/i2c/busses/i2c-piix4 | |
4345 | F: Documentation/i2c/busses/i2c-sis5595 | |
4346 | F: Documentation/i2c/busses/i2c-sis630 | |
4347 | F: Documentation/i2c/busses/i2c-sis96x | |
4348 | F: Documentation/i2c/busses/i2c-via | |
4349 | F: Documentation/i2c/busses/i2c-viapro | |
4350 | F: drivers/i2c/busses/i2c-ali1535.c | |
4351 | F: drivers/i2c/busses/i2c-ali1563.c | |
4352 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4353 | F: drivers/i2c/busses/i2c-amd756.c | |
4354 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4355 | F: drivers/i2c/busses/i2c-amd8111.c | |
4356 | F: drivers/i2c/busses/i2c-i801.c | |
4357 | F: drivers/i2c/busses/i2c-isch.c | |
4358 | F: drivers/i2c/busses/i2c-nforce2.c | |
4359 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4360 | F: drivers/i2c/busses/i2c-piix4.c | |
4361 | F: drivers/i2c/busses/i2c-sis5595.c | |
4362 | F: drivers/i2c/busses/i2c-sis630.c | |
4363 | F: drivers/i2c/busses/i2c-sis96x.c | |
4364 | F: drivers/i2c/busses/i2c-via.c | |
4365 | F: drivers/i2c/busses/i2c-viapro.c | |
4366 | ||
cb7f07a4 NH |
4367 | I2C/SMBUS ISMT DRIVER |
4368 | M: Seth Heasley <[email protected]> | |
4369 | M: Neil Horman <[email protected]> | |
4370 | L: [email protected] | |
4371 | F: drivers/i2c/busses/i2c-ismt.c | |
4372 | F: Documentation/i2c/busses/i2c-ismt | |
4373 | ||
6ea884db | 4374 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4375 | M: Jean Delvare <[email protected]> |
846557d3 | 4376 | L: [email protected] |
6ea884db | 4377 | S: Maintained |
8547a5bc | 4378 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4379 | |
5b543965 | 4380 | I2C SUBSYSTEM |
14d77c4d | 4381 | M: Wolfram Sang <[email protected]> |
846557d3 | 4382 | L: [email protected] |
9d4ea27a WS |
4383 | W: https://i2c.wiki.kernel.org/ |
4384 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 4385 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4386 | S: Maintained |
679655da JP |
4387 | F: Documentation/i2c/ |
4388 | F: drivers/i2c/ | |
4389 | F: include/linux/i2c.h | |
03b70d62 | 4390 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4391 | F: include/uapi/linux/i2c.h |
4392 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4393 | |
d85c8a6a | 4394 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4395 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4396 | L: [email protected] |
4397 | S: Maintained | |
4398 | F: Documentation/i2c/busses/i2c-taos-evm | |
4399 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4400 | ||
e8c76eed | 4401 | I2C-TINY-USB DRIVER |
8b58be88 | 4402 | M: Till Harbaum <[email protected]> |
846557d3 | 4403 | L: [email protected] |
932d1872 | 4404 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4405 | S: Maintained |
679655da | 4406 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4407 | |
1da177e4 | 4408 | i386 BOOT CODE |
8b58be88 | 4409 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4410 | S: Maintained |
679655da | 4411 | F: arch/x86/boot/ |
1da177e4 LT |
4412 | |
4413 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4414 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4416 | S: Maintained |
4417 | ||
1da177e4 | 4418 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4419 | M: Tony Luck <[email protected]> |
4420 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4421 | L: [email protected] |
6b1c70b1 | 4422 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4423 | S: Maintained |
679655da | 4424 | F: arch/ia64/ |
1da177e4 | 4425 | |
956c203c | 4426 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4427 | M: Marcelo Henrique Cerri <[email protected]> |
4428 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4429 | L: [email protected] |
4430 | S: Supported | |
4431 | F: drivers/crypto/nx/ | |
4432 | ||
0e16aafb | 4433 | IBM Power 842 compression accelerator |
e6babec6 | 4434 | M: Nathan Fontenot <[email protected]> |
0e16aafb SJ |
4435 | S: Supported |
4436 | F: drivers/crypto/nx/nx-842.c | |
4437 | F: include/linux/nx842.h | |
4438 | ||
1da177e4 | 4439 | IBM Power Linux RAID adapter |
8b58be88 | 4440 | M: Brian King <[email protected]> |
1da177e4 | 4441 | S: Supported |
679655da | 4442 | F: drivers/scsi/ipr.* |
1da177e4 | 4443 | |
9d348af4 SL |
4444 | IBM Power Virtual Ethernet Device Driver |
4445 | M: Santiago Leon <[email protected]> | |
4446 | L: [email protected] | |
4447 | S: Supported | |
9aa32835 | 4448 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4449 | |
e6babec6 NF |
4450 | IBM Power Virtual SCSI Device Drivers |
4451 | M: Nathan Fontenot <[email protected]> | |
4b7652cc RJ |
4452 | L: [email protected] |
4453 | S: Supported | |
e6babec6 NF |
4454 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
4455 | F: drivers/scsi/ibmvscsi/viosrp.h | |
4456 | ||
4457 | IBM Power Virtual FC Device Drivers | |
4458 | M: Brian King <[email protected]> | |
4459 | L: [email protected] | |
4460 | S: Supported | |
4461 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 4462 | |
1da177e4 LT |
4463 | IBM ServeRAID RAID DRIVER |
4464 | P: Jack Hammer | |
8b58be88 | 4465 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4466 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4467 | S: Supported |
679655da | 4468 | F: drivers/scsi/ips.* |
1da177e4 | 4469 | |
6ed9f9c4 PT |
4470 | ICH LPC AND GPIO DRIVER |
4471 | M: Peter Tyser <[email protected]> | |
4472 | S: Maintained | |
4473 | F: drivers/mfd/lpc_ich.c | |
4474 | F: drivers/gpio/gpio-ich.c | |
4475 | ||
1e7106fc | 4476 | IDE SUBSYSTEM |
8b58be88 | 4477 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4478 | L: [email protected] |
8a6e2535 | 4479 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4480 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4481 | S: Maintained |
679655da JP |
4482 | F: Documentation/ide/ |
4483 | F: drivers/ide/ | |
4484 | F: include/linux/ide.h | |
1da177e4 | 4485 | |
6cb8c13d IP |
4486 | IDEAPAD LAPTOP EXTRAS DRIVER |
4487 | M: Ike Panhc <[email protected]> | |
4488 | L: [email protected] | |
4489 | W: http://launchpad.net/ideapad-laptop | |
4490 | S: Maintained | |
4491 | F: drivers/platform/x86/ideapad-laptop.c | |
4492 | ||
1ea4c161 AM |
4493 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4494 | M: Andrey Moiseev <[email protected]> | |
4495 | L: [email protected] | |
4496 | W: https://github.com/o2genum/ideapad-slidebar | |
4497 | S: Maintained | |
4498 | F: drivers/input/misc/ideapad_slidebar.c | |
4499 | ||
0f861e8c | 4500 | IDE/ATAPI DRIVERS |
487ba8e8 | 4501 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4502 | L: [email protected] |
c404c199 | 4503 | S: Maintained |
679655da JP |
4504 | F: Documentation/cdrom/ide-cd |
4505 | F: drivers/ide/ide-cd* | |
1da177e4 | 4506 | |
27471fdb | 4507 | IDLE-I7300 |
8b58be88 | 4508 | M: Andy Henroid <[email protected]> |
bf1c138e | 4509 | L: [email protected] |
27471fdb | 4510 | S: Supported |
679655da | 4511 | F: drivers/idle/i7300_idle.c |
27471fdb | 4512 | |
02cf2286 | 4513 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4514 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4515 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4516 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4517 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4519 | S: Maintained |
4520 | F: net/ieee802154/ | |
68653359 | 4521 | F: net/mac802154/ |
251741b1 | 4522 | F: drivers/net/ieee802154/ |
02cf2286 | 4523 | |
40ad4a30 SY |
4524 | IGUANAWORKS USB IR TRANSCEIVER |
4525 | M: Sean Young <[email protected]> | |
4526 | L: [email protected] | |
4527 | S: Maintained | |
4528 | F: drivers/media/rc/iguanair.c | |
4529 | ||
9545f86e | 4530 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4531 | M: Jonathan Cameron <[email protected]> |
9545f86e AP |
4532 | L: [email protected] |
4533 | S: Maintained | |
03e7c251 | 4534 | F: drivers/iio/ |
9545f86e AP |
4535 | F: drivers/staging/iio/ |
4536 | ||
65519263 SG |
4537 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4538 | M: Matthieu Castet <[email protected]> | |
4539 | M: Stanislaw Gruszka <[email protected]> | |
4540 | S: Maintained | |
4541 | F: drivers/usb/atm/ueagle-atm.c | |
4542 | ||
e89ab51f GR |
4543 | INA209 HARDWARE MONITOR DRIVER |
4544 | M: Guenter Roeck <[email protected]> | |
4545 | L: [email protected] | |
4546 | S: Maintained | |
4547 | F: Documentation/hwmon/ina209 | |
4548 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4549 | F: drivers/hwmon/ina209.c | |
4550 | ||
4551 | INA2XX HARDWARE MONITOR DRIVER | |
4552 | M: Guenter Roeck <[email protected]> | |
4553 | L: [email protected] | |
4554 | S: Maintained | |
4555 | F: Documentation/hwmon/ina2xx | |
4556 | F: drivers/hwmon/ina2xx.c | |
4557 | F: include/linux/platform_data/ina2xx.h | |
4558 | ||
14dc124f SIG |
4559 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4560 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4561 | M: Jens Taprogge <[email protected]> | |
4562 | M: Greg Kroah-Hartman <[email protected]> | |
4563 | L: [email protected] | |
4564 | W: http://industrypack.sourceforge.net | |
4565 | S: Maintained | |
4566 | F: drivers/ipack/ | |
4567 | ||
aa7168f4 | 4568 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 4569 | M: Mimi Zohar <[email protected]> |
8912176c | 4570 | M: Dmitry Kasatkin <[email protected]> |
74dd744f MZ |
4571 | L: [email protected] |
4572 | L: [email protected] | |
4573 | L: [email protected] | |
aa7168f4 | 4574 | S: Supported |
679655da | 4575 | F: security/integrity/ima/ |
aa7168f4 | 4576 | |
1da177e4 | 4577 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4578 | L: [email protected] |
843393d3 | 4579 | S: Orphan |
679655da | 4580 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4581 | |
4582 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4583 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4584 | M: Sean Hefty <[email protected]> |
4585 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4586 | L: [email protected] |
605841f5 | 4587 | W: http://www.openfabrics.org/ |
8a6e2535 | 4588 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4590 | S: Supported |
679655da JP |
4591 | F: Documentation/infiniband/ |
4592 | F: drivers/infiniband/ | |
c117ab84 | 4593 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4594 | |
c9f04f58 | 4595 | INOTIFY |
8b58be88 JP |
4596 | M: John McCutchan <[email protected]> |
4597 | M: Robert Love <[email protected]> | |
4598 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4599 | S: Maintained |
679655da JP |
4600 | F: Documentation/filesystems/inotify.txt |
4601 | F: fs/notify/inotify/ | |
4602 | F: include/linux/inotify.h | |
c117ab84 | 4603 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4604 | |
e2d1d6c0 | 4605 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4606 | M: Dmitry Torokhov <[email protected]> |
4607 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4608 | L: [email protected] |
8a6e2535 | 4609 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4611 | S: Maintained |
679655da | 4612 | F: drivers/input/ |
f4eea7e2 | 4613 | F: include/linux/input.h |
c117ab84 | 4614 | F: include/uapi/linux/input.h |
f4eea7e2 | 4615 | F: include/linux/input/ |
e2d1d6c0 | 4616 | |
3267a87f HR |
4617 | INPUT MULTITOUCH (MT) PROTOCOL |
4618 | M: Henrik Rydberg <[email protected]> | |
4619 | L: [email protected] | |
7f9c2454 | 4620 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4621 | S: Maintained |
4622 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4623 | F: drivers/input/input-mt.c |
3267a87f HR |
4624 | K: \b(ABS|SYN)_MT_ |
4625 | ||
4ac13e17 DJ |
4626 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4627 | M: Intel SCU Linux support <[email protected]> | |
fdc5813f | 4628 | M: Artur Paszkiewicz <[email protected]> |
4ac13e17 | 4629 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4630 | L: [email protected] |
7106891a DJ |
4631 | T: git git://git.code.sf.net/p/intel-sas/isci |
4632 | S: Supported | |
4ac13e17 | 4633 | F: drivers/scsi/isci/ |
4ac13e17 | 4634 | |
26717172 LB |
4635 | INTEL IDLE DRIVER |
4636 | M: Len Brown <[email protected]> | |
bf1c138e | 4637 | L: [email protected] |
08deed1e | 4638 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4639 | S: Supported |
4640 | F: drivers/idle/intel_idle.c | |
4641 | ||
9eb8ef74 | 4642 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4643 | M: Maik Broemme <[email protected]> |
c69f677c | 4644 | L: [email protected] |
ce00f85c | 4645 | S: Maintained |
679655da JP |
4646 | F: Documentation/fb/intelfb.txt |
4647 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4648 | |
1da177e4 | 4649 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4650 | M: Antonino Daplas <[email protected]> |
c69f677c | 4651 | L: [email protected] |
ce00f85c | 4652 | S: Maintained |
679655da | 4653 | F: drivers/video/i810/ |
1da177e4 | 4654 | |
f4a9bc4c | 4655 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4656 | M: Sujith Thomas <[email protected]> |
d0944853 | 4657 | L: [email protected] |
5ca92bd9 | 4658 | W: https://01.org/linux-acpi |
f4a9bc4c | 4659 | S: Supported |
679655da | 4660 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4661 | |
1da177e4 | 4662 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4663 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4664 | S: Maintained |
679655da JP |
4665 | F: arch/x86/kernel/microcode_core.c |
4666 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4667 | |
248a9dc3 | 4668 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4669 | M: Dan Williams <[email protected]> |
18ebd564 DJ |
4670 | M: Dave Jiang <[email protected]> |
4671 | L: [email protected] | |
4672 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4673 | S: Supported | |
679655da | 4674 | F: drivers/dma/ioat* |
248a9dc3 | 4675 | |
6c8909b4 | 4676 | INTEL IOMMU (VT-d) |
8b58be88 | 4677 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4678 | L: [email protected] |
54e5881d | 4679 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4680 | S: Supported |
3fb39615 | 4681 | F: drivers/iommu/intel-iommu.c |
679655da | 4682 | F: include/linux/intel-iommu.h |
6c8909b4 | 4683 | |
b3e5f263 | 4684 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4685 | M: Dan Williams <[email protected]> |
1dd8372d | 4686 | S: Odd fixes |
679655da | 4687 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4688 | |
9251ce95 | 4689 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4690 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4691 | S: Maintained |
679655da JP |
4692 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4693 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4694 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4695 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4696 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4697 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4698 | |
844dd05f | 4699 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4700 | M: Deepak Saxena <[email protected]> |
844dd05f | 4701 | S: Maintained |
679655da | 4702 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4703 | |
105bf2fe | 4704 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4705 | M: Jeff Kirsher <[email protected]> |
4706 | M: Jesse Brandeburg <[email protected]> | |
4707 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4708 | M: Carolyn Wyborny <[email protected]> |
4709 | M: Don Skidmore <[email protected]> | |
4710 | M: Greg Rose <[email protected]> | |
0d164401 | 4711 | M: Alex Duyck <[email protected]> |
8b58be88 | 4712 | M: John Ronciak <[email protected]> |
105bf2fe | 4713 | M: Mitch Williams <[email protected]> |
fcad3e6b | 4714 | M: Linux NICS <[email protected]> |
dcd01faf | 4715 | L: [email protected] |
f6fde11a | 4716 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4717 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4720 | S: Supported |
0d164401 JK |
4721 | F: Documentation/networking/e100.txt |
4722 | F: Documentation/networking/e1000.txt | |
4723 | F: Documentation/networking/e1000e.txt | |
4724 | F: Documentation/networking/igb.txt | |
4725 | F: Documentation/networking/igbvf.txt | |
4726 | F: Documentation/networking/ixgb.txt | |
4727 | F: Documentation/networking/ixgbe.txt | |
4728 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4729 | F: Documentation/networking/i40e.txt |
105bf2fe | 4730 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4731 | F: drivers/net/ethernet/intel/ |
bc90d291 | 4732 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 4733 | |
0963d59b LW |
4734 | INTEL-MID GPIO DRIVER |
4735 | M: David Cohen <[email protected]> | |
4736 | L: [email protected] | |
4737 | S: Maintained | |
4738 | F: drivers/gpio/gpio-intel-mid.c | |
4739 | ||
ca907a90 SY |
4740 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4741 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4742 | L: [email protected] |
ca907a90 | 4743 | S: Maintained |
679655da | 4744 | F: Documentation/networking/README.ipw2100 |
679655da | 4745 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4746 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4747 | |
4bd96a7a | 4748 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4749 | M: Richard L Maliszewski <[email protected]> |
4750 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4751 | M: Shane Wang <[email protected]> |
4752 | L: [email protected] | |
4753 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4754 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4755 | S: Supported |
4756 | F: Documentation/intel_txt.txt | |
4757 | F: include/linux/tboot.h | |
4758 | F: arch/x86/kernel/tboot.c | |
4759 | ||
8a70da82 | 4760 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4761 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 | 4762 | M: [email protected] |
63fae219 | 4763 | L: [email protected] (subscribers-only) |
8a70da82 IPG |
4764 | S: Supported |
4765 | W: http://linuxwimax.org | |
679655da JP |
4766 | F: Documentation/wimax/README.i2400m |
4767 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4768 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4769 | |
1c0ce89c SG |
4770 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4771 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4772 | L: [email protected] |
1c0ce89c | 4773 | S: Supported |
efa3144e WYG |
4774 | F: drivers/net/wireless/iwlegacy/ |
4775 | ||
b481de9c | 4776 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4777 | M: Johannes Berg <[email protected]> |
6161b02b | 4778 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 4779 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4780 | L: [email protected] |
b481de9c | 4781 | W: http://intellinuxwireless.org |
b62ff718 | 4782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4783 | S: Supported |
679655da | 4784 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4785 | |
de8fe023 TW |
4786 | INTEL MANAGEMENT ENGINE (mei) |
4787 | M: Tomas Winkler <[email protected]> | |
4788 | L: [email protected] | |
4789 | S: Supported | |
c117ab84 | 4790 | F: include/uapi/linux/mei.h |
de8fe023 | 4791 | F: drivers/misc/mei/* |
e07950a1 | 4792 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4793 | |
cb109a0e | 4794 | IOC3 ETHERNET DRIVER |
8b58be88 | 4795 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4796 | L: [email protected] |
4797 | S: Maintained | |
8862bf1e | 4798 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4799 | |
cb109a0e | 4800 | IOC3 SERIAL DRIVER |
8b58be88 | 4801 | M: Pat Gefre <[email protected]> |
d39e0721 | 4802 | L: [email protected] |
cb109a0e | 4803 | S: Maintained |
df621252 | 4804 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4805 | |
0b6e8569 SW |
4806 | IOMMU DRIVERS |
4807 | M: Joerg Roedel <[email protected]> | |
4808 | L: [email protected] | |
4809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4810 | S: Maintained | |
4811 | F: drivers/iommu/ | |
4812 | ||
4480f15b | 4813 | IP MASQUERADING |
8b58be88 | 4814 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4815 | S: Maintained |
679655da | 4816 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4817 | |
1202d6ff | 4818 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4819 | M: Francois Romieu <[email protected]> |
4820 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4821 | L: [email protected] |
4822 | S: Maintained | |
7443713a | 4823 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4824 | |
4480f15b | 4825 | IPATH DRIVER |
8473c603 | 4826 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4827 | L: [email protected] |
52a09a04 | 4828 | S: Maintained |
679655da | 4829 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4830 | |
4409ebe9 | 4831 | IPMI SUBSYSTEM |
8b58be88 | 4832 | M: Corey Minyard <[email protected]> |
b0c90653 | 4833 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4834 | W: http://openipmi.sourceforge.net/ |
4835 | S: Supported | |
679655da JP |
4836 | F: Documentation/IPMI.txt |
4837 | F: drivers/char/ipmi/ | |
4838 | F: include/linux/ipmi* | |
c117ab84 | 4839 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4840 | |
e2d1d6c0 | 4841 | IPS SCSI RAID DRIVER |
8b58be88 | 4842 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4843 | L: [email protected] |
4844 | W: http://www.adaptec.com/ | |
4845 | S: Maintained | |
679655da | 4846 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4847 | |
4848 | IPVS | |
8b58be88 JP |
4849 | M: Wensong Zhang <[email protected]> |
4850 | M: Simon Horman <[email protected]> | |
4851 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4852 | L: [email protected] |
e2d1d6c0 | 4853 | L: [email protected] |
1da177e4 | 4854 | S: Maintained |
679655da | 4855 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4856 | F: include/net/ip_vs.h |
c117ab84 | 4857 | F: include/uapi/linux/ip_vs.h |
679655da | 4858 | F: net/netfilter/ipvs/ |
1da177e4 | 4859 | |
e7839f25 | 4860 | IPWIRELESS DRIVER |
8b58be88 JP |
4861 | M: Jiri Kosina <[email protected]> |
4862 | M: David Sterba <[email protected]> | |
92094aa0 | 4863 | S: Odd Fixes |
282361a0 | 4864 | F: drivers/tty/ipwireless/ |
099dc4fb | 4865 | |
e2d1d6c0 | 4866 | IPX NETWORK LAYER |
8b58be88 | 4867 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4868 | L: [email protected] |
4869 | S: Maintained | |
679655da | 4870 | F: include/net/ipx.h |
c117ab84 | 4871 | F: include/uapi/linux/ipx.h |
679655da | 4872 | F: net/ipx/ |
e2d1d6c0 | 4873 | |
1da177e4 | 4874 | IRDA SUBSYSTEM |
8b58be88 | 4875 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4876 | L: [email protected] (subscribers-only) |
ced649ea | 4877 | L: [email protected] |
1da177e4 | 4878 | W: http://irda.sourceforge.net/ |
f353976d | 4879 | S: Maintained |
e0057975 | 4880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4881 | F: Documentation/networking/irda.txt |
4882 | F: drivers/net/irda/ | |
4883 | F: include/net/irda/ | |
4884 | F: net/irda/ | |
1da177e4 | 4885 | |
a800c7cc TG |
4886 | IRQ SUBSYSTEM |
4887 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 4888 | L: [email protected] |
a800c7cc | 4889 | S: Maintained |
75fc2d37 | 4890 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4891 | F: kernel/irq/ |
2ed9fd28 JC |
4892 | |
4893 | IRQCHIP DRIVERS | |
4894 | M: Thomas Gleixner <[email protected]> | |
4895 | M: Jason Cooper <[email protected]> | |
4896 | L: [email protected] | |
4897 | S: Maintained | |
4898 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
4899 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
edd96900 | 4900 | F: drivers/irqchip/ |
a800c7cc | 4901 | |
7ab3a837 GL |
4902 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4903 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4904 | S: Maintained |
4905 | F: Documentation/IRQ-domain.txt | |
4906 | F: include/linux/irqdomain.h | |
4907 | F: kernel/irq/irqdomain.c | |
4908 | ||
e2d1d6c0 | 4909 | ISAPNP |
8b58be88 | 4910 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4911 | S: Maintained |
679655da JP |
4912 | F: Documentation/isapnp.txt |
4913 | F: drivers/pnp/isapnp/ | |
4914 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4915 | |
d39b8420 HV |
4916 | ISA RADIO MODULE |
4917 | M: Hans Verkuil <[email protected]> | |
4918 | L: [email protected] | |
4919 | T: git git://linuxtv.org/media_tree.git | |
4920 | W: http://linuxtv.org | |
4921 | S: Maintained | |
4922 | F: drivers/media/radio/radio-isa* | |
4923 | ||
71a6d0af HW |
4924 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4925 | M: Peter Jones <[email protected]> | |
4926 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4927 | S: Maintained | |
4928 | F: drivers/firmware/iscsi_ibft* | |
4929 | ||
14816b1e | 4930 | ISCSI |
8b58be88 | 4931 | M: Mike Christie <[email protected]> |
14816b1e MC |
4932 | L: [email protected] |
4933 | W: www.open-iscsi.org | |
54e5881d | 4934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4935 | S: Maintained |
679655da JP |
4936 | F: drivers/scsi/*iscsi* |
4937 | F: include/scsi/*iscsi* | |
14816b1e | 4938 | |
1e65eb42 OG |
4939 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4940 | M: Or Gerlitz <[email protected]> | |
4941 | M: Roi Dayan <[email protected]> | |
4942 | L: [email protected] | |
4943 | S: Supported | |
4944 | W: http://www.openfabrics.org | |
4945 | W: www.open-iscsi.org | |
4946 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4947 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4948 | |
1da177e4 | 4949 | ISDN SUBSYSTEM |
8b58be88 | 4950 | M: Karsten Keil <[email protected]> |
d5d52273 | 4951 | L: [email protected] (subscribers-only) |
3da0ae62 | 4952 | L: [email protected] |
1da177e4 | 4953 | W: http://www.isdn4linux.de |
54e5881d | 4954 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4955 | S: Maintained |
679655da JP |
4956 | F: Documentation/isdn/ |
4957 | F: drivers/isdn/ | |
4958 | F: include/linux/isdn.h | |
4959 | F: include/linux/isdn/ | |
c117ab84 CEB |
4960 | F: include/uapi/linux/isdn.h |
4961 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4962 | |
4963 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4964 | M: Armin Schindler <[email protected]> |
d5d52273 | 4965 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4966 | W: http://www.melware.de |
4967 | S: Maintained | |
679655da | 4968 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4969 | |
d624870f | 4970 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 4971 | M: Jean Delvare <[email protected]> |
d624870f JD |
4972 | L: [email protected] |
4973 | S: Maintained | |
4974 | F: Documentation/hwmon/it87 | |
4975 | F: drivers/hwmon/it87.c | |
4976 | ||
d7104bff AP |
4977 | IT913X MEDIA DRIVER |
4978 | M: Antti Palosaari <[email protected]> | |
4979 | L: [email protected] | |
4980 | W: http://linuxtv.org/ | |
4981 | W: http://palosaari.fi/linux/ | |
4982 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4983 | T: git git://linuxtv.org/anttip/media_tree.git | |
4984 | S: Maintained | |
9d9fb744 | 4985 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4986 | |
91821ff3 | 4987 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4988 | M: Andy Walls <[email protected]> |
c4240509 | 4989 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4990 | L: [email protected] |
275ffde4 | 4991 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4992 | W: http://www.ivtvdriver.org |
4993 | S: Maintained | |
679655da | 4994 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4995 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4996 | F: include/uapi/linux/ivtv* |
91821ff3 | 4997 | |
68620bdd MP |
4998 | IX2505V MEDIA DRIVER |
4999 | M: Malcolm Priestley <[email protected]> | |
5000 | L: [email protected] | |
5001 | W: http://linuxtv.org/ | |
5002 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5003 | S: Maintained | |
5004 | F: drivers/media/dvb-frontends/ix2505v* | |
5005 | ||
4453d736 GR |
5006 | JC42.4 TEMPERATURE SENSOR DRIVER |
5007 | M: Guenter Roeck <[email protected]> | |
5008 | L: [email protected] | |
5009 | S: Maintained | |
5010 | F: drivers/hwmon/jc42.c | |
5011 | F: Documentation/hwmon/jc42 | |
5012 | ||
e2d1d6c0 | 5013 | JFS FILESYSTEM |
3256f80f | 5014 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
5015 | L: [email protected] |
5016 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5018 | S: Maintained |
679655da JP |
5019 | F: Documentation/filesystems/jfs.txt |
5020 | F: fs/jfs/ | |
e2d1d6c0 | 5021 | |
95252236 | 5022 | JME NETWORK DRIVER |
8b58be88 | 5023 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
5024 | L: [email protected] |
5025 | S: Maintained | |
63d24a0e | 5026 | F: drivers/net/ethernet/jme.* |
95252236 | 5027 | |
1da177e4 | 5028 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5029 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
5030 | L: [email protected] |
5031 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5032 | S: Maintained |
679655da | 5033 | F: fs/jffs2/ |
c117ab84 | 5034 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5035 | |
de456d37 | 5036 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 5037 | M: Andrew Morton <[email protected]> |
19003c18 | 5038 | M: Jan Kara <[email protected]> |
72be2ccf | 5039 | L: [email protected] |
ae0718f8 | 5040 | S: Maintained |
d183e11a | 5041 | F: fs/jbd/ |
d183e11a TT |
5042 | F: include/linux/jbd.h |
5043 | ||
5044 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
5045 | M: "Theodore Ts'o" <[email protected]> | |
5046 | L: [email protected] | |
5047 | S: Maintained | |
5048 | F: fs/jbd2/ | |
5049 | F: include/linux/jbd2.h | |
ae0718f8 | 5050 | |
fd8b6cb4 | 5051 | JSM Neo PCI based serial card |
9d141cb9 | 5052 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
5053 | L: [email protected] |
5054 | S: Maintained | |
df621252 | 5055 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5056 | |
af39917d CL |
5057 | K10TEMP HARDWARE MONITORING DRIVER |
5058 | M: Clemens Ladisch <[email protected]> | |
5059 | L: [email protected] | |
5060 | S: Maintained | |
5061 | F: Documentation/hwmon/k10temp | |
5062 | F: drivers/hwmon/k10temp.c | |
5063 | ||
4660cb35 | 5064 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5065 | M: Rudolf Marek <[email protected]> |
4660cb35 | 5066 | L: [email protected] |
ae0718f8 | 5067 | S: Maintained |
679655da JP |
5068 | F: Documentation/hwmon/k8temp |
5069 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5070 | |
c63a1642 | 5071 | KTAP |
687b63a3 | 5072 | M: Jovi Zhangwei <[email protected]> |
c63a1642 JZ |
5073 | W: http://www.ktap.org |
5074 | L: [email protected] | |
5075 | S: Maintained | |
5076 | F: drivers/staging/ktap/ | |
5077 | ||
1da177e4 | 5078 | KCONFIG |
5eb1f99e | 5079 | M: "Yann E. MORIN" <[email protected]> |
347d12d7 | 5080 | L: [email protected] |
cea8321c | 5081 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5082 | S: Maintained |
679655da JP |
5083 | F: Documentation/kbuild/kconfig-language.txt |
5084 | F: scripts/kconfig/ | |
1da177e4 | 5085 | |
ea6c2089 | 5086 | KDUMP |
8b58be88 JP |
5087 | M: Vivek Goyal <[email protected]> |
5088 | M: Haren Myneni <[email protected]> | |
34633993 | 5089 | L: [email protected] |
ea6c2089 VG |
5090 | W: http://lse.sourceforge.net/kdump/ |
5091 | S: Maintained | |
80811493 | 5092 | F: Documentation/kdump/ |
ea6c2089 | 5093 | |
f41bf02f HV |
5094 | KEENE FM RADIO TRANSMITTER DRIVER |
5095 | M: Hans Verkuil <[email protected]> | |
5096 | L: [email protected] | |
5097 | T: git git://linuxtv.org/media_tree.git | |
5098 | W: http://linuxtv.org | |
5099 | S: Maintained | |
5100 | F: drivers/media/radio/radio-keene* | |
5101 | ||
1da177e4 | 5102 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5103 | M: Ian Kent <[email protected]> |
f694fc97 | 5104 | L: [email protected] |
1da177e4 | 5105 | S: Maintained |
679655da | 5106 | F: fs/autofs4/ |
1da177e4 | 5107 | |
70fb7ba6 | 5108 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 5109 | M: Michal Marek <[email protected]> |
08deed1e JP |
5110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5112 | L: [email protected] |
5ce45962 | 5113 | S: Maintained |
679655da JP |
5114 | F: Documentation/kbuild/ |
5115 | F: Makefile | |
5116 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5117 | F: scripts/basic/ |
5118 | F: scripts/mk* | |
5119 | F: scripts/package/ | |
1da177e4 LT |
5120 | |
5121 | KERNEL JANITORS | |
c3000e03 | 5122 | L: [email protected] |
10466f5a | 5123 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5124 | S: Odd Fixes |
1da177e4 | 5125 | |
e8b43555 | 5126 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5127 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 5128 | L: [email protected] |
1da177e4 | 5129 | W: http://nfs.sourceforge.net/ |
98fac23f | 5130 | S: Supported |
679655da JP |
5131 | F: fs/nfsd/ |
5132 | F: include/linux/nfsd/ | |
c117ab84 | 5133 | F: include/uapi/linux/nfsd/ |
679655da JP |
5134 | F: fs/lockd/ |
5135 | F: fs/nfs_common/ | |
5136 | F: net/sunrpc/ | |
5137 | F: include/linux/lockd/ | |
5138 | F: include/linux/sunrpc/ | |
c117ab84 | 5139 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5140 | |
426d62e2 | 5141 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5142 | M: Gleb Natapov <[email protected]> |
c93a64fe | 5143 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 5144 | L: [email protected] |
e3e58478 | 5145 | W: http://www.linux-kvm.org |
a94b40a6 | 5146 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5147 | S: Supported |
c93a64fe PB |
5148 | F: Documentation/*/kvm*.txt |
5149 | F: Documentation/virtual/kvm/ | |
679655da JP |
5150 | F: arch/*/kvm/ |
5151 | F: arch/*/include/asm/kvm* | |
5152 | F: include/linux/kvm* | |
c117ab84 | 5153 | F: include/uapi/linux/kvm* |
679655da | 5154 | F: virt/kvm/ |
426d62e2 | 5155 | |
ad8003d3 | 5156 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5157 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
5158 | L: [email protected] |
5159 | W: http://kvm.qumranet.com | |
7de609c8 | 5160 | S: Maintained |
679655da | 5161 | F: arch/x86/include/asm/svm.h |
679655da | 5162 | F: arch/x86/kvm/svm.c |
426d62e2 | 5163 | |
513014b7 | 5164 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5165 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
5166 | L: [email protected] |
5167 | W: http://kvm.qumranet.com | |
6a7f972d | 5168 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5169 | S: Supported |
679655da JP |
5170 | F: arch/powerpc/include/asm/kvm* |
5171 | F: arch/powerpc/kvm/ | |
513014b7 | 5172 | |
1fc9d2bf | 5173 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 5174 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
5175 | L: [email protected] |
5176 | W: http://kvm.qumranet.com | |
920ed9f1 | 5177 | S: Supported |
679655da JP |
5178 | F: Documentation/ia64/kvm.txt |
5179 | F: arch/ia64/include/asm/kvm* | |
5180 | F: arch/ia64/kvm/ | |
920ed9f1 | 5181 | |
85f8fffe | 5182 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5183 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 5184 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
5185 | M: [email protected] |
5186 | L: [email protected] | |
5187 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5188 | S: Supported | |
679655da JP |
5189 | F: Documentation/s390/kvm.txt |
5190 | F: arch/s390/include/asm/kvm* | |
80811493 | 5191 | F: arch/s390/kvm/ |
a968cd3e | 5192 | F: drivers/s390/kvm/ |
85f8fffe | 5193 | |
a749474d | 5194 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5195 | M: Christoffer Dall <[email protected]> |
5c8818b4 MZ |
5196 | M: Marc Zyngier <[email protected]> |
5197 | L: [email protected] (moderated for non-subscribers) | |
a749474d CD |
5198 | L: [email protected] |
5199 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5200 | S: Supported |
a749474d CD |
5201 | F: arch/arm/include/uapi/asm/kvm* |
5202 | F: arch/arm/include/asm/kvm* | |
5203 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5204 | F: virt/kvm/arm/ |
5205 | F: include/kvm/arm_* | |
a749474d | 5206 | |
6394a3ec | 5207 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5208 | M: Christoffer Dall <[email protected]> |
6394a3ec MZ |
5209 | M: Marc Zyngier <[email protected]> |
5210 | L: [email protected] (moderated for non-subscribers) | |
5211 | L: [email protected] | |
5212 | S: Maintained | |
5213 | F: arch/arm64/include/uapi/asm/kvm* | |
5214 | F: arch/arm64/include/asm/kvm* | |
5215 | F: arch/arm64/kvm/ | |
5216 | ||
dc009d92 | 5217 | KEXEC |
8b58be88 | 5218 | M: Eric Biederman <[email protected]> |
2f327dad | 5219 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5220 | L: [email protected] |
dc009d92 | 5221 | S: Maintained |
679655da | 5222 | F: include/linux/kexec.h |
c117ab84 | 5223 | F: include/uapi/linux/kexec.h |
679655da | 5224 | F: kernel/kexec.c |
dc009d92 | 5225 | |
e971461f DH |
5226 | KEYS/KEYRINGS: |
5227 | M: David Howells <[email protected]> | |
5228 | L: [email protected] | |
5229 | S: Maintained | |
d410fa4e | 5230 | F: Documentation/security/keys.txt |
e971461f DH |
5231 | F: include/linux/key.h |
5232 | F: include/linux/key-type.h | |
5233 | F: include/keys/ | |
5234 | F: security/keys/ | |
5235 | ||
7f3c68be | 5236 | KEYS-TRUSTED |
74dd744f MZ |
5237 | M: David Safford <[email protected]> |
5238 | M: Mimi Zohar <[email protected]> | |
7f3c68be MZ |
5239 | L: [email protected] |
5240 | L: [email protected] | |
5241 | S: Supported | |
d410fa4e | 5242 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5243 | F: include/keys/trusted-type.h |
5244 | F: security/keys/trusted.c | |
5245 | F: security/keys/trusted.h | |
5246 | ||
5247 | KEYS-ENCRYPTED | |
74dd744f MZ |
5248 | M: Mimi Zohar <[email protected]> |
5249 | M: David Safford <[email protected]> | |
7f3c68be MZ |
5250 | L: [email protected] |
5251 | L: [email protected] | |
5252 | S: Supported | |
d410fa4e | 5253 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5254 | F: include/keys/encrypted-type.h |
19c90aa6 | 5255 | F: security/keys/encrypted-keys/ |
7f3c68be | 5256 | |
5b778dad | 5257 | KGDB / KDB /debug_core |
8b58be88 | 5258 | M: Jason Wessel <[email protected]> |
4063eb5f | 5259 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5260 | L: [email protected] |
5261 | S: Maintained | |
679655da JP |
5262 | F: Documentation/DocBook/kgdb.tmpl |
5263 | F: drivers/misc/kgdbts.c | |
df621252 | 5264 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5265 | F: include/linux/kdb.h |
679655da | 5266 | F: include/linux/kgdb.h |
4063eb5f | 5267 | F: kernel/debug/ |
e3e2aaf7 | 5268 | |
456db8cc | 5269 | KMEMCHECK |
8b58be88 | 5270 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 5271 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 5272 | S: Maintained |
410d7a97 JP |
5273 | F: Documentation/kmemcheck.txt |
5274 | F: arch/x86/include/asm/kmemcheck.h | |
5275 | F: arch/x86/mm/kmemcheck/ | |
5276 | F: include/linux/kmemcheck.h | |
5277 | F: mm/kmemcheck.c | |
b9ce08c0 | 5278 | |
c3bb4d24 | 5279 | KMEMLEAK |
8b58be88 | 5280 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
5281 | S: Maintained |
5282 | F: Documentation/kmemleak.txt | |
5283 | F: include/linux/kmemleak.h | |
5284 | F: mm/kmemleak.c | |
5285 | F: mm/kmemleak-test.c | |
5286 | ||
89559a61 | 5287 | KPROBES |
8b58be88 JP |
5288 | M: Ananth N Mavinakayanahalli <[email protected]> |
5289 | M: Anil S Keshavamurthy <[email protected]> | |
5290 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 5291 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 5292 | S: Maintained |
679655da JP |
5293 | F: Documentation/kprobes.txt |
5294 | F: include/linux/kprobes.h | |
5295 | F: kernel/kprobes.c | |
89559a61 | 5296 | |
70e84049 | 5297 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5298 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
5299 | W: http://miguelojeda.es/auxdisplay.htm |
5300 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5301 | S: Maintained |
679655da JP |
5302 | F: Documentation/auxdisplay/ks0108 |
5303 | F: drivers/auxdisplay/ks0108.c | |
5304 | F: include/linux/ks0108.h | |
70e84049 | 5305 | |
1da177e4 | 5306 | LAPB module |
1da177e4 | 5307 | L: [email protected] |
bf9915cc | 5308 | S: Orphan |
679655da JP |
5309 | F: Documentation/networking/lapb-module.txt |
5310 | F: include/*/lapb.h | |
5311 | F: net/lapb/ | |
1da177e4 LT |
5312 | |
5313 | LASI 53c700 driver for PARISC | |
8b58be88 | 5314 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5315 | L: [email protected] |
5316 | S: Maintained | |
679655da JP |
5317 | F: Documentation/scsi/53c700.txt |
5318 | F: drivers/scsi/53c700* | |
1da177e4 | 5319 | |
263de9b5 | 5320 | LED SUBSYSTEM |
c772fc26 | 5321 | M: Bryan Wu <[email protected]> |
8b58be88 | 5322 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
5323 | L: [email protected] |
5324 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5325 | S: Maintained |
679655da JP |
5326 | F: drivers/leds/ |
5327 | F: include/linux/leds.h | |
263de9b5 | 5328 | |
b0461a44 | 5329 | LEGACY EEPROM DRIVER |
7c81c60f | 5330 | M: Jean Delvare <[email protected]> |
b0461a44 JD |
5331 | S: Maintained |
5332 | F: Documentation/misc-devices/eeprom | |
5333 | F: drivers/misc/eeprom/eeprom.c | |
5334 | ||
1da177e4 | 5335 | LEGO USB Tower driver |
8b58be88 | 5336 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
5337 | L: [email protected] |
5338 | W: http://legousb.sourceforge.net/ | |
5339 | S: Maintained | |
679655da | 5340 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5341 | |
055616a8 MK |
5342 | LG2160 MEDIA DRIVER |
5343 | M: Michael Krufky <[email protected]> | |
5344 | L: [email protected] | |
5345 | W: http://linuxtv.org/ | |
5346 | W: http://github.com/mkrufky | |
5347 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5348 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5349 | S: Maintained | |
5350 | F: drivers/media/dvb-frontends/lg2160.* | |
5351 | ||
6f0e7725 MK |
5352 | LGDT3305 MEDIA DRIVER |
5353 | M: Michael Krufky <[email protected]> | |
5354 | L: [email protected] | |
5355 | W: http://linuxtv.org/ | |
5356 | W: http://github.com/mkrufky | |
5357 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5358 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5359 | S: Maintained | |
5360 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5361 | ||
568a17ff | 5362 | LGUEST |
8b58be88 | 5363 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5364 | L: [email protected] |
568a17ff | 5365 | W: http://lguest.ozlabs.org/ |
72e91863 | 5366 | S: Odd Fixes |
070f420b | 5367 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5368 | F: arch/x86/lguest/ |
5369 | F: drivers/lguest/ | |
5370 | F: include/linux/lguest*.h | |
070f420b | 5371 | F: tools/lguest/ |
568a17ff | 5372 | |
1acd437c SL |
5373 | LIBLOCKDEP |
5374 | M: Sasha Levin <[email protected]> | |
5375 | S: Maintained | |
5376 | F: tools/lib/lockdep/ | |
5377 | ||
1da177e4 | 5378 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5379 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5380 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5381 | S: Supported | |
11c34c7d | 5382 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5383 | |
852bb9f5 | 5384 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5385 | M: Benjamin Herrenschmidt <[email protected]> |
5386 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 5387 | W: http://www.penguinppc.org/ |
a4724ed6 | 5388 | L: [email protected] |
8a6e2535 | 5389 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5391 | S: Supported |
11c34c7d JP |
5392 | F: Documentation/powerpc/ |
5393 | F: arch/powerpc/ | |
1da177e4 LT |
5394 | |
5395 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5396 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5397 | W: http://www.penguinppc.org/ |
a4724ed6 | 5398 | L: [email protected] |
1da177e4 | 5399 | S: Maintained |
11c34c7d JP |
5400 | F: arch/powerpc/platforms/powermac/ |
5401 | F: drivers/macintosh/ | |
1da177e4 | 5402 | |
77a76369 | 5403 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5404 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5405 | L: [email protected] |
a149507b | 5406 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5407 | S: Maintained |
11c34c7d JP |
5408 | F: arch/powerpc/platforms/512x/ |
5409 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5410 | |
5411 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
1d11cd67 | 5412 | M: Alistair Popple <[email protected]> |
8b58be88 | 5413 | M: Matt Porter <[email protected]> |
1da177e4 | 5414 | W: http://www.penguinppc.org/ |
a4724ed6 | 5415 | L: [email protected] |
1da177e4 | 5416 | S: Maintained |
11c34c7d JP |
5417 | F: arch/powerpc/platforms/40x/ |
5418 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5419 | |
260c02a9 | 5420 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5421 | L: [email protected] |
cdeb8994 | 5422 | S: Orphan |
11c34c7d JP |
5423 | F: arch/powerpc/*/*virtex* |
5424 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5425 | |
e93adf1e | 5426 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5427 | M: Vitaly Bordug <[email protected]> |
5428 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5429 | W: http://www.penguinppc.org/ |
a4724ed6 | 5430 | L: [email protected] |
e93adf1e | 5431 | S: Maintained |
a2b1f7c8 | 5432 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5433 | |
1da177e4 | 5434 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5435 | M: Kumar Gala <[email protected]> |
ce00f85c | 5436 | W: http://www.penguinppc.org/ |
a4724ed6 | 5437 | L: [email protected] |
ce00f85c | 5438 | S: Maintained |
11c34c7d | 5439 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5440 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5441 | |
ab06ff3a | 5442 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5443 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5444 | L: [email protected] |
92e19709 | 5445 | S: Maintained |
11c34c7d JP |
5446 | F: arch/powerpc/platforms/pasemi/ |
5447 | F: drivers/*/*pasemi* | |
5448 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5449 | |
1da177e4 | 5450 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5451 | M: Chris Wright <[email protected]> |
1a4520be | 5452 | L: [email protected] |
1da177e4 LT |
5453 | S: Supported |
5454 | ||
a23ce6da HW |
5455 | LIS3LV02D ACCELEROMETER DRIVER |
5456 | M: Eric Piel <[email protected]> | |
5457 | S: Maintained | |
ff606677 JD |
5458 | F: Documentation/misc-devices/lis3lv02d |
5459 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5460 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5461 | |
e2d1d6c0 | 5462 | LLC (802.2) |
8b58be88 | 5463 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5464 | S: Maintained |
679655da | 5465 | F: include/linux/llc.h |
c117ab84 | 5466 | F: include/uapi/linux/llc.h |
679655da JP |
5467 | F: include/net/llc* |
5468 | F: net/llc/ | |
e2d1d6c0 | 5469 | |
4e233cbe AD |
5470 | LM73 HARDWARE MONITOR DRIVER |
5471 | M: Guillaume Ligneul <[email protected]> | |
5472 | L: [email protected] | |
5473 | S: Maintained | |
5474 | F: drivers/hwmon/lm73.c | |
5475 | ||
156e2d1a | 5476 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5477 | M: Jean Delvare <[email protected]> |
156e2d1a JD |
5478 | L: [email protected] |
5479 | S: Maintained | |
5480 | F: Documentation/hwmon/lm78 | |
5481 | F: drivers/hwmon/lm78.c | |
5482 | ||
1da177e4 | 5483 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5484 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5485 | L: [email protected] |
1da177e4 | 5486 | S: Maintained |
679655da JP |
5487 | F: Documentation/hwmon/lm83 |
5488 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5489 | |
5490 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5491 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5492 | L: [email protected] |
1da177e4 | 5493 | S: Maintained |
679655da | 5494 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5495 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5496 | F: drivers/hwmon/lm90.c |
1da177e4 | 5497 | |
917cc4e6 GR |
5498 | LM95234 HARDWARE MONITOR DRIVER |
5499 | M: Guenter Roeck <[email protected]> | |
5500 | L: [email protected] | |
5501 | S: Maintained | |
5502 | F: Documentation/hwmon/lm95234 | |
5503 | F: drivers/hwmon/lm95234.c | |
5504 | ||
68620bdd MP |
5505 | LME2510 MEDIA DRIVER |
5506 | M: Malcolm Priestley <[email protected]> | |
5507 | L: [email protected] | |
5508 | W: http://linuxtv.org/ | |
5509 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5510 | S: Maintained | |
5511 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5512 | ||
512e67f9 | 5513 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5514 | M: Peter Zijlstra <[email protected]> |
5515 | M: Ingo Molnar <[email protected]> | |
981c3a4f | 5516 | L: [email protected] |
75fc2d37 | 5517 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5518 | S: Maintained |
679655da JP |
5519 | F: Documentation/lockdep*.txt |
5520 | F: Documentation/lockstat.txt | |
5521 | F: include/linux/lockdep.h | |
7486d6da | 5522 | F: kernel/locking/ |
512e67f9 | 5523 | |
dde33348 | 5524 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5525 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5526 | L: [email protected] |
5527 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5528 | S: Maintained |
679655da | 5529 | F: Documentation/ldm.txt |
20d16fef | 5530 | F: block/partitions/ldm.* |
1da177e4 | 5531 | |
ef6ada3d JE |
5532 | LogFS |
5533 | M: Joern Engel <[email protected]> | |
756ccb3c | 5534 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5535 | L: [email protected] |
5536 | W: logfs.org | |
5537 | S: Maintained | |
5538 | F: fs/logfs/ | |
5539 | ||
b62d7946 RS |
5540 | LPC32XX MACHINE SUPPORT |
5541 | M: Roland Stigge <[email protected]> | |
5542 | L: [email protected] (moderated for non-subscribers) | |
5543 | S: Maintained | |
5544 | F: arch/arm/mach-lpc32xx/ | |
5545 | ||
c87e34ef | 5546 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
5547 | M: Nagalakshmi Nandigama <[email protected]> |
5548 | M: Praveen Krishnamoorthy <[email protected]> | |
5549 | M: Sreekanth Reddy <[email protected]> | |
5550 | M: Abhijit Mahajan <[email protected]> | |
5551 | L: [email protected] | |
c87e34ef MED |
5552 | L: [email protected] |
5553 | W: http://www.lsilogic.com/support | |
5554 | S: Supported | |
679655da | 5555 | F: drivers/message/fusion/ |
500c152a | 5556 | F: drivers/scsi/mpt2sas/ |
5557 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5558 | |
1da177e4 | 5559 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5560 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5561 | L: [email protected] |
5562 | S: Maintained | |
679655da | 5563 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5564 | |
e5f5c99a GR |
5565 | LTC4261 HARDWARE MONITOR DRIVER |
5566 | M: Guenter Roeck <[email protected]> | |
5567 | L: [email protected] | |
5568 | S: Maintained | |
5569 | F: Documentation/hwmon/ltc4261 | |
5570 | F: drivers/hwmon/ltc4261.c | |
5571 | ||
81365c31 | 5572 | LTP (Linux Test Project) |
28b8e8d4 | 5573 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 | 5574 | M: Cyril Hrubis <[email protected]> |
7d1ae8a8 | 5575 | M: Wanlong Gao <[email protected]> |
f2eb7f6f CH |
5576 | M: Jan Stancek <[email protected]> |
5577 | M: Stanislav Kholmanskikh <[email protected]> | |
5578 | M: Alexey Kodanev <[email protected]> | |
81365c31 | 5579 | L: [email protected] (subscribers-only) |
f2eb7f6f | 5580 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 5581 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
5582 | S: Maintained |
5583 | ||
c12a54b3 | 5584 | M32R ARCHITECTURE |
8b58be88 | 5585 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5586 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5587 | L: [email protected] (in Japanese) |
5588 | W: http://www.linux-m32r.org/ | |
5589 | S: Maintained | |
679655da | 5590 | F: arch/m32r/ |
c12a54b3 | 5591 | |
1da177e4 | 5592 | M68K ARCHITECTURE |
8b58be88 | 5593 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5594 | L: [email protected] |
5595 | W: http://www.linux-m68k.org/ | |
54e5881d | 5596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5597 | S: Maintained |
679655da | 5598 | F: arch/m68k/ |
9db35182 | 5599 | F: drivers/zorro/ |
1da177e4 LT |
5600 | |
5601 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5602 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5603 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5604 | L: [email protected] |
1da177e4 | 5605 | S: Maintained |
9db35182 | 5606 | F: arch/m68k/mac/ |
1da177e4 LT |
5607 | |
5608 | M68K ON HP9000/300 | |
8b58be88 | 5609 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5610 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5611 | S: Maintained | |
679655da | 5612 | F: arch/m68k/hp300/ |
1da177e4 | 5613 | |
74425546 AP |
5614 | M88DS3103 MEDIA DRIVER |
5615 | M: Antti Palosaari <[email protected]> | |
5616 | L: [email protected] | |
5617 | W: http://linuxtv.org/ | |
5618 | W: http://palosaari.fi/linux/ | |
5619 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5620 | T: git git://linuxtv.org/anttip/media_tree.git | |
5621 | S: Maintained | |
5622 | F: drivers/media/dvb-frontends/m88ds3103* | |
5623 | ||
68620bdd MP |
5624 | M88RS2000 MEDIA DRIVER |
5625 | M: Malcolm Priestley <[email protected]> | |
5626 | L: [email protected] | |
5627 | W: http://linuxtv.org/ | |
5628 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5629 | S: Maintained | |
5630 | F: drivers/media/dvb-frontends/m88rs2000* | |
5631 | ||
0d62f800 AP |
5632 | M88TS2022 MEDIA DRIVER |
5633 | M: Antti Palosaari <[email protected]> | |
5634 | L: [email protected] | |
5635 | W: http://linuxtv.org/ | |
5636 | W: http://palosaari.fi/linux/ | |
5637 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5638 | T: git git://linuxtv.org/anttip/media_tree.git | |
5639 | S: Maintained | |
5640 | F: drivers/media/tuners/m88ts2022* | |
5641 | ||
07a092fa | 5642 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
5643 | M: Alexey Klimov <[email protected]> |
5644 | L: [email protected] | |
5645 | T: git git://linuxtv.org/media_tree.git | |
5646 | S: Maintained | |
5647 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 5648 | |
64a327a7 | 5649 | MAC80211 |
8b58be88 | 5650 | M: Johannes Berg <[email protected]> |
64a327a7 | 5651 | L: [email protected] |
491b26b4 | 5652 | W: http://wireless.kernel.org/ |
ce466579 JB |
5653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5655 | S: Maintained |
679655da JP |
5656 | F: Documentation/networking/mac80211-injection.txt |
5657 | F: include/net/mac80211.h | |
5658 | F: net/mac80211/ | |
64a327a7 | 5659 | |
1036d864 | 5660 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5661 | M: Stefano Brivio <[email protected]> |
5662 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5663 | L: [email protected] |
491b26b4 | 5664 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5666 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5667 | S: Maintained |
679655da | 5668 | F: net/mac80211/rc80211_pid* |
1036d864 | 5669 | |
b863ceb7 | 5670 | MACVLAN DRIVER |
8b58be88 | 5671 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5672 | L: [email protected] |
5673 | S: Maintained | |
679655da JP |
5674 | F: drivers/net/macvlan.c |
5675 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5676 | |
faf1668c | 5677 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5678 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5679 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5680 | L: [email protected] |
1b53dc74 | 5681 | S: Maintained |
faf1668c | 5682 | |
8427defd RK |
5683 | MARVELL ARMADA DRM SUPPORT |
5684 | M: Russell King <[email protected]> | |
5685 | S: Maintained | |
5686 | F: drivers/gpu/drm/armada/ | |
5687 | ||
44c14c1d | 5688 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5689 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5690 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5691 | L: [email protected] |
5692 | S: Maintained | |
5693 | F: drivers/net/ethernet/marvell/sk* | |
5694 | ||
74cda169 | 5695 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5696 | L: [email protected] |
8ac3e99e | 5697 | S: Orphan |
679655da | 5698 | F: drivers/net/wireless/libertas/ |
74cda169 | 5699 | |
b60d6975 | 5700 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5701 | M: Sebastian Hesselbarth <[email protected]> |
979b6c13 | 5702 | L: [email protected] |
f5ca8502 | 5703 | S: Maintained |
527a6266 | 5704 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5705 | F: include/linux/mv643xx.h |
1da177e4 | 5706 | |
370b8ed9 TP |
5707 | MARVELL MVNETA ETHERNET DRIVER |
5708 | M: Thomas Petazzoni <[email protected]> | |
5709 | L: [email protected] | |
5710 | S: Maintained | |
5711 | F: drivers/net/ethernet/marvell/mvneta.* | |
5712 | ||
fcad584d BZ |
5713 | MARVELL MWIFIEX WIRELESS DRIVER |
5714 | M: Bing Zhao <[email protected]> | |
5715 | L: [email protected] | |
5716 | S: Maintained | |
5717 | F: drivers/net/wireless/mwifiex/ | |
5718 | ||
a2c3f656 | 5719 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5720 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5721 | L: [email protected] |
16345910 | 5722 | S: Odd Fixes |
a2c3f656 LB |
5723 | F: drivers/net/wireless/mwl8k.c |
5724 | ||
2a69567b | 5725 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5726 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5727 | S: Odd Fixes |
1fa7e547 | 5728 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5729 | |
1da177e4 | 5730 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5731 | L: [email protected] |
52653199 | 5732 | S: Orphan |
679655da | 5733 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5734 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5735 | |
ca462085 GR |
5736 | MAX16065 HARDWARE MONITOR DRIVER |
5737 | M: Guenter Roeck <[email protected]> | |
5738 | L: [email protected] | |
5739 | S: Maintained | |
5740 | F: Documentation/hwmon/max16065 | |
5741 | F: drivers/hwmon/max16065.c | |
5742 | ||
d20620de | 5743 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5744 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5745 | L: [email protected] |
5746 | S: Maintained | |
679655da JP |
5747 | F: Documentation/hwmon/max6650 |
5748 | F: drivers/hwmon/max6650.c | |
d20620de | 5749 | |
e89ab51f GR |
5750 | MAX6697 HARDWARE MONITOR DRIVER |
5751 | M: Guenter Roeck <[email protected]> | |
5752 | L: [email protected] | |
5753 | S: Maintained | |
5754 | F: Documentation/hwmon/max6697 | |
5755 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5756 | F: drivers/hwmon/max6697.c | |
5757 | F: include/linux/platform_data/max6697.h | |
5758 | ||
9be3c9a5 HV |
5759 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5760 | M: Hans Verkuil <[email protected]> | |
5761 | L: [email protected] | |
5762 | T: git git://linuxtv.org/media_tree.git | |
5763 | W: http://linuxtv.org | |
5764 | S: Maintained | |
5765 | F: drivers/media/radio/radio-maxiradio* | |
5766 | ||
127c49ae | 5767 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5768 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5769 | P: LinuxTV.org Project |
5770 | L: [email protected] | |
5771 | W: http://linuxtv.org | |
8a6e2535 | 5772 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5773 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5774 | S: Maintained |
5775 | F: Documentation/dvb/ | |
5776 | F: Documentation/video4linux/ | |
ffe06198 | 5777 | F: Documentation/DocBook/media/ |
127c49ae | 5778 | F: drivers/media/ |
ffe06198 | 5779 | F: drivers/staging/media/ |
127c49ae | 5780 | F: include/media/ |
6c0f0359 MCC |
5781 | F: include/uapi/linux/dvb/ |
5782 | F: include/uapi/linux/videodev2.h | |
5783 | F: include/uapi/linux/media.h | |
5784 | F: include/uapi/linux/v4l2-* | |
5785 | F: include/uapi/linux/meye.h | |
5786 | F: include/uapi/linux/ivtv* | |
5787 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5788 | |
6149a936 HV |
5789 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5790 | M: Hans Verkuil <[email protected]> | |
5791 | L: [email protected] | |
5792 | T: git git://linuxtv.org/media_tree.git | |
5793 | W: http://linuxtv.org | |
5794 | S: Odd Fixes | |
5795 | F: drivers/media/parport/pms* | |
5796 | ||
757e0108 | 5797 | MEGARAID SCSI DRIVERS |
8b58be88 | 5798 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5799 | L: [email protected] |
ce00f85c JC |
5800 | W: http://megaraid.lsilogic.com |
5801 | S: Maintained | |
679655da JP |
5802 | F: Documentation/scsi/megaraid.txt |
5803 | F: drivers/scsi/megaraid.* | |
5804 | F: drivers/scsi/megaraid/ | |
757e0108 | 5805 | |
2c46c9d5 AV |
5806 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5807 | M: Amir Vadai <[email protected]> | |
b75f0050 | 5808 | L: [email protected] |
2c46c9d5 AV |
5809 | S: Supported |
5810 | W: http://www.mellanox.com | |
5811 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5812 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5813 | ||
70ea91f1 SR |
5814 | MEMORY MANAGEMENT |
5815 | L: [email protected] | |
70ea91f1 SR |
5816 | W: http://www.linux-mm.org |
5817 | S: Maintained | |
679655da | 5818 | F: include/linux/mm.h |
551450bb CS |
5819 | F: include/linux/gfp.h |
5820 | F: include/linux/mmzone.h | |
5821 | F: include/linux/memory_hotplug.h | |
5822 | F: include/linux/vmalloc.h | |
679655da | 5823 | F: mm/ |
70ea91f1 | 5824 | |
f4e9ce66 | 5825 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5826 | M: David Woodhouse <[email protected]> |
242c325e | 5827 | M: Brian Norris <[email protected]> |
1da177e4 | 5828 | L: [email protected] |
8a6e2535 JP |
5829 | W: http://www.linux-mtd.infradead.org/ |
5830 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5831 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5832 | S: Maintained |
679655da JP |
5833 | F: drivers/mtd/ |
5834 | F: include/linux/mtd/ | |
c117ab84 | 5835 | F: include/uapi/mtd/ |
1da177e4 | 5836 | |
26c57ef1 | 5837 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 5838 | M: Johannes Thumshirn <[email protected]> |
26c57ef1 JT |
5839 | L: [email protected] |
5840 | S: Supported | |
5841 | F: drivers/watchdog/mena21_wdt.c | |
5842 | ||
3764e82e JT |
5843 | MEN CHAMELEON BUS (mcb) |
5844 | M: Johannes Thumshirn <[email protected]> | |
5845 | S: Supported | |
5846 | F: drivers/mcb/ | |
5847 | F: include/linux/mcb.h | |
5848 | ||
12285945 JH |
5849 | METAG ARCHITECTURE |
5850 | M: James Hogan <[email protected]> | |
d668d9ed | 5851 | L: [email protected] |
12285945 JH |
5852 | S: Supported |
5853 | F: arch/metag/ | |
5854 | F: Documentation/metag/ | |
5855 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5856 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5857 | F: drivers/irqchip/irq-metag.c |
5858 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5859 | F: drivers/tty/metag_da.c |
5860 | F: fs/imgdafs/ | |
12285945 | 5861 | |
c6375b0a | 5862 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5863 | M: Michal Simek <[email protected]> |
c6375b0a MS |
5864 | W: http://www.monstr.eu/fdt/ |
5865 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5866 | S: Supported | |
0a8c7914 | 5867 | F: arch/microblaze/ |
1da177e4 LT |
5868 | |
5869 | MICROTEK X6 SCANNER | |
61eee9a7 | 5870 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5871 | S: Maintained |
679655da | 5872 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5873 | |
5874 | MIPS | |
8b58be88 | 5875 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5876 | L: [email protected] |
6097050d | 5877 | W: http://www.linux-mips.org/ |
b05e988e | 5878 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5879 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5880 | S: Supported |
679655da JP |
5881 | F: Documentation/mips/ |
5882 | F: arch/mips/ | |
1da177e4 | 5883 | |
08b7620a HV |
5884 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5885 | M: Hans Verkuil <[email protected]> | |
5886 | L: [email protected] | |
5887 | T: git git://linuxtv.org/media_tree.git | |
5888 | W: http://linuxtv.org | |
5889 | S: Odd Fixes | |
5890 | F: drivers/media/radio/radio-miropcm20* | |
5891 | ||
e126ba97 EC |
5892 | Mellanox MLX5 core VPI driver |
5893 | M: Eli Cohen <[email protected]> | |
5894 | L: [email protected] | |
5895 | L: [email protected] | |
5896 | W: http://www.mellanox.com | |
5897 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5898 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5899 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
5900 | S: Supported |
5901 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5902 | F: include/linux/mlx5/ | |
5903 | ||
5904 | Mellanox MLX5 IB driver | |
b75f0050 JP |
5905 | M: Eli Cohen <[email protected]> |
5906 | L: [email protected] | |
5907 | W: http://www.mellanox.com | |
5908 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5909 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
5910 | S: Supported |
5911 | F: include/linux/mlx5/ | |
5912 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 5913 | |
1da177e4 | 5914 | MODULE SUPPORT |
8b58be88 | 5915 | M: Rusty Russell <[email protected]> |
1da177e4 | 5916 | S: Maintained |
679655da JP |
5917 | F: include/linux/module.h |
5918 | F: kernel/module.c | |
1da177e4 LT |
5919 | |
5920 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5921 | W: http://popies.net/meye/ |
b7788e13 | 5922 | S: Orphan |
679655da | 5923 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5924 | F: drivers/media/pci/meye/ |
6c0f0359 | 5925 | F: include/uapi/linux/meye.h |
1da177e4 | 5926 | |
b9705b60 | 5927 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5928 | M: Jiri Slaby <[email protected]> |
d735410a | 5929 | S: Maintained |
679655da | 5930 | F: Documentation/serial/moxa-smartio |
c897401b | 5931 | F: drivers/tty/mxser.* |
d735410a | 5932 | |
889b2f87 AK |
5933 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5934 | M: Alexey Klimov <[email protected]> | |
5935 | L: [email protected] | |
5936 | T: git git://linuxtv.org/media_tree.git | |
5937 | S: Maintained | |
5938 | F: drivers/media/radio/radio-mr800.c | |
5939 | ||
8c4c731a | 5940 | MSI LAPTOP SUPPORT |
182ae55c | 5941 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5942 | L: [email protected] |
8c4c731a | 5943 | S: Maintained |
679655da | 5944 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5945 | |
0f1006b1 AA |
5946 | MSI WMI SUPPORT |
5947 | M: Anisse Astier <[email protected]> | |
d0944853 | 5948 | L: [email protected] |
0f1006b1 AA |
5949 | S: Supported |
5950 | F: drivers/platform/x86/msi-wmi.c | |
5951 | ||
19a628a0 AP |
5952 | MSI001 MEDIA DRIVER |
5953 | M: Antti Palosaari <[email protected]> | |
5954 | L: [email protected] | |
5955 | W: http://linuxtv.org/ | |
5956 | W: http://palosaari.fi/linux/ | |
5957 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5958 | T: git git://linuxtv.org/anttip/media_tree.git | |
5959 | S: Maintained | |
5960 | F: drivers/staging/media/msi3101/msi001* | |
5961 | ||
2c57213f AP |
5962 | MSI3101 MEDIA DRIVER |
5963 | M: Antti Palosaari <[email protected]> | |
5964 | L: [email protected] | |
5965 | W: http://linuxtv.org/ | |
5966 | W: http://palosaari.fi/linux/ | |
5967 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5968 | T: git git://linuxtv.org/anttip/media_tree.git | |
5969 | S: Maintained | |
5970 | F: drivers/staging/media/msi3101/sdr-msi3101* | |
5971 | ||
62a37dc7 | 5972 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5973 | M: Laurent Pinchart <[email protected]> |
5974 | L: [email protected] | |
5975 | T: git git://linuxtv.org/media_tree.git | |
5976 | S: Maintained | |
5977 | F: drivers/media/i2c/mt9m032.c | |
5978 | F: include/media/mt9m032.h | |
5979 | ||
62a37dc7 | 5980 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5981 | M: Laurent Pinchart <[email protected]> |
5982 | L: [email protected] | |
5983 | T: git git://linuxtv.org/media_tree.git | |
5984 | S: Maintained | |
5985 | F: drivers/media/i2c/mt9p031.c | |
5986 | F: include/media/mt9p031.h | |
5987 | ||
62a37dc7 | 5988 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5989 | M: Laurent Pinchart <[email protected]> |
5990 | L: [email protected] | |
5991 | T: git git://linuxtv.org/media_tree.git | |
5992 | S: Maintained | |
5993 | F: drivers/media/i2c/mt9t001.c | |
5994 | F: include/media/mt9t001.h | |
5995 | ||
62a37dc7 | 5996 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5997 | M: Laurent Pinchart <[email protected]> |
5998 | L: [email protected] | |
5999 | T: git git://linuxtv.org/media_tree.git | |
6000 | S: Maintained | |
6001 | F: drivers/media/i2c/mt9v032.c | |
6002 | F: include/media/mt9v032.h | |
6003 | ||
4e0d13cb | 6004 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 6005 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
6006 | M: Lee Jones <[email protected]> |
6007 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
6008 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 6009 | S: Supported |
679655da | 6010 | F: drivers/mfd/ |
55b5940d | 6011 | F: include/linux/mfd/ |
4e0d13cb | 6012 | |
5c4e6f13 | 6013 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 6014 | M: Chris Ball <[email protected]> |
e18eaf8f | 6015 | M: Ulf Hansson <[email protected]> |
b2503a94 | 6016 | L: [email protected] |
245feaa6 | 6017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
708dce3f | 6018 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 6019 | S: Maintained |
679655da JP |
6020 | F: drivers/mmc/ |
6021 | F: include/linux/mmc/ | |
c117ab84 | 6022 | F: include/uapi/linux/mmc/ |
baca2da4 | 6023 | |
15a0580c | 6024 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 6025 | S: Orphan |
679655da JP |
6026 | F: drivers/mmc/host/mmc_spi.c |
6027 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 6028 | |
1da177e4 | 6029 | MULTISOUND SOUND DRIVER |
8b58be88 | 6030 | M: Andrew Veliath <[email protected]> |
1da177e4 | 6031 | S: Maintained |
679655da JP |
6032 | F: Documentation/sound/oss/MultiSound |
6033 | F: sound/oss/msnd* | |
1da177e4 | 6034 | |
d735410a | 6035 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 6036 | S: Orphan |
c897401b | 6037 | F: drivers/tty/isicom.c |
679655da | 6038 | F: include/linux/isicom.h |
d735410a | 6039 | |
550a7375 | 6040 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 6041 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 6042 | L: [email protected] |
43b416e5 | 6043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 6044 | S: Maintained |
679655da | 6045 | F: drivers/usb/musb/ |
550a7375 | 6046 | |
ea0af5f6 MK |
6047 | MXL5007T MEDIA DRIVER |
6048 | M: Michael Krufky <[email protected]> | |
6049 | L: [email protected] | |
6050 | W: http://linuxtv.org/ | |
6051 | W: http://github.com/mkrufky | |
6052 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6053 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6054 | S: Maintained | |
6055 | F: drivers/media/tuners/mxl5007t.* | |
6056 | ||
2d3cf588 | 6057 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 6058 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 6059 | L: [email protected] |
205057ae | 6060 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 6061 | S: Supported |
93f7848b | 6062 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 6063 | |
1da177e4 | 6064 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 6065 | S: Orphan |
d9fb9f38 | 6066 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 6067 | |
23dc05a3 DM |
6068 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6069 | M: Daniel Mack <[email protected]> | |
6070 | S: Maintained | |
6071 | L: [email protected] | |
6072 | W: http://www.native-instruments.com | |
6073 | F: sound/usb/caiaq/ | |
6074 | ||
1da177e4 | 6075 | NCP FILESYSTEM |
52653199 PV |
6076 | M: Petr Vandrovec <[email protected]> |
6077 | S: Odd Fixes | |
679655da | 6078 | F: fs/ncpfs/ |
1da177e4 | 6079 | |
a79b0322 FT |
6080 | NCR 5380 SCSI DRIVERS |
6081 | M: Finn Thain <[email protected]> | |
6082 | M: Michael Schmitz <[email protected]> | |
6083 | L: [email protected] | |
6084 | S: Maintained | |
6085 | F: Documentation/scsi/g_NCR5380.txt | |
6086 | F: drivers/scsi/NCR5380.* | |
6087 | F: drivers/scsi/arm/cumana_1.c | |
6088 | F: drivers/scsi/arm/oak.c | |
6089 | F: drivers/scsi/atari_NCR5380.c | |
6090 | F: drivers/scsi/atari_scsi.* | |
6091 | F: drivers/scsi/dmx3191d.c | |
6092 | F: drivers/scsi/dtc.* | |
6093 | F: drivers/scsi/g_NCR5380.* | |
6094 | F: drivers/scsi/g_NCR5380_mmio.c | |
6095 | F: drivers/scsi/mac_scsi.* | |
6096 | F: drivers/scsi/pas16.* | |
6097 | F: drivers/scsi/sun3_NCR5380.c | |
6098 | F: drivers/scsi/sun3_scsi.* | |
6099 | F: drivers/scsi/sun3_scsi_vme.c | |
6100 | F: drivers/scsi/t128.* | |
6101 | ||
1da177e4 | 6102 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 6103 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
6104 | L: [email protected] |
6105 | S: Maintained | |
679655da | 6106 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 6107 | |
4aa3eb4c GR |
6108 | NCT6775 HARDWARE MONITOR DRIVER |
6109 | M: Guenter Roeck <[email protected]> | |
6110 | L: [email protected] | |
6111 | S: Maintained | |
6112 | F: Documentation/hwmon/nct6775 | |
6113 | F: drivers/hwmon/nct6775.c | |
6114 | ||
3c2d774c | 6115 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 6116 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 6117 | L: [email protected] |
e3d33cb1 | 6118 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
6119 | S: Supported |
6120 | F: drivers/infiniband/hw/nes/ | |
6121 | ||
be2f2e84 | 6122 | NETEM NETWORK EMULATOR |
adbbf69d | 6123 | M: Stephen Hemminger <[email protected]> |
f318a63b | 6124 | L: [email protected] |
be2f2e84 | 6125 | S: Maintained |
679655da | 6126 | F: net/sched/sch_netem.c |
be2f2e84 | 6127 | |
b2f5a051 | 6128 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 6129 | M: Jon Mason <[email protected]> |
4a58448b | 6130 | L: [email protected] |
4a58448b | 6131 | S: Supported |
679655da | 6132 | F: Documentation/networking/s2io.txt |
b2f5a051 | 6133 | F: Documentation/networking/vxge.txt |
86387e1a | 6134 | F: drivers/net/ethernet/neterion/ |
4a58448b | 6135 | |
db9cf3a3 | 6136 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 6137 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 6138 | M: Patrick McHardy <[email protected]> |
42010ed0 | 6139 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d | 6140 | L: [email protected] |
82b98543 | 6141 | L: [email protected] |
1da177e4 LT |
6142 | W: http://www.netfilter.org/ |
6143 | W: http://www.iptables.org/ | |
42010ed0 PNA |
6144 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
6146 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 6147 | S: Supported |
679655da JP |
6148 | F: include/linux/netfilter* |
6149 | F: include/linux/netfilter/ | |
6150 | F: include/net/netfilter/ | |
c117ab84 CEB |
6151 | F: include/uapi/linux/netfilter* |
6152 | F: include/uapi/linux/netfilter/ | |
679655da JP |
6153 | F: net/*/netfilter.c |
6154 | F: net/*/netfilter/ | |
6155 | F: net/netfilter/ | |
1da177e4 | 6156 | |
4cc67735 | 6157 | NETLABEL |
87a0874c | 6158 | M: Paul Moore <[email protected]> |
4cc67735 PM |
6159 | W: http://netlabel.sf.net |
6160 | L: [email protected] | |
87a0874c | 6161 | S: Maintained |
80811493 | 6162 | F: Documentation/netlabel/ |
679655da JP |
6163 | F: include/net/netlabel.h |
6164 | F: net/netlabel/ | |
4cc67735 | 6165 | |
1da177e4 | 6166 | NETROM NETWORK LAYER |
8b58be88 | 6167 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6168 | L: [email protected] |
d34cb28a | 6169 | W: http://www.linux-ax25.org/ |
1da177e4 | 6170 | S: Maintained |
679655da | 6171 | F: include/net/netrom.h |
c117ab84 | 6172 | F: include/uapi/linux/netrom.h |
679655da | 6173 | F: net/netrom/ |
1da177e4 | 6174 | |
5ddb88c0 | 6175 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 6176 | M: Paul Clements <[email protected]> |
1da177e4 | 6177 | S: Maintained |
5e4b269b | 6178 | L: [email protected] |
679655da JP |
6179 | F: Documentation/blockdev/nbd.txt |
6180 | F: drivers/block/nbd.c | |
6181 | F: include/linux/nbd.h | |
c117ab84 | 6182 | F: include/uapi/linux/nbd.h |
1da177e4 | 6183 | |
6e43650c NH |
6184 | NETWORK DROP MONITOR |
6185 | M: Neil Horman <[email protected]> | |
6186 | L: [email protected] | |
6187 | S: Maintained | |
6188 | W: https://fedorahosted.org/dropwatch/ | |
6189 | F: net/core/drop_monitor.c | |
6190 | ||
1da177e4 | 6191 | NETWORKING [GENERAL] |
8b58be88 | 6192 | M: "David S. Miller" <[email protected]> |
979b6c13 | 6193 | L: [email protected] |
b1e8fd54 | 6194 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6195 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6198 | S: Maintained |
679655da JP |
6199 | F: net/ |
6200 | F: include/net/ | |
018d21ed JP |
6201 | F: include/linux/in.h |
6202 | F: include/linux/net.h | |
6203 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6204 | F: include/uapi/linux/in.h |
6205 | F: include/uapi/linux/net.h | |
6206 | F: include/uapi/linux/netdevice.h | |
7e814a6c | 6207 | F: tools/net/ |
f4e53f9a | 6208 | F: tools/testing/selftests/net/ |
335a67d2 | 6209 | F: lib/random32.c |
a101ccd1 | 6210 | F: lib/test_bpf.c |
1da177e4 LT |
6211 | |
6212 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6213 | M: "David S. Miller" <[email protected]> |
6214 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
6215 | M: James Morris <[email protected]> |
6216 | M: Hideaki YOSHIFUJI <[email protected]> | |
6217 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 6218 | L: [email protected] |
08deed1e | 6219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6220 | S: Maintained |
679655da JP |
6221 | F: net/ipv4/ |
6222 | F: net/ipv6/ | |
6223 | F: include/net/ip* | |
0a14842f | 6224 | F: arch/x86/net/* |
1da177e4 | 6225 | |
73b7656c DM |
6226 | NETWORKING [IPSEC] |
6227 | M: Steffen Klassert <[email protected]> | |
6228 | M: Herbert Xu <[email protected]> | |
6229 | M: "David S. Miller" <[email protected]> | |
6230 | L: [email protected] | |
d1fc5024 SK |
6231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6233 | S: Maintained |
5826bdd1 | 6234 | F: net/core/flow.c |
73b7656c DM |
6235 | F: net/xfrm/ |
6236 | F: net/key/ | |
6237 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6238 | F: net/ipv4/esp4.c |
6239 | F: net/ipv4/ah4.c | |
6240 | F: net/ipv4/ipcomp.c | |
6241 | F: net/ipv4/ip_vti.c | |
73b7656c | 6242 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6243 | F: net/ipv6/esp6.c |
6244 | F: net/ipv6/ah6.c | |
6245 | F: net/ipv6/ipcomp6.c | |
6246 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6247 | F: include/uapi/linux/xfrm.h |
6248 | F: include/net/xfrm.h | |
6249 | ||
10e2ff1c | 6250 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6251 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
6252 | L: [email protected] |
6253 | S: Maintained | |
6254 | ||
29f8f632 | 6255 | NETWORKING [WIRELESS] |
8b58be88 | 6256 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 6257 | L: [email protected] |
8a6e2535 | 6258 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6260 | S: Maintained |
34b921cf JP |
6261 | F: net/mac80211/ |
6262 | F: net/rfkill/ | |
679655da JP |
6263 | F: net/wireless/ |
6264 | F: include/net/ieee80211* | |
cc8b4a2b | 6265 | F: include/linux/wireless.h |
c117ab84 | 6266 | F: include/uapi/linux/wireless.h |
c984e24d | 6267 | F: include/net/iw_handler.h |
34b921cf | 6268 | F: drivers/net/wireless/ |
29f8f632 | 6269 | |
788873ac JP |
6270 | NETWORKING DRIVERS |
6271 | L: [email protected] | |
6272 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6273 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6276 | S: Odd Fixes |
6277 | F: drivers/net/ | |
018d21ed | 6278 | F: include/linux/if_* |
0b63bf1f JD |
6279 | F: include/linux/netdevice.h |
6280 | F: include/linux/arcdevice.h | |
6281 | F: include/linux/etherdevice.h | |
6282 | F: include/linux/fcdevice.h | |
6283 | F: include/linux/fddidevice.h | |
6284 | F: include/linux/hippidevice.h | |
6285 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6286 | F: include/uapi/linux/if_* |
6287 | F: include/uapi/linux/netdevice.h | |
788873ac | 6288 | |
3d396eb1 | 6289 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6290 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
6291 | M: Sony Chacko <[email protected]> |
6292 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 6293 | L: [email protected] |
9c2b5bde | 6294 | W: http://www.qlogic.com |
3d396eb1 | 6295 | S: Supported |
aa43c215 | 6296 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6297 | |
6423d30f AAJ |
6298 | NFC SUBSYSTEM |
6299 | M: Lauro Ramos Venancio <[email protected]> | |
6300 | M: Aloisio Almeida Jr <[email protected]> | |
6301 | M: Samuel Ortiz <[email protected]> | |
6302 | L: [email protected] | |
5adf54de | 6303 | L: [email protected] (moderated for non-subscribers) |
0293ba20 | 6304 | S: Supported |
6423d30f | 6305 | F: net/nfc/ |
55eb94f9 | 6306 | F: include/net/nfc/ |
c117ab84 | 6307 | F: include/uapi/linux/nfc.h |
6423d30f | 6308 | F: drivers/nfc/ |
08eaa1e0 | 6309 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6310 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6311 | |
e8b43555 | 6312 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6313 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
6314 | L: [email protected] |
6315 | W: http://client.linux-nfs.org | |
cd7b996a | 6316 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6317 | S: Maintained |
679655da JP |
6318 | F: fs/lockd/ |
6319 | F: fs/nfs/ | |
6320 | F: fs/nfs_common/ | |
6321 | F: net/sunrpc/ | |
6322 | F: include/linux/lockd/ | |
6323 | F: include/linux/nfs* | |
6324 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6325 | F: include/uapi/linux/nfs* |
6326 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6327 | |
85ef9cea | 6328 | NILFS2 FILESYSTEM |
e2126935 | 6329 | M: Ryusuke Konishi <[email protected]> |
6aff43f8 | 6330 | L: [email protected] |
f9472265 | 6331 | W: http://nilfs.sourceforge.net/ |
e2126935 | 6332 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 6333 | S: Supported |
679655da JP |
6334 | F: Documentation/filesystems/nilfs2.txt |
6335 | F: fs/nilfs2/ | |
6336 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6337 | |
1da177e4 | 6338 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6339 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
6340 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6341 | S: Maintained | |
679655da JP |
6342 | F: Documentation/scsi/NinjaSCSI.txt |
6343 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6344 | |
6345 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6346 | M: GOTO Masanori <[email protected]> |
6347 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
6348 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6349 | S: Maintained | |
679655da JP |
6350 | F: Documentation/scsi/NinjaSCSI.txt |
6351 | F: drivers/scsi/nsp32* | |
1da177e4 | 6352 | |
fce8a7bb JM |
6353 | NTB DRIVER |
6354 | M: Jon Mason <[email protected]> | |
6355 | S: Supported | |
2984411f JM |
6356 | W: https://github.com/jonmason/ntb/wiki |
6357 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6358 | F: drivers/ntb/ |
548c237c | 6359 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6360 | F: include/linux/ntb.h |
6361 | ||
1da177e4 | 6362 | NTFS FILESYSTEM |
2818ef50 | 6363 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 6364 | L: [email protected] |
2818ef50 | 6365 | W: http://www.tuxera.com/ |
e6f4dee7 | 6366 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6367 | S: Supported |
679655da JP |
6368 | F: Documentation/filesystems/ntfs.txt |
6369 | F: fs/ntfs/ | |
1da177e4 | 6370 | |
9eb8ef74 | 6371 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6372 | M: Antonino Daplas <[email protected]> |
c69f677c | 6373 | L: [email protected] |
ce00f85c | 6374 | S: Maintained |
679655da JP |
6375 | F: drivers/video/riva/ |
6376 | F: drivers/video/nvidia/ | |
1da177e4 | 6377 | |
79461681 MW |
6378 | NVM EXPRESS DRIVER |
6379 | M: Matthew Wilcox <[email protected]> | |
6380 | L: [email protected] | |
6381 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6382 | S: Supported | |
5be37bf9 | 6383 | F: drivers/block/nvme* |
79461681 MW |
6384 | F: include/linux/nvme.h |
6385 | ||
f50d7146 RK |
6386 | NXP TDA998X DRM DRIVER |
6387 | M: Russell King <[email protected]> | |
6388 | S: Supported | |
6389 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
6390 | F: include/drm/i2c/tda998x.h | |
6391 | ||
f5525786 | 6392 | OMAP SUPPORT |
0e24bdd4 | 6393 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
6394 | L: [email protected] |
6395 | W: http://www.muru.com/linux/omap/ | |
6396 | W: http://linux.omap.com/ | |
8a6e2535 | 6397 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6399 | S: Maintained |
4e04d5a3 | 6400 | F: arch/arm/*omap*/ |
046d0a37 JD |
6401 | F: drivers/i2c/busses/i2c-omap.c |
6402 | F: include/linux/i2c-omap.h | |
f5525786 | 6403 | |
50f29fbd | 6404 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6405 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
6406 | M: Tony Lindgren <[email protected]> |
6407 | L: [email protected] | |
d0fb18c5 | 6408 | L: [email protected] |
50f29fbd TL |
6409 | S: Maintained |
6410 | F: arch/arm/boot/dts/*omap* | |
6411 | F: arch/arm/boot/dts/*am3* | |
6412 | ||
f5525786 | 6413 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6414 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
6415 | L: [email protected] |
6416 | S: Maintained | |
6417 | F: arch/arm/*omap*/*clock* | |
6418 | ||
6419 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6420 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
6421 | L: [email protected] |
6422 | S: Maintained | |
6423 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6424 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6425 | |
d21db568 | 6426 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6427 | M: Rajendra Nayak <[email protected]> |
6428 | M: Paul Walmsley <[email protected]> | |
6429 | L: [email protected] | |
6430 | S: Maintained | |
d21db568 | 6431 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6432 | |
f5525786 | 6433 | OMAP AUDIO SUPPORT |
6c284903 | 6434 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 6435 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
6436 | L: [email protected] (subscribers-only) |
6437 | L: [email protected] | |
6438 | S: Maintained | |
6439 | F: sound/soc/omap/ | |
6440 | ||
6441 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6442 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 6443 | L: [email protected] |
f5525786 TL |
6444 | L: [email protected] |
6445 | S: Maintained | |
6446 | F: drivers/video/omap/ | |
6447 | ||
676eec0d | 6448 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6449 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 6450 | L: [email protected] |
676eec0d | 6451 | L: [email protected] |
178ff4c9 | 6452 | S: Maintained |
676eec0d | 6453 | F: drivers/video/omap2/ |
178ff4c9 TV |
6454 | F: Documentation/arm/OMAP/DSS |
6455 | ||
8b37fcfc OBC |
6456 | OMAP HARDWARE SPINLOCK SUPPORT |
6457 | M: Ohad Ben-Cohen <[email protected]> | |
6458 | L: [email protected] | |
6459 | S: Maintained | |
6460 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6461 | F: arch/arm/mach-omap2/hwspinlock.c | |
6462 | ||
f5525786 | 6463 | OMAP MMC SUPPORT |
8b58be88 | 6464 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
6465 | L: [email protected] |
6466 | S: Maintained | |
653f41b5 MC |
6467 | F: drivers/mmc/host/omap.c |
6468 | ||
6469 | OMAP HS MMC SUPPORT | |
14006bfb | 6470 | M: Balaji T K <[email protected]> |
0a4585c6 | 6471 | L: [email protected] |
653f41b5 | 6472 | L: [email protected] |
0a4585c6 | 6473 | S: Maintained |
653f41b5 | 6474 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6475 | |
6476 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6477 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
6478 | S: Maintained |
6479 | F: drivers/char/hw_random/omap-rng.c | |
6480 | ||
f400c82e | 6481 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6482 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6483 | M: Paul Walmsley <[email protected]> |
6484 | L: [email protected] | |
6485 | S: Maintained | |
8fc8b12b | 6486 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6487 | |
6488 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6489 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6490 | L: [email protected] |
6491 | S: Maintained | |
6492 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6493 | ||
7e8970e1 LP |
6494 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6495 | M: Laurent Pinchart <[email protected]> | |
6496 | L: [email protected] | |
6497 | S: Maintained | |
90d72ac6 | 6498 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6499 | |
f5525786 | 6500 | OMAP USB SUPPORT |
f299470a | 6501 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
6502 | L: [email protected] |
6503 | L: [email protected] | |
43b416e5 | 6504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6505 | S: Maintained |
a16fbd65 JP |
6506 | F: drivers/usb/*/*omap* |
6507 | F: arch/arm/*omap*/usb* | |
f5525786 | 6508 | |
6d994710 | 6509 | OMAP GPIO DRIVER |
a1415a8f | 6510 | M: Javier Martinez Canillas <[email protected]> |
6d994710 | 6511 | M: Santosh Shilimkar <[email protected]> |
c69d72ae | 6512 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
6513 | L: [email protected] |
6514 | S: Maintained | |
6515 | F: drivers/gpio/gpio-omap.c | |
6516 | ||
c351e290 MJ |
6517 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6518 | M: Mark Jackson <[email protected]> | |
6519 | L: [email protected] | |
6520 | S: Maintained | |
6521 | F: arch/arm/boot/dts/am335x-nano.dts | |
6522 | ||
0ad122d9 | 6523 | OMFS FILESYSTEM |
8b58be88 | 6524 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6525 | L: [email protected] |
6526 | S: Maintained | |
679655da JP |
6527 | F: Documentation/filesystems/omfs.txt |
6528 | F: fs/omfs/ | |
0ad122d9 | 6529 | |
c1986ee9 | 6530 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6531 | M: Harald Welte <[email protected]> |
c1986ee9 | 6532 | S: Maintained |
679655da JP |
6533 | F: drivers/char/pcmcia/cm4000_cs.c |
6534 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6535 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6536 | |
77c44ab1 | 6537 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6538 | M: Harald Welte <[email protected]> |
77c44ab1 | 6539 | S: Maintained |
679655da | 6540 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6541 | |
77d5140f | 6542 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6543 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6544 | L: [email protected] |
275ffde4 | 6545 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6546 | S: Maintained |
90d72ac6 | 6547 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6548 | |
431bca73 | 6549 | ONENAND FLASH DRIVER |
8b58be88 | 6550 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6551 | L: [email protected] |
6552 | S: Maintained | |
679655da JP |
6553 | F: drivers/mtd/onenand/ |
6554 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6555 | |
1da177e4 | 6556 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6557 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6558 | L: [email protected] |
6559 | L: [email protected] | |
6560 | S: Maintained | |
f7269cfc JD |
6561 | F: Documentation/scsi/osst.txt |
6562 | F: drivers/scsi/osst.* | |
6563 | F: drivers/scsi/osst_*.h | |
6564 | F: drivers/scsi/st.h | |
1da177e4 | 6565 | |
e2d1d6c0 | 6566 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6567 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6568 | L: [email protected] |
e2d1d6c0 | 6569 | S: Maintained |
679655da JP |
6570 | F: Documentation/i2c/busses/i2c-ocores |
6571 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6572 | |
860c44c1 | 6573 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6574 | M: Grant Likely <[email protected]> |
5d3ad8a6 | 6575 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6576 | L: [email protected] |
860c44c1 | 6577 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6578 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6579 | S: Maintained |
f8828205 | 6580 | F: drivers/of/ |
860c44c1 | 6581 | F: include/linux/of*.h |
f8828205 | 6582 | F: scripts/dtc/ |
860c44c1 | 6583 | K: of_get_property |
d945fa0d | 6584 | K: of_match_table |
860c44c1 | 6585 | |
f8828205 | 6586 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6587 | M: Rob Herring <[email protected]> |
f8828205 GL |
6588 | M: Pawel Moll <[email protected]> |
6589 | M: Mark Rutland <[email protected]> | |
de80963e | 6590 | M: Ian Campbell <[email protected]> |
bdbff6ba | 6591 | M: Kumar Gala <[email protected]> |
f8828205 GL |
6592 | L: [email protected] |
6593 | S: Maintained | |
6594 | F: Documentation/devicetree/ | |
6595 | F: arch/*/boot/dts/ | |
6596 | F: include/dt-bindings/ | |
6597 | ||
19f9d392 JB |
6598 | OPENRISC ARCHITECTURE |
6599 | M: Jonas Bonn <[email protected]> | |
6600 | W: http://openrisc.net | |
eab7c1c0 | 6601 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6602 | S: Maintained |
6603 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6604 | F: arch/openrisc/ |
19f9d392 | 6605 | |
ccb1352e | 6606 | OPENVSWITCH |
4f337ed5 | 6607 | M: Pravin Shelar <[email protected]> |
ccb1352e JG |
6608 | L: [email protected] |
6609 | W: http://openvswitch.org | |
4f337ed5 | 6610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git |
ccb1352e JG |
6611 | S: Maintained |
6612 | F: net/openvswitch/ | |
6613 | ||
af39917d CL |
6614 | OPL4 DRIVER |
6615 | M: Clemens Ladisch <[email protected]> | |
6616 | L: [email protected] (moderated for non-subscribers) | |
6617 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6618 | S: Maintained | |
6619 | F: sound/drivers/opl4/ | |
6620 | ||
1da177e4 | 6621 | OPROFILE |
4cf7e718 | 6622 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6623 | L: [email protected] |
6624 | S: Maintained | |
81c4a8a6 | 6625 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6626 | F: arch/*/oprofile/ |
6627 | F: drivers/oprofile/ | |
6628 | F: include/linux/oprofile.h | |
1da177e4 | 6629 | |
e2d1d6c0 | 6630 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6631 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6632 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6633 | L: [email protected] (moderated for non-subscribers) |
6634 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6636 | S: Supported |
679655da JP |
6637 | F: Documentation/filesystems/ocfs2.txt |
6638 | F: Documentation/filesystems/dlmfs.txt | |
6639 | F: fs/ocfs2/ | |
e2d1d6c0 | 6640 | |
1da177e4 | 6641 | ORINOCO DRIVER |
724c6b35 | 6642 | L: [email protected] |
491b26b4 | 6643 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6644 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6645 | S: Orphan |
679655da | 6646 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6647 | |
42c55aa8 | 6648 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6649 | M: Boaz Harrosh <[email protected]> |
f1f6630b | 6650 | M: Benny Halevy <[email protected]> |
68274794 BH |
6651 | L: [email protected] |
6652 | W: http://open-osd.org | |
54e5881d | 6653 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6654 | S: Maintained |
42c55aa8 | 6655 | F: drivers/scsi/osd/ |
6b6f0b6c | 6656 | F: include/scsi/osd_* |
42c55aa8 | 6657 | F: fs/exofs/ |
68274794 | 6658 | |
e2d1d6c0 | 6659 | P54 WIRELESS DRIVER |
084cb0fe | 6660 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6661 | L: [email protected] |
084cb0fe | 6662 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6663 | S: Maintained |
679655da | 6664 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6665 | |
f5cd7872 | 6666 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6667 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6668 | L: [email protected] |
6669 | S: Maintained | |
ded19add | 6670 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6671 | |
beb58aa3 | 6672 | PA SEMI SMBUS DRIVER |
8b58be88 | 6673 | M: Olof Johansson <[email protected]> |
846557d3 | 6674 | L: [email protected] |
beb58aa3 | 6675 | S: Maintained |
679655da | 6676 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6677 | |
48fc267e SK |
6678 | PADATA PARALLEL EXECUTION MECHANISM |
6679 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6680 | L: [email protected] |
6681 | S: Maintained | |
6682 | F: kernel/padata.c | |
6683 | F: include/linux/padata.h | |
6684 | F: Documentation/padata.txt | |
6685 | ||
709ee531 | 6686 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6687 | M: Harald Welte <[email protected]> |
d0944853 | 6688 | L: [email protected] |
709ee531 | 6689 | S: Maintained |
679655da | 6690 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6691 | |
368dd5ac | 6692 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6693 | M: David Howells <[email protected]> |
6694 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6695 | L: [email protected] (moderated for non-subscribers) |
6696 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6697 | S: Maintained | |
679655da JP |
6698 | F: Documentation/mn10300/ |
6699 | F: arch/mn10300/ | |
4fa97181 | 6700 | |
1da177e4 | 6701 | PARALLEL PORT SUPPORT |
3dd1a329 | 6702 | L: [email protected] (subscribers-only) |
5fdc2abe | 6703 | S: Orphan |
679655da JP |
6704 | F: drivers/parport/ |
6705 | F: include/linux/parport*.h | |
6706 | F: drivers/char/ppdev.c | |
c117ab84 | 6707 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6708 | |
4cdf6bc2 | 6709 | PARAVIRT_OPS INTERFACE |
d633180c | 6710 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6711 | M: Chris Wright <[email protected]> |
6712 | M: Alok Kataria <[email protected]> | |
6713 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6714 | L: [email protected] |
4cdf6bc2 | 6715 | S: Supported |
679655da JP |
6716 | F: Documentation/ia64/paravirt_ops.txt |
6717 | F: arch/*/kernel/paravirt* | |
6718 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6719 | |
e2d1d6c0 | 6720 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6721 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6722 | L: [email protected] (subscribers-only) |
6723 | W: http://www.torque.net/linux-pp.html | |
6724 | S: Maintained | |
679655da JP |
6725 | F: Documentation/blockdev/paride.txt |
6726 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6727 | |
6728 | PARISC ARCHITECTURE | |
b8828770 | 6729 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6730 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6731 | L: [email protected] |
6732 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6733 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6736 | S: Maintained |
679655da | 6737 | F: arch/parisc/ |
2b6bac9e | 6738 | F: Documentation/parisc/ |
679655da | 6739 | F: drivers/parisc/ |
2b6bac9e HD |
6740 | F: drivers/char/agp/parisc-agp.c |
6741 | F: drivers/input/serio/gscps2.c | |
6742 | F: drivers/parport/parport_gsc.* | |
6743 | F: drivers/tty/serial/8250/8250_gsc.c | |
6744 | F: drivers/video/sti* | |
6745 | F: drivers/video/console/sti* | |
6746 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6747 | |
1662d32c | 6748 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6749 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6750 | L: [email protected] |
6751 | S: Maintained | |
679655da JP |
6752 | F: Documentation/hwmon/pc87360 |
6753 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6754 | |
6755 | PC8736x GPIO DRIVER | |
8b58be88 | 6756 | M: Jim Cromie <[email protected]> |
1662d32c | 6757 | S: Maintained |
679655da | 6758 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6759 | |
1ad107fd | 6760 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6761 | M: Jean Delvare <[email protected]> |
1ad107fd JD |
6762 | L: [email protected] |
6763 | S: Maintained | |
6764 | F: Documentation/hwmon/pc87427 | |
6765 | F: drivers/hwmon/pc87427.c | |
6766 | ||
b26e0ed4 | 6767 | PCA9532 LED DRIVER |
8b58be88 | 6768 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6769 | S: Maintained |
d5ca6918 JP |
6770 | F: drivers/leds/leds-pca9532.c |
6771 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6772 | |
5ce914a8 | 6773 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6774 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6775 | L: [email protected] |
6776 | S: Maintained | |
b4f0b74e | 6777 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6778 | |
3971dae5 | 6779 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6780 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6781 | S: Maintained |
6782 | F: drivers/firmware/pcdp.* | |
6783 | ||
065c6359 | 6784 | PCI ERROR RECOVERY |
6305902c | 6785 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6786 | L: [email protected] |
065c6359 | 6787 | S: Supported |
679655da | 6788 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6789 | |
1da177e4 | 6790 | PCI SUBSYSTEM |
5ac3a6d2 | 6791 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6792 | L: [email protected] |
99662dd1 | 6793 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6795 | S: Supported |
679655da JP |
6796 | F: Documentation/PCI/ |
6797 | F: drivers/pci/ | |
6798 | F: include/linux/pci* | |
6b49ee49 | 6799 | F: arch/x86/pci/ |
cad01f91 | 6800 | F: arch/x86/kernel/quirks.c |
1da177e4 | 6801 | |
f0b75693 BH |
6802 | PCI DRIVER FOR IMX6 |
6803 | M: Richard Zhu <[email protected]> | |
6804 | M: Shawn Guo <[email protected]> | |
6805 | L: [email protected] | |
6806 | L: [email protected] (moderated for non-subscribers) | |
6807 | S: Maintained | |
6808 | F: drivers/pci/host/*imx6* | |
6809 | ||
6810 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6811 | M: Thomas Petazzoni <[email protected]> | |
6812 | M: Jason Cooper <[email protected]> | |
6813 | L: [email protected] | |
6814 | L: [email protected] (moderated for non-subscribers) | |
6815 | S: Maintained | |
6816 | F: drivers/pci/host/*mvebu* | |
6817 | ||
0447cfd7 TR |
6818 | PCI DRIVER FOR NVIDIA TEGRA |
6819 | M: Thierry Reding <[email protected]> | |
6820 | L: [email protected] | |
f0b75693 | 6821 | L: [email protected] |
0447cfd7 TR |
6822 | S: Supported |
6823 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6824 | F: drivers/pci/host/pci-tegra.c | |
6825 | ||
f0b75693 BH |
6826 | PCI DRIVER FOR RENESAS R-CAR |
6827 | M: Simon Horman <[email protected]> | |
6828 | L: [email protected] | |
6829 | L: [email protected] | |
6830 | S: Maintained | |
6831 | F: drivers/pci/host/*rcar* | |
6832 | ||
4af82255 JH |
6833 | PCI DRIVER FOR SAMSUNG EXYNOS |
6834 | M: Jingoo Han <[email protected]> | |
6835 | L: [email protected] | |
f0b75693 BH |
6836 | L: [email protected] (moderated for non-subscribers) |
6837 | L: [email protected] (moderated for non-subscribers) | |
4af82255 JH |
6838 | S: Maintained |
6839 | F: drivers/pci/host/pci-exynos.c | |
6840 | ||
f0b75693 BH |
6841 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6842 | M: Mohit Kumar <[email protected]> | |
6843 | M: Jingoo Han <[email protected]> | |
6844 | L: [email protected] | |
6845 | S: Maintained | |
6846 | F: drivers/pci/host/*designware* | |
6847 | ||
cf28855b WD |
6848 | PCI DRIVER FOR GENERIC OF HOSTS |
6849 | M: Will Deacon <[email protected]> | |
6850 | L: [email protected] | |
6851 | L: [email protected] (moderated for non-subscribers) | |
6852 | S: Maintained | |
6853 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
6854 | F: drivers/pci/host/pci-host-generic.c | |
6855 | ||
1da177e4 | 6856 | PCMCIA SUBSYSTEM |
4230dfc9 | 6857 | P: Linux PCMCIA Team |
f5df5881 | 6858 | L: [email protected] |
6650e0a5 | 6859 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6861 | S: Maintained |
679655da JP |
6862 | F: Documentation/pcmcia/ |
6863 | F: drivers/pcmcia/ | |
6864 | F: include/pcmcia/ | |
1da177e4 LT |
6865 | |
6866 | PCNET32 NETWORK DRIVER | |
227fb925 | 6867 | M: Don Fry <[email protected]> |
979b6c13 | 6868 | L: [email protected] |
1da177e4 | 6869 | S: Maintained |
b955f6ca | 6870 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6871 | |
48fc267e SK |
6872 | PCRYPT PARALLEL CRYPTO ENGINE |
6873 | M: Steffen Klassert <[email protected]> | |
6874 | L: [email protected] | |
6875 | S: Maintained | |
6876 | F: crypto/pcrypt.c | |
6877 | F: include/crypto/pcrypt.h | |
6878 | ||
e72df0b8 TH |
6879 | PER-CPU MEMORY ALLOCATOR |
6880 | M: Tejun Heo <[email protected]> | |
6881 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6883 | S: Maintained | |
6884 | F: include/linux/percpu*.h | |
6885 | F: mm/percpu*.c | |
6886 | F: arch/*/include/asm/percpu.h | |
6887 | ||
ad4ecbcb | 6888 | PER-TASK DELAY ACCOUNTING |
185e595f | 6889 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6890 | S: Maintained |
679655da JP |
6891 | F: include/linux/delayacct.h |
6892 | F: kernel/delayacct.c | |
ad4ecbcb | 6893 | |
57c0c15b | 6894 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6895 | M: Peter Zijlstra <[email protected]> |
6896 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6897 | M: Ingo Molnar <[email protected]> |
f80c5393 | 6898 | M: Arnaldo Carvalho de Melo <[email protected]> |
981c3a4f | 6899 | L: [email protected] |
75fc2d37 | 6900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6901 | S: Supported |
d53e8365 | 6902 | F: kernel/events/* |
a003236c | 6903 | F: include/linux/perf_event.h |
c117ab84 | 6904 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6905 | F: arch/*/kernel/perf_event*.c |
6906 | F: arch/*/kernel/*/perf_event*.c | |
6907 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6908 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6909 | F: arch/*/kernel/perf_callchain.c |
6910 | F: tools/perf/ | |
6c0b3244 | 6911 | |
dd49d0f5 | 6912 | PERSONALITY HANDLING |
8b58be88 | 6913 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6914 | L: [email protected] |
6915 | S: Maintained | |
679655da | 6916 | F: include/linux/personality.h |
c117ab84 | 6917 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6918 | |
838e7a03 | 6919 | PHONET PROTOCOL |
2a06b40f | 6920 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6921 | S: Supported |
6922 | F: Documentation/networking/phonet.txt | |
6923 | F: include/linux/phonet.h | |
6924 | F: include/net/phonet/ | |
c117ab84 | 6925 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6926 | F: net/phonet/ |
6927 | ||
1da177e4 | 6928 | PHRAM MTD DRIVER |
8b58be88 | 6929 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6930 | L: [email protected] |
6931 | S: Maintained | |
679655da | 6932 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6933 | |
efdbb10e BP |
6934 | PICOLCD HID DRIVER |
6935 | M: Bruno Prémont <[email protected]> | |
6936 | L: [email protected] | |
6937 | S: Maintained | |
6938 | F: drivers/hid/hid-picolcd* | |
6939 | ||
a53bfa07 JI |
6940 | PICOXCELL SUPPORT |
6941 | M: Jamie Iles <[email protected]> | |
6942 | L: [email protected] (moderated for non-subscribers) | |
6943 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6944 | S: Supported | |
14430813 | 6945 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6946 | F: drivers/*/picoxcell* |
6947 | F: drivers/*/*/picoxcell* | |
6948 | ||
2744e8af LW |
6949 | PIN CONTROL SUBSYSTEM |
6950 | M: Linus Walleij <[email protected]> | |
6951 | S: Maintained | |
07f29ba6 | 6952 | F: drivers/pinctrl/ |
8e406fe4 | 6953 | F: include/linux/pinctrl/ |
2744e8af | 6954 | |
2201bbb8 JCPV |
6955 | PIN CONTROLLER - ATMEL AT91 |
6956 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6957 | L: [email protected] (moderated for non-subscribers) | |
6958 | S: Maintained | |
6959 | F: drivers/pinctrl/pinctrl-at91.c | |
6960 | ||
b75e60d6 DA |
6961 | PIN CONTROLLER - SAMSUNG |
6962 | M: Tomasz Figa <[email protected]> | |
6963 | M: Thomas Abraham <[email protected]> | |
6964 | L: [email protected] (moderated for non-subscribers) | |
6965 | L: [email protected] (moderated for non-subscribers) | |
6966 | S: Maintained | |
6967 | F: drivers/pinctrl/pinctrl-exynos.* | |
6968 | F: drivers/pinctrl/pinctrl-s3c* | |
6969 | F: drivers/pinctrl/pinctrl-samsung.* | |
6970 | ||
deda8287 | 6971 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6972 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6973 | L: [email protected] |
6974 | L: [email protected] (moderated for non-subscribers) | |
6975 | W: http://www.st.com/spear | |
6976 | S: Maintained | |
8e406fe4 | 6977 | F: drivers/pinctrl/spear/ |
deda8287 | 6978 | |
249a6771 | 6979 | PKTCDVD DRIVER |
dbd47133 | 6980 | M: Jiri Kosina <[email protected]> |
249a6771 | 6981 | S: Maintained |
679655da JP |
6982 | F: drivers/block/pktcdvd.c |
6983 | F: include/linux/pktcdvd.h | |
c117ab84 | 6984 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6985 | |
b31d8273 G |
6986 | PKUNITY SOC DRIVERS |
6987 | M: Guan Xuetao <[email protected]> | |
6988 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6989 | S: Maintained | |
ceebf4d5 | 6990 | T: git git://github.com/gxt/linux.git |
b31d8273 | 6991 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 6992 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6993 | F: drivers/video/fb-puv3.c |
2809e80b | 6994 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6995 | |
9d2ecfb7 | 6996 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6997 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6998 | L: [email protected] |
6999 | W: http://www.lm-sensors.org/ | |
7000 | W: http://www.roeck-us.net/linux/drivers/ | |
7001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
7002 | S: Maintained | |
7003 | F: Documentation/hwmon/pmbus | |
7004 | F: drivers/hwmon/pmbus/ | |
7005 | F: include/linux/i2c/pmbus.h | |
7006 | ||
89a36810 | 7007 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 7008 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
7009 | L: [email protected] |
7010 | W: http://www.pmc-sierra.com/ | |
7011 | S: Supported | |
7012 | F: drivers/scsi/pmcraid.* | |
7013 | ||
dbf9bfe6 | 7014 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 7015 | M: [email protected] |
dbf9bfe6 | 7016 | M: [email protected] |
7017 | L: [email protected] | |
7018 | S: Supported | |
7019 | F: drivers/scsi/pm8001/ | |
7020 | ||
1da177e4 | 7021 | POSIX CLOCKS and TIMERS |
8b58be88 | 7022 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 7023 | L: [email protected] |
75fc2d37 | 7024 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 7025 | S: Supported |
679655da JP |
7026 | F: fs/timerfd.c |
7027 | F: include/linux/timer* | |
7028 | F: kernel/*timer* | |
1da177e4 | 7029 | |
3be86148 | 7030 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
57318935 | 7031 | M: Dmitry Eremin-Solenikov <[email protected]> |
8b58be88 | 7032 | M: David Woodhouse <[email protected]> |
54e5881d | 7033 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 7034 | S: Maintained |
679655da | 7035 | F: include/linux/power_supply.h |
8cd725a1 | 7036 | F: drivers/power/ |
3be86148 | 7037 | |
1da177e4 | 7038 | PNP SUPPORT |
46a1f21a | 7039 | M: Rafael J. Wysocki <[email protected]> |
1da177e4 | 7040 | S: Maintained |
679655da | 7041 | F: drivers/pnp/ |
1da177e4 | 7042 | |
999445d4 | 7043 | PNXxxxx I2C DRIVER |
8b58be88 | 7044 | M: Vitaly Wool <[email protected]> |
846557d3 | 7045 | L: [email protected] |
999445d4 | 7046 | S: Maintained |
679655da | 7047 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 7048 | |
1da177e4 | 7049 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 7050 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
7051 | L: [email protected] |
7052 | S: Maintained | |
224cf5ad | 7053 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
7054 | |
7055 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 7056 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 7057 | S: Maintained |
679655da | 7058 | F: net/atm/pppoatm.c |
c117ab84 | 7059 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
7060 | |
7061 | PPP OVER ETHERNET | |
8b58be88 | 7062 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 7063 | S: Maintained |
224cf5ad JK |
7064 | F: drivers/net/ppp/pppoe.c |
7065 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 7066 | |
a6d2370b | 7067 | PPP OVER L2TP |
8b58be88 | 7068 | M: James Chapman <[email protected]> |
a6d2370b | 7069 | S: Maintained |
90ca28d1 | 7070 | F: net/l2tp/l2tp_ppp.c |
679655da | 7071 | F: include/linux/if_pppol2tp.h |
c117ab84 | 7072 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 7073 | |
eae9d2ba | 7074 | PPS SUPPORT |
8b58be88 | 7075 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
7076 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
7077 | L: [email protected] (subscribers-only) | |
7078 | S: Maintained | |
cabaaf41 JP |
7079 | F: Documentation/pps/ |
7080 | F: drivers/pps/ | |
7081 | F: include/linux/pps*.h | |
eae9d2ba | 7082 | |
71a6d0af HW |
7083 | PPTP DRIVER |
7084 | M: Dmitry Kozlov <[email protected]> | |
7085 | L: [email protected] | |
7086 | S: Maintained | |
224cf5ad | 7087 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
7088 | W: http://sourceforge.net/projects/accel-pptp |
7089 | ||
1da177e4 | 7090 | PREEMPTIBLE KERNEL |
8b58be88 | 7091 | M: Robert Love <[email protected]> |
1da177e4 LT |
7092 | L: [email protected] |
7093 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
7094 | S: Supported | |
679655da JP |
7095 | F: Documentation/preempt-locking.txt |
7096 | F: include/linux/preempt.h | |
1da177e4 LT |
7097 | |
7098 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 7099 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 7100 | L: [email protected] |
9ef80804 | 7101 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 7102 | S: Obsolete |
679655da | 7103 | F: drivers/net/wireless/prism54/ |
1da177e4 | 7104 | |
b3277dfa | 7105 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 7106 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
7107 | L: [email protected] |
7108 | S: Maintained | |
679655da | 7109 | F: drivers/ata/sata_promise.* |
b3277dfa | 7110 | |
02c18891 | 7111 | PS3 NETWORK SUPPORT |
b809b9ca | 7112 | M: Geoff Levand <[email protected]> |
02c18891 | 7113 | L: [email protected] |
a4724ed6 | 7114 | L: [email protected] |
b809b9ca | 7115 | S: Maintained |
8df158ac | 7116 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 7117 | |
f58a9d17 | 7118 | PS3 PLATFORM SUPPORT |
b809b9ca | 7119 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
7120 | L: [email protected] |
7121 | L: [email protected] | |
b809b9ca | 7122 | S: Maintained |
679655da JP |
7123 | F: arch/powerpc/boot/ps3* |
7124 | F: arch/powerpc/include/asm/lv1call.h | |
7125 | F: arch/powerpc/include/asm/ps3*.h | |
7126 | F: arch/powerpc/platforms/ps3/ | |
7127 | F: drivers/*/ps3* | |
7128 | F: drivers/ps3/ | |
fec629b8 | 7129 | F: drivers/rtc/rtc-ps3.c |
679655da | 7130 | F: drivers/usb/host/*ps3.c |
fec629b8 | 7131 | F: sound/ppc/snd_ps3* |
f58a9d17 | 7132 | |
cffb4add | 7133 | PS3VRAM DRIVER |
8b58be88 | 7134 | M: Jim Paris <[email protected]> |
a4724ed6 | 7135 | L: [email protected] |
cffb4add | 7136 | S: Maintained |
8a3977cb | 7137 | F: drivers/block/ps3vram.c |
cffb4add | 7138 | |
8defe599 | 7139 | PSTORE FILESYSTEM |
9d5e2a02 | 7140 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
7141 | M: Colin Cross <[email protected]> |
7142 | M: Kees Cook <[email protected]> | |
7143 | M: Tony Luck <[email protected]> | |
7144 | S: Maintained | |
7145 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
7146 | F: fs/pstore/ | |
7147 | F: include/linux/pstore* | |
04851772 | 7148 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
7149 | F: drivers/acpi/apei/erst.c |
7150 | ||
7fbc415d RC |
7151 | PTP HARDWARE CLOCK SUPPORT |
7152 | M: Richard Cochran <[email protected]> | |
e7333e3c | 7153 | L: [email protected] |
7fbc415d RC |
7154 | S: Maintained |
7155 | W: http://linuxptp.sourceforge.net/ | |
7156 | F: Documentation/ABI/testing/sysfs-ptp | |
7157 | F: Documentation/ptp/* | |
0ecb3cdd | 7158 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
7159 | F: drivers/net/phy/dp83640* |
7160 | F: drivers/ptp/* | |
7161 | F: include/linux/ptp_cl* | |
7162 | ||
cf94a4d1 | 7163 | PTRACE SUPPORT |
8b58be88 JP |
7164 | M: Roland McGrath <[email protected]> |
7165 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
7166 | S: Maintained |
7167 | F: include/asm-generic/syscall.h | |
7168 | F: include/linux/ptrace.h | |
7169 | F: include/linux/regset.h | |
7170 | F: include/linux/tracehook.h | |
c117ab84 | 7171 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
7172 | F: kernel/ptrace.c |
7173 | ||
8320204a | 7174 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 7175 | M: Mike Isely <[email protected]> |
16e9495d | 7176 | L: [email protected] (subscribers-only) |
661263b5 | 7177 | L: [email protected] |
8320204a | 7178 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7179 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7180 | S: Maintained |
679655da | 7181 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7182 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7183 | |
39532e6c HG |
7184 | PWC WEBCAM DRIVER |
7185 | M: Hans de Goede <[email protected]> | |
7186 | L: [email protected] | |
7187 | T: git git://linuxtv.org/media_tree.git | |
7188 | S: Maintained | |
7189 | F: drivers/media/usb/pwc/* | |
7190 | ||
200efedd | 7191 | PWM SUBSYSTEM |
aa3495f7 TR |
7192 | M: Thierry Reding <[email protected]> |
7193 | L: [email protected] | |
0c2498f1 | 7194 | S: Maintained |
006e854f | 7195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7196 | F: Documentation/pwm.txt |
7197 | F: Documentation/devicetree/bindings/pwm/ | |
7198 | F: include/linux/pwm.h | |
0c2498f1 | 7199 | F: drivers/pwm/ |
a140b98d TR |
7200 | F: drivers/video/backlight/pwm_bl.c |
7201 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7202 | |
30ec261e | 7203 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
7204 | M: Eric Miao <[email protected]> |
7205 | M: Russell King <[email protected]> | |
a323f664 | 7206 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 7207 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
7208 | T: git git://github.com/hzhuang1/linux.git |
7209 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 7210 | S: Maintained |
679655da JP |
7211 | F: arch/arm/mach-pxa/ |
7212 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7213 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
7214 | F: drivers/usb/gadget/pxa2* |
7215 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 7216 | F: sound/arm/pxa* |
14430813 | 7217 | F: sound/soc/pxa/ |
1da177e4 | 7218 | |
ec64d3bf EG |
7219 | PXA3xx NAND FLASH DRIVER |
7220 | M: Ezequiel Garcia <[email protected]> | |
7221 | L: [email protected] | |
7222 | S: Maintained | |
7223 | F: drivers/mtd/nand/pxa3xx-nand.c | |
7224 | ||
3f640c61 | 7225 | MMP SUPPORT |
8b58be88 | 7226 | M: Eric Miao <[email protected]> |
a323f664 | 7227 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 7228 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
7229 | T: git git://github.com/hzhuang1/linux.git |
7230 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7231 | S: Maintained |
3f640c61 | 7232 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7233 | |
272f133a PO |
7234 | PXA MMCI DRIVER |
7235 | S: Orphan | |
7236 | ||
57f63bc8 | 7237 | PXA RTC DRIVER |
8b58be88 | 7238 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
7239 | L: [email protected] |
7240 | S: Maintained | |
7241 | ||
52a09a04 | 7242 | QIB DRIVER |
8473c603 | 7243 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
7244 | L: [email protected] |
7245 | S: Supported | |
7246 | F: drivers/infiniband/hw/qib/ | |
7247 | ||
5e9772b9 JS |
7248 | QLOGIC QLA1280 SCSI DRIVER |
7249 | M: Michael Reed <[email protected]> | |
7250 | L: [email protected] | |
7251 | S: Maintained | |
7252 | F: drivers/scsi/qla1280.[ch] | |
7253 | ||
1da177e4 | 7254 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 7255 | M: [email protected] |
1da177e4 LT |
7256 | L: [email protected] |
7257 | S: Supported | |
679655da JP |
7258 | F: Documentation/scsi/LICENSE.qla2xxx |
7259 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7260 | |
883c98fe | 7261 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7262 | M: Vikas Chaudhary <[email protected]> |
7263 | M: [email protected] | |
7264 | L: [email protected] | |
7265 | S: Supported | |
bacfb81b | 7266 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7267 | F: drivers/scsi/qla4xxx/ |
7268 | ||
5a4faa87 | 7269 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7270 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7271 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
7272 | M: [email protected] |
7273 | L: [email protected] | |
7274 | S: Supported | |
679655da | 7275 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7276 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7277 | |
0ec00f03 | 7278 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 7279 | M: Shahed Shaikh <[email protected]> |
e6b0b019 | 7280 | M: [email protected] |
0ec00f03 AKS |
7281 | L: [email protected] |
7282 | S: Supported | |
aa43c215 | 7283 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7284 | |
c4e84bde | 7285 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 7286 | M: Shahed Shaikh <[email protected]> |
b997d79a | 7287 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7288 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 7289 | M: [email protected] |
c4e84bde RM |
7290 | L: [email protected] |
7291 | S: Supported | |
aa43c215 | 7292 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7293 | |
1da177e4 | 7294 | QNX4 FILESYSTEM |
8b58be88 | 7295 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
7296 | W: http://www.alarsen.net/linux/qnx4fs/ |
7297 | S: Maintained | |
80811493 | 7298 | F: fs/qnx4/ |
c117ab84 CEB |
7299 | F: include/uapi/linux/qnx4_fs.h |
7300 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7301 | |
91952bc0 AP |
7302 | QT1010 MEDIA DRIVER |
7303 | M: Antti Palosaari <[email protected]> | |
7304 | L: [email protected] | |
7305 | W: http://linuxtv.org/ | |
7306 | W: http://palosaari.fi/linux/ | |
7307 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7308 | T: git git://linuxtv.org/anttip/media_tree.git | |
7309 | S: Maintained | |
7310 | F: drivers/media/tuners/qt1010* | |
7311 | ||
966fb5ec SM |
7312 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7313 | M: QCA ath9k Development <[email protected]> | |
7314 | L: [email protected] | |
7315 | L: [email protected] | |
7316 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7317 | S: Supported | |
7318 | F: drivers/net/wireless/ath/ath9k/ | |
7319 | ||
2ea0ffcb KV |
7320 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7321 | M: Kalle Valo <[email protected]> | |
7322 | L: [email protected] | |
7323 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7324 | T: git git://github.com/kvalo/ath.git | |
7325 | S: Supported | |
7326 | F: drivers/net/wireless/ath/ath10k/ | |
7327 | ||
4f4567cf RK |
7328 | QUALCOMM HEXAGON ARCHITECTURE |
7329 | M: Richard Kuo <[email protected]> | |
7330 | L: [email protected] | |
7331 | S: Supported | |
7332 | F: arch/hexagon/ | |
7333 | ||
8e84c258 EK |
7334 | QUALCOMM WCN36XX WIRELESS DRIVER |
7335 | M: Eugene Krasnikov <[email protected]> | |
7336 | L: [email protected] | |
7337 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7338 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7339 | S: Supported | |
7340 | F: drivers/net/wireless/ath/wcn36xx/ | |
7341 | ||
35e3540b HV |
7342 | QUICKCAM PARALLEL PORT WEBCAMS |
7343 | M: Hans Verkuil <[email protected]> | |
7344 | L: [email protected] | |
7345 | T: git git://linuxtv.org/media_tree.git | |
7346 | W: http://linuxtv.org | |
7347 | S: Odd Fixes | |
7348 | F: drivers/media/parport/*-qcam* | |
7349 | ||
602adf40 | 7350 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7351 | M: Yehuda Sadeh <[email protected]> |
7352 | M: Sage Weil <[email protected]> | |
527a88b9 | 7353 | M: Alex Elder <[email protected]> |
602adf40 | 7354 | M: [email protected] |
09d90327 SW |
7355 | W: http://ceph.com/ |
7356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7357 | S: Supported |
7358 | F: drivers/block/rbd.c | |
7359 | F: drivers/block/rbd_types.h | |
7360 | ||
1da177e4 | 7361 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7362 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 7363 | L: [email protected] |
1da177e4 | 7364 | S: Maintained |
679655da | 7365 | F: drivers/video/aty/radeon* |
c117ab84 | 7366 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7367 | |
c6c9b34c HG |
7368 | RADIOSHARK RADIO DRIVER |
7369 | M: Hans de Goede <[email protected]> | |
7370 | L: [email protected] | |
7371 | T: git git://linuxtv.org/media_tree.git | |
7372 | S: Maintained | |
7373 | F: drivers/media/radio/radio-shark.c | |
7374 | ||
7375 | RADIOSHARK2 RADIO DRIVER | |
7376 | M: Hans de Goede <[email protected]> | |
7377 | L: [email protected] | |
7378 | T: git git://linuxtv.org/media_tree.git | |
7379 | S: Maintained | |
7380 | F: drivers/media/radio/radio-shark2.c | |
7381 | F: drivers/media/radio/radio-tea5777.c | |
7382 | ||
1da177e4 | 7383 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7384 | M: Paul Mackerras <[email protected]> |
c69f677c | 7385 | L: [email protected] |
1da177e4 | 7386 | S: Maintained |
679655da | 7387 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 7388 | |
e7839f25 | 7389 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7390 | P: rt2x00 project |
e1a6542f | 7391 | M: Ivo van Doorn <[email protected]> |
f198f98e | 7392 | M: Helmut Schaa <[email protected]> |
95ea3627 | 7393 | L: [email protected] |
83fc9c89 | 7394 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
7395 | W: http://rt2x00.serialmonkey.com/ |
7396 | S: Maintained | |
54e5881d | 7397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7398 | F: drivers/net/wireless/rt2x00/ |
7399 | ||
9db5579b | 7400 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7401 | M: Nick Piggin <[email protected]> |
9db5579b | 7402 | S: Maintained |
679655da JP |
7403 | F: Documentation/blockdev/ramdisk.txt |
7404 | F: drivers/block/brd.c | |
9db5579b | 7405 | |
9e95ce27 | 7406 | RANDOM NUMBER DRIVER |
0624bcaa | 7407 | M: "Theodore Ts'o" <[email protected]> |
9e95ce27 | 7408 | S: Maintained |
679655da | 7409 | F: drivers/char/random.c |
9e95ce27 | 7410 | |
394b701c | 7411 | RAPIDIO SUBSYSTEM |
8b58be88 | 7412 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 7413 | M: Alexandre Bounine <[email protected]> |
394b701c | 7414 | S: Maintained |
679655da | 7415 | F: drivers/rapidio/ |
394b701c | 7416 | |
e2d1d6c0 | 7417 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7418 | L: [email protected] |
f52a5490 | 7419 | S: Orphan |
679655da | 7420 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7421 | |
7422 | RCUTORTURE MODULE | |
8b58be88 JP |
7423 | M: Josh Triplett <[email protected]> |
7424 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7425 | L: [email protected] |
f9094d8e | 7426 | S: Supported |
08deed1e | 7427 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7428 | F: Documentation/RCU/torture.txt |
4102adab | 7429 | F: kernel/rcu/torture.c |
e2d1d6c0 | 7430 | |
c87b9c60 PM |
7431 | RCUTORTURE TEST FRAMEWORK |
7432 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7433 | L: [email protected] |
c87b9c60 PM |
7434 | S: Supported |
7435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7436 | F: tools/testing/selftests/rcutorture | |
7437 | ||
c1f766b5 | 7438 | RDC R-321X SoC |
8b58be88 | 7439 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
7440 | S: Maintained |
7441 | ||
db17f395 | 7442 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7443 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
7444 | L: [email protected] |
7445 | S: Maintained | |
58565a35 | 7446 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7447 | |
a09ed661 | 7448 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 7449 | M: Chien Yen <[email protected]> |
fbb5a558 | 7450 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 7451 | S: Supported |
679655da | 7452 | F: net/rds/ |
a09ed661 | 7453 | |
595182bc | 7454 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
7455 | M: Dipankar Sarma <[email protected]> |
7456 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7457 | L: [email protected] |
9fab9787 | 7458 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7459 | S: Supported |
08deed1e | 7460 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7461 | F: Documentation/RCU/ |
9fab9787 | 7462 | X: Documentation/RCU/torture.txt |
f9094d8e | 7463 | F: include/linux/rcu* |
4102adab PM |
7464 | X: include/linux/srcu.h |
7465 | F: kernel/rcu/ | |
7466 | X: kernel/rcu/torture.c | |
595182bc | 7467 | |
0c86edc0 | 7468 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7469 | M: Alessandro Zummo <[email protected]> |
76465493 | 7470 | L: [email protected] |
8a6e2535 | 7471 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7472 | S: Maintained |
679655da JP |
7473 | F: Documentation/rtc.txt |
7474 | F: drivers/rtc/ | |
7475 | F: include/linux/rtc.h | |
c117ab84 | 7476 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7477 | |
1da177e4 | 7478 | REISERFS FILE SYSTEM |
76c4e5ea | 7479 | L: [email protected] |
1da177e4 | 7480 | S: Supported |
679655da | 7481 | F: fs/reiserfs/ |
1da177e4 | 7482 | |
b83a313b | 7483 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7484 | M: Mark Brown <[email protected]> |
b83a313b MB |
7485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7486 | S: Supported | |
7487 | F: drivers/base/regmap/ | |
7488 | F: include/linux/regmap.h | |
7489 | ||
400e64df OBC |
7490 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7491 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 7492 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7493 | S: Maintained |
7494 | F: drivers/remoteproc/ | |
7495 | F: Documentation/remoteproc.txt | |
6fc26488 | 7496 | F: include/linux/remoteproc.h |
400e64df | 7497 | |
d8115db5 OBC |
7498 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7499 | M: Ohad Ben-Cohen <[email protected]> | |
7500 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7501 | S: Maintained | |
7502 | F: drivers/rpmsg/ | |
7503 | F: Documentation/rpmsg.txt | |
7504 | F: include/linux/rpmsg.h | |
7505 | ||
1b0fe6be PZ |
7506 | RESET CONTROLLER FRAMEWORK |
7507 | M: Philipp Zabel <[email protected]> | |
7508 | S: Maintained | |
7509 | F: drivers/reset/ | |
7510 | F: Documentation/devicetree/bindings/reset/ | |
7511 | F: include/linux/reset.h | |
7512 | F: include/linux/reset-controller.h | |
7513 | ||
e0897645 | 7514 | RFKILL |
8b58be88 | 7515 | M: Johannes Berg <[email protected]> |
19d337df | 7516 | L: [email protected] |
ce466579 JB |
7517 | W: http://wireless.kernel.org/ |
7518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7520 | S: Maintained |
505c9247 | 7521 | F: Documentation/rfkill.txt |
80811493 | 7522 | F: net/rfkill/ |
e0897645 | 7523 | |
67e054e9 ML |
7524 | RICOH SMARTMEDIA/XD DRIVER |
7525 | M: Maxim Levitsky <[email protected]> | |
7526 | S: Maintained | |
21c26f50 JP |
7527 | F: drivers/mtd/nand/r852.c |
7528 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7529 | |
92634125 ML |
7530 | RICOH R5C592 MEMORYSTICK DRIVER |
7531 | M: Maxim Levitsky <[email protected]> | |
7532 | S: Maintained | |
7533 | F: drivers/memstick/host/r592.* | |
7534 | ||
27f1d2f9 SA |
7535 | ROCCAT DRIVERS |
7536 | M: Stefan Achatz <[email protected]> | |
7537 | W: http://sourceforge.net/projects/roccat/ | |
7538 | S: Maintained | |
7539 | F: drivers/hid/hid-roccat* | |
7540 | F: include/linux/hid-roccat* | |
7541 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7542 | ||
1da177e4 LT |
7543 | ROCKETPORT DRIVER |
7544 | P: Comtrol Corp. | |
1da177e4 LT |
7545 | W: http://www.comtrol.com |
7546 | S: Maintained | |
679655da | 7547 | F: Documentation/serial/rocket.txt |
c897401b | 7548 | F: drivers/tty/rocket* |
1da177e4 LT |
7549 | |
7550 | ROSE NETWORK LAYER | |
8b58be88 | 7551 | M: Ralf Baechle <[email protected]> |
1da177e4 | 7552 | L: [email protected] |
d34cb28a | 7553 | W: http://www.linux-ax25.org/ |
1da177e4 | 7554 | S: Maintained |
679655da | 7555 | F: include/net/rose.h |
c117ab84 | 7556 | F: include/uapi/linux/rose.h |
679655da | 7557 | F: net/rose/ |
1da177e4 | 7558 | |
91952bc0 AP |
7559 | RTL2830 MEDIA DRIVER |
7560 | M: Antti Palosaari <[email protected]> | |
7561 | L: [email protected] | |
7562 | W: http://linuxtv.org/ | |
7563 | W: http://palosaari.fi/linux/ | |
7564 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7565 | T: git git://linuxtv.org/anttip/media_tree.git | |
7566 | S: Maintained | |
7567 | F: drivers/media/dvb-frontends/rtl2830* | |
7568 | ||
27a0aacf AP |
7569 | RTL2832 MEDIA DRIVER |
7570 | M: Antti Palosaari <[email protected]> | |
7571 | L: [email protected] | |
7572 | W: http://linuxtv.org/ | |
7573 | W: http://palosaari.fi/linux/ | |
7574 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7575 | T: git git://linuxtv.org/anttip/media_tree.git | |
7576 | S: Maintained | |
7577 | F: drivers/media/dvb-frontends/rtl2832* | |
7578 | ||
ba6e6f6e AP |
7579 | RTL2832_SDR MEDIA DRIVER |
7580 | M: Antti Palosaari <[email protected]> | |
7581 | L: [email protected] | |
7582 | W: http://linuxtv.org/ | |
7583 | W: http://palosaari.fi/linux/ | |
7584 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7585 | T: git git://linuxtv.org/anttip/media_tree.git | |
7586 | S: Maintained | |
7587 | F: drivers/staging/media/rtl2832u_sdr/rtl2832_sdr* | |
7588 | ||
59840488 | 7589 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7590 | M: "John W. Linville" <[email protected]> |
605bebe2 | 7591 | L: [email protected] |
491b26b4 | 7592 | W: http://wireless.kernel.org/ |
54e5881d | 7593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7594 | S: Maintained |
3cfeb0c3 | 7595 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7596 | |
59840488 | 7597 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7598 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
7599 | M: Hin-Tak Leung <[email protected]> |
7600 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 7601 | L: [email protected] |
491b26b4 | 7602 | W: http://wireless.kernel.org/ |
54e5881d | 7603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7604 | S: Maintained |
3cfeb0c3 | 7605 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7606 | |
3cf0c8ad LF |
7607 | RTL8192CE WIRELESS DRIVER |
7608 | M: Larry Finger <[email protected]> | |
7609 | M: Chaoming Li <[email protected]> | |
7610 | L: [email protected] | |
491b26b4 | 7611 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7613 | S: Maintained | |
7614 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7615 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7616 | |
9eb8ef74 | 7617 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7618 | M: Antonino Daplas <[email protected]> |
c69f677c | 7619 | L: [email protected] |
ce00f85c | 7620 | S: Maintained |
679655da | 7621 | F: drivers/video/savage/ |
9eb8ef74 | 7622 | |
1da177e4 | 7623 | S390 |
8b58be88 JP |
7624 | M: Martin Schwidefsky <[email protected]> |
7625 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 7626 | M: [email protected] |
d58140cc | 7627 | L: [email protected] |
5238da45 HC |
7628 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7629 | S: Supported | |
679655da | 7630 | F: arch/s390/ |
a968cd3e | 7631 | F: drivers/s390/ |
3bfe6858 JN |
7632 | F: Documentation/s390/ |
7633 | F: Documentation/DocBook/s390* | |
5238da45 | 7634 | |
322986ca SO |
7635 | S390 COMMON I/O LAYER |
7636 | M: Sebastian Ott <[email protected]> | |
7637 | M: Peter Oberparleiter <[email protected]> | |
7638 | L: [email protected] | |
7639 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7640 | S: Supported | |
7641 | F: drivers/s390/cio/ | |
7642 | ||
7643 | S390 DASD DRIVER | |
7644 | M: Stefan Weinhuber <[email protected]> | |
7645 | M: Stefan Haberland <[email protected]> | |
7646 | L: [email protected] | |
7647 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7648 | S: Supported | |
7649 | F: drivers/s390/block/dasd* | |
7650 | F: block/partitions/ibm.c | |
7651 | ||
5238da45 | 7652 | S390 NETWORK DRIVERS |
8b58be88 JP |
7653 | M: Ursula Braun <[email protected]> |
7654 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7655 | M: [email protected] |
d58140cc | 7656 | L: [email protected] |
5238da45 HC |
7657 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7658 | S: Supported | |
679655da | 7659 | F: drivers/s390/net/ |
5238da45 | 7660 | |
322986ca SO |
7661 | S390 PCI SUBSYSTEM |
7662 | M: Sebastian Ott <[email protected]> | |
7663 | M: Gerald Schaefer <[email protected]> | |
7664 | L: [email protected] | |
7665 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7666 | S: Supported | |
7667 | F: arch/s390/pci/ | |
7668 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
7669 | ||
feed9b62 | 7670 | S390 ZCRYPT DRIVER |
5c8d0983 | 7671 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7672 | M: [email protected] |
7673 | L: [email protected] | |
a968cd3e | 7674 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7675 | S: Supported |
d5ca6918 | 7676 | F: drivers/s390/crypto/ |
feed9b62 | 7677 | |
5238da45 | 7678 | S390 ZFCP DRIVER |
d38e19d0 | 7679 | M: Steffen Maier <[email protected]> |
5238da45 | 7680 | M: [email protected] |
d58140cc | 7681 | L: [email protected] |
5238da45 | 7682 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7683 | S: Supported |
679655da | 7684 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7685 | |
dd96df2c | 7686 | S390 IUCV NETWORK LAYER |
8b58be88 | 7687 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7688 | M: [email protected] |
7689 | L: [email protected] | |
7690 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7691 | S: Supported | |
679655da JP |
7692 | F: drivers/s390/net/*iucv* |
7693 | F: include/net/iucv/ | |
7694 | F: net/iucv/ | |
dd96df2c | 7695 | |
4dde7f75 | 7696 | S3C24XX SD/MMC Driver |
8b58be88 | 7697 | M: Ben Dooks <[email protected]> |
efc03ecb | 7698 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7699 | S: Supported |
679655da | 7700 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7701 | |
1f15a229 HV |
7702 | SAA6588 RDS RECEIVER DRIVER |
7703 | M: Hans Verkuil <[email protected]> | |
7704 | L: [email protected] | |
7705 | T: git git://linuxtv.org/media_tree.git | |
7706 | W: http://linuxtv.org | |
7707 | S: Odd Fixes | |
7708 | F: drivers/media/i2c/saa6588* | |
7709 | ||
98ed12e6 | 7710 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7711 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7712 | L: [email protected] |
7713 | W: http://linuxtv.org | |
7714 | T: git git://linuxtv.org/media_tree.git | |
7715 | S: Odd fixes | |
e42bf501 | 7716 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7717 | F: drivers/media/pci/saa7134/ |
7718 | ||
1da177e4 | 7719 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7720 | M: Hans Verkuil <[email protected]> |
661263b5 | 7721 | L: [email protected] |
275ffde4 | 7722 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7723 | S: Maintained |
90d72ac6 MCC |
7724 | F: drivers/media/common/saa7146/ |
7725 | F: drivers/media/pci/saa7146/ | |
7726 | F: include/media/saa7146* | |
1da177e4 | 7727 | |
92304a40 | 7728 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7729 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7730 | L: [email protected] |
7731 | S: Maintained | |
7732 | F: drivers/platform/x86/samsung-laptop.c | |
7733 | ||
4a109cc0 | 7734 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7735 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7736 | L: [email protected] (moderated for non-subscribers) |
7737 | S: Supported | |
14430813 | 7738 | F: sound/soc/samsung/ |
4a109cc0 | 7739 | |
0d89a28b JH |
7740 | SAMSUNG FRAMEBUFFER DRIVER |
7741 | M: Jingoo Han <[email protected]> | |
7742 | L: [email protected] | |
7743 | S: Maintained | |
7744 | F: drivers/video/s3c-fb.c | |
7745 | ||
f69d3a17 SK |
7746 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7747 | M: Sangbeom Kim <[email protected]> | |
7748 | L: [email protected] | |
7749 | S: Supported | |
7750 | F: drivers/mfd/sec*.c | |
7751 | F: drivers/regulator/s2m*.c | |
7752 | F: drivers/regulator/s5m*.c | |
7753 | F: drivers/rtc/rtc-sec.c | |
7754 | F: include/linux/mfd/samsung/ | |
7755 | ||
038f5c4b SN |
7756 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7757 | M: Kyungmin Park <[email protected]> | |
7758 | M: Sylwester Nawrocki <[email protected]> | |
7759 | L: [email protected] | |
7760 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7761 | S: Supported | |
7762 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 7763 | |
6fd86ab2 SN |
7764 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7765 | M: Sylwester Nawrocki <[email protected]> | |
7766 | L: [email protected] | |
7767 | L: [email protected] (moderated for non-subscribers) | |
7768 | S: Maintained | |
7769 | F: drivers/media/platform/s3c-camif/ | |
7770 | F: include/media/s3c_camif.h | |
7771 | ||
b84ef24e AH |
7772 | SAMSUNG S5C73M3 CAMERA DRIVER |
7773 | M: Kyungmin Park <[email protected]> | |
7774 | M: Andrzej Hajda <[email protected]> | |
7775 | L: [email protected] | |
7776 | S: Supported | |
7777 | F: drivers/media/i2c/s5c73m3/* | |
7778 | ||
7d459937 AH |
7779 | SAMSUNG S5K5BAF CAMERA DRIVER |
7780 | M: Kyungmin Park <[email protected]> | |
7781 | M: Andrzej Hajda <[email protected]> | |
7782 | L: [email protected] | |
7783 | S: Supported | |
7784 | F: drivers/media/i2c/s5k5baf.c | |
7785 | ||
310e39c9 TF |
7786 | SAMSUNG SOC CLOCK DRIVERS |
7787 | M: Tomasz Figa <[email protected]> | |
7788 | S: Supported | |
7789 | L: [email protected] (moderated for non-subscribers) | |
7790 | F: drivers/clk/samsung/ | |
7791 | ||
66890ed6 BA |
7792 | SAMSUNG SXGBE DRIVERS |
7793 | M: Byungho An <[email protected]> | |
7794 | M: Girish K S <[email protected]> | |
66890ed6 BA |
7795 | M: Vipul Pandya <[email protected]> |
7796 | S: Supported | |
7797 | L: [email protected] | |
7798 | F: drivers/net/ethernet/samsung/sxgbe/ | |
7799 | ||
ca749e2a | 7800 | SERIAL DRIVERS |
5e30bbb7 | 7801 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7802 | L: [email protected] |
5e30bbb7 | 7803 | S: Maintained |
14430813 | 7804 | F: drivers/tty/serial/ |
ca749e2a | 7805 | |
aecb7b64 | 7806 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7807 | M: Viresh Kumar <[email protected]> |
337ae47c | 7808 | M: Andy Shevchenko <[email protected]> |
aecb7b64 VK |
7809 | S: Maintained |
7810 | F: include/linux/dw_dmac.h | |
61a76496 | 7811 | F: drivers/dma/dw/ |
aecb7b64 | 7812 | |
f9e37137 SJ |
7813 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7814 | M: Seungwon Jeon <[email protected]> | |
7815 | M: Jaehoon Chung <[email protected]> | |
7816 | L: [email protected] | |
7817 | S: Maintained | |
7818 | F: include/linux/mmc/dw_mmc.h | |
7819 | F: drivers/mmc/host/dw_mmc* | |
7820 | ||
9222d247 | 7821 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7822 | M: John Stultz <[email protected]> |
88606e80 | 7823 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 7824 | L: [email protected] |
75fc2d37 | 7825 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7826 | S: Supported |
7827 | F: include/linux/clocksource.h | |
7828 | F: include/linux/time.h | |
7829 | F: include/linux/timex.h | |
c117ab84 CEB |
7830 | F: include/uapi/linux/time.h |
7831 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7832 | F: kernel/time/clocksource.c |
7833 | F: kernel/time/time*.c | |
7834 | F: kernel/time/ntp.c | |
7835 | ||
5b3f03f0 | 7836 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7837 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7838 | M: Hans Verkuil <[email protected]> |
7839 | S: Odd Fixes | |
14430813 | 7840 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7841 | |
1da177e4 | 7842 | SC1200 WDT DRIVER |
b300645a | 7843 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7844 | S: Maintained |
679655da | 7845 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7846 | |
7847 | SCHEDULER | |
dd9b238c | 7848 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7849 | M: Peter Zijlstra <[email protected]> |
981c3a4f | 7850 | L: [email protected] |
75fc2d37 | 7851 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7852 | S: Maintained |
95c0d71d | 7853 | F: kernel/sched/ |
679655da | 7854 | F: include/linux/sched.h |
c117ab84 | 7855 | F: include/uapi/linux/sched.h |
c2eb505b | 7856 | F: include/linux/wait.h |
1da177e4 | 7857 | |
6bcf6737 | 7858 | SCORE ARCHITECTURE |
ed38665e | 7859 | M: Chen Liqin <[email protected]> |
a2681a75 | 7860 | M: Lennox Wu <[email protected]> |
ed38665e | 7861 | W: http://www.sunplus.com |
6bcf6737 | 7862 | S: Supported |
a2681a75 | 7863 | F: arch/score/ |
6bcf6737 | 7864 | |
1da177e4 | 7865 | SCSI CDROM DRIVER |
8b58be88 | 7866 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7867 | L: [email protected] |
7868 | W: http://www.kernel.dk | |
7869 | S: Maintained | |
679655da | 7870 | F: drivers/scsi/sr* |
1da177e4 | 7871 | |
fb50a83d | 7872 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 7873 | M: Bart Van Assche <[email protected]> |
fb50a83d RD |
7874 | L: [email protected] |
7875 | S: Supported | |
7876 | W: http://www.openfabrics.org | |
7877 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7878 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7879 | F: drivers/infiniband/ulp/srp/ | |
7880 | F: include/scsi/srp.h | |
7881 | ||
1da177e4 | 7882 | SCSI SG DRIVER |
8b58be88 | 7883 | M: Doug Gilbert <[email protected]> |
1da177e4 | 7884 | L: [email protected] |
59ab3c93 | 7885 | W: http://sg.danny.cz/sg |
1da177e4 | 7886 | S: Maintained |
59ab3c93 | 7887 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
7888 | F: drivers/scsi/sg.c |
7889 | F: include/scsi/sg.h | |
1da177e4 LT |
7890 | |
7891 | SCSI SUBSYSTEM | |
c95286d8 | 7892 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7893 | L: [email protected] |
54e5881d JP |
7894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7895 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7897 | S: Maintained |
679655da JP |
7898 | F: drivers/scsi/ |
7899 | F: include/scsi/ | |
1da177e4 LT |
7900 | |
7901 | SCSI TAPE DRIVER | |
8b58be88 | 7902 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7903 | L: [email protected] |
7904 | S: Maintained | |
679655da | 7905 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7906 | F: drivers/scsi/st.* |
7907 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7908 | |
7909 | SCTP PROTOCOL | |
8b6efb75 | 7910 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7911 | M: Neil Horman <[email protected]> |
1a418796 | 7912 | L: [email protected] |
5f85813c | 7913 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7914 | S: Maintained |
679655da JP |
7915 | F: Documentation/networking/sctp.txt |
7916 | F: include/linux/sctp.h | |
4d58c025 | 7917 | F: include/uapi/linux/sctp.h |
679655da JP |
7918 | F: include/net/sctp/ |
7919 | F: net/sctp/ | |
1da177e4 LT |
7920 | |
7921 | SCx200 CPU SUPPORT | |
8b58be88 | 7922 | M: Jim Cromie <[email protected]> |
1662d32c | 7923 | S: Odd Fixes |
679655da | 7924 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7925 | F: arch/x86/platform/scx200/ |
679655da JP |
7926 | F: drivers/watchdog/scx200_wdt.c |
7927 | F: drivers/i2c/busses/scx200* | |
7928 | F: drivers/mtd/maps/scx200_docflash.c | |
7929 | F: include/linux/scx200.h | |
1662d32c JC |
7930 | |
7931 | SCx200 GPIO DRIVER | |
8b58be88 | 7932 | M: Jim Cromie <[email protected]> |
1662d32c | 7933 | S: Maintained |
679655da JP |
7934 | F: drivers/char/scx200_gpio.c |
7935 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7936 | |
7937 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7938 | M: Jim Cromie <[email protected]> |
1662d32c | 7939 | S: Maintained |
679655da | 7940 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7941 | |
6a36913a | 7942 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7943 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7944 | L: [email protected] (subscribers-only) |
7945 | S: Maintained | |
679655da | 7946 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7947 | |
e7839f25 | 7948 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 7949 | M: Chris Ball <[email protected]> |
7a241d6e | 7950 | L: [email protected] |
245feaa6 CB |
7951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7952 | S: Maintained | |
7a241d6e | 7953 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7954 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7955 | |
3085e9c1 | 7956 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7957 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7958 | L: [email protected] |
7a241d6e | 7959 | L: [email protected] |
e2d1d6c0 | 7960 | S: Maintained |
d4a45787 | 7961 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7962 | |
0d1bb41a | 7963 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7964 | M: Ben Dooks <[email protected]> |
7a241d6e | 7965 | L: [email protected] |
0d1bb41a BD |
7966 | S: Maintained |
7967 | F: drivers/mmc/host/sdhci-s3c.c | |
7968 | ||
c63b3cba | 7969 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7970 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7971 | L: [email protected] |
c63b3cba VK |
7972 | L: [email protected] |
7973 | S: Maintained | |
7974 | F: drivers/mmc/host/sdhci-spear.c | |
7975 | ||
8711cca2 | 7976 | SECURITY SUBSYSTEM |
9b45c0d2 | 7977 | M: James Morris <[email protected]> |
70b4a259 | 7978 | M: Serge E. Hallyn <[email protected]> |
8711cca2 | 7979 | L: [email protected] (suggested Cc:) |
89879a7e | 7980 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7981 | W: http://kernsec.org/ |
8711cca2 | 7982 | S: Supported |
7d2c86b5 | 7983 | F: security/ |
8711cca2 | 7984 | |
1da177e4 | 7985 | SECURITY CONTACT |
8b58be88 | 7986 | M: Security Officers <[email protected]> |
1da177e4 LT |
7987 | S: Supported |
7988 | ||
7989 | SELINUX SECURITY MODULE | |
e0238b4c | 7990 | M: Paul Moore <[email protected]> |
8b58be88 | 7991 | M: Stephen Smalley <[email protected]> |
8b58be88 | 7992 | M: Eric Paris <[email protected]> |
e0238b4c | 7993 | L: [email protected] (moderated for non-subscribers) |
f058925b | 7994 | W: http://selinuxproject.org |
5a5f2acf | 7995 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7996 | S: Supported |
679655da JP |
7997 | F: include/linux/selinux* |
7998 | F: security/selinux/ | |
6bde95ce | 7999 | F: scripts/selinux/ |
1da177e4 | 8000 | |
c1c124e9 JJ |
8001 | APPARMOR SECURITY MODULE |
8002 | M: John Johansen <[email protected]> | |
8003 | L: [email protected] (subscribers-only, general discussion) | |
8004 | W: apparmor.wiki.kernel.org | |
8005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
8006 | S: Supported | |
8007 | F: security/apparmor/ | |
8008 | ||
cef2cf07 | 8009 | SENSABLE PHANTOM |
8b58be88 | 8010 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 8011 | S: Maintained |
679655da | 8012 | F: drivers/misc/phantom.c |
c117ab84 | 8013 | F: include/uapi/linux/phantom.h |
cef2cf07 | 8014 | |
4480f15b | 8015 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 8016 | M: Tejun Heo <[email protected]> |
1da177e4 | 8017 | L: [email protected] |
3d9b9350 | 8018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 8019 | S: Supported |
d5ca6918 JP |
8020 | F: drivers/ata/ |
8021 | F: include/linux/ata.h | |
8022 | F: include/linux/libata.h | |
1da177e4 | 8023 | |
6733b39a | 8024 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 8025 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 8026 | L: [email protected] |
0ca43cc0 | 8027 | W: http://www.emulex.com |
3387f656 JP |
8028 | S: Supported |
8029 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 8030 | |
6b7c5b94 | 8031 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
8032 | M: Sathya Perla <[email protected]> |
8033 | M: Subbu Seetharaman <[email protected]> | |
8034 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 8035 | L: [email protected] |
fea3af67 | 8036 | W: http://www.emulex.com |
7d2c86b5 | 8037 | S: Supported |
9aebddd1 | 8038 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 8039 | |
8ceee660 | 8040 | SFC NETWORK DRIVER |
c06f51ea | 8041 | M: Solarflare linux maintainers <[email protected]> |
8533ccf3 | 8042 | M: Shradha Shah <[email protected]> |
c06f51ea | 8043 | L: [email protected] |
8ceee660 | 8044 | S: Supported |
874aeea5 | 8045 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 8046 | |
e2d1d6c0 | 8047 | SGI GRU DRIVER |
cc883afc | 8048 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 8049 | S: Maintained |
679655da | 8050 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
8051 | |
8052 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 8053 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
8054 | L: [email protected] |
8055 | S: Supported | |
679655da | 8056 | F: Documentation/ia64/serial.txt |
df621252 | 8057 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 8058 | F: include/linux/ioc?.h |
e2d1d6c0 | 8059 | |
75312619 | 8060 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
8061 | M: Cliff Whickman <[email protected]> |
8062 | M: Robin Holt <[email protected]> | |
75312619 | 8063 | S: Maintained |
679655da | 8064 | F: drivers/misc/sgi-xp/ |
75312619 | 8065 | |
46eacf3b AP |
8066 | SI2157 MEDIA DRIVER |
8067 | M: Antti Palosaari <[email protected]> | |
8068 | L: [email protected] | |
8069 | W: http://linuxtv.org/ | |
8070 | W: http://palosaari.fi/linux/ | |
8071 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8072 | T: git git://linuxtv.org/anttip/media_tree.git | |
8073 | S: Maintained | |
8074 | F: drivers/media/tuners/si2157* | |
8075 | ||
75e2d5ba AP |
8076 | SI2168 MEDIA DRIVER |
8077 | M: Antti Palosaari <[email protected]> | |
8078 | L: [email protected] | |
8079 | W: http://linuxtv.org/ | |
8080 | W: http://palosaari.fi/linux/ | |
8081 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8082 | T: git git://linuxtv.org/anttip/media_tree.git | |
8083 | S: Maintained | |
8084 | F: drivers/media/dvb-frontends/si2168* | |
8085 | ||
49cc629d HV |
8086 | SI470X FM RADIO RECEIVER I2C DRIVER |
8087 | M: Hans Verkuil <[email protected]> | |
8088 | L: [email protected] | |
8089 | T: git git://linuxtv.org/media_tree.git | |
8090 | W: http://linuxtv.org | |
8091 | S: Odd Fixes | |
8092 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
8093 | ||
8094 | SI470X FM RADIO RECEIVER USB DRIVER | |
8095 | M: Hans Verkuil <[email protected]> | |
8096 | L: [email protected] | |
8097 | T: git git://linuxtv.org/media_tree.git | |
8098 | W: http://linuxtv.org | |
8099 | S: Maintained | |
8100 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
8101 | F: drivers/media/radio/si470x/radio-si470x.h | |
8102 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
8103 | ||
c937ca03 EV |
8104 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
8105 | M: Eduardo Valentin <[email protected]> | |
8106 | L: [email protected] | |
8107 | T: git git://linuxtv.org/media_tree.git | |
8108 | W: http://linuxtv.org | |
8109 | S: Odd Fixes | |
99995ded | 8110 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
8111 | |
8112 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
8113 | M: Eduardo Valentin <[email protected]> | |
8114 | L: [email protected] | |
8115 | T: git git://linuxtv.org/media_tree.git | |
8116 | W: http://linuxtv.org | |
8117 | S: Odd Fixes | |
99995ded DR |
8118 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
8119 | ||
8120 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
8121 | M: Hans Verkuil <[email protected]> | |
8122 | L: [email protected] | |
8123 | T: git git://linuxtv.org/media_tree.git | |
8124 | W: http://linuxtv.org | |
8125 | S: Maintained | |
8126 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 8127 | |
beb91d46 | 8128 | SIANO DVB DRIVER |
1b2c14b4 | 8129 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
8130 | L: [email protected] |
8131 | W: http://linuxtv.org | |
8132 | T: git git://linuxtv.org/media_tree.git | |
8133 | S: Odd fixes | |
8134 | F: drivers/media/common/siano/ | |
beb91d46 | 8135 | F: drivers/media/usb/siano/ |
beb91d46 | 8136 | F: drivers/media/usb/siano/ |
14430813 | 8137 | F: drivers/media/mmc/siano/ |
beb91d46 | 8138 | |
b618b69c | 8139 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 8140 | L: [email protected] |
bb60fcb2 | 8141 | S: Orphan |
b618b69c | 8142 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
8143 | |
8144 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 8145 | L: [email protected] |
bb60fcb2 | 8146 | S: Orphan |
b618b69c GL |
8147 | F: drivers/media/platform/sh_vou.c |
8148 | F: include/media/sh_vou.h | |
8149 | ||
6349d997 | 8150 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 8151 | M: Len Brown <[email protected]> |
6349d997 LB |
8152 | L: [email protected] |
8153 | W: http://simplefirmware.org/ | |
8154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 8155 | S: Supported |
943fc810 | 8156 | F: arch/x86/platform/sfi/ |
6349d997 LB |
8157 | F: drivers/sfi/ |
8158 | F: include/linux/sfi*.h | |
e2d1d6c0 | 8159 | |
1da177e4 LT |
8160 | SIMTEC EB110ATX (Chalice CATS) |
8161 | P: Ben Dooks | |
b16957c6 BD |
8162 | P: Vincent Sanders <[email protected]> |
8163 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
8164 | W: http://www.simtec.co.uk/products/EB110ATX/ |
8165 | S: Supported | |
8166 | ||
8167 | SIMTEC EB2410ITX (BAST) | |
8168 | P: Ben Dooks | |
b16957c6 BD |
8169 | P: Vincent Sanders <[email protected]> |
8170 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
8171 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
8172 | S: Supported | |
15dba387 JP |
8173 | F: arch/arm/mach-s3c24xx/mach-bast.c |
8174 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
8175 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 8176 | |
4c5adde7 | 8177 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 8178 | M: Sekhar Nori <[email protected]> |
c69d72ae | 8179 | M: Kevin Hilman <[email protected]> |
f296ed78 | 8180 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 8181 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 8182 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 8183 | S: Supported |
14430813 | 8184 | F: arch/arm/mach-davinci/ |
046d0a37 | 8185 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 8186 | |
8d4b3f08 | 8187 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 8188 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
8189 | L: [email protected] |
8190 | L: [email protected] (moderated for non-subscribers) | |
8191 | W: http://linuxtv.org/ | |
8192 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8193 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 8194 | S: Maintained |
8d4b3f08 LP |
8195 | F: drivers/media/platform/davinci/ |
8196 | F: include/media/davinci/ | |
8197 | ||
92aab3c0 | 8198 | SIS 190 ETHERNET DRIVER |
8b58be88 | 8199 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
8200 | L: [email protected] |
8201 | S: Maintained | |
8c7de408 | 8202 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 8203 | |
1da177e4 | 8204 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 8205 | M: Daniele Venzano <[email protected]> |
1da177e4 | 8206 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 8207 | L: [email protected] |
1da177e4 | 8208 | S: Maintained |
8c7de408 | 8209 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
8210 | |
8211 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 8212 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 8213 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 8214 | S: Maintained |
679655da JP |
8215 | F: Documentation/fb/sisfb.txt |
8216 | F: drivers/video/sis/ | |
8217 | F: include/video/sisfb.h | |
1da177e4 LT |
8218 | |
8219 | SIS USB2VGA DRIVER | |
8b58be88 | 8220 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
8221 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
8222 | S: Maintained | |
679655da | 8223 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 8224 | |
415ad26d | 8225 | SLAB ALLOCATOR |
16e943bf | 8226 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 8227 | M: Pekka Enberg <[email protected]> |
16e943bf CL |
8228 | M: David Rientjes <[email protected]> |
8229 | M: Joonsoo Kim <[email protected]> | |
8230 | M: Andrew Morton <[email protected]> | |
415ad26d CL |
8231 | L: [email protected] |
8232 | S: Maintained | |
679655da | 8233 | F: include/linux/sl?b*.h |
16e943bf | 8234 | F: mm/sl?b* |
415ad26d | 8235 | |
9fab9787 PM |
8236 | SLEEPABLE READ-COPY UPDATE (SRCU) |
8237 | M: Lai Jiangshan <[email protected]> | |
8238 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 8239 | L: [email protected] |
9fab9787 PM |
8240 | W: http://www.rdrop.com/users/paulmck/RCU/ |
8241 | S: Supported | |
8242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
8243 | F: include/linux/srcu.h |
8244 | F: kernel/rcu/srcu.c | |
9fab9787 | 8245 | |
66372841 CS |
8246 | SMACK SECURITY MODULE |
8247 | M: Casey Schaufler <[email protected]> | |
8248 | L: [email protected] | |
8249 | W: http://schaufler-ca.com | |
8250 | T: git git://git.gitorious.org/smack-next/kernel.git | |
8251 | S: Maintained | |
8252 | F: Documentation/security/Smack.txt | |
8253 | F: security/smack/ | |
8254 | ||
68ace3e1 KH |
8255 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
8256 | M: Kevin Hilman <[email protected]> | |
8257 | M: Nishanth Menon <[email protected]> | |
8258 | S: Maintained | |
8259 | F: drivers/power/avs/smartreflex.c | |
8260 | F: include/linux/power/smartreflex.h | |
8261 | L: [email protected] | |
8262 | ||
1da177e4 | 8263 | SMC91x ETHERNET DRIVER |
2f82af08 | 8264 | M: Nicolas Pitre <[email protected]> |
18e2842b | 8265 | S: Odd Fixes |
ae150435 | 8266 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 8267 | |
e8e31622 SA |
8268 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
8269 | M: Sakari Ailus <[email protected]> | |
8270 | L: [email protected] | |
8271 | S: Maintained | |
14430813 | 8272 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
8273 | F: include/media/smiapp.h |
8274 | F: drivers/media/i2c/smiapp-pll.c | |
8275 | F: drivers/media/i2c/smiapp-pll.h | |
8276 | ||
920fa1ff GR |
8277 | SMM665 HARDWARE MONITOR DRIVER |
8278 | M: Guenter Roeck <[email protected]> | |
8279 | L: [email protected] | |
8280 | S: Maintained | |
8281 | F: Documentation/hwmon/smm665 | |
8282 | F: drivers/hwmon/smm665.c | |
8283 | ||
9df7305b | 8284 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 8285 | M: Steve Glendinning <[email protected]> |
9df7305b | 8286 | L: [email protected] |
90b24cfb | 8287 | S: Maintained |
9df7305b SG |
8288 | F: Documentation/hwmon/emc2103 |
8289 | F: drivers/hwmon/emc2103.c | |
8290 | ||
a98d506c HG |
8291 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
8292 | M: Hans de Goede <[email protected]> | |
8293 | L: [email protected] | |
8294 | S: Supported | |
8295 | F: Documentation/hwmon/sch5627 | |
8296 | F: drivers/hwmon/sch5627.c | |
8297 | ||
6ea884db | 8298 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 8299 | M: Jean Delvare <[email protected]> |
6ea884db MH |
8300 | L: [email protected] |
8301 | S: Maintained | |
679655da JP |
8302 | F: Documentation/hwmon/smsc47b397 |
8303 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 8304 | |
fd9abb3d | 8305 | SMSC911x ETHERNET DRIVER |
90b24cfb | 8306 | M: Steve Glendinning <[email protected]> |
2cb37728 | 8307 | L: [email protected] |
90b24cfb | 8308 | S: Maintained |
679655da | 8309 | F: include/linux/smsc911x.h |
ae150435 | 8310 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
8311 | |
8312 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8313 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 8314 | L: [email protected] |
90b24cfb | 8315 | S: Maintained |
ae150435 | 8316 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8317 | |
3c8a63e2 | 8318 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8319 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 8320 | L: [email protected] |
90b24cfb | 8321 | S: Maintained |
3c8a63e2 SG |
8322 | F: drivers/video/smscufx.c |
8323 | ||
668acf32 | 8324 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8325 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 8326 | L: [email protected] |
275ffde4 | 8327 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8328 | S: Maintained |
90d72ac6 MCC |
8329 | F: include/media/soc* |
8330 | F: drivers/media/i2c/soc_camera/ | |
8331 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8332 | |
e2d1d6c0 | 8333 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8334 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 8335 | S: Maintained |
679655da | 8336 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8337 | |
1da177e4 | 8338 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8339 | M: Neil Brown <[email protected]> |
1da177e4 | 8340 | L: [email protected] |
524418bb | 8341 | S: Supported |
679655da JP |
8342 | F: drivers/md/ |
8343 | F: include/linux/raid/ | |
c117ab84 | 8344 | F: include/uapi/linux/raid/ |
1da177e4 | 8345 | |
1da177e4 | 8346 | SONIC NETWORK DRIVER |
8b58be88 | 8347 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 8348 | L: [email protected] |
1da177e4 | 8349 | S: Maintained |
d9fb9f38 | 8350 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8351 | |
61e115a5 | 8352 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8353 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
8354 | L: [email protected] |
8355 | S: Maintained | |
679655da JP |
8356 | F: drivers/ssb/ |
8357 | F: include/linux/ssb/ | |
61e115a5 | 8358 | |
1da177e4 | 8359 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8360 | M: Mattia Dongili <[email protected]> |
d0944853 | 8361 | L: [email protected] |
5b18167d | 8362 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8363 | S: Maintained |
679655da JP |
8364 | F: Documentation/laptops/sony-laptop.txt |
8365 | F: drivers/char/sonypi.c | |
8366 | F: drivers/platform/x86/sony-laptop.c | |
8367 | F: include/linux/sony-laptop.h | |
1da177e4 | 8368 | |
baf8532a | 8369 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8370 | M: Alex Dubov <[email protected]> |
baf8532a AD |
8371 | W: http://tifmxx.berlios.de/ |
8372 | S: Maintained | |
679655da | 8373 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8374 | |
0ab30494 ML |
8375 | SONY MEMORYSTICK STANDARD SUPPORT |
8376 | M: Maxim Levitsky <[email protected]> | |
8377 | S: Maintained | |
8378 | F: drivers/memstick/core/ms_block.* | |
8379 | ||
1da177e4 | 8380 | SOUND |
8b58be88 JP |
8381 | M: Jaroslav Kysela <[email protected]> |
8382 | M: Takashi Iwai <[email protected]> | |
93711660 | 8383 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 8384 | W: http://www.alsa-project.org/ |
dde7ad8d | 8385 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8386 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 8387 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 8388 | S: Maintained |
3126a179 JP |
8389 | F: Documentation/sound/ |
8390 | F: include/sound/ | |
c117ab84 | 8391 | F: include/uapi/sound/ |
679655da | 8392 | F: sound/ |
1da177e4 | 8393 | |
33bbe149 MB |
8394 | SOUND - COMPRESSED AUDIO |
8395 | M: Vinod Koul <[email protected]> | |
8396 | L: [email protected] (moderated for non-subscribers) | |
8397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8398 | S: Supported | |
f672f31a | 8399 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8400 | F: include/sound/compress_driver.h |
f672f31a | 8401 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8402 | F: sound/core/compress_offload.c |
8403 | F: sound/soc/soc-compress.c | |
8404 | ||
bd903bde | 8405 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8406 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 8407 | M: Mark Brown <[email protected]> |
86f14df8 | 8408 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8409 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 8410 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8411 | S: Supported |
2820f615 | 8412 | F: Documentation/sound/alsa/soc/ |
679655da | 8413 | F: sound/soc/ |
e6e55122 | 8414 | F: include/sound/soc* |
eb1a6af3 | 8415 | |
d7f8761b MB |
8416 | SOUND - DMAENGINE HELPERS |
8417 | M: Lars-Peter Clausen <[email protected]> | |
8418 | S: Supported | |
8419 | F: include/sound/dmaengine_pcm.h | |
8420 | F: sound/core/pcm_dmaengine.c | |
8421 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8422 | ||
473321fc | 8423 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8424 | M: "David S. Miller" <[email protected]> |
1da177e4 | 8425 | L: [email protected] |
8a6e2535 | 8426 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8427 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8428 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8429 | S: Maintained |
679655da | 8430 | F: arch/sparc/ |
7765b8bb | 8431 | F: drivers/sbus/ |
1da177e4 | 8432 | |
6404fcca DM |
8433 | SPARC SERIAL DRIVERS |
8434 | M: "David S. Miller" <[email protected]> | |
8435 | L: [email protected] | |
08deed1e JP |
8436 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8437 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8438 | S: Maintained |
6816383a | 8439 | F: include/linux/sunserialcore.h |
df621252 | 8440 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8441 | F: drivers/tty/serial/sunhv.c |
8442 | F: drivers/tty/serial/sunsab.c | |
8443 | F: drivers/tty/serial/sunsab.h | |
8444 | F: drivers/tty/serial/sunsu.c | |
8445 | F: drivers/tty/serial/sunzilog.c | |
8446 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8447 | |
389325b4 CL |
8448 | SPARSE CHECKER |
8449 | M: "Christopher Li" <[email protected]> | |
8450 | L: [email protected] | |
8451 | W: https://sparse.wiki.kernel.org/ | |
8452 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8453 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8454 | S: Maintained | |
8455 | F: include/linux/compiler.h | |
8456 | ||
fc0c195a | 8457 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8458 | M: Viresh Kumar <[email protected]> |
9cc23682 | 8459 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
8460 | L: [email protected] |
8461 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8462 | W: http://www.st.com/spear |
8463 | S: Maintained | |
281e192f | 8464 | F: arch/arm/mach-spear/ |
fc0c195a VK |
8465 | |
8466 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8467 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
8468 | L: [email protected] |
8469 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8470 | W: http://www.st.com/spear |
8471 | S: Maintained | |
5df33a62 | 8472 | F: drivers/clk/spear/ |
fc0c195a | 8473 | |
e2d1d6c0 | 8474 | SPI SUBSYSTEM |
b02e48f2 | 8475 | M: Mark Brown <[email protected]> |
dfbe403c | 8476 | L: [email protected] |
e7e4e13c | 8477 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8478 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8479 | S: Maintained |
679655da JP |
8480 | F: Documentation/spi/ |
8481 | F: drivers/spi/ | |
8482 | F: include/linux/spi/ | |
c117ab84 | 8483 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8484 | |
2752e401 | 8485 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8486 | M: Ishizaki Kou <[email protected]> |
8487 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
8488 | L: [email protected] |
8489 | S: Supported | |
679655da | 8490 | F: Documentation/networking/spider_net.txt |
8df158ac | 8491 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8492 | |
e2d1d6c0 | 8493 | SPU FILE SYSTEM |
8b58be88 | 8494 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
8495 | L: [email protected] |
8496 | L: [email protected] | |
e2d1d6c0 RD |
8497 | W: http://www.ibm.com/developerworks/power/cell/ |
8498 | S: Supported | |
679655da JP |
8499 | F: Documentation/filesystems/spufs.txt |
8500 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8501 | |
fc555841 | 8502 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8503 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
8504 | L: [email protected] (subscribers-only) |
8505 | W: http://squashfs.org.uk | |
8506 | S: Maintained | |
679655da JP |
8507 | F: Documentation/filesystems/squashfs.txt |
8508 | F: fs/squashfs/ | |
fc555841 | 8509 | |
1da177e4 | 8510 | SRM (Alpha) environment access |
8b58be88 | 8511 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 8512 | S: Maintained |
679655da | 8513 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8514 | |
26e9a397 | 8515 | STABLE BRANCH |
879a5a00 | 8516 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 8517 | L: [email protected] |
879a5a00 | 8518 | S: Supported |
7b175c46 | 8519 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8520 | |
26e9a397 | 8521 | STAGING SUBSYSTEM |
879a5a00 | 8522 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 8523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8524 | L: [email protected] |
879a5a00 | 8525 | S: Supported |
679655da | 8526 | F: drivers/staging/ |
dbc6c2cc | 8527 | |
c8c8b105 JP |
8528 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
8529 | M: Henk de Groot <[email protected]> | |
8530 | S: Odd Fixes | |
8531 | F: drivers/staging/wlags49_h2/ | |
8532 | F: drivers/staging/wlags49_h25/ | |
8533 | ||
c9555159 JP |
8534 | STAGING - ASUS OLED |
8535 | M: Jakub Schmidtke <[email protected]> | |
8536 | S: Odd Fixes | |
8537 | F: drivers/staging/asus_oled/ | |
8538 | ||
ebd3d010 JP |
8539 | STAGING - COMEDI |
8540 | M: Ian Abbott <[email protected]> | |
81b884c9 | 8541 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
8542 | S: Odd Fixes |
8543 | F: drivers/staging/comedi/ | |
8544 | ||
8ca572c9 JP |
8545 | STAGING - CRYSTAL HD VIDEO DECODER |
8546 | M: Naren Sankar <[email protected]> | |
8547 | M: Jarod Wilson <[email protected]> | |
8548 | M: Scott Davilla <[email protected]> | |
8549 | M: Manu Abraham <[email protected]> | |
8550 | S: Odd Fixes | |
8551 | F: drivers/staging/crystalhd/ | |
8552 | ||
0f16ffc4 JP |
8553 | STAGING - ECHO CANCELLER |
8554 | M: Steve Underwood <[email protected]> | |
8555 | M: David Rowe <[email protected]> | |
8556 | S: Odd Fixes | |
8557 | F: drivers/staging/echo/ | |
8558 | ||
8dc2bbe7 ME |
8559 | STAGING - ET131X NETWORK DRIVER |
8560 | M: Mark Einon <[email protected]> | |
8561 | S: Odd Fixes | |
8562 | F: drivers/staging/et131x/ | |
8563 | ||
a0138163 JP |
8564 | STAGING - FLARION FT1000 DRIVERS |
8565 | M: Marek Belisko <[email protected]> | |
8566 | S: Odd Fixes | |
8567 | F: drivers/staging/ft1000/ | |
8568 | ||
ec3fab92 JP |
8569 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
8570 | M: David Täht <[email protected]> | |
8571 | S: Odd Fixes | |
8572 | F: drivers/staging/frontier/ | |
8573 | ||
98ded590 HV |
8574 | STAGING - GO7007 MPEG CODEC |
8575 | M: Hans Verkuil <[email protected]> | |
8576 | S: Maintained | |
8577 | F: drivers/staging/media/go7007/ | |
8578 | ||
6c1bb424 | 8579 | STAGING - INDUSTRIAL IO |
030a13d7 | 8580 | M: Jonathan Cameron <[email protected]> |
a0138163 | 8581 | L: [email protected] |
6c1bb424 JP |
8582 | S: Odd Fixes |
8583 | F: drivers/staging/iio/ | |
8584 | ||
a0138163 JP |
8585 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8586 | M: Jarod Wilson <[email protected]> | |
8587 | W: http://www.lirc.org/ | |
8588 | S: Odd Fixes | |
b2b0186d | 8589 | F: drivers/staging/media/lirc/ |
a0138163 | 8590 | |
7c6b6c71 | 8591 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8592 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
8593 | M: Marc Dietrich <[email protected]> |
8594 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 8595 | L: [email protected] |
7c6b6c71 MD |
8596 | S: Maintained |
8597 | F: drivers/staging/nvec/ | |
8598 | ||
a0138163 | 8599 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8600 | M: Jens Frederich <[email protected]> |
8601 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
8602 | M: Jon Nettleton <[email protected]> |
8603 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8604 | S: Maintained |
a0138163 JP |
8605 | F: drivers/staging/olpc_dcon/ |
8606 | ||
94cfdd15 | 8607 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
96747a8f | 8608 | M: Shigekatsu Tateno <[email protected]> |
94cfdd15 CK |
8609 | S: Maintained |
8610 | F: drivers/staging/ozwpan/ | |
8611 | ||
a0138163 | 8612 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8613 | M: Willy Tarreau <[email protected]> |
8614 | S: Odd Fixes | |
8615 | F: drivers/staging/panel/ | |
8616 | ||
a0138163 JP |
8617 | STAGING - REALTEK RTL8712U DRIVERS |
8618 | M: Larry Finger <[email protected]> | |
8619 | M: Florian Schilhabel <[email protected]>. | |
8620 | S: Odd Fixes | |
8621 | F: drivers/staging/rtl8712/ | |
8622 | ||
7591ba8b JS |
8623 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
8624 | M: Larry Finger <[email protected]> | |
8625 | M: Jes Sorensen <[email protected]> | |
8626 | L: [email protected] | |
8627 | S: Maintained | |
8628 | F: drivers/staging/rtl8723au/ | |
8629 | ||
9629fa86 JP |
8630 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8631 | M: Teddy Wang <[email protected]> | |
8632 | S: Odd Fixes | |
9df0a245 | 8633 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8634 | |
510fa408 JP |
8635 | STAGING - SLICOSS |
8636 | M: Lior Dotan <[email protected]> | |
8637 | M: Christopher Harrer <[email protected]> | |
8638 | S: Odd Fixes | |
8639 | F: drivers/staging/slicoss/ | |
8640 | ||
a0138163 | 8641 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8642 | M: Ismael Luceno <[email protected]> |
8643 | S: Supported | |
b2b0186d | 8644 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8645 | |
8646 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8647 | M: William Hubbs <[email protected]> | |
8648 | M: Chris Brannon <[email protected]> | |
d33bce31 | 8649 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
8650 | M: Samuel Thibault <[email protected]> |
8651 | L: [email protected] | |
8652 | W: http://www.linux-speakup.org/ | |
8653 | S: Odd Fixes | |
8654 | F: drivers/staging/speakup/ | |
8655 | ||
8656 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8657 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
8658 | S: Odd Fixes |
8659 | F: drivers/staging/tidspbridge/ | |
8660 | ||
a0138163 JP |
8661 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8662 | M: Al Cho <[email protected]> | |
8663 | S: Odd Fixes | |
8664 | F: drivers/staging/keucr/ | |
8665 | ||
b3e871ce JP |
8666 | STAGING - VIA VT665X DRIVERS |
8667 | M: Forest Bond <[email protected]> | |
8668 | S: Odd Fixes | |
8669 | F: drivers/staging/vt665?/ | |
8670 | ||
81a9a526 JP |
8671 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8672 | M: Pavel Machek <[email protected]> | |
8673 | S: Odd Fixes | |
8674 | F: drivers/staging/winbond/ | |
8675 | ||
709bcb07 | 8676 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8677 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
8678 | S: Odd Fixes |
8679 | F: drivers/staging/xgifb/ | |
8680 | ||
1da177e4 | 8681 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8682 | M: Ion Badulescu <[email protected]> |
b4f90189 | 8683 | S: Odd Fixes |
9bba23b0 | 8684 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8685 | |
e2d1d6c0 | 8686 | SUN3/3X |
8b58be88 | 8687 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
8688 | W: http://sammy.net/sun3/ |
8689 | S: Maintained | |
679655da JP |
8690 | F: arch/m68k/kernel/*sun3* |
8691 | F: arch/m68k/sun3*/ | |
8692 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8693 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8694 | |
2bc9ff01 DK |
8695 | SUNDANCE NETWORK DRIVER |
8696 | M: Denis Kirjanov <[email protected]> | |
8697 | L: [email protected] | |
8698 | S: Maintained | |
8699 | F: drivers/net/ethernet/dlink/sundance.c | |
8700 | ||
2cbb12a4 | 8701 | SUPERH |
2cbb12a4 | 8702 | L: [email protected] |
1da177e4 | 8703 | W: http://www.linux-sh.org |
8a6e2535 | 8704 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 8705 | S: Orphan |
066069e1 | 8706 | F: Documentation/sh/ |
679655da | 8707 | F: arch/sh/ |
066069e1 | 8708 | F: drivers/sh/ |
1da177e4 | 8709 | |
4480f15b | 8710 | SUSPEND TO RAM |
7fb06082 | 8711 | M: "Rafael J. Wysocki" <[email protected]> |
8b58be88 JP |
8712 | M: Len Brown <[email protected]> |
8713 | M: Pavel Machek <[email protected]> | |
bf1c138e | 8714 | L: [email protected] |
e2d1d6c0 | 8715 | S: Supported |
679655da JP |
8716 | F: Documentation/power/ |
8717 | F: arch/x86/kernel/acpi/ | |
8718 | F: drivers/base/power/ | |
8719 | F: kernel/power/ | |
8720 | F: include/linux/suspend.h | |
8721 | F: include/linux/freezer.h | |
8722 | F: include/linux/pm.h | |
1da177e4 LT |
8723 | |
8724 | SVGA HANDLING | |
8b58be88 | 8725 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8726 | L: [email protected] |
8727 | S: Maintained | |
679655da JP |
8728 | F: Documentation/svga.txt |
8729 | F: arch/x86/boot/video* | |
1da177e4 | 8730 | |
6e28b761 KRW |
8731 | SWIOTLB SUBSYSTEM |
8732 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8733 | L: [email protected] | |
8734 | S: Supported | |
8735 | F: lib/swiotlb.c | |
8736 | F: arch/*/kernel/pci-swiotlb.c | |
8737 | F: include/linux/swiotlb.h | |
8738 | ||
db8e35d5 VG |
8739 | SYNOPSYS ARC ARCHITECTURE |
8740 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8741 | S: Supported |
8742 | F: arch/arc/ | |
6659a20a | 8743 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8744 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8745 | |
1da177e4 | 8746 | SYSV FILESYSTEM |
8b58be88 | 8747 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8748 | S: Maintained |
679655da JP |
8749 | F: Documentation/filesystems/sysv-fs.txt |
8750 | F: fs/sysv/ | |
8751 | F: include/linux/sysv_fs.h | |
1da177e4 | 8752 | |
86cfa7fc NB |
8753 | TARGET SUBSYSTEM |
8754 | M: Nicholas A. Bellinger <[email protected]> | |
8755 | L: [email protected] | |
b9f5edc2 | 8756 | L: [email protected] |
86cfa7fc | 8757 | W: http://www.linux-iscsi.org |
cf015e9f | 8758 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 8759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8760 | S: Supported |
8761 | F: drivers/target/ | |
8762 | F: include/target/ | |
8763 | F: Documentation/target/ | |
8764 | ||
4e68852d | 8765 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8766 | M: Balbir Singh <[email protected]> |
4e68852d | 8767 | S: Maintained |
679655da JP |
8768 | F: Documentation/accounting/taskstats* |
8769 | F: include/linux/taskstats* | |
8770 | F: kernel/taskstats.c | |
4e68852d | 8771 | |
781b456a | 8772 | TC CLASSIFIER |
f935f3f8 | 8773 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8774 | L: [email protected] |
8775 | S: Maintained | |
679655da | 8776 | F: include/net/pkt_cls.h |
c117ab84 | 8777 | F: include/uapi/linux/pkt_cls.h |
679655da | 8778 | F: net/sched/ |
781b456a | 8779 | |
5067f08a | 8780 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8781 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8782 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8783 | W: http://tcp-lp-mod.sourceforge.net/ |
8784 | S: Maintained | |
679655da | 8785 | F: net/ipv4/tcp_lp.c |
5067f08a | 8786 | |
91952bc0 AP |
8787 | TDA10071 MEDIA DRIVER |
8788 | M: Antti Palosaari <[email protected]> | |
8789 | L: [email protected] | |
8790 | W: http://linuxtv.org/ | |
8791 | W: http://palosaari.fi/linux/ | |
8792 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8793 | T: git git://linuxtv.org/anttip/media_tree.git | |
8794 | S: Maintained | |
8795 | F: drivers/media/dvb-frontends/tda10071* | |
8796 | ||
8797 | TDA18212 MEDIA DRIVER | |
8798 | M: Antti Palosaari <[email protected]> | |
8799 | L: [email protected] | |
8800 | W: http://linuxtv.org/ | |
8801 | W: http://palosaari.fi/linux/ | |
8802 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8803 | T: git git://linuxtv.org/anttip/media_tree.git | |
8804 | S: Maintained | |
8805 | F: drivers/media/tuners/tda18212* | |
8806 | ||
8807 | TDA18218 MEDIA DRIVER | |
8808 | M: Antti Palosaari <[email protected]> | |
8809 | L: [email protected] | |
8810 | W: http://linuxtv.org/ | |
8811 | W: http://palosaari.fi/linux/ | |
8812 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8813 | T: git git://linuxtv.org/anttip/media_tree.git | |
8814 | S: Maintained | |
8815 | F: drivers/media/tuners/tda18218* | |
8816 | ||
3b2f6aba MK |
8817 | TDA18271 MEDIA DRIVER |
8818 | M: Michael Krufky <[email protected]> | |
8819 | L: [email protected] | |
8820 | W: http://linuxtv.org/ | |
8821 | W: http://github.com/mkrufky | |
8822 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8823 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8824 | S: Maintained | |
8825 | F: drivers/media/tuners/tda18271* | |
8826 | ||
e48307a9 MK |
8827 | TDA827x MEDIA DRIVER |
8828 | M: Michael Krufky <[email protected]> | |
8829 | L: [email protected] | |
8830 | W: http://linuxtv.org/ | |
8831 | W: http://github.com/mkrufky | |
8832 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8833 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8834 | S: Maintained | |
8835 | F: drivers/media/tuners/tda8290.* | |
8836 | ||
66cf9212 MK |
8837 | TDA8290 MEDIA DRIVER |
8838 | M: Michael Krufky <[email protected]> | |
8839 | L: [email protected] | |
8840 | W: http://linuxtv.org/ | |
8841 | W: http://github.com/mkrufky | |
8842 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8843 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8844 | S: Maintained | |
8845 | F: drivers/media/tuners/tda8290.* | |
8846 | ||
4b9fba30 HV |
8847 | TDA9840 MEDIA DRIVER |
8848 | M: Hans Verkuil <[email protected]> | |
8849 | L: [email protected] | |
8850 | T: git git://linuxtv.org/media_tree.git | |
8851 | W: http://linuxtv.org | |
8852 | S: Maintained | |
8853 | F: drivers/media/i2c/tda9840* | |
8854 | ||
2cb654fd | 8855 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8856 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8857 | L: [email protected] |
8858 | W: http://linuxtv.org | |
8859 | T: git git://linuxtv.org/media_tree.git | |
8860 | S: Odd fixes | |
8861 | F: drivers/media/tuners/tea5761.* | |
8862 | ||
8863 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8864 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8865 | L: [email protected] |
8866 | W: http://linuxtv.org | |
8867 | T: git git://linuxtv.org/media_tree.git | |
8868 | S: Maintained | |
8869 | F: drivers/media/tuners/tea5767.* | |
8870 | ||
4b9fba30 HV |
8871 | TEA6415C MEDIA DRIVER |
8872 | M: Hans Verkuil <[email protected]> | |
8873 | L: [email protected] | |
8874 | T: git git://linuxtv.org/media_tree.git | |
8875 | W: http://linuxtv.org | |
8876 | S: Maintained | |
8877 | F: drivers/media/i2c/tea6415c* | |
8878 | ||
8879 | TEA6420 MEDIA DRIVER | |
8880 | M: Hans Verkuil <[email protected]> | |
8881 | L: [email protected] | |
8882 | T: git git://linuxtv.org/media_tree.git | |
8883 | W: http://linuxtv.org | |
8884 | S: Maintained | |
8885 | F: drivers/media/i2c/tea6420* | |
8886 | ||
3d249d4c | 8887 | TEAM DRIVER |
dca9ab92 | 8888 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8889 | L: [email protected] |
8890 | S: Supported | |
8891 | F: drivers/net/team/ | |
8892 | F: include/linux/if_team.h | |
c117ab84 | 8893 | F: include/uapi/linux/if_team.h |
3d249d4c | 8894 | |
7d029125 VD |
8895 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8896 | M: Savoir-faire Linux Inc. <[email protected]> | |
8897 | S: Maintained | |
8898 | F: arch/x86/platform/ts5500/ | |
8899 | ||
40ad4a30 SY |
8900 | TECHNOTREND USB IR RECEIVER |
8901 | M: Sean Young <[email protected]> | |
8902 | L: [email protected] | |
8903 | S: Maintained | |
8904 | F: drivers/media/rc/ttusbir.c | |
8905 | ||
adabdb0c | 8906 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8907 | M: Stephen Warren <[email protected]> |
adabdb0c | 8908 | M: Thierry Reding <[email protected]> |
84b9414b | 8909 | L: [email protected] |
fd117cd1 OJ |
8910 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8912 | S: Supported |
bbbe96ed | 8913 | N: [^a-z]tegra |
84b9414b | 8914 | |
adabdb0c SW |
8915 | TEGRA ASOC DRIVER |
8916 | M: Stephen Warren <[email protected]> | |
8917 | S: Supported | |
8918 | F: sound/soc/tegra/ | |
8919 | ||
8920 | TEGRA CLOCK DRIVER | |
8921 | M: Peter De Schrijver <[email protected]> | |
8922 | M: Prashant Gaikwad <[email protected]> | |
8923 | S: Supported | |
8924 | F: drivers/clk/tegra/ | |
8925 | ||
8926 | TEGRA DMA DRIVER | |
8927 | M: Laxman Dewangan <[email protected]> | |
8928 | S: Supported | |
8929 | F: drivers/dma/tegra20-apb-dma.c | |
8930 | ||
8931 | TEGRA GPIO DRIVER | |
8932 | M: Stephen Warren <[email protected]> | |
8933 | S: Supported | |
8934 | F: drivers/gpio/gpio-tegra.c | |
8935 | ||
8936 | TEGRA I2C DRIVER | |
8937 | M: Laxman Dewangan <[email protected]> | |
8938 | S: Supported | |
8939 | F: drivers/i2c/busses/i2c-tegra.c | |
8940 | ||
8941 | TEGRA IOMMU DRIVERS | |
8942 | M: Hiroshi Doyu <[email protected]> | |
8943 | S: Supported | |
8944 | F: drivers/iommu/tegra* | |
8945 | ||
8946 | TEGRA KBC DRIVER | |
8947 | M: Rakesh Iyer <[email protected]> | |
8948 | M: Laxman Dewangan <[email protected]> | |
8949 | S: Supported | |
8950 | F: drivers/input/keyboard/tegra-kbc.c | |
8951 | ||
8952 | TEGRA PINCTRL DRIVER | |
8953 | M: Stephen Warren <[email protected]> | |
8954 | S: Supported | |
8955 | F: drivers/pinctrl/pinctrl-tegra* | |
8956 | ||
8957 | TEGRA PWM DRIVER | |
8958 | M: Thierry Reding <[email protected]> | |
8959 | S: Supported | |
8960 | F: drivers/pwm/pwm-tegra.c | |
8961 | ||
8962 | TEGRA SERIAL DRIVER | |
8963 | M: Laxman Dewangan <[email protected]> | |
8964 | S: Supported | |
8965 | F: drivers/tty/serial/serial-tegra.c | |
8966 | ||
8967 | TEGRA SPI DRIVER | |
8968 | M: Laxman Dewangan <[email protected]> | |
8969 | S: Supported | |
8970 | F: drivers/spi/spi-tegra* | |
8971 | ||
1a348ccc | 8972 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8973 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8974 | L: [email protected] |
8975 | S: Supported | |
ef7f5429 | 8976 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8977 | |
4e68852d | 8978 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8979 | M: Mark Gross <[email protected]> |
4e68852d | 8980 | S: Supported |
679655da | 8981 | F: drivers/char/tlclk.c |
4e68852d | 8982 | |
4480f15b | 8983 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8984 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8985 | M: Max Filippov <[email protected]> |
8986 | L: [email protected] | |
4e68852d | 8987 | S: Maintained |
679655da | 8988 | F: arch/xtensa/ |
3dc99857 | 8989 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 8990 | |
5313ba66 HV |
8991 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
8992 | M: Hans Verkuil <[email protected]> | |
8993 | L: [email protected] | |
8994 | T: git git://linuxtv.org/media_tree.git | |
8995 | W: http://linuxtv.org | |
8996 | S: Maintained | |
8997 | F: drivers/media/radio/radio-raremono.c | |
8998 | ||
d3fb6955 | 8999 | THERMAL |
b75f0050 JP |
9000 | M: Zhang Rui <[email protected]> |
9001 | M: Eduardo Valentin <[email protected]> | |
9002 | L: [email protected] | |
9003 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
9004 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
9005 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
9006 | S: Supported | |
9007 | F: drivers/thermal/ | |
9008 | F: include/linux/thermal.h | |
9009 | F: include/linux/cpu_cooling.h | |
9010 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 9011 | |
30ba2fbd VD |
9012 | THINGM BLINK(1) USB RGB LED DRIVER |
9013 | M: Vivien Didelot <[email protected]> | |
9014 | S: Maintained | |
9015 | F: drivers/hid/hid-thingm.c | |
9016 | ||
4e68852d | 9017 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 9018 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 9019 | L: [email protected] |
d0944853 | 9020 | L: [email protected] |
4e68852d AC |
9021 | W: http://ibm-acpi.sourceforge.net |
9022 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 9023 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 9024 | S: Maintained |
679655da | 9025 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 9026 | |
1b46f2a2 EV |
9027 | TI BANDGAP AND THERMAL DRIVER |
9028 | M: Eduardo Valentin <[email protected]> | |
9029 | L: [email protected] | |
794b2e25 EV |
9030 | S: Supported |
9031 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 9032 | |
4020f2d7 | 9033 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 9034 | M: Alex Dubov <[email protected]> |
795fb7e7 | 9035 | S: Maintained |
679655da JP |
9036 | F: drivers/misc/tifm* |
9037 | F: drivers/mmc/host/tifm_sd.c | |
9038 | F: include/linux/tifm.h | |
4020f2d7 | 9039 | |
152ad442 SR |
9040 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
9041 | M: M R Swami Reddy <[email protected]> | |
d392dead | 9042 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
9043 | L: [email protected] (moderated for non-subscribers) |
9044 | S: Maintained | |
9045 | F: sound/soc/codecs/lm49453* | |
d392dead | 9046 | F: sound/soc/codecs/isabelle* |
152ad442 | 9047 | |
0edd807d KM |
9048 | TI LP855x BACKLIGHT DRIVER |
9049 | M: Milo Kim <[email protected]> | |
9050 | S: Maintained | |
9051 | F: Documentation/backlight/lp855x-driver.txt | |
9052 | F: drivers/video/backlight/lp855x_bl.c | |
9053 | F: include/linux/platform_data/lp855x.h | |
9054 | ||
faf13f6d KM |
9055 | TI LP8727 CHARGER DRIVER |
9056 | M: Milo Kim <[email protected]> | |
9057 | S: Maintained | |
9058 | F: drivers/power/lp8727_charger.c | |
9059 | F: include/linux/platform_data/lp8727.h | |
9060 | ||
22f1229f KM |
9061 | TI LP8788 MFD DRIVER |
9062 | M: Milo Kim <[email protected]> | |
9063 | S: Maintained | |
9064 | F: drivers/iio/adc/lp8788_adc.c | |
9065 | F: drivers/leds/leds-lp8788.c | |
9066 | F: drivers/mfd/lp8788*.c | |
9067 | F: drivers/power/lp8788-charger.c | |
9068 | F: drivers/regulator/lp8788-*.c | |
9069 | F: include/linux/mfd/lp8788*.h | |
9070 | ||
dd5e8e6b | 9071 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 9072 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
9073 | L: [email protected] (moderated for non-subscribers) |
9074 | S: Maintained | |
9075 | F: sound/soc/codecs/twl4030* | |
9076 | ||
90921014 | 9077 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
9078 | L: [email protected] |
9079 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
9080 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
9081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 9082 | S: Orphan |
90921014 LC |
9083 | F: drivers/net/wireless/ti/ |
9084 | F: include/linux/wl12xx.h | |
9085 | ||
e86eaa3a | 9086 | TIPC NETWORK LAYER |
8b58be88 JP |
9087 | M: Jon Maloy <[email protected]> |
9088 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
9089 | L: [email protected] (core kernel code) |
9090 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 9091 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 9092 | S: Maintained |
c117ab84 | 9093 | F: include/uapi/linux/tipc*.h |
679655da | 9094 | F: net/tipc/ |
e86eaa3a | 9095 | |
867e359b CM |
9096 | TILE ARCHITECTURE |
9097 | M: Chris Metcalf <[email protected]> | |
9098 | W: http://www.tilera.com/scm/ | |
9099 | S: Supported | |
9100 | F: arch/tile/ | |
6b940606 | 9101 | F: drivers/char/tile-srom.c |
5c770755 | 9102 | F: drivers/edac/tile_edac.c |
6b940606 CM |
9103 | F: drivers/net/ethernet/tile/ |
9104 | F: drivers/rtc/rtc-tile.c | |
9105 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 9106 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
9107 | F: drivers/usb/host/*-tilegx.c |
9108 | F: include/linux/usb/tilegx.h | |
867e359b | 9109 | |
1da177e4 | 9110 | TLAN NETWORK DRIVER |
8b58be88 | 9111 | M: Samuel Chessman <[email protected]> |
88c07dde | 9112 | L: [email protected] (subscribers-only) |
1da177e4 LT |
9113 | W: http://sourceforge.net/projects/tlan/ |
9114 | S: Maintained | |
679655da | 9115 | F: Documentation/networking/tlan.txt |
b544dbac | 9116 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 9117 | |
d74db3b2 | 9118 | TOMOYO SECURITY MODULE |
8b58be88 JP |
9119 | M: Kentaro Takeda <[email protected]> |
9120 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
9121 | L: [email protected] (subscribers-only, for developers in English) |
9122 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
9123 | L: [email protected] (subscribers-only, for developers in Japanese) |
9124 | L: [email protected] (subscribers-only, for users in Japanese) | |
9125 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 9126 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 9127 | S: Maintained |
679655da | 9128 | F: security/tomoyo/ |
d74db3b2 | 9129 | |
9caeb532 | 9130 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 9131 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 9132 | L: [email protected] |
9caeb532 HRK |
9133 | S: Maintained |
9134 | F: drivers/platform/x86/topstar-laptop.c | |
9135 | ||
1da177e4 | 9136 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 9137 | L: [email protected] |
15065531 | 9138 | S: Orphan |
679655da | 9139 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
9140 | |
9141 | TOSHIBA SMM DRIVER | |
8b58be88 | 9142 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
9143 | L: [email protected] |
9144 | W: http://www.buzzard.org.uk/toshiba/ | |
9145 | S: Maintained | |
679655da JP |
9146 | F: drivers/char/toshiba.c |
9147 | F: include/linux/toshiba.h | |
c117ab84 | 9148 | F: include/uapi/linux/toshiba.h |
1da177e4 | 9149 | |
d719f900 | 9150 | TMIO MMC DRIVER |
252f29a9 | 9151 | M: Ian Molton <[email protected]> |
d1057c40 | 9152 | L: [email protected] |
d719f900 | 9153 | S: Maintained |
d1057c40 GL |
9154 | F: drivers/mmc/host/tmio_mmc* |
9155 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
9156 | F: include/linux/mmc/tmio.h | |
9157 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 9158 | |
917cc4e6 GR |
9159 | TMP401 HARDWARE MONITOR DRIVER |
9160 | M: Guenter Roeck <[email protected]> | |
9161 | L: [email protected] | |
9162 | S: Maintained | |
9163 | F: Documentation/hwmon/tmp401 | |
9164 | F: drivers/hwmon/tmp401.c | |
9165 | ||
98f32602 | 9166 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 9167 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
9168 | L: [email protected] |
9169 | S: Maintained | |
9170 | F: include/linux/shmem_fs.h | |
9171 | F: mm/shmem.c | |
9172 | ||
45f95b53 | 9173 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 9174 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
9175 | L: [email protected] |
9176 | W: http://linuxtv.org | |
9177 | T: git git://linuxtv.org/media_tree.git | |
9178 | S: Odd fixes | |
9179 | F: drivers/media/usb/tm6000/ | |
9180 | ||
4e68852d | 9181 | TPM DEVICE DRIVER |
901486b8 | 9182 | M: Peter Huewe <[email protected]> |
383dec1f | 9183 | M: Ashley Lai <[email protected]> |
cbb2d5e4 | 9184 | M: Marcel Selhorst <[email protected]> |
383dec1f | 9185 | W: http://tpmdd.sourceforge.net |
63a10dfd | 9186 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 9187 | S: Maintained |
679655da | 9188 | F: drivers/char/tpm/ |
4e68852d | 9189 | |
d6f005a1 JP |
9190 | TRACING |
9191 | M: Steven Rostedt <[email protected]> | |
d6f005a1 | 9192 | M: Ingo Molnar <[email protected]> |
75fc2d37 | 9193 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
9194 | S: Maintained |
9195 | F: Documentation/trace/ftrace.txt | |
9196 | F: arch/*/*/*/ftrace.h | |
9197 | F: arch/*/kernel/ftrace.c | |
9198 | F: include/*/ftrace.h | |
9199 | F: include/linux/trace*.h | |
9200 | F: include/trace/ | |
9201 | F: kernel/trace/ | |
9202 | ||
1da177e4 | 9203 | TRIVIAL PATCHES |
8b58be88 | 9204 | M: Jiri Kosina <[email protected]> |
54e5881d | 9205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 9206 | S: Maintained |
86ef925f | 9207 | K: ^Subject:.*(?i)trivial |
1da177e4 | 9208 | |
4e68852d | 9209 | TTY LAYER |
879a5a00 | 9210 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 9211 | M: Jiri Slaby <[email protected]> |
879a5a00 | 9212 | S: Supported |
08deed1e | 9213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 9214 | F: drivers/tty/ |
df621252 | 9215 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
9216 | F: include/linux/serial_core.h |
9217 | F: include/linux/serial.h | |
9218 | F: include/linux/tty.h | |
c117ab84 CEB |
9219 | F: include/uapi/linux/serial_core.h |
9220 | F: include/uapi/linux/serial.h | |
9221 | F: include/uapi/linux/tty.h | |
4e68852d | 9222 | |
91952bc0 AP |
9223 | TUA9001 MEDIA DRIVER |
9224 | M: Antti Palosaari <[email protected]> | |
9225 | L: [email protected] | |
9226 | W: http://linuxtv.org/ | |
9227 | W: http://palosaari.fi/linux/ | |
9228 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9229 | T: git git://linuxtv.org/anttip/media_tree.git | |
9230 | S: Maintained | |
9231 | F: drivers/media/tuners/tua9001* | |
9232 | ||
740db6d7 | 9233 | TULIP NETWORK DRIVERS |
8b58be88 | 9234 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
9235 | L: [email protected] |
9236 | S: Maintained | |
0f04e2aa | 9237 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
9238 | |
9239 | TUN/TAP driver | |
ba57b6f2 | 9240 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
9241 | W: http://vtun.sourceforge.net/tun |
9242 | S: Maintained | |
679655da JP |
9243 | F: Documentation/networking/tuntap.txt |
9244 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 9245 | |
b454cc66 | 9246 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 9247 | M: "Maciej W. Rozycki" <[email protected]> |
c406339c RB |
9248 | M: Ralf Baechle <[email protected]> |
9249 | L: [email protected] | |
9250 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 9251 | S: Maintained |
679655da JP |
9252 | F: drivers/tc/ |
9253 | F: include/linux/tc.h | |
b454cc66 | 9254 | |
1da177e4 | 9255 | U14-34F SCSI DRIVER |
8b58be88 | 9256 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
9257 | L: [email protected] |
9258 | S: Maintained | |
679655da | 9259 | F: drivers/scsi/u14-34f.c |
1da177e4 | 9260 | |
e2d1d6c0 | 9261 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 9262 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 9263 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 9264 | L: [email protected] |
e2966cbe | 9265 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
9266 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
9267 | S: Maintained | |
679655da JP |
9268 | F: Documentation/filesystems/ubifs.txt |
9269 | F: fs/ubifs/ | |
e2d1d6c0 | 9270 | |
cc2020e6 | 9271 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 9272 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
9273 | W: http://www.uclinux.org/ |
9274 | L: [email protected] (subscribers-only) | |
9275 | S: Maintained | |
61bc02bb JP |
9276 | F: arch/m68k/*/*_no.* |
9277 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 9278 | |
1da177e4 | 9279 | UDF FILESYSTEM |
8b58be88 | 9280 | M: Jan Kara <[email protected]> |
1da177e4 | 9281 | S: Maintained |
679655da JP |
9282 | F: Documentation/filesystems/udf.txt |
9283 | F: fs/udf/ | |
1da177e4 | 9284 | |
cc2020e6 | 9285 | UFS FILESYSTEM |
8b58be88 | 9286 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 9287 | S: Maintained |
679655da JP |
9288 | F: Documentation/filesystems/ufs.txt |
9289 | F: fs/ufs/ | |
cc2020e6 | 9290 | |
0a09d3ab DR |
9291 | UHID USERSPACE HID IO DRIVER: |
9292 | M: David Herrmann <[email protected]> | |
9293 | L: [email protected] | |
9294 | S: Maintained | |
9295 | F: drivers/hid/uhid.c | |
c117ab84 | 9296 | F: include/uapi/linux/uhid.h |
0a09d3ab | 9297 | |
18332a80 | 9298 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 9299 | L: [email protected] |
10c6c9c9 | 9300 | S: Orphan |
355ffe69 | 9301 | F: drivers/uwb/ |
679655da JP |
9302 | F: include/linux/uwb.h |
9303 | F: include/linux/uwb/ | |
18332a80 | 9304 | |
b31d8273 G |
9305 | UNICORE32 ARCHITECTURE: |
9306 | M: Guan Xuetao <[email protected]> | |
9307 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9308 | S: Maintained | |
ceebf4d5 | 9309 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
9310 | F: arch/unicore32/ |
9311 | ||
d8379ab1 TF |
9312 | UNIFDEF |
9313 | M: Tony Finch <[email protected]> | |
9314 | W: http://dotat.at/prog/unifdef | |
9315 | S: Maintained | |
9316 | F: scripts/unifdef.c | |
9317 | ||
1da177e4 | 9318 | UNIFORM CDROM DRIVER |
8b58be88 | 9319 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
9320 | W: http://www.kernel.dk |
9321 | S: Maintained | |
679655da JP |
9322 | F: Documentation/cdrom/ |
9323 | F: drivers/cdrom/cdrom.c | |
9324 | F: include/linux/cdrom.h | |
c117ab84 | 9325 | F: include/uapi/linux/cdrom.h |
1da177e4 | 9326 | |
56df0122 BR |
9327 | UNISYS S-PAR DRIVERS |
9328 | M: Benjamin Romer <[email protected]> | |
9329 | M: David Kershner <[email protected]> | |
9330 | L: [email protected] (Unisys internal) | |
9331 | S: Supported | |
9332 | F: drivers/staging/unisys/ | |
9333 | ||
9941fa6e VH |
9334 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9335 | M: Vinayak Holikatti <[email protected]> | |
9336 | M: Santosh Y <[email protected]> | |
9337 | L: [email protected] | |
9338 | S: Supported | |
9339 | F: Documentation/scsi/ufs.txt | |
9340 | F: drivers/scsi/ufs/ | |
9341 | ||
e2d1d6c0 | 9342 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9343 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
9344 | W: http://www.linux-mtd.infradead.org/ |
9345 | L: [email protected] | |
b6b44e0a | 9346 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9347 | S: Maintained |
80811493 | 9348 | F: drivers/mtd/ubi/ |
679655da | 9349 | F: include/linux/mtd/ubi.h |
c117ab84 | 9350 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9351 | |
76ac66e4 RW |
9352 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9353 | M: Richard Weinberger <[email protected]> | |
9354 | L: [email protected] | |
9355 | S: Maintained | |
9356 | F: drivers/mtd/ubi/fastmap.c | |
9357 | ||
1da177e4 | 9358 | USB ACM DRIVER |
61eee9a7 | 9359 | M: Oliver Neukum <[email protected]> |
6372594a | 9360 | L: [email protected] |
1da177e4 | 9361 | S: Maintained |
679655da JP |
9362 | F: Documentation/usb/acm.txt |
9363 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9364 | |
b7d572e1 PF |
9365 | USB AR5523 WIRELESS DRIVER |
9366 | M: Pontus Fuchs <[email protected]> | |
9367 | L: [email protected] | |
9368 | S: Maintained | |
9369 | F: drivers/net/wireless/ath/ar5523/ | |
9370 | ||
115bb1ff | 9371 | USB ATTACHED SCSI |
f50a4968 | 9372 | M: Hans de Goede <[email protected]> |
8eae0fb7 | 9373 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
9374 | L: [email protected] |
9375 | L: [email protected] | |
8eae0fb7 | 9376 | S: Maintained |
115bb1ff MW |
9377 | F: drivers/usb/storage/uas.c |
9378 | ||
1da177e4 | 9379 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9380 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 9381 | L: [email protected] |
1da177e4 | 9382 | S: Maintained |
679655da | 9383 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9384 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9385 | |
b02b371e | 9386 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9387 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
9388 | L: [email protected] |
9389 | S: Maintained | |
679655da | 9390 | F: drivers/usb/c67x00/ |
b02b371e | 9391 | |
d0374f4f | 9392 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9393 | M: Peter Korsgaard <[email protected]> |
043600a6 | 9394 | L: [email protected] |
d0374f4f PK |
9395 | W: http://www.linux-usb.org/usbnet |
9396 | S: Maintained | |
679655da | 9397 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9398 | |
cc2020e6 | 9399 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9400 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
9401 | L: [email protected] |
9402 | W: http://rio500.sourceforge.net | |
9403 | S: Maintained | |
679655da | 9404 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9405 | |
1da177e4 | 9406 | USB EHCI DRIVER |
578333ab | 9407 | M: Alan Stern <[email protected]> |
795fb7e7 | 9408 | L: [email protected] |
578333ab | 9409 | S: Maintained |
679655da JP |
9410 | F: Documentation/usb/ehci.txt |
9411 | F: drivers/usb/host/ehci* | |
1da177e4 | 9412 | |
69ae9e3e | 9413 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9414 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 9415 | L: [email protected] |
69ae9e3e | 9416 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9418 | S: Maintained | |
679655da JP |
9419 | F: drivers/usb/gadget/ |
9420 | F: include/linux/usb/gadget* | |
69ae9e3e | 9421 | |
2dea64b4 | 9422 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9423 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 9424 | L: [email protected] |
54e5881d | 9425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9426 | S: Maintained |
c2f01971 | 9427 | F: Documentation/hid/hiddev.txt |
679655da | 9428 | F: drivers/hid/usbhid/ |
1da177e4 | 9429 | |
857aab34 | 9430 | USB/IP DRIVERS |
857aab34 | 9431 | L: [email protected] |
3ff4afe8 | 9432 | S: Orphan |
857aab34 | 9433 | F: drivers/staging/usbip/ |
9434 | ||
959eea21 | 9435 | USB ISP116X DRIVER |
8b58be88 | 9436 | M: Olav Kongas <[email protected]> |
795fb7e7 | 9437 | L: [email protected] |
959eea21 | 9438 | S: Maintained |
679655da JP |
9439 | F: drivers/usb/host/isp116x* |
9440 | F: include/linux/usb/isp116x.h | |
959eea21 | 9441 | |
1da177e4 | 9442 | USB MASS STORAGE DRIVER |
8b58be88 | 9443 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 9444 | L: [email protected] |
8836aeb8 | 9445 | L: [email protected] |
1da177e4 LT |
9446 | S: Maintained |
9447 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9448 | F: drivers/usb/storage/ |
1da177e4 | 9449 | |
af39917d CL |
9450 | USB MIDI DRIVER |
9451 | M: Clemens Ladisch <[email protected]> | |
9452 | L: [email protected] (moderated for non-subscribers) | |
9453 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9454 | S: Maintained | |
9455 | F: sound/usb/midi.* | |
9456 | ||
444ce9d4 JP |
9457 | USB NETWORKING DRIVERS |
9458 | L: [email protected] | |
9459 | S: Odd Fixes | |
9460 | F: drivers/net/usb/ | |
9461 | ||
1da177e4 | 9462 | USB OHCI DRIVER |
578333ab | 9463 | M: Alan Stern <[email protected]> |
795fb7e7 | 9464 | L: [email protected] |
578333ab | 9465 | S: Maintained |
679655da JP |
9466 | F: Documentation/usb/ohci.txt |
9467 | F: drivers/usb/host/ohci* | |
1da177e4 | 9468 | |
1da177e4 | 9469 | USB PEGASUS DRIVER |
a16b945c | 9470 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9471 | L: [email protected] |
043600a6 | 9472 | L: [email protected] |
052e3128 PM |
9473 | T: git git://github.com/petkan/pegasus.git |
9474 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9475 | S: Maintained |
679655da | 9476 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9477 | |
d3ad558f FB |
9478 | USB PHY LAYER |
9479 | M: Felipe Balbi <[email protected]> | |
9480 | L: [email protected] | |
9481 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9482 | S: Maintained | |
9483 | F: drivers/usb/phy/ | |
d3ad558f | 9484 | |
73e4fb3f | 9485 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9486 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 9487 | L: [email protected] |
73e4fb3f | 9488 | S: Supported |
679655da | 9489 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9490 | |
9491 | USB RTL8150 DRIVER | |
a16b945c | 9492 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9493 | L: [email protected] |
043600a6 | 9494 | L: [email protected] |
052e3128 PM |
9495 | T: git git://github.com/petkan/rtl8150.git |
9496 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9497 | S: Maintained |
679655da | 9498 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9499 | |
f896b796 | 9500 | USB SERIAL SUBSYSTEM |
66085694 | 9501 | M: Johan Hovold <[email protected]> |
795fb7e7 | 9502 | L: [email protected] |
4e68852d | 9503 | S: Maintained |
679655da | 9504 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9505 | F: drivers/usb/serial/ |
679655da | 9506 | F: include/linux/usb/serial.h |
1da177e4 | 9507 | |
b3f0db1c SG |
9508 | USB SMSC75XX ETHERNET DRIVER |
9509 | M: Steve Glendinning <[email protected]> | |
9510 | L: [email protected] | |
9511 | S: Maintained | |
9512 | F: drivers/net/usb/smsc75xx.* | |
9513 | ||
2f7ca802 | 9514 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9515 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 9516 | L: [email protected] |
90b24cfb | 9517 | S: Maintained |
679655da | 9518 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9519 | |
f423b9a8 | 9520 | USB SN9C1xx DRIVER |
8b58be88 | 9521 | M: Luca Risolia <[email protected]> |
795fb7e7 | 9522 | L: [email protected] |
661263b5 | 9523 | L: [email protected] |
275ffde4 | 9524 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
9525 | W: http://www.linux-projects.org |
9526 | S: Maintained | |
b8da9d3a | 9527 | F: drivers/staging/media/sn9c102/ |
1da177e4 LT |
9528 | |
9529 | USB SUBSYSTEM | |
879a5a00 | 9530 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 9531 | L: [email protected] |
1da177e4 | 9532 | W: http://www.linux-usb.org |
08deed1e | 9533 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9534 | S: Supported |
679655da | 9535 | F: Documentation/usb/ |
679655da JP |
9536 | F: drivers/usb/ |
9537 | F: include/linux/usb.h | |
9538 | F: include/linux/usb/ | |
1da177e4 LT |
9539 | |
9540 | USB UHCI DRIVER | |
8b58be88 | 9541 | M: Alan Stern <[email protected]> |
795fb7e7 | 9542 | L: [email protected] |
1da177e4 | 9543 | S: Maintained |
679655da | 9544 | F: drivers/usb/host/uhci* |
1da177e4 | 9545 | |
69ae9e3e | 9546 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9547 | M: Oliver Neukum <[email protected]> |
043600a6 | 9548 | L: [email protected] |
69ae9e3e | 9549 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9550 | S: Maintained |
679655da JP |
9551 | F: drivers/net/usb/usbnet.c |
9552 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9553 | |
c0efd232 | 9554 | USB VIDEO CLASS |
c53ac071 | 9555 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 9556 | L: [email protected] (subscribers-only) |
661263b5 | 9557 | L: [email protected] |
275ffde4 | 9558 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9559 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9560 | S: Maintained |
0c0d06ca | 9561 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9562 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9563 | |
b60b9c45 HV |
9564 | USB VISION DRIVER |
9565 | M: Hans Verkuil <[email protected]> | |
9566 | L: [email protected] | |
9567 | T: git git://linuxtv.org/media_tree.git | |
9568 | W: http://linuxtv.org | |
9569 | S: Odd Fixes | |
9570 | F: drivers/media/usb/usbvision/ | |
9571 | ||
8282da47 LP |
9572 | USB WEBCAM GADGET |
9573 | M: Laurent Pinchart <[email protected]> | |
9574 | L: [email protected] | |
9575 | S: Maintained | |
9576 | F: drivers/usb/gadget/*uvc*.c | |
9577 | F: drivers/usb/gadget/webcam.c | |
9578 | ||
bf164cc0 | 9579 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9580 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
9581 | L: [email protected] |
9582 | S: Maintained | |
679655da | 9583 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9584 | |
eb6bab13 | 9585 | USB XHCI DRIVER |
03d85053 | 9586 | M: Mathias Nyman <[email protected]> |
eb6bab13 SS |
9587 | L: [email protected] |
9588 | S: Supported | |
36d0344c SS |
9589 | F: drivers/usb/host/xhci* |
9590 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9591 | |
1da177e4 | 9592 | USB ZD1201 DRIVER |
4086b9ca | 9593 | L: [email protected] |
1da177e4 | 9594 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9595 | S: Orphan |
679655da | 9596 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9597 | |
b7eee616 | 9598 | USB ZR364XX DRIVER |
8b58be88 | 9599 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 9600 | L: [email protected] |
661263b5 | 9601 | L: [email protected] |
275ffde4 | 9602 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9603 | W: http://royale.zerezo.com/zr364xx/ |
9604 | S: Maintained | |
679655da | 9605 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9606 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9607 | |
e7839f25 | 9608 | USER-MODE LINUX (UML) |
8b58be88 | 9609 | M: Jeff Dike <[email protected]> |
b15194b7 | 9610 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
9611 | L: [email protected] |
9612 | L: [email protected] | |
9613 | W: http://user-mode-linux.sourceforge.net | |
9614 | S: Maintained | |
61516587 | 9615 | F: Documentation/virtual/uml/ |
679655da | 9616 | F: arch/um/ |
b070989a | 9617 | F: arch/x86/um/ |
679655da JP |
9618 | F: fs/hostfs/ |
9619 | F: fs/hppfs/ | |
b7eee616 | 9620 | |
e5f114e9 | 9621 | USERSPACE I/O (UIO) |
6a534c9d | 9622 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 9623 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 9624 | S: Maintained |
679655da JP |
9625 | F: Documentation/DocBook/uio-howto.tmpl |
9626 | F: drivers/uio/ | |
9627 | F: include/linux/uio*.h | |
e5f114e9 | 9628 | |
256cccbe | 9629 | UTIL-LINUX PACKAGE |
8b58be88 | 9630 | M: Karel Zak <[email protected]> |
256cccbe KZ |
9631 | L: [email protected] |
9632 | W: http://en.wikipedia.org/wiki/Util-linux | |
9633 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9634 | S: Maintained |
9635 | ||
c1fd1c07 | 9636 | UVESAFB DRIVER |
8b58be88 | 9637 | M: Michal Januszewski <[email protected]> |
c69f677c | 9638 | L: [email protected] |
c1fd1c07 MJ |
9639 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9640 | S: Maintained | |
679655da JP |
9641 | F: Documentation/fb/uvesafb.txt |
9642 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9643 | |
4480f15b | 9644 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9645 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 9646 | S: Maintained |
679655da JP |
9647 | F: Documentation/filesystems/vfat.txt |
9648 | F: fs/fat/ | |
1da177e4 | 9649 | |
cba3345c AW |
9650 | VFIO DRIVER |
9651 | M: Alex Williamson <[email protected]> | |
9652 | L: [email protected] | |
9653 | S: Maintained | |
9654 | F: Documentation/vfio.txt | |
9655 | F: drivers/vfio/ | |
9656 | F: include/linux/vfio.h | |
c117ab84 | 9657 | F: include/uapi/linux/vfio.h |
cba3345c | 9658 | |
9e6f3438 PO |
9659 | VIDEOBUF2 FRAMEWORK |
9660 | M: Pawel Osciak <[email protected]> | |
9661 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 9662 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
9663 | L: [email protected] |
9664 | S: Maintained | |
90d72ac6 | 9665 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9666 | F: include/media/videobuf2-* |
9667 | ||
9a82446b AS |
9668 | VIRTIO CONSOLE DRIVER |
9669 | M: Amit Shah <[email protected]> | |
9670 | L: [email protected] | |
9671 | S: Maintained | |
9672 | F: drivers/char/virtio_console.c | |
9673 | F: include/linux/virtio_console.h | |
c117ab84 | 9674 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9675 | |
2426ec8f MT |
9676 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9677 | M: Rusty Russell <[email protected]> | |
9678 | M: "Michael S. Tsirkin" <[email protected]> | |
9679 | L: [email protected] | |
9680 | S: Maintained | |
9681 | F: drivers/virtio/ | |
c893c8d7 | 9682 | F: tools/virtio/ |
2426ec8f MT |
9683 | F: drivers/net/virtio_net.c |
9684 | F: drivers/block/virtio_blk.c | |
9685 | F: include/linux/virtio_*.h | |
916cdabc | 9686 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9687 | |
3a4d5c94 MT |
9688 | VIRTIO HOST (VHOST) |
9689 | M: "Michael S. Tsirkin" <[email protected]> | |
9690 | L: [email protected] | |
c996d8b9 | 9691 | L: [email protected] |
3a4d5c94 MT |
9692 | L: [email protected] |
9693 | S: Maintained | |
9694 | F: drivers/vhost/ | |
c117ab84 | 9695 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9696 | |
1da177e4 | 9697 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9698 | M: Roger Luethi <[email protected]> |
1da177e4 | 9699 | S: Maintained |
f2148a47 | 9700 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9701 | |
f0bf7f61 | 9702 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9703 | M: Bruce Chang <[email protected]> |
8b58be88 | 9704 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
9705 | S: Maintained |
9706 | F: drivers/mmc/host/via-sdmmc.c | |
9707 | ||
69e4a7c2 | 9708 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9709 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 9710 | L: [email protected] |
69e4a7c2 | 9711 | S: Maintained |
c7babebd FTS |
9712 | F: include/linux/via-core.h |
9713 | F: include/linux/via-gpio.h | |
9714 | F: include/linux/via_i2c.h | |
679655da | 9715 | F: drivers/video/via/ |
69e4a7c2 | 9716 | |
01f20734 | 9717 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9718 | M: Francois Romieu <[email protected]> |
01f20734 FR |
9719 | L: [email protected] |
9720 | S: Maintained | |
f2148a47 | 9721 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9722 | |
0b7bc1fa HV |
9723 | VIVI VIRTUAL VIDEO DRIVER |
9724 | M: Hans Verkuil <[email protected]> | |
9725 | L: [email protected] | |
9726 | T: git git://linuxtv.org/media_tree.git | |
9727 | W: http://linuxtv.org | |
9728 | S: Maintained | |
9729 | F: drivers/media/platform/vivi* | |
9730 | ||
be7f8273 | 9731 | VLAN (802.1Q) |
8b58be88 | 9732 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9733 | L: [email protected] |
9734 | S: Maintained | |
679655da JP |
9735 | F: drivers/net/macvlan.c |
9736 | F: include/linux/if_*vlan.h | |
9737 | F: net/8021q/ | |
be7f8273 | 9738 | |
55e331cf | 9739 | VLYNQ BUS |
8b58be88 | 9740 | M: Florian Fainelli <[email protected]> |
8578d7af | 9741 | L: [email protected] (subscribers-only) |
55e331cf FF |
9742 | S: Maintained |
9743 | F: drivers/vlynq/vlynq.c | |
9744 | F: include/linux/vlynq.h | |
9745 | ||
390beae4 MW |
9746 | VME SUBSYSTEM |
9747 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9748 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9749 | M: Greg Kroah-Hartman <[email protected]> |
9750 | L: [email protected] | |
9751 | S: Maintained | |
9752 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9753 | F: Documentation/vme_api.txt | |
9754 | F: drivers/staging/vme/ | |
9755 | F: drivers/vme/ | |
9756 | F: include/linux/vme* | |
9757 | ||
4488e09b AK |
9758 | VMWARE HYPERVISOR INTERFACE |
9759 | M: Alok Kataria <[email protected]> | |
9760 | L: [email protected] | |
9761 | S: Supported | |
9762 | F: arch/x86/kernel/cpu/vmware.c | |
9763 | ||
73b35d07 DT |
9764 | VMWARE BALLOON DRIVER |
9765 | M: Xavier Deguillard <[email protected]> | |
9766 | M: Philip Moltmann <[email protected]> | |
9767 | M: "VMware, Inc." <[email protected]> | |
9768 | L: [email protected] | |
9769 | S: Maintained | |
9770 | F: drivers/misc/vmw_balloon.c | |
9771 | ||
d1a890fa | 9772 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9773 | M: Shreyas Bhatewara <[email protected]> |
9774 | M: "VMware, Inc." <[email protected]> | |
9775 | L: [email protected] | |
9776 | S: Maintained | |
9777 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9778 | |
851b1642 | 9779 | VMware PVSCSI driver |
f2d7e40e | 9780 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9781 | M: VMware PV-Drivers <[email protected]> |
9782 | L: [email protected] | |
9783 | S: Maintained | |
9784 | F: drivers/scsi/vmw_pvscsi.c | |
9785 | F: drivers/scsi/vmw_pvscsi.h | |
9786 | ||
e53e86c7 | 9787 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9788 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9789 | M: Mark Brown <[email protected]> |
e53e86c7 | 9790 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9791 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9793 | S: Supported |
679655da JP |
9794 | F: drivers/regulator/ |
9795 | F: include/linux/regulator/ | |
e53e86c7 | 9796 | |
ab41319e | 9797 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9798 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9799 | L: [email protected] |
9800 | S: Maintained | |
679655da JP |
9801 | F: Documentation/hwmon/vt1211 |
9802 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9803 | |
1de9e371 | 9804 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9805 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9806 | L: [email protected] |
9807 | S: Maintained | |
679655da | 9808 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9809 | |
88095e7b TO |
9810 | VUB300 USB to SDIO/SD/MMC bridge chip |
9811 | M: Tony Olech <[email protected]> | |
9812 | L: [email protected] | |
9813 | L: [email protected] | |
9814 | S: Supported | |
9815 | F: drivers/mmc/host/vub300.c | |
9816 | ||
1da177e4 | 9817 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9818 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9819 | S: Maintained |
679655da JP |
9820 | F: Documentation/w1/ |
9821 | F: drivers/w1/ | |
1da177e4 | 9822 | |
13927079 | 9823 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9824 | M: Marc Hulsman <[email protected]> |
13927079 | 9825 | L: [email protected] |
25845c22 | 9826 | S: Maintained |
679655da JP |
9827 | F: Documentation/hwmon/w83791d |
9828 | F: drivers/hwmon/w83791d.c | |
13927079 | 9829 | |
61db011d | 9830 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9831 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9832 | L: [email protected] |
9833 | S: Maintained | |
679655da JP |
9834 | F: Documentation/hwmon/w83793 |
9835 | F: drivers/hwmon/w83793.c | |
61db011d | 9836 | |
e3760b43 | 9837 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 9838 | M: Jean Delvare <[email protected]> |
e3760b43 JD |
9839 | L: [email protected] |
9840 | S: Maintained | |
9841 | F: drivers/hwmon/w83795.c | |
9842 | ||
1da177e4 | 9843 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9844 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9845 | S: Maintained |
679655da | 9846 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9847 | |
3527761c | 9848 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9849 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9850 | L: [email protected] |
9851 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9852 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9853 | S: Maintained |
679655da JP |
9854 | F: Documentation/watchdog/ |
9855 | F: drivers/watchdog/ | |
9856 | F: include/linux/watchdog.h | |
c117ab84 | 9857 | F: include/uapi/linux/watchdog.h |
3527761c | 9858 | |
1da177e4 | 9859 | WD7000 SCSI DRIVER |
8b58be88 | 9860 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9861 | L: [email protected] |
9862 | S: Maintained | |
679655da | 9863 | F: drivers/scsi/wd7000.c |
1da177e4 | 9864 | |
b22e00f3 DR |
9865 | WIIMOTE HID DRIVER |
9866 | M: David Herrmann <[email protected]> | |
9867 | L: [email protected] | |
9868 | S: Maintained | |
9869 | F: drivers/hid/hid-wiimote* | |
9870 | ||
e258b80e | 9871 | WINBOND CIR DRIVER |
364e9e18 | 9872 | M: David Härdeman <[email protected]> |
e258b80e | 9873 | S: Maintained |
116ab806 | 9874 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9875 | |
8a70da82 | 9876 | WIMAX STACK |
8b58be88 | 9877 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 | 9878 | M: [email protected] |
63fae219 | 9879 | L: [email protected] (subscribers-only) |
8a70da82 IPG |
9880 | S: Supported |
9881 | W: http://linuxwimax.org | |
315987dc | 9882 | F: Documentation/wimax/README.wimax |
315987dc JP |
9883 | F: include/linux/wimax/debug.h |
9884 | F: include/net/wimax.h | |
c117ab84 | 9885 | F: include/uapi/linux/wimax.h |
315987dc | 9886 | F: net/wimax/ |
8a70da82 | 9887 | |
5fc14680 | 9888 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9889 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9890 | S: Maintained |
679655da | 9891 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9892 | |
1da177e4 | 9893 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9894 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9895 | L: [email protected] |
926554c4 | 9896 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9897 | S: Maintained |
679655da | 9898 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9899 | |
febf1dff | 9900 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9901 | M: Mark Brown <[email protected]> |
8b58be88 | 9902 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9903 | L: [email protected] |
9904 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9905 | W: http://opensource.wolfsonmicro.com/node/7 | |
9906 | S: Supported | |
679655da JP |
9907 | F: drivers/input/touchscreen/*wm97* |
9908 | F: include/linux/wm97xx.h | |
febf1dff | 9909 | |
055bcbcb | 9910 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9911 | L: [email protected] |
cf8eda3e | 9912 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9913 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9914 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9915 | S: Supported |
3768f0b1 | 9916 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9917 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9918 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9919 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9920 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9921 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9922 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9923 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9924 | F: drivers/input/misc/wm831x-on.c |
9925 | F: drivers/input/touchscreen/wm831x-ts.c | |
9926 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9927 | F: drivers/mfd/arizona* |
9928 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9929 | F: drivers/power/wm83*.c |
9930 | F: drivers/rtc/rtc-wm83*.c | |
9931 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9932 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9933 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9934 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9935 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9936 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9937 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9938 | F: include/linux/wm97xx.h |
055bcbcb | 9939 | F: include/sound/wm????.h |
9c309598 | 9940 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9941 | F: sound/soc/codecs/wm* |
b75ea16a | 9942 | |
3e6cd7a4 TH |
9943 | WORKQUEUE |
9944 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9946 | S: Maintained | |
9947 | F: include/linux/workqueue.h | |
9948 | F: kernel/workqueue.c | |
9949 | F: Documentation/workqueue.txt | |
9950 | ||
1da177e4 | 9951 | X.25 NETWORK LAYER |
8bf28059 | 9952 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9953 | L: [email protected] |
8bf28059 | 9954 | S: Odd Fixes |
679655da JP |
9955 | F: Documentation/networking/x25* |
9956 | F: include/net/x25* | |
9957 | F: net/x25/ | |
1da177e4 | 9958 | |
e2d1d6c0 | 9959 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9960 | M: Thomas Gleixner <[email protected]> |
9961 | M: Ingo Molnar <[email protected]> | |
9962 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9963 | M: [email protected] |
981c3a4f | 9964 | L: [email protected] |
75fc2d37 | 9965 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9966 | S: Maintained |
679655da JP |
9967 | F: Documentation/x86/ |
9968 | F: arch/x86/ | |
e2d1d6c0 | 9969 | |
d0944853 | 9970 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9971 | M: Matthew Garrett <[email protected]> |
d0944853 | 9972 | L: [email protected] |
28b8e8d4 | 9973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9974 | S: Maintained |
14430813 | 9975 | F: drivers/platform/x86/ |
d0944853 | 9976 | |
c1f5c54b IM |
9977 | X86 MCE INFRASTRUCTURE |
9978 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9979 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9980 | L: [email protected] |
9981 | S: Maintained | |
9982 | F: arch/x86/kernel/cpu/mcheck/* | |
9983 | ||
d6fad502 | 9984 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9985 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9986 | L: [email protected] |
9987 | W: http://linuxtv.org | |
9988 | T: git git://linuxtv.org/media_tree.git | |
9989 | S: Maintained | |
9990 | F: drivers/media/tuners/tuner-xc2028.* | |
9991 | ||
c4468085 | 9992 | XEN HYPERVISOR INTERFACE |
c4468085 | 9993 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
9994 | M: Boris Ostrovsky <[email protected]> |
9995 | M: David Vrabel <[email protected]> | |
11dbb52b | 9996 | L: [email protected] (moderated for non-subscribers) |
ea70ba3a | 9997 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
9998 | S: Supported |
9999 | F: arch/x86/xen/ | |
10000 | F: drivers/*/xen-*front.c | |
10001 | F: drivers/xen/ | |
10002 | F: arch/x86/include/asm/xen/ | |
10003 | F: include/xen/ | |
c117ab84 | 10004 | F: include/uapi/xen/ |
c4468085 | 10005 | |
77bfb479 SS |
10006 | XEN HYPERVISOR ARM |
10007 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 10008 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
10009 | S: Supported |
10010 | F: arch/arm/xen/ | |
10011 | F: arch/arm/include/asm/xen/ | |
10012 | ||
b475e83f SS |
10013 | XEN HYPERVISOR ARM64 |
10014 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 10015 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
10016 | S: Supported |
10017 | F: arch/arm64/xen/ | |
10018 | F: arch/arm64/include/asm/xen/ | |
10019 | ||
9b57e1a7 IC |
10020 | XEN NETWORK BACKEND DRIVER |
10021 | M: Ian Campbell <[email protected]> | |
8386040b | 10022 | M: Wei Liu <[email protected]> |
11dbb52b | 10023 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
10024 | L: [email protected] |
10025 | S: Supported | |
10026 | F: drivers/net/xen-netback/* | |
10027 | ||
c5f8e29d KRW |
10028 | XEN PCI SUBSYSTEM |
10029 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 10030 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
10031 | S: Supported |
10032 | F: arch/x86/pci/*xen* | |
10033 | F: drivers/pci/*xen* | |
10034 | ||
10035 | XEN SWIOTLB SUBSYSTEM | |
10036 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 10037 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
10038 | S: Supported |
10039 | F: arch/x86/xen/*swiotlb* | |
10040 | F: drivers/xen/*swiotlb* | |
10041 | ||
1da177e4 LT |
10042 | XFS FILESYSTEM |
10043 | P: Silicon Graphics Inc | |
809625ca | 10044 | M: Dave Chinner <[email protected]> |
18caa67a | 10045 | M: [email protected] |
d7ede1aa | 10046 | L: [email protected] |
1da177e4 | 10047 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 10048 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 10049 | S: Supported |
679655da JP |
10050 | F: Documentation/filesystems/xfs.txt |
10051 | F: fs/xfs/ | |
1da177e4 | 10052 | |
8a3b7a25 | 10053 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
10054 | M: Anirudha Sarangi <[email protected]> |
10055 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
10056 | S: Maintained |
10057 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
10058 | ||
c9d3d8ec | 10059 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 10060 | S: Orphan |
679655da | 10061 | F: drivers/block/xsysace.c |
c9d3d8ec | 10062 | |
238b8721 | 10063 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 10064 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
10065 | L: [email protected] |
10066 | S: Maintained | |
df621252 | 10067 | F: drivers/tty/serial/uartlite.c |
238b8721 | 10068 | |
f620e4b8 MF |
10069 | XTENSA XTFPGA PLATFORM SUPPORT |
10070 | M: Max Filippov <[email protected]> | |
10071 | L: [email protected] | |
10072 | S: Maintained | |
10073 | F: drivers/spi/spi-xtensa-xtfpga.c | |
10074 | ||
1da177e4 | 10075 | YAM DRIVER FOR AX.25 |
8b58be88 | 10076 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
10077 | L: [email protected] |
10078 | S: Maintained | |
679655da JP |
10079 | F: drivers/net/hamradio/yam* |
10080 | F: include/linux/yam.h | |
1da177e4 | 10081 | |
af64a5eb | 10082 | YEALINK PHONE DRIVER |
8b58be88 | 10083 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
10084 | L: [email protected] |
10085 | S: Maintained | |
679655da JP |
10086 | F: Documentation/input/yealink.txt |
10087 | F: drivers/input/misc/yealink.* | |
af64a5eb | 10088 | |
1da177e4 | 10089 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 10090 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
10091 | W: http://yaina.de/jreuter/ |
10092 | W: http://www.qsl.net/dl1bke/ | |
10093 | L: [email protected] | |
10094 | S: Maintained | |
679655da JP |
10095 | F: Documentation/networking/z8530drv.txt |
10096 | F: drivers/net/hamradio/*scc.c | |
10097 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 10098 | |
0cf31ec1 | 10099 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 10100 | M: Seth Jennings <[email protected]> |
0cf31ec1 SJ |
10101 | L: [email protected] |
10102 | S: Maintained | |
10103 | F: mm/zbud.c | |
10104 | F: include/linux/zbud.h | |
10105 | ||
7c0c3afb | 10106 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
10107 | M: Daniel Drake <[email protected]> |
10108 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 10109 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 10110 | L: [email protected] |
7c0c3afb DD |
10111 | L: [email protected] (subscribers-only) |
10112 | S: Maintained | |
679655da | 10113 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 10114 | |
1da177e4 | 10115 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 10116 | L: [email protected] |
f63145e2 | 10117 | L: [email protected] |
1da177e4 | 10118 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 10119 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 10120 | S: Odd Fixes |
90d72ac6 | 10121 | F: drivers/media/pci/zoran/ |
1da177e4 | 10122 | |
6920f2cc MK |
10123 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
10124 | M: Minchan Kim <[email protected]> | |
10125 | M: Nitin Gupta <[email protected]> | |
10126 | L: [email protected] | |
10127 | S: Maintained | |
10128 | F: drivers/block/zram/ | |
10129 | F: Documentation/blockdev/zram.txt | |
10130 | ||
8b4a4080 | 10131 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 10132 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 10133 | S: Maintained |
df621252 | 10134 | F: drivers/tty/serial/zs.* |
8b4a4080 | 10135 | |
eae70d06 MK |
10136 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
10137 | M: Minchan Kim <[email protected]> | |
10138 | M: Nitin Gupta <[email protected]> | |
10139 | L: [email protected] | |
10140 | S: Maintained | |
10141 | F: mm/zsmalloc.c | |
10142 | F: include/linux/zsmalloc.h | |
10143 | ||
0cf31ec1 | 10144 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 10145 | M: Seth Jennings <[email protected]> |
0cf31ec1 SJ |
10146 | L: [email protected] |
10147 | S: Maintained | |
10148 | F: mm/zswap.c | |
10149 | ||
1da177e4 | 10150 | THE REST |
8b58be88 | 10151 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 10152 | L: [email protected] |
8a6e2535 | 10153 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 10154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 10155 | S: Buried alive in reporters |
34d03cc1 JP |
10156 | F: * |
10157 | F: */ |