]>
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 | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
0a920b5b | 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> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
129 | L: [email protected] |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <[email protected]> |
979b6c13 | 136 | L: [email protected] |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <[email protected]> | |
1da177e4 | 142 | L: [email protected] |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
149 | L: [email protected] |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf AA |
153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
154 | M: Alexander Aring <[email protected]> | |
6970c34c | 155 | M: Jukka Rissanen <[email protected]> |
68d96dcf | 156 | L: [email protected] |
ebef9c12 | 157 | L: [email protected] |
68d96dcf AA |
158 | S: Maintained |
159 | F: net/6lowpan/ | |
6304f8fc | 160 | F: include/net/6lowpan.h |
68d96dcf | 161 | |
1da177e4 | 162 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 163 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
164 | L: [email protected] |
165 | S: Maintained | |
679655da | 166 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 167 | |
1da177e4 | 168 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 169 | M: Realtek linux nic maintainers <[email protected]> |
979b6c13 | 170 | L: [email protected] |
1da177e4 | 171 | S: Maintained |
a8fe65b8 | 172 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
173 | |
174 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 175 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
176 | L: [email protected] |
177 | W: http://serial.sourceforge.net | |
8ee16a1b | 178 | S: Maintained |
08deed1e | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 180 | F: drivers/tty/serial/8250* |
679655da | 181 | F: include/linux/serial_8250.h |
1da177e4 LT |
182 | |
183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 184 | L: [email protected] |
0cf445ce | 185 | S: Orphan / Obsolete |
644570b8 | 186 | F: drivers/net/ethernet/8390/ |
1da177e4 | 187 | |
67543e50 | 188 | 9P FILE SYSTEM |
8b58be88 JP |
189 | M: Eric Van Hensbergen <[email protected]> |
190 | M: Ron Minnich <[email protected]> | |
191 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 192 | L: [email protected] |
27a2a5ff | 193 | W: http://swik.net/v9fs |
8a6e2535 | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 196 | S: Maintained |
679655da JP |
197 | F: Documentation/filesystems/9p.txt |
198 | F: fs/9p/ | |
2315cb14 RL |
199 | F: net/9p/ |
200 | F: include/net/9p/ | |
201 | F: include/uapi/linux/virtio_9p.h | |
202 | F: include/trace/events/9p.h | |
203 | ||
67543e50 | 204 | |
91952bc0 AP |
205 | A8293 MEDIA DRIVER |
206 | M: Antti Palosaari <[email protected]> | |
207 | L: [email protected] | |
208 | W: http://linuxtv.org/ | |
209 | W: http://palosaari.fi/linux/ | |
210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
211 | T: git git://linuxtv.org/anttip/media_tree.git | |
212 | S: Maintained | |
213 | F: drivers/media/dvb-frontends/a8293* | |
214 | ||
e2d1d6c0 | 215 | AACRAID SCSI RAID DRIVER |
8b58be88 | 216 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
217 | L: [email protected] |
218 | W: http://www.adaptec.com/ | |
1da177e4 | 219 | S: Supported |
679655da JP |
220 | F: Documentation/scsi/aacraid.txt |
221 | F: drivers/scsi/aacraid/ | |
1da177e4 | 222 | |
ea8f8fc8 JT |
223 | ABI/API |
224 | L: [email protected] | |
225 | F: Documentation/ABI/ | |
226 | F: include/linux/syscalls.h | |
227 | F: include/uapi/ | |
228 | F: kernel/sys_ni.c | |
229 | ||
249e3c85 | 230 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 231 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
232 | L: [email protected] |
233 | S: Maintained | |
679655da | 234 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 235 | |
249e3c85 | 236 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 237 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
238 | L: [email protected] |
239 | S: Maintained | |
679655da | 240 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 241 | |
1da177e4 | 242 | ACENIC DRIVER |
8b58be88 | 243 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
244 | L: [email protected] |
245 | S: Maintained | |
531c4f89 | 246 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 247 | |
e86435eb | 248 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 249 | M: Peter Feuerer <[email protected]> |
d0944853 | 250 | L: [email protected] |
4fc26e36 JP |
251 | W: http://piie.net/?section=acerhdf |
252 | S: Maintained | |
253 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 254 | |
745a5d21 | 255 | ACER WMI LAPTOP EXTRAS |
182ae55c | 256 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 257 | L: [email protected] |
745a5d21 | 258 | S: Maintained |
679655da | 259 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 260 | |
1da177e4 | 261 | ACPI |
49db1903 | 262 | M: Rafael J. Wysocki <[email protected]> |
7fb06082 | 263 | M: Len Brown <[email protected]> |
6968e50c | 264 | L: [email protected] |
360818b8 RW |
265 | W: https://01.org/linux-acpi |
266 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 268 | S: Supported |
679655da JP |
269 | F: drivers/acpi/ |
270 | F: drivers/pnp/pnpacpi/ | |
271 | F: include/linux/acpi.h | |
43368e74 | 272 | F: include/acpi/ |
3a75ef0c | 273 | F: Documentation/acpi/ |
89ca78a0 | 274 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
275 | F: drivers/pci/*acpi* |
276 | F: drivers/pci/*/*acpi* | |
277 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 278 | F: tools/power/acpi/ |
8b59a454 | 279 | |
3774929d RW |
280 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
281 | M: Robert Moore <[email protected]> | |
282 | M: Lv Zheng <[email protected]> | |
283 | M: Rafael J. Wysocki <[email protected]> | |
284 | L: [email protected] | |
285 | L: [email protected] | |
286 | W: https://acpica.org/ | |
287 | W: https://github.com/acpica/acpica/ | |
288 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
290 | S: Supported | |
291 | F: drivers/acpi/acpica/ | |
292 | F: include/acpi/ | |
2754c447 | 293 | F: tools/power/acpi/ |
3774929d | 294 | |
8b59a454 | 295 | ACPI FAN DRIVER |
8b58be88 | 296 | M: Zhang Rui <[email protected]> |
8b59a454 | 297 | L: [email protected] |
5ca92bd9 | 298 | W: https://01.org/linux-acpi |
8b59a454 | 299 | S: Supported |
679655da | 300 | F: drivers/acpi/fan.c |
1da177e4 | 301 | |
8b59a454 | 302 | ACPI THERMAL DRIVER |
8b58be88 | 303 | M: Zhang Rui <[email protected]> |
8b59a454 | 304 | L: [email protected] |
5ca92bd9 | 305 | W: https://01.org/linux-acpi |
8b59a454 | 306 | S: Supported |
679655da | 307 | F: drivers/acpi/*thermal* |
998be20f | 308 | |
359acec8 | 309 | ACPI VIDEO DRIVER |
8b58be88 | 310 | M: Zhang Rui <[email protected]> |
8b59a454 | 311 | L: [email protected] |
5ca92bd9 | 312 | W: https://01.org/linux-acpi |
8b59a454 | 313 | S: Supported |
679655da | 314 | F: drivers/acpi/video.c |
998be20f | 315 | |
bff431e4 | 316 | ACPI WMI DRIVER |
d0944853 | 317 | L: [email protected] |
5b927259 | 318 | S: Orphan |
679655da | 319 | F: drivers/platform/x86/wmi.c |
bff431e4 | 320 | |
2f39d519 | 321 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 322 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
323 | W: http://wiki.parisc-linux.org/AD1889 |
324 | L: [email protected] | |
325 | S: Maintained | |
679655da | 326 | F: sound/pci/ad1889.* |
2f39d519 | 327 | |
527a1a83 MH |
328 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
329 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 330 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 331 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
332 | S: Supported |
333 | F: drivers/misc/ad525x_dpot.c | |
334 | ||
335 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
336 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 337 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 338 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
339 | S: Supported |
340 | F: drivers/regulator/ad5398.c | |
341 | ||
342 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
343 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 344 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 345 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
346 | S: Supported |
347 | F: drivers/input/misc/ad714x.c | |
348 | ||
349 | AD7877 TOUCHSCREEN DRIVER | |
350 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 351 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 352 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
353 | S: Supported |
354 | F: drivers/input/touchscreen/ad7877.c | |
355 | ||
356 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
357 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 358 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 359 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
360 | S: Supported |
361 | F: drivers/input/touchscreen/ad7879.c | |
362 | ||
1330b0dc JK |
363 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
364 | M: Jiri Kosina <[email protected]> | |
365 | S: Maintained | |
366 | ||
1da177e4 | 367 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 368 | M: Jean Delvare <[email protected]> |
cc0b07ed | 369 | L: [email protected] |
1da177e4 | 370 | S: Maintained |
679655da JP |
371 | F: Documentation/hwmon/adm1025 |
372 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 373 | |
cae2caae | 374 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 375 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
376 | L: [email protected] |
377 | S: Maintained | |
679655da | 378 | F: drivers/hwmon/adm1029.c |
cae2caae | 379 | |
cc0b88cf | 380 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 381 | L: [email protected] |
491b26b4 | 382 | W: http://wireless.kernel.org/ |
e71bcbd0 | 383 | S: Orphan |
679655da | 384 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 385 | |
e8e31622 SA |
386 | ADP1653 FLASH CONTROLLER DRIVER |
387 | M: Sakari Ailus <[email protected]> | |
388 | L: [email protected] | |
389 | S: Maintained | |
390 | F: drivers/media/i2c/adp1653.c | |
391 | F: include/media/adp1653.h | |
392 | ||
527a1a83 MH |
393 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
394 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 395 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 396 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
397 | S: Supported |
398 | F: drivers/mfd/adp5520.c | |
399 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 400 | F: drivers/leds/leds-adp5520.c |
77278d50 | 401 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
402 | F: drivers/input/keyboard/adp5520-keys.c |
403 | ||
404 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
405 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 406 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 407 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
408 | S: Supported |
409 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 410 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
411 | |
412 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
413 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 414 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 415 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
416 | S: Supported |
417 | F: drivers/video/backlight/adp8860_bl.c | |
418 | ||
8c22a8f5 DE |
419 | ADS1015 HARDWARE MONITOR DRIVER |
420 | M: Dirk Eibach <[email protected]> | |
421 | L: [email protected] | |
422 | S: Maintained | |
423 | F: Documentation/hwmon/ads1015 | |
424 | F: drivers/hwmon/ads1015.c | |
425 | F: include/linux/i2c/ads1015.h | |
426 | ||
1da177e4 | 427 | ADT746X FAN DRIVER |
8b58be88 | 428 | M: Colin Leroy <[email protected]> |
1da177e4 | 429 | S: Maintained |
679655da | 430 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 431 | |
b058b859 | 432 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 433 | M: Jean Delvare <[email protected]> |
b058b859 JD |
434 | L: [email protected] |
435 | S: Maintained | |
436 | F: Documentation/hwmon/adt7475 | |
437 | F: drivers/hwmon/adt7475.c | |
438 | ||
527a1a83 MH |
439 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
440 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 441 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 442 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
443 | S: Supported |
444 | F: drivers/input/misc/adxl34x.c | |
445 | ||
8c6af9e1 | 446 | ADVANSYS SCSI DRIVER |
8b58be88 | 447 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
448 | L: [email protected] |
449 | S: Maintained | |
679655da JP |
450 | F: Documentation/scsi/advansys.txt |
451 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 452 | |
1da177e4 | 453 | AEDSP16 DRIVER |
8b58be88 | 454 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 455 | S: Maintained |
679655da | 456 | F: sound/oss/aedsp16.c |
1da177e4 | 457 | |
91952bc0 AP |
458 | AF9013 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/af9013* | |
467 | ||
468 | AF9033 MEDIA DRIVER | |
469 | M: Antti Palosaari <[email protected]> | |
470 | L: [email protected] | |
471 | W: http://linuxtv.org/ | |
472 | W: http://palosaari.fi/linux/ | |
473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
474 | T: git git://linuxtv.org/anttip/media_tree.git | |
475 | S: Maintained | |
476 | F: drivers/media/dvb-frontends/af9033* | |
477 | ||
1da177e4 | 478 | AFFS FILE SYSTEM |
6cf515e1 GU |
479 | L: [email protected] |
480 | S: Orphan | |
679655da JP |
481 | F: Documentation/filesystems/affs.txt |
482 | F: fs/affs/ | |
1da177e4 | 483 | |
e2d1d6c0 | 484 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 485 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
486 | L: [email protected] |
487 | S: Supported | |
679655da JP |
488 | F: fs/afs/ |
489 | F: include/net/af_rxrpc.h | |
490 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 491 | |
1da177e4 | 492 | AGPGART DRIVER |
8b58be88 | 493 | M: David Airlie <[email protected]> |
878eaf61 | 494 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 495 | S: Maintained |
679655da JP |
496 | F: drivers/char/agp/ |
497 | F: include/linux/agp* | |
c117ab84 | 498 | F: include/uapi/linux/agp* |
1da177e4 LT |
499 | |
500 | AHA152X SCSI DRIVER | |
8b58be88 | 501 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
502 | L: [email protected] |
503 | S: Maintained | |
679655da JP |
504 | F: drivers/scsi/aha152x* |
505 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 506 | |
64624d4f | 507 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 508 | M: Hannes Reinecke <[email protected]> |
64624d4f | 509 | L: [email protected] |
1da177e4 | 510 | S: Maintained |
679655da | 511 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 512 | |
450500ad HV |
513 | AIMSLAB FM RADIO RECEIVER DRIVER |
514 | M: Hans Verkuil <[email protected]> | |
515 | L: [email protected] | |
516 | T: git git://linuxtv.org/media_tree.git | |
517 | W: http://linuxtv.org | |
518 | S: Maintained | |
519 | F: drivers/media/radio/radio-aimslab* | |
520 | ||
e2d1d6c0 | 521 | AIO |
8b58be88 | 522 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
523 | L: [email protected] |
524 | S: Supported | |
679655da JP |
525 | F: fs/aio.c |
526 | F: include/linux/*aio*.h | |
e2d1d6c0 | 527 | |
469d4ec8 AP |
528 | AIRSPY MEDIA DRIVER |
529 | M: Antti Palosaari <[email protected]> | |
530 | L: [email protected] | |
531 | W: http://linuxtv.org/ | |
532 | W: http://palosaari.fi/linux/ | |
533 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
534 | T: git git://linuxtv.org/anttip/media_tree.git | |
535 | S: Maintained | |
536 | F: drivers/media/usb/airspy/ | |
537 | ||
1da177e4 | 538 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 539 | M: Duncan Sands <[email protected]> |
6372594a | 540 | L: [email protected] |
1da177e4 LT |
541 | W: http://www.linux-usb.org/SpeedTouch/ |
542 | S: Maintained | |
679655da JP |
543 | F: drivers/usb/atm/speedtch.c |
544 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 545 | |
272f133a | 546 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 547 | M: Manuel Lauss <[email protected]> |
08fcb720 | 548 | S: Maintained |
679655da | 549 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 550 | |
4a4e5787 | 551 | ALI1563 I2C DRIVER |
8b58be88 | 552 | M: Rudolf Marek <[email protected]> |
846557d3 | 553 | L: [email protected] |
4a4e5787 | 554 | S: Maintained |
679655da JP |
555 | F: Documentation/i2c/busses/i2c-ali1563 |
556 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 557 | |
1da177e4 | 558 | ALPHA PORT |
8b58be88 | 559 | M: Richard Henderson <[email protected]> |
8b58be88 | 560 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 561 | M: Matt Turner <[email protected]> |
c89f4f9a | 562 | S: Odd Fixes |
a9406699 | 563 | L: [email protected] |
679655da | 564 | F: arch/alpha/ |
1da177e4 | 565 | |
f62092f6 LFT |
566 | ALTERA MAILBOX DRIVER |
567 | M: Ley Foon Tan <[email protected]> | |
568 | L: [email protected] (moderated for non-subscribers) | |
569 | S: Maintained | |
570 | F: drivers/mailbox/mailbox-altera.c | |
571 | ||
c5abbba9 THL |
572 | ALTERA PIO DRIVER |
573 | M: Tien Hock Loh <[email protected]> | |
574 | L: [email protected] | |
575 | S: Maintained | |
576 | F: drivers/gpio/gpio-altera.c | |
577 | ||
16b8b922 | 578 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 579 | M: Vince Bridgers <[email protected]> |
16b8b922 VB |
580 | L: [email protected] |
581 | L: [email protected] (moderated for non-subscribers) | |
582 | S: Maintained | |
583 | F: drivers/net/ethernet/altera/ | |
584 | ||
adf9251f TK |
585 | ALTERA UART/JTAG UART SERIAL DRIVERS |
586 | M: Tobias Klauser <[email protected]> | |
587 | L: [email protected] | |
61bd0943 | 588 | L: [email protected] (moderated for non-subscribers) |
adf9251f TK |
589 | S: Maintained |
590 | F: drivers/tty/serial/altera_uart.c | |
591 | F: drivers/tty/serial/altera_jtaguart.c | |
592 | F: include/linux/altera_uart.h | |
593 | F: include/linux/altera_jtaguart.h | |
594 | ||
f4875e12 TL |
595 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
596 | M: Tom Lendacky <[email protected]> | |
597 | L: [email protected] | |
598 | S: Supported | |
599 | F: drivers/crypto/ccp/ | |
600 | F: include/linux/ccp.h | |
601 | ||
512d1027 | 602 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 603 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
604 | L: [email protected] |
605 | S: Maintained | |
606 | F: Documentation/hwmon/fam15h_power | |
607 | F: drivers/hwmon/fam15h_power.c | |
608 | ||
167a675a | 609 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 610 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 611 | L: [email protected] (moderated for non-subscribers) |
167a675a | 612 | S: Supported |
faf2e1db | 613 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 614 | |
f90b8116 | 615 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 616 | P: Andres Salomon <[email protected]> |
67d76710 | 617 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
618 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
619 | S: Supported | |
679655da JP |
620 | F: drivers/char/hw_random/geode-rng.c |
621 | F: drivers/crypto/geode* | |
8a61f013 | 622 | F: drivers/video/fbdev/geode/ |
679655da | 623 | F: arch/x86/include/asm/geode.h |
f90b8116 | 624 | |
919ee7dd | 625 | AMD IOMMU (AMD-VI) |
e4110568 | 626 | M: Joerg Roedel <[email protected]> |
919ee7dd | 627 | L: [email protected] |
525b233c | 628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 629 | S: Maintained |
b2c16391 JP |
630 | F: drivers/iommu/amd_iommu*.[ch] |
631 | F: include/linux/amd-iommu.h | |
919ee7dd | 632 | |
16423d67 | 633 | AMD KFD |
49e7d9df JP |
634 | M: Oded Gabbay <[email protected]> |
635 | L: [email protected] | |
636 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
637 | S: Supported | |
638 | F: drivers/gpu/drm/amd/amdkfd/ | |
04df25d1 OG |
639 | F: drivers/gpu/drm/amd/include/cik_structs.h |
640 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
49e7d9df JP |
641 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
642 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
643 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 644 | |
e7f5b309 | 645 | AMD MICROCODE UPDATE SUPPORT |
ca68a525 | 646 | M: Borislav Petkov <[email protected]> |
943482d0 | 647 | S: Maintained |
73d425fd | 648 | F: arch/x86/kernel/cpu/microcode/amd* |
e7f5b309 | 649 | |
45198c7b LT |
650 | AMD XGBE DRIVER |
651 | M: Tom Lendacky <[email protected]> | |
652 | L: [email protected] | |
653 | S: Supported | |
654 | F: drivers/net/ethernet/amd/xgbe/ | |
655 | F: drivers/net/phy/amd-xgbe-phy.c | |
656 | ||
284f42b6 | 657 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 658 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 659 | S: Supported |
bd5f47ec | 660 | F: drivers/macintosh/ams/ |
284f42b6 | 661 | |
f94b533d | 662 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
663 | M: Tom Tucker <[email protected]> |
664 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 665 | L: [email protected] |
f94b533d | 666 | S: Maintained |
679655da | 667 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 668 | |
531fca16 HV |
669 | ANALOG DEVICES INC AD9389B DRIVER |
670 | M: Hans Verkuil <[email protected]> | |
671 | L: [email protected] | |
672 | S: Maintained | |
673 | F: drivers/media/i2c/ad9389b* | |
674 | ||
614b4384 LPC |
675 | ANALOG DEVICES INC ADV7180 DRIVER |
676 | M: Lars-Peter Clausen <[email protected]> | |
677 | L: [email protected] | |
678 | W: http://ez.analog.com/community/linux-device-drivers | |
679 | S: Supported | |
680 | F: drivers/media/i2c/adv7180.c | |
681 | ||
c40ddfa3 HV |
682 | ANALOG DEVICES INC ADV7511 DRIVER |
683 | M: Hans Verkuil <[email protected]> | |
684 | L: [email protected] | |
685 | S: Maintained | |
686 | F: drivers/media/i2c/adv7511* | |
687 | ||
531fca16 HV |
688 | ANALOG DEVICES INC ADV7604 DRIVER |
689 | M: Hans Verkuil <[email protected]> | |
690 | L: [email protected] | |
691 | S: Maintained | |
692 | F: drivers/media/i2c/adv7604* | |
693 | ||
c40ddfa3 HV |
694 | ANALOG DEVICES INC ADV7842 DRIVER |
695 | M: Hans Verkuil <[email protected]> | |
696 | L: [email protected] | |
697 | S: Maintained | |
698 | F: drivers/media/i2c/adv7842* | |
699 | ||
527a1a83 | 700 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 701 | M: Lars-Peter Clausen <[email protected]> |
4bdef3bd | 702 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 703 | W: http://wiki.analog.com/ |
a4edbc10 | 704 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 705 | S: Supported |
39c9d199 | 706 | F: sound/soc/codecs/adau* |
cc52688a | 707 | F: sound/soc/codecs/adav* |
4bdef3bd | 708 | F: sound/soc/codecs/ad1* |
ae48f5ef | 709 | F: sound/soc/codecs/ad7* |
4bdef3bd | 710 | F: sound/soc/codecs/ssm* |
40216ce7 | 711 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 712 | |
527a1a83 | 713 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 714 | L: [email protected] (moderated for non-subscribers) |
527a1a83 MH |
715 | L: [email protected] (moderated for non-subscribers) |
716 | W: http://blackfin.uclinux.org/ | |
717 | S: Supported | |
718 | F: sound/soc/blackfin/* | |
7d1f9018 | 719 | |
4ce72abc LPC |
720 | ANALOG DEVICES INC IIO DRIVERS |
721 | M: Lars-Peter Clausen <[email protected]> | |
722 | M: Michael Hennerich <[email protected]> | |
723 | W: http://wiki.analog.com/ | |
724 | W: http://ez.analog.com/community/linux-device-drivers | |
725 | S: Supported | |
726 | F: drivers/iio/*/ad* | |
727 | X: drivers/iio/*/adjd* | |
728 | F: drivers/staging/iio/*/ad* | |
729 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 730 | |
41c9e95d GK |
731 | ANDROID DRIVERS |
732 | M: Greg Kroah-Hartman <[email protected]> | |
27682407 | 733 | M: Arve HjønnevĂ¥g <[email protected]> |
41c9e95d GK |
734 | M: Riley Andrews <[email protected]> |
735 | T: git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git | |
736 | L: [email protected] | |
737 | S: Supported | |
738 | F: drivers/android/ | |
739 | F: drivers/staging/android/ | |
740 | ||
42269063 | 741 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 742 | M: Johannes Berg <[email protected]> |
a4724ed6 | 743 | L: [email protected] |
93711660 | 744 | L: [email protected] (moderated for non-subscribers) |
42269063 | 745 | S: Maintained |
679655da | 746 | F: sound/aoa/ |
42269063 | 747 | |
1da177e4 | 748 | APM DRIVER |
81024fc4 JK |
749 | M: Jiri Kosina <[email protected]> |
750 | S: Odd fixes | |
679655da JP |
751 | F: arch/x86/kernel/apm_32.c |
752 | F: include/linux/apm_bios.h | |
c117ab84 | 753 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 754 | F: drivers/char/apm-emulation.c |
1da177e4 | 755 | |
bd7aa4b2 | 756 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 757 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 | 758 | L: [email protected] |
75dd112a | 759 | S: Odd fixes |
679655da | 760 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 761 | |
6f2fad74 | 762 | APPLE SMC DRIVER |
75dd112a | 763 | M: Henrik Rydberg <[email protected]> |
d618540f | 764 | L: [email protected] |
75dd112a | 765 | S: Odd fixes |
679655da | 766 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 767 | |
1da177e4 | 768 | APPLETALK NETWORK LAYER |
8b58be88 | 769 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 770 | S: Maintained |
679655da JP |
771 | F: drivers/net/appletalk/ |
772 | F: net/appletalk/ | |
1da177e4 | 773 | |
24299502 IS |
774 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
775 | M: Iyappan Subramanian <[email protected]> | |
776 | M: Keyur Chudgar <[email protected]> | |
24299502 IS |
777 | S: Supported |
778 | F: drivers/net/ethernet/apm/xgene/ | |
779 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
780 | ||
62a37dc7 LP |
781 | APTINA CAMERA SENSOR PLL |
782 | M: Laurent Pinchart <[email protected]> | |
783 | L: [email protected] | |
784 | S: Maintained | |
785 | F: drivers/media/i2c/aptina-pll.* | |
786 | ||
1154ea7d | 787 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 788 | M: Jaya Kumar <[email protected]> |
1154ea7d | 789 | S: Maintained |
8a61f013 JH |
790 | F: drivers/video/fbdev/arcfb.c |
791 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 792 | |
1da177e4 | 793 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 794 | M: Ian Molton <[email protected]> |
1da177e4 | 795 | S: Maintained |
679655da JP |
796 | F: arch/arm/lib/floppydma.S |
797 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 798 | |
6f96521f WD |
799 | ARM PMU PROFILING AND DEBUGGING |
800 | M: Will Deacon <[email protected]> | |
801 | S: Maintained | |
802 | F: arch/arm/kernel/perf_event* | |
803 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
804 | F: arch/arm/include/asm/pmu.h |
805 | F: arch/arm/kernel/hw_breakpoint.c | |
806 | F: arch/arm/include/asm/hw_breakpoint.h | |
807 | ||
d4275354 | 808 | ARM PORT |
8b58be88 | 809 | M: Russell King <[email protected]> |
efc03ecb | 810 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
811 | W: http://www.arm.linux.org.uk/ |
812 | S: Maintained | |
813 | F: arch/arm/ | |
814 | ||
d323c243 SB |
815 | ARM SUB-ARCHITECTURES |
816 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 817 | S: Maintained |
d323c243 SB |
818 | F: arch/arm/mach-*/ |
819 | F: arch/arm/plat-*/ | |
820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
821 | ||
cefbf4ea RK |
822 | ARM PRIMECELL AACI PL041 DRIVER |
823 | M: Russell King <[email protected]> | |
824 | S: Maintained | |
825 | F: sound/arm/aaci.* | |
826 | ||
827 | ARM PRIMECELL CLCD PL110 DRIVER | |
828 | M: Russell King <[email protected]> | |
829 | S: Maintained | |
8a61f013 | 830 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
831 | |
832 | ARM PRIMECELL KMI PL050 DRIVER | |
833 | M: Russell King <[email protected]> | |
834 | S: Maintained | |
835 | F: drivers/input/serio/ambakmi.* | |
836 | F: include/linux/amba/kmi.h | |
837 | ||
2761f5c2 | 838 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
839 | M: Russell King <[email protected]> |
840 | S: Maintained | |
679655da | 841 | F: drivers/mmc/host/mmci.* |
2f748aaa | 842 | F: include/linux/amba/mmci.h |
2761f5c2 | 843 | |
1b4304e5 RK |
844 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
845 | M: Russell King <[email protected]> | |
846 | S: Maintained | |
847 | F: drivers/tty/serial/amba-pl01*.c | |
848 | F: include/linux/amba/serial.h | |
2761f5c2 | 849 | |
cefbf4ea RK |
850 | ARM PRIMECELL BUS SUPPORT |
851 | M: Russell King <[email protected]> | |
852 | S: Maintained | |
853 | F: drivers/amba/ | |
854 | F: include/linux/amba/bus.h | |
855 | ||
2b7a52a4 | 856 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 857 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 858 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
859 | S: Maintained |
860 | ||
9c784f95 | 861 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 862 | M: Sergey Lapin <[email protected]> |
efc03ecb | 863 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
864 | S: Maintained |
865 | ||
2b7a52a4 | 866 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 867 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 868 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
869 | S: Maintained |
870 | ||
1b106699 MR |
871 | ARM/Allwinner A1X SoC support |
872 | M: Maxime Ripard <[email protected]> | |
873 | L: [email protected] (moderated for non-subscribers) | |
874 | S: Maintained | |
60b0f380 MR |
875 | N: sun[x4567]i |
876 | ||
877 | ARM/Allwinner SoC Clock Support | |
878 | M: Emilio LĂ³pez <[email protected]> | |
879 | S: Maintained | |
880 | F: drivers/clk/sunxi/ | |
1b106699 | 881 | |
7c1e3876 CC |
882 | ARM/Amlogic MesonX SoC support |
883 | M: Carlo Caione <[email protected]> | |
884 | L: [email protected] (moderated for non-subscribers) | |
885 | S: Maintained | |
12ddbadf | 886 | F: drivers/media/rc/meson-ir.c |
7c1e3876 CC |
887 | N: meson[x68] |
888 | ||
eff506fa TZ |
889 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
890 | M: Tsahee Zidenberg <[email protected]> | |
891 | S: Maintained | |
892 | F: arch/arm/mach-alpine/ | |
893 | ||
c1fc8675 | 894 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
c1fc8675 | 895 | M: Nicolas Ferre <[email protected]> |
d68b35f8 | 896 | M: Alexandre Belloni <[email protected]> |
c1fc8675 | 897 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
efc03ecb | 898 | L: [email protected] (moderated for non-subscribers) |
c1fc8675 NF |
899 | W: http://www.linux4sam.org |
900 | S: Supported | |
901 | F: arch/arm/mach-at91/ | |
f0a0a58e | 902 | F: include/soc/at91/ |
70e389cc MB |
903 | F: arch/arm/boot/dts/at91*.dts |
904 | F: arch/arm/boot/dts/at91*.dtsi | |
905 | F: arch/arm/boot/dts/sama*.dts | |
906 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 907 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 908 | |
6e05dd4e BB |
909 | ARM/ATMEL AT91 Clock Support |
910 | M: Boris Brezillon <[email protected]> | |
911 | S: Maintained | |
912 | F: drivers/clk/at91 | |
913 | ||
986cf2e9 | 914 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 915 | M: Rob Herring <[email protected]> |
986cf2e9 RH |
916 | L: [email protected] (moderated for non-subscribers) |
917 | S: Maintained | |
918 | F: arch/arm/mach-highbank/ | |
919 | ||
d94f944e | 920 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 921 | M: Krzysztof Halasa <[email protected]> |
d94f944e AV |
922 | S: Maintained |
923 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 924 | |
386ab516 AS |
925 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
926 | M: Alexander Shiyan <[email protected]> | |
927 | L: [email protected] (moderated for non-subscribers) | |
928 | S: Odd Fixes | |
b8ba3874 | 929 | N: clps711x |
386ab516 | 930 | |
2b7a52a4 | 931 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 932 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 933 | M: Ryan Mallon <[email protected]> |
efc03ecb | 934 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 935 | S: Maintained |
d19d3667 HS |
936 | F: arch/arm/mach-ep93xx/ |
937 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
938 | |
939 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 940 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 941 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
942 | S: Maintained |
943 | ||
d4275354 | 944 | ARM/CLKDEV SUPPORT |
8b58be88 | 945 | M: Russell King <[email protected]> |
efc03ecb | 946 | L: [email protected] (moderated for non-subscribers) |
37417046 | 947 | S: Maintained |
d4275354 | 948 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 949 | F: drivers/clk/clkdev.c |
d4275354 | 950 | |
d48134e7 | 951 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 952 | M: Mike Rapoport <[email protected]> |
efc03ecb | 953 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
954 | S: Maintained |
955 | ||
94150095 HF |
956 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
957 | M: Hubert Feurstein <[email protected]> | |
958 | S: Maintained | |
959 | F: arch/arm/mach-ep93xx/micro9.c | |
960 | ||
a06ae860 PP |
961 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
962 | M: Mathieu Poirier <[email protected]> | |
963 | L: [email protected] (moderated for non-subscribers) | |
964 | S: Maintained | |
01081f5a | 965 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
966 | F: Documentation/trace/coresight.txt |
967 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 968 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
a06ae860 | 969 | |
1da177e4 | 970 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 971 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
972 | S: Maintained |
973 | ||
881a95f9 | 974 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 975 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 976 | L: [email protected] (moderated for non-subscribers) |
b60e23ba | 977 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 978 | S: Maintained |
f49afbb5 | 979 | F: arch/arm/mach-gemini/ |
881a95f9 | 980 | |
a990cbd8 | 981 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 982 | M: Barry Song <[email protected]> |
a990cbd8 | 983 | L: [email protected] (moderated for non-subscribers) |
85529d14 | 984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
985 | S: Maintained |
986 | F: arch/arm/mach-prima2/ | |
4a9c44f1 | 987 | F: drivers/clk/sirf/ |
05f30e8d | 988 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 989 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 990 | N: [^a-z]sirf |
a990cbd8 | 991 | |
c9d862c4 BS |
992 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
993 | M: Baruch Siach <[email protected]> | |
994 | L: [email protected] (moderated for non-subscribers) | |
995 | S: Maintained | |
996 | N: digicolor | |
997 | ||
d4275354 | 998 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 999 | M: Russell King <[email protected]> |
efc03ecb | 1000 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1001 | W: http://www.arm.linux.org.uk/ |
1002 | S: Maintained | |
1003 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1004 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1005 | |
4721f3ce UKK |
1006 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1007 | M: Uwe Kleine-König <[email protected]> | |
1008 | L: [email protected] (moderated for non-subscribers) | |
1009 | S: Maintained | |
1010 | N: efm32 | |
1011 | ||
a9da4f7e | 1012 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1013 | M: Daniel Ribeiro <[email protected]> |
1014 | M: Stefan Schmidt <[email protected]> | |
1015 | M: Harald Welte <[email protected]> | |
d66f1886 | 1016 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
1017 | W: http://www.openezx.org/ |
1018 | S: Maintained | |
cafc2265 SS |
1019 | T: topgit git://git.openezx.org/openezx.git |
1020 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1021 | |
6a915af9 | 1022 | ARM/FARADAY FA526 PORT |
162500b3 | 1023 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 1024 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 1025 | S: Maintained |
1fa7e547 | 1026 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1027 | F: arch/arm/mm/*-fa* |
6a915af9 | 1028 | |
d4275354 | 1029 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 1030 | M: Russell King <[email protected]> |
efc03ecb | 1031 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1032 | W: http://www.arm.linux.org.uk/ |
1033 | S: Maintained | |
1034 | F: arch/arm/include/asm/hardware/dec21285.h | |
1035 | F: arch/arm/mach-footbridge/ | |
1036 | ||
86183a5f | 1037 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
5df27823 | 1038 | M: Shawn Guo <[email protected]> |
8b58be88 | 1039 | M: Sascha Hauer <[email protected]> |
efc03ecb | 1040 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 1041 | S: Maintained |
f1c12837 | 1042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1043 | F: arch/arm/mach-imx/ |
ce515a6b | 1044 | F: arch/arm/mach-mxs/ |
2a82f95c | 1045 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1046 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 1047 | |
142109d2 SA |
1048 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
1049 | M: Shawn Guo <[email protected]> | |
1050 | M: Sascha Hauer <[email protected]> | |
1051 | R: Stefan Agner <[email protected]> | |
1052 | L: [email protected] (moderated for non-subscribers) | |
1053 | S: Maintained | |
1054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1055 | F: arch/arm/mach-imx/*vf610* | |
1056 | F: arch/arm/boot/dts/vf* | |
1057 | ||
2b7a52a4 | 1058 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1059 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1060 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1061 | S: Maintained |
1062 | ||
90b8fc34 | 1063 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1064 | M: Steve Sakoman <[email protected]> |
efc03ecb | 1065 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
1066 | S: Maintained |
1067 | ||
ef47d5f0 | 1068 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1069 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
1070 | M: Paul Parsons <[email protected]> |
1071 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
1072 | S: Maintained |
1073 | F: arch/arm/mach-pxa/hx4700.c | |
1074 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1075 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1076 | |
4dfad069 WX |
1077 | ARM/HISILICON SOC SUPPORT |
1078 | M: Wei Xu <[email protected]> | |
1079 | L: [email protected] (moderated for non-subscribers) | |
1080 | W: http://www.hisilicon.com | |
1081 | S: Supported | |
1082 | T: git git://github.com/hisilicon/linux-hisi.git | |
1083 | F: arch/arm/mach-hisi/ | |
1084 | ||
21f37bc3 | 1085 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1086 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
1087 | W: www.jlime.com |
1088 | S: Maintained | |
084bad91 KE |
1089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1090 | F: arch/arm/mach-sa1100/jornada720.c | |
1091 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1092 | |
5e767ab9 JMC |
1093 | ARM/IGEP MACHINE SUPPORT |
1094 | M: Enric Balletbo i Serra <[email protected]> | |
1095 | M: Javier Martinez Canillas <[email protected]> | |
1096 | L: [email protected] | |
1097 | L: [email protected] (moderated for non-subscribers) | |
1098 | S: Maintained | |
06ff74fd | 1099 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1100 | |
403d2971 MV |
1101 | ARM/INCOME PXA270 SUPPORT |
1102 | M: Marek Vasut <[email protected]> | |
1103 | L: [email protected] (moderated for non-subscribers) | |
1104 | S: Maintained | |
ec154082 | 1105 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1106 | |
2b7a52a4 | 1107 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1108 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1109 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1110 | S: Maintained |
e2bdb176 DW |
1111 | |
1112 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1113 | L: [email protected] (moderated for non-subscribers) |
08223d80 | 1114 | S: Orphan |
2b7a52a4 LB |
1115 | |
1116 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1117 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1118 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1119 | S: Maintained |
2b7a52a4 LB |
1120 | |
1121 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1122 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1123 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1124 | S: Maintained |
2b7a52a4 | 1125 | |
2b7a52a4 | 1126 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1127 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1128 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1129 | S: Maintained |
1130 | ||
dfdd8cc9 KH |
1131 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1132 | M: Imre Kaloz <[email protected]> | |
5529c2cd | 1133 | M: Krzysztof Halasa <[email protected]> |
baea7b94 | 1134 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
1135 | S: Maintained |
1136 | F: arch/arm/mach-ixp4xx/ | |
1137 | ||
838553c5 | 1138 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1139 | M: Jonathan Cameron <[email protected]> |
1140 | L: [email protected] (moderated for non-subscribers) | |
1141 | S: Maintained | |
1142 | F: arch/arm/mach-pxa/stargate2.c | |
1143 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1144 | ||
2b7a52a4 | 1145 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1146 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1147 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1148 | S: Maintained |
2b7a52a4 LB |
1149 | |
1150 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1151 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1152 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1153 | S: Maintained |
1154 | ||
1154f858 | 1155 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1156 | M: Santosh Shilimkar <[email protected]> |
1154f858 SS |
1157 | L: [email protected] (moderated for non-subscribers) |
1158 | S: Maintained | |
1159 | F: arch/arm/mach-keystone/ | |
317929cd | 1160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1161 | |
bc6aa566 | 1162 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1163 | M: Santosh Shilimkar <[email protected]> |
bc6aa566 SS |
1164 | L: [email protected] |
1165 | S: Maintained | |
1166 | F: drivers/clk/keystone/ | |
1167 | ||
1168 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1169 | M: Santosh Shilimkar <[email protected]> |
bc6aa566 SS |
1170 | L: [email protected] (moderated for non-subscribers) |
1171 | L: [email protected] | |
1172 | S: Maintained | |
1173 | F: drivers/clocksource/timer-keystone.c | |
1174 | ||
1175 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1176 | M: Santosh Shilimkar <[email protected]> |
bc6aa566 SS |
1177 | L: [email protected] |
1178 | S: Maintained | |
1179 | F: drivers/power/reset/keystone-reset.c | |
1180 | ||
1181 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1182 | M: Santosh Shilimkar <[email protected]> |
bc6aa566 SS |
1183 | L: [email protected] |
1184 | S: Maintained | |
1185 | F: drivers/memory/*emif* | |
1186 | ||
2b7a52a4 | 1187 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1188 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1189 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1190 | S: Maintained |
1191 | ||
3b886171 | 1192 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1193 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1194 | S: Maintained |
1195 | ||
31c17ac9 | 1196 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support |
75f41273 TP |
1197 | M: Jason Cooper <[email protected]> |
1198 | M: Andrew Lunn <[email protected]> | |
1199 | M: Gregory Clement <[email protected]> | |
dcb71503 | 1200 | M: Sebastian Hesselbarth <[email protected]> |
75f41273 TP |
1201 | L: [email protected] (moderated for non-subscribers) |
1202 | S: Maintained | |
1203 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1204 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1205 | F: arch/arm/boot/dts/armada* |
1206 | F: arch/arm/boot/dts/kirkwood* | |
1207 | ||
75f41273 | 1208 | |
40f4978b SH |
1209 | ARM/Marvell Berlin SoC support |
1210 | M: Sebastian Hesselbarth <[email protected]> | |
1211 | L: [email protected] (moderated for non-subscribers) | |
1212 | S: Maintained | |
1213 | F: arch/arm/mach-berlin/ | |
31c17ac9 GC |
1214 | F: arch/arm/boot/dts/berlin* |
1215 | ||
40f4978b | 1216 | |
4cfab57e | 1217 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1218 | M: Jason Cooper <[email protected]> |
1219 | M: Andrew Lunn <[email protected]> | |
dcb71503 | 1220 | M: Sebastian Hesselbarth <[email protected]> |
bfda4031 | 1221 | M: Gregory Clement <[email protected]> |
efc03ecb | 1222 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1223 | S: Maintained |
1224 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1225 | F: arch/arm/mach-mv78xx0/ |
1226 | F: arch/arm/mach-orion5x/ | |
1227 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1228 | F: arch/arm/boot/dts/dove* |
1229 | F: arch/arm/boot/dts/orion5x* | |
1230 | ||
3b886171 | 1231 | |
d69ac131 AC |
1232 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1233 | M: Alexander Clouter <[email protected]> | |
1234 | L: [email protected] (moderated for non-subscribers) | |
1235 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1236 | S: Maintained | |
1237 | F: arch/arm/mach-orion5x/ts78xx-* | |
1238 | ||
e54951c8 MB |
1239 | ARM/Mediatek SoC support |
1240 | M: Matthias Brugger <[email protected]> | |
1241 | L: [email protected] (moderated for non-subscribers) | |
17b199d6 | 1242 | L: [email protected] (moderated for non-subscribers) |
e54951c8 MB |
1243 | S: Maintained |
1244 | F: arch/arm/boot/dts/mt6* | |
1245 | F: arch/arm/boot/dts/mt8* | |
1246 | F: arch/arm/mach-mediatek/ | |
1247 | N: mtk | |
1248 | K: mediatek | |
1249 | ||
adcb079f AB |
1250 | ARM/MICREL KS8695 ARCHITECTURE |
1251 | M: Greg Ungerer <[email protected]> | |
1252 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1253 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1254 | S: Odd Fixes |
1255 | ||
d78ff0a5 | 1256 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1257 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1258 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1259 | F: arch/arm/mach-pxa/mioa701.c |
1260 | S: Maintained | |
1261 | ||
9624dfe6 | 1262 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1263 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1264 | S: Maintained |
1265 | ||
e0ee9851 | 1266 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1267 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1268 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1269 | L: [email protected] (moderated for non-subscribers) |
1270 | S: Maintained | |
1271 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1272 | F: drivers/pinctrl/nomadik/ |
87572880 | 1273 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1275 | |
9d76295a | 1276 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1277 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1278 | L: [email protected] (subscribers-only) |
1279 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1280 | S: Supported | |
1281 | ||
8459c159 | 1282 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1283 | M: Dmitry Eremin-Solenikov <[email protected]> |
1284 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1285 | S: Maintained |
1286 | ||
5d783a2d | 1287 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1288 | M: Marek Vasut <[email protected]> |
75280787 | 1289 | L: [email protected] |
b5e4ad57 MV |
1290 | W: http://hackndev.com |
1291 | S: Maintained | |
933d35f0 JP |
1292 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1293 | F: arch/arm/mach-pxa/palmtx.c | |
1294 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1295 | F: arch/arm/mach-pxa/palmt5.c | |
1296 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1297 | F: arch/arm/mach-pxa/palmld.c | |
1298 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1299 | F: arch/arm/mach-pxa/palmte2.c | |
1300 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1301 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1302 | |
b57fe924 | 1303 | ARM/PALM TREO SUPPORT |
8b58be88 | 1304 | M: Tomas Cech <[email protected]> |
75280787 | 1305 | L: [email protected] |
90af5811 TSC |
1306 | W: http://hackndev.com |
1307 | S: Maintained | |
b57fe924 JP |
1308 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1309 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1310 | |
c49e1e63 | 1311 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1312 | M: Sergey Lapin <[email protected]> |
75280787 | 1313 | L: [email protected] |
7d2c86b5 JP |
1314 | W: http://hackndev.com |
1315 | S: Maintained | |
933d35f0 JP |
1316 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1317 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1318 | |
1da177e4 | 1319 | ARM/PLEB SUPPORT |
8b58be88 | 1320 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1321 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1322 | S: Maintained | |
1323 | ||
1324 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1325 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1326 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1327 | W: http://www.arm.linux.org.uk/ |
1328 | S: Maintained | |
1329 | ||
8fc1b0f8 KG |
1330 | ARM/QUALCOMM SUPPORT |
1331 | M: Kumar Gala <[email protected]> | |
f5d3af9d | 1332 | M: Andy Gross <[email protected]> |
8fc1b0f8 KG |
1333 | M: David Brown <[email protected]> |
1334 | L: [email protected] | |
f5d3af9d | 1335 | L: [email protected] |
8fc1b0f8 KG |
1336 | S: Maintained |
1337 | F: arch/arm/mach-qcom/ | |
f5d3af9d | 1338 | F: drivers/soc/qcom/ |
c0c89faf SB |
1339 | F: drivers/tty/serial/msm_serial.h |
1340 | F: drivers/tty/serial/msm_serial.c | |
1341 | F: drivers/*/pm8???-* | |
1342 | F: drivers/mfd/ssbi.c | |
916f743d | 1343 | F: drivers/firmware/qcom_scm.c |
8fc1b0f8 KG |
1344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
1345 | ||
2b7a52a4 | 1346 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1347 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1348 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1349 | S: Maintained |
1350 | ||
d4275354 | 1351 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1352 | M: Russell King <[email protected]> |
efc03ecb | 1353 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1354 | W: http://www.arm.linux.org.uk/ |
1355 | S: Maintained | |
d4275354 RK |
1356 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1357 | F: arch/arm/include/asm/hardware/ioc.h | |
1358 | F: arch/arm/include/asm/hardware/iomd.h | |
1359 | F: arch/arm/include/asm/hardware/memc.h | |
1360 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1361 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1362 | F: drivers/net/ethernet/i825xx/ether1* |
1363 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1364 | F: drivers/scsi/arm/ |
1365 | ||
08ddbb0a HS |
1366 | ARM/Rockchip SoC support |
1367 | M: Heiko Stuebner <[email protected]> | |
1368 | L: [email protected] (moderated for non-subscribers) | |
00250b52 | 1369 | L: [email protected] |
08ddbb0a | 1370 | S: Maintained |
541555e9 | 1371 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1372 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1373 | F: drivers/clk/rockchip/ |
1374 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1375 | F: drivers/*/*rockchip* |
541555e9 HS |
1376 | F: drivers/*/*/*rockchip* |
1377 | F: sound/soc/rockchip/ | |
b4331b43 | 1378 | N: rockchip |
08ddbb0a | 1379 | |
5bfb937c KK |
1380 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1381 | M: Kukjin Kim <[email protected]> | |
e8f98457 | 1382 | M: Krzysztof Kozlowski <[email protected]> |
efc03ecb | 1383 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1384 | L: [email protected] (moderated for non-subscribers) |
b21477f9 | 1385 | S: Maintained |
6f0589c8 MB |
1386 | F: arch/arm/boot/dts/s3c* |
1387 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1388 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1389 | F: arch/arm/mach-s3c24*/ |
1390 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1391 | F: arch/arm/mach-s5p*/ |
1392 | F: arch/arm/mach-exynos*/ | |
eb2ffcaf BD |
1393 | F: drivers/*/*s3c2410* |
1394 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1395 | F: drivers/spi/spi-s3c* |
1396 | F: sound/soc/samsung/* | |
33d43cdd | 1397 | N: exynos |
f556cb07 | 1398 | |
10ffa964 KP |
1399 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1400 | M: Kyungmin Park <[email protected]> | |
1401 | L: [email protected] (moderated for non-subscribers) | |
1402 | S: Maintained | |
004bbd3c | 1403 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1404 | |
3ce4ccb6 KD |
1405 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1406 | M: Kyungmin Park <[email protected]> | |
1407 | M: Kamil Debski <[email protected]> | |
1408 | L: [email protected] | |
1409 | L: [email protected] | |
1410 | S: Maintained | |
1411 | F: drivers/media/platform/s5p-g2d/ | |
1412 | ||
e6a476fd MS |
1413 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1414 | M: Kyungmin Park <[email protected]> | |
1415 | M: Kamil Debski <[email protected]> | |
6305902c | 1416 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1417 | L: [email protected] |
1418 | L: [email protected] | |
1419 | S: Maintained | |
934455d7 | 1420 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1421 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1422 | |
1423 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1424 | M: Kyungmin Park <[email protected]> | |
1425 | M: Tomasz Stanislawski <[email protected]> | |
1426 | L: [email protected] | |
1427 | L: [email protected] | |
1428 | S: Maintained | |
90d72ac6 | 1429 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1430 | |
d48d38e8 | 1431 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1432 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1433 | M: Magnus Damm <[email protected]> |
1434 | L: [email protected] | |
d48d38e8 | 1435 | W: http://oss.renesas.com |
bbff48f5 | 1436 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1437 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1438 | S: Supported |
0b514fdb SH |
1439 | F: arch/arm/boot/dts/emev2* |
1440 | F: arch/arm/boot/dts/r7s* | |
1441 | F: arch/arm/boot/dts/r8a* | |
1442 | F: arch/arm/boot/dts/sh* | |
0b514fdb SH |
1443 | F: arch/arm/configs/armadillo800eva_defconfig |
1444 | F: arch/arm/configs/bockw_defconfig | |
0b514fdb | 1445 | F: arch/arm/configs/kzm9g_defconfig |
0b514fdb SH |
1446 | F: arch/arm/configs/marzen_defconfig |
1447 | F: arch/arm/configs/shmobile_defconfig | |
7a2071c5 | 1448 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 PM |
1449 | F: arch/arm/mach-shmobile/ |
1450 | F: drivers/sh/ | |
1451 | ||
66314223 | 1452 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1453 | M: Dinh Nguyen <[email protected]> |
66314223 DN |
1454 | S: Maintained |
1455 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1456 | F: arch/arm/boot/dts/socfpga* |
1457 | F: arch/arm/configs/socfpga_defconfig | |
ba2b7d0a | 1458 | W: http://www.rocketboards.org |
efadb751 | 1459 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1460 | |
1461 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1462 | M: Dinh Nguyen <[email protected]> |
66314223 DN |
1463 | S: Maintained |
1464 | F: drivers/clk/socfpga/ | |
1465 | ||
71bcada8 TT |
1466 | ARM/SOCFPGA EDAC SUPPORT |
1467 | M: Thor Thayer <[email protected]> | |
1468 | S: Maintained | |
1469 | F: drivers/edac/altera_edac. | |
1470 | ||
65ebcc11 | 1471 | ARM/STI ARCHITECTURE |
a92177ea SK |
1472 | M: Srinivas Kandagatla <[email protected]> |
1473 | M: Maxime Coquelin <[email protected]> | |
1474 | M: Patrice Chotard <[email protected]> | |
65ebcc11 SK |
1475 | L: [email protected] (moderated for non-subscribers) |
1476 | L: [email protected] | |
1477 | W: http://www.stlinux.com | |
1478 | S: Maintained | |
1479 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1480 | F: arch/arm/boot/dts/sti* |
1481 | F: drivers/clocksource/arm_global_timer.c | |
a92177ea | 1482 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1483 | F: drivers/media/rc/st_rc.c |
f53b2bff | 1484 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1485 | F: drivers/phy/phy-miphy28lp.c |
1486 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1487 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1488 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a GKH |
1489 | F: drivers/pinctrl/pinctrl-st.c |
1490 | F: drivers/reset/sti/ | |
1491 | F: drivers/tty/serial/st-asc.c | |
eb11adab | 1492 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1493 | F: drivers/usb/host/ehci-st.c |
1494 | F: drivers/usb/host/ohci-st.c | |
daac6f86 | 1495 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1496 | |
2b7a52a4 | 1497 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1498 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1499 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1500 | S: Maintained |
1501 | ||
1bbd7089 | 1502 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1503 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1504 | L: [email protected] (moderated for non-subscribers) |
1505 | S: Maintained | |
1506 | ||
2b7a52a4 | 1507 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1508 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1509 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1510 | S: Maintained |
1511 | ||
98ad6e3b | 1512 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1513 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1514 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1515 | W: http://www.mcuos.com |
1516 | S: Maintained | |
4e89e8f6 | 1517 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1518 | F: drivers/input/keyboard/w90p910_keypad.c |
1519 | F: drivers/input/touchscreen/w90p910_ts.c | |
1520 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1521 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1522 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1523 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1524 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1525 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1526 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1527 | |
54274d71 | 1528 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1529 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1530 | L: [email protected] (moderated for non-subscribers) |
1531 | S: Supported | |
1532 | F: arch/arm/mach-u300/ | |
9affbd24 | 1533 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1534 | F: drivers/i2c/busses/i2c-stu300.c |
1535 | F: drivers/rtc/rtc-coh901331.c | |
1536 | F: drivers/watchdog/coh901327_wdt.c | |
1537 | F: drivers/dma/coh901318* | |
87572880 LW |
1538 | F: drivers/mfd/ab3100* |
1539 | F: drivers/rtc/rtc-ab3100.c | |
1540 | F: drivers/rtc/rtc-coh901331.c | |
1541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1542 | |
87572880 | 1543 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1544 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1545 | L: [email protected] (moderated for non-subscribers) |
1546 | S: Maintained | |
1547 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1548 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1549 | F: drivers/dma/ste_dma40* |
e4651a9f | 1550 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1551 | F: drivers/mfd/abx500* |
1552 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1553 | F: drivers/mfd/dbx500* |
1554 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1555 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1556 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1557 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1558 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1559 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1560 | |
e93fde28 UH |
1561 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1562 | M: Ulf Hansson <[email protected]> | |
1563 | L: [email protected] (moderated for non-subscribers) | |
1564 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1565 | S: Maintained | |
1566 | F: drivers/clk/ux500/ | |
1567 | F: include/linux/platform_data/clk-ux500.h | |
1568 | ||
740d93b1 PM |
1569 | ARM/VERSATILE EXPRESS PLATFORM |
1570 | M: Liviu Dudau <[email protected]> | |
1571 | M: Sudeep Holla <[email protected]> | |
1572 | M: Lorenzo Pieralisi <[email protected]> | |
1573 | L: [email protected] (moderated for non-subscribers) | |
1574 | S: Maintained | |
1575 | F: arch/arm/boot/dts/vexpress* | |
1576 | F: arch/arm/mach-vexpress/ | |
1577 | F: */*/vexpress* | |
7e8f403f | 1578 | F: */*/*/vexpress* |
740d93b1 PM |
1579 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1580 | F: drivers/clocksource/versatile.c | |
1581 | ||
d4275354 | 1582 | ARM/VFP SUPPORT |
8b58be88 | 1583 | M: Russell King <[email protected]> |
efc03ecb | 1584 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1585 | W: http://www.arm.linux.org.uk/ |
1586 | S: Maintained | |
1587 | F: arch/arm/vfp/ | |
1588 | ||
e66b6d8e MV |
1589 | ARM/VOIPAC PXA270 SUPPORT |
1590 | M: Marek Vasut <[email protected]> | |
1591 | L: [email protected] (moderated for non-subscribers) | |
1592 | S: Maintained | |
1593 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1594 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1595 | |
04529fe2 TP |
1596 | ARM/VT8500 ARM ARCHITECTURE |
1597 | M: Tony Prisk <[email protected]> | |
1598 | L: [email protected] (moderated for non-subscribers) | |
1599 | S: Maintained | |
1600 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1601 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1602 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1603 | F: drivers/mmc/host/wmt-sdmmc.c |
1604 | F: drivers/pwm/pwm-vt8500.c | |
1605 | F: drivers/rtc/rtc-vt8500.c | |
1606 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1607 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1608 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1609 | F: drivers/video/fbdev/vt8500lcdfb.* |
1610 | F: drivers/video/fbdev/wm8505fb* | |
1611 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1612 | |
e66b6d8e MV |
1613 | ARM/ZIPIT Z2 SUPPORT |
1614 | M: Marek Vasut <[email protected]> | |
1615 | L: [email protected] (moderated for non-subscribers) | |
1616 | S: Maintained | |
1617 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1618 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1619 | |
51f29d44 MS |
1620 | ARM/ZYNQ ARCHITECTURE |
1621 | M: Michal Simek <[email protected]> | |
f0fd9ad8 | 1622 | R: Sören Brinkmann <[email protected]> |
51f29d44 MS |
1623 | L: [email protected] (moderated for non-subscribers) |
1624 | W: http://wiki.xilinx.com | |
1625 | T: git git://git.xilinx.com/linux-xlnx.git | |
1626 | S: Supported | |
1627 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1628 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1629 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1630 | N: zynq |
1631 | N: xilinx | |
1632 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1633 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1634 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1635 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1636 | |
b8f9879e WD |
1637 | ARM SMMU DRIVER |
1638 | M: Will Deacon <[email protected]> | |
1639 | L: [email protected] (moderated for non-subscribers) | |
1640 | S: Maintained | |
1641 | F: drivers/iommu/arm-smmu.c | |
e1d3c0fd | 1642 | F: drivers/iommu/io-pgtable-arm.c |
b8f9879e | 1643 | |
38074229 CM |
1644 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1645 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1646 | M: Will Deacon <[email protected]> |
38074229 CM |
1647 | L: [email protected] (moderated for non-subscribers) |
1648 | S: Maintained | |
1649 | F: arch/arm64/ | |
d19766ec | 1650 | F: Documentation/arm64/ |
38074229 | 1651 | |
9d7005f9 LP |
1652 | AS3645A LED FLASH CONTROLLER DRIVER |
1653 | M: Laurent Pinchart <[email protected]> | |
1654 | L: [email protected] | |
1655 | T: git git://linuxtv.org/media_tree.git | |
1656 | S: Maintained | |
1657 | F: drivers/media/i2c/as3645a.c | |
1658 | F: include/media/as3645a.h | |
1659 | ||
d58de038 GJ |
1660 | ASC7621 HARDWARE MONITOR DRIVER |
1661 | M: George Joseph <[email protected]> | |
1662 | L: [email protected] | |
1663 | S: Maintained | |
1664 | F: Documentation/hwmon/asc7621 | |
1665 | F: drivers/hwmon/asc7621.c | |
1666 | ||
b229ece9 | 1667 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1668 | M: Corentin Chary <[email protected]> |
1da177e4 | 1669 | L: [email protected] |
d0944853 | 1670 | L: [email protected] |
76593d6f | 1671 | W: http://acpi4asus.sf.net |
85091b71 | 1672 | S: Maintained |
b229ece9 CC |
1673 | F: drivers/platform/x86/asus*.c |
1674 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1675 | |
953a6479 | 1676 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 1677 | R: Dan Williams <[email protected]> |
b3e5f263 | 1678 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 1679 | S: Odd fixes |
679655da JP |
1680 | F: Documentation/crypto/async-tx-api.txt |
1681 | F: crypto/async_tx/ | |
1682 | F: drivers/dma/ | |
1683 | F: include/linux/dmaengine.h | |
1684 | F: include/linux/async_tx.h | |
b3e5f263 | 1685 | |
a1867d36 | 1686 | AT24 EEPROM DRIVER |
14d77c4d | 1687 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1688 | L: [email protected] |
1689 | S: Maintained | |
1690 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1691 | F: include/linux/platform_data/at24.h |
a1867d36 | 1692 | |
e7839f25 | 1693 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
1694 | M: "Ed L. Cashin" <[email protected]> |
1695 | W: http://www.openaoe.org/ | |
1da177e4 | 1696 | S: Supported |
679655da JP |
1697 | F: Documentation/aoe/ |
1698 | F: drivers/block/aoe/ | |
1da177e4 | 1699 | |
9a10a870 | 1700 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1701 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1702 | L: [email protected] |
1703 | S: Supported | |
1704 | F: drivers/net/wireless/ath/* | |
1705 | ||
fa1c114f | 1706 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1707 | M: Jiri Slaby <[email protected]> |
1708 | M: Nick Kossifidis <[email protected]> | |
f726ee65 | 1709 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f | 1710 | L: [email protected] |
72c706b7 | 1711 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1712 | S: Maintained |
fa451753 | 1713 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1714 | |
12e62d6f KV |
1715 | ATHEROS ATH6KL WIRELESS DRIVER |
1716 | M: Kalle Valo <[email protected]> | |
1717 | L: [email protected] | |
1718 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1719 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1720 | S: Supported |
1721 | F: drivers/net/wireless/ath/ath6kl/ | |
1722 | ||
2be7d22f VK |
1723 | WILOCITY WIL6210 WIRELESS DRIVER |
1724 | M: Vladimir Kondratiev <[email protected]> | |
1725 | L: [email protected] | |
1726 | L: [email protected] | |
1727 | S: Supported | |
1728 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1729 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 1730 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 1731 | |
1d7e1e6b CL |
1732 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1733 | M: Christian Lamparter <[email protected]> | |
1734 | L: [email protected] | |
1735 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1736 | S: Maintained | |
1737 | F: drivers/net/wireless/ath/carl9170/ | |
1738 | ||
2c2a6172 LT |
1739 | ATK0110 HWMON DRIVER |
1740 | M: Luca Tettamanti <[email protected]> | |
1741 | L: [email protected] | |
1742 | S: Maintained | |
1743 | F: drivers/hwmon/asus_atk0110.c | |
1744 | ||
6f69a6d7 | 1745 | ATI_REMOTE2 DRIVER |
8b58be88 | 1746 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1747 | S: Maintained |
679655da | 1748 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1749 | |
7ae115b4 | 1750 | ATLX ETHERNET DRIVERS |
8b58be88 | 1751 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1752 | M: Chris Snook <[email protected]> |
e443e383 | 1753 | L: [email protected] |
8d5ca6ec JC |
1754 | W: http://sourceforge.net/projects/atl1 |
1755 | W: http://atl1.sourceforge.net | |
1756 | S: Maintained | |
2b133ad6 | 1757 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1758 | |
1da177e4 | 1759 | ATM |
366c1bd1 | 1760 | M: Chas Williams <[email protected]> |
476604de | 1761 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1762 | L: [email protected] |
1da177e4 LT |
1763 | W: http://linux-atm.sourceforge.net |
1764 | S: Maintained | |
679655da JP |
1765 | F: drivers/atm/ |
1766 | F: include/linux/atm* | |
c117ab84 | 1767 | F: include/uapi/linux/atm* |
1da177e4 | 1768 | |
04ac2f46 | 1769 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1770 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1771 | S: Maintained |
1772 | F: drivers/mmc/host/atmel-mci.c | |
1773 | F: drivers/mmc/host/atmel-mci-regs.h | |
1774 | ||
a1cfac48 | 1775 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1776 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1777 | S: Supported |
df621252 | 1778 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1779 | |
dfae90ed | 1780 | ATMEL Audio ALSA driver |
3a82002c | 1781 | M: Nicolas Ferre <[email protected]> |
dfae90ed BS |
1782 | L: [email protected] (moderated for non-subscribers) |
1783 | S: Supported | |
1784 | F: sound/soc/atmel | |
1785 | ||
b414dc16 NF |
1786 | ATMEL DMA DRIVER |
1787 | M: Nicolas Ferre <[email protected]> | |
1788 | L: [email protected] (moderated for non-subscribers) | |
1789 | S: Supported | |
1790 | F: drivers/dma/at_hdmac.c | |
1791 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1792 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1793 | |
6bd0f436 LD |
1794 | ATMEL XDMA DRIVER |
1795 | M: Ludovic Desroches <[email protected]> | |
1796 | L: [email protected] | |
1797 | L: [email protected] | |
1798 | S: Supported | |
1799 | F: drivers/dma/at_xdmac.c | |
1800 | ||
888f2804 LD |
1801 | ATMEL I2C DRIVER |
1802 | M: Ludovic Desroches <[email protected]> | |
1803 | L: [email protected] | |
1804 | S: Supported | |
1805 | F: drivers/i2c/busses/i2c-at91.c | |
1806 | ||
15515545 JW |
1807 | ATMEL ISI DRIVER |
1808 | M: Josh Wu <[email protected]> | |
1809 | L: [email protected] | |
1810 | S: Supported | |
f2294c2d | 1811 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1812 | F: include/media/atmel-isi.h |
1813 | ||
8f4c79ce | 1814 | ATMEL LCDFB DRIVER |
8b58be88 | 1815 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1816 | L: [email protected] |
8f4c79ce | 1817 | S: Maintained |
8a61f013 | 1818 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1819 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1820 | |
89e5785f | 1821 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1822 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1823 | S: Supported |
9f2f381f | 1824 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1825 | |
5cbac98a JW |
1826 | ATMEL NAND DRIVER |
1827 | M: Josh Wu <[email protected]> | |
1828 | L: [email protected] | |
1829 | S: Supported | |
1830 | F: drivers/mtd/nand/atmel_nand* | |
1831 | ||
754ce4f2 | 1832 | ATMEL SPI DRIVER |
a02875a6 | 1833 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1834 | S: Supported |
9df92e6c | 1835 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1836 | |
0ef09015 | 1837 | ATMEL SSC DRIVER |
03515f32 | 1838 | M: Nicolas Ferre <[email protected]> |
0ef09015 BS |
1839 | L: [email protected] (moderated for non-subscribers) |
1840 | S: Supported | |
1841 | F: drivers/misc/atmel-ssc.c | |
1842 | F: include/linux/atmel-ssc.h | |
1843 | ||
e9cb1c5a NF |
1844 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1845 | M: Nicolas Ferre <[email protected]> | |
1846 | L: [email protected] (moderated for non-subscribers) | |
1847 | S: Supported | |
1848 | F: drivers/misc/atmel_tclib.c | |
1849 | F: drivers/clocksource/tcb_clksrc.c | |
1850 | ||
914a3f3b | 1851 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1852 | M: Nicolas Ferre <[email protected]> |
1853 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1854 | S: Supported |
faf2e1db | 1855 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 1856 | |
1da177e4 | 1857 | ATMEL WIRELESS DRIVER |
8b58be88 | 1858 | M: Simon Kelley <[email protected]> |
724c6b35 | 1859 | L: [email protected] |
1da177e4 LT |
1860 | W: http://www.thekelleys.org.uk/atmel |
1861 | W: http://atmelwlandriver.sourceforge.net/ | |
1862 | S: Maintained | |
679655da | 1863 | F: drivers/net/wireless/atmel* |
1da177e4 | 1864 | |
26780d9e | 1865 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1866 | M: Bradley Grove <[email protected]> |
1867 | L: [email protected] | |
1868 | W: http://www.attotech.com | |
1869 | S: Supported | |
1870 | F: drivers/scsi/esas2r | |
26780d9e | 1871 | |
a92b7b80 | 1872 | AUDIT SUBSYSTEM |
915f389d | 1873 | M: Paul Moore <[email protected]> |
8b58be88 | 1874 | M: Eric Paris <[email protected]> |
915f389d | 1875 | L: [email protected] (moderated for non-subscribers) |
ad3f9a22 | 1876 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 1877 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 1878 | S: Maintained |
679655da | 1879 | F: include/linux/audit.h |
c117ab84 | 1880 | F: include/uapi/linux/audit.h |
679655da | 1881 | F: kernel/audit* |
a92b7b80 | 1882 | |
70e84049 | 1883 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1884 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1885 | W: http://miguelojeda.es/auxdisplay.htm |
1886 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1887 | S: Maintained |
679655da JP |
1888 | F: drivers/auxdisplay/ |
1889 | F: include/linux/cfag12864b.h | |
70e84049 | 1890 | |
5f97f7f9 | 1891 | AVR32 ARCHITECTURE |
e336f61f HCE |
1892 | M: Haavard Skinnemoen <[email protected]> |
1893 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1894 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1895 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1896 | W: http://avrfreaks.net/ |
e336f61f | 1897 | S: Maintained |
679655da | 1898 | F: arch/avr32/ |
5f97f7f9 HS |
1899 | |
1900 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1901 | M: Haavard Skinnemoen <[email protected]> |
1902 | M: Hans-Christian Egtvedt <[email protected]> | |
1903 | S: Maintained | |
679655da | 1904 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1905 | |
1da177e4 | 1906 | AX.25 NETWORK LAYER |
8b58be88 | 1907 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1908 | L: [email protected] |
d34cb28a | 1909 | W: http://www.linux-ax25.org/ |
1da177e4 | 1910 | S: Maintained |
c117ab84 | 1911 | F: include/uapi/linux/ax25.h |
679655da JP |
1912 | F: include/net/ax25.h |
1913 | F: net/ax25/ | |
1da177e4 | 1914 | |
d5269395 | 1915 | AZ6007 DVB DRIVER |
009a5410 | 1916 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1917 | L: [email protected] |
1918 | W: http://linuxtv.org | |
1919 | T: git git://linuxtv.org/media_tree.git | |
1920 | S: Maintained | |
1921 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1922 | ||
6777376e HV |
1923 | AZTECH FM RADIO RECEIVER DRIVER |
1924 | M: Hans Verkuil <[email protected]> | |
1925 | L: [email protected] | |
1926 | T: git git://linuxtv.org/media_tree.git | |
1927 | W: http://linuxtv.org | |
1928 | S: Maintained | |
1929 | F: drivers/media/radio/radio-aztech* | |
1930 | ||
e2d1d6c0 | 1931 | B43 WIRELESS DRIVER |
e2d1d6c0 | 1932 | L: [email protected] |
ed072f9e | 1933 | L: [email protected] |
491b26b4 | 1934 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 1935 | S: Odd Fixes |
679655da | 1936 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1937 | |
1938 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 1939 | M: Larry Finger <[email protected]> |
e2d1d6c0 | 1940 | L: [email protected] |
ed072f9e | 1941 | L: [email protected] |
491b26b4 | 1942 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1943 | S: Maintained |
679655da | 1944 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1945 | |
300abeb5 | 1946 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 1947 | M: Jingoo Han <[email protected]> |
70d14fcf | 1948 | M: Lee Jones <[email protected]> |
300abeb5 | 1949 | S: Maintained |
679655da JP |
1950 | F: drivers/video/backlight/ |
1951 | F: include/linux/backlight.h | |
300abeb5 | 1952 | |
c6c8fea2 | 1953 | BATMAN ADVANCED |
207df49e | 1954 | M: Marek Lindner <[email protected]> |
c679ff8f | 1955 | M: Simon Wunderlich <[email protected]> |
207df49e | 1956 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1957 | L: [email protected] |
1958 | W: http://www.open-mesh.org/ | |
1959 | S: Maintained | |
1960 | F: net/batman-adv/ | |
1961 | ||
e2d1d6c0 | 1962 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1963 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1964 | L: [email protected] |
1965 | W: http://www.baycom.org/~tom/ham/ham.html | |
1966 | S: Maintained | |
679655da | 1967 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1968 | |
cafe5635 | 1969 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1970 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1971 | L: [email protected] |
1972 | W: http://bcache.evilpiepirate.org | |
1973 | S: Maintained: | |
1974 | F: drivers/md/bcache/ | |
1975 | ||
e2d1d6c0 | 1976 | BEFS FILE SYSTEM |
55817d3d | 1977 | S: Orphan |
679655da JP |
1978 | F: Documentation/filesystems/befs.txt |
1979 | F: fs/befs/ | |
e2d1d6c0 | 1980 | |
564ee360 | 1981 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
1982 | M: Dariusz Marcinkiewicz <[email protected]> |
1983 | L: [email protected] | |
1984 | S: Maintained | |
1985 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 1986 | |
e2d1d6c0 | 1987 | BFS FILE SYSTEM |
8b58be88 | 1988 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1989 | S: Maintained |
679655da JP |
1990 | F: Documentation/filesystems/bfs.txt |
1991 | F: fs/bfs/ | |
c117ab84 | 1992 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1993 | |
1394f032 | 1994 | BLACKFIN ARCHITECTURE |
a4edbc10 | 1995 | M: Steven Miao <[email protected]> |
b3fe92b0 | 1996 | L: [email protected] (moderated for non-subscribers) |
1443176f | 1997 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1998 | W: http://blackfin.uclinux.org |
1999 | S: Supported | |
679655da | 2000 | F: arch/blackfin/ |
566da5b2 | 2001 | |
e190d6b1 | 2002 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2003 | L: [email protected] (moderated for non-subscribers) |
e190d6b1 BW |
2004 | W: http://blackfin.uclinux.org |
2005 | S: Supported | |
7b35f033 | 2006 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2007 | |
566da5b2 | 2008 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2009 | L: [email protected] (moderated for non-subscribers) |
566da5b2 MF |
2010 | W: http://blackfin.uclinux.org |
2011 | S: Supported | |
679655da | 2012 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2013 | |
936ed49a | 2014 | BLACKFIN SDH DRIVER |
109ec8c3 | 2015 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 2016 | L: [email protected] (moderated for non-subscribers) |
936ed49a MF |
2017 | W: http://blackfin.uclinux.org |
2018 | S: Supported | |
2019 | F: drivers/mmc/host/bfin_sdh.c | |
2020 | ||
1394f032 | 2021 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2022 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 2023 | L: [email protected] (moderated for non-subscribers) |
e3b2d3f3 BW |
2024 | W: http://blackfin.uclinux.org |
2025 | S: Supported | |
8460241e | 2026 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2027 | |
1e6d320f | 2028 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2029 | L: [email protected] (moderated for non-subscribers) |
1e6d320f BW |
2030 | W: http://blackfin.uclinux.org |
2031 | S: Supported | |
679655da | 2032 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2033 | |
d24ecfcc | 2034 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2035 | M: Sonic Zhang <[email protected]> |
b3fe92b0 | 2036 | L: [email protected] (moderated for non-subscribers) |
d24ecfcc BW |
2037 | W: http://blackfin.uclinux.org/ |
2038 | S: Supported | |
679655da | 2039 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2040 | |
1e204377 SJ |
2041 | BLACKFIN MEDIA DRIVER |
2042 | M: Scott Jiang <[email protected]> | |
b3fe92b0 | 2043 | L: [email protected] (moderated for non-subscribers) |
1e204377 SJ |
2044 | W: http://blackfin.uclinux.org/ |
2045 | S: Supported | |
2046 | F: drivers/media/platform/blackfin/ | |
2047 | F: drivers/media/i2c/adv7183* | |
2048 | F: drivers/media/i2c/vs6624* | |
2049 | ||
b54cf35a JSM |
2050 | BLINKM RGB LED DRIVER |
2051 | M: Jan-Simon Moeller <[email protected]> | |
2052 | S: Maintained | |
2053 | F: drivers/leds/leds-blinkm.c | |
2054 | ||
1da177e4 | 2055 | BLOCK LAYER |
8b58be88 | 2056 | M: Jens Axboe <[email protected]> |
08deed1e | 2057 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2058 | S: Maintained |
679655da | 2059 | F: block/ |
1da177e4 | 2060 | |
2b54aaef | 2061 | BLOCK2MTD DRIVER |
8b58be88 | 2062 | M: Joern Engel <[email protected]> |
2b54aaef JE |
2063 | L: [email protected] |
2064 | S: Maintained | |
679655da | 2065 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2066 | |
63fbd24e | 2067 | BLUETOOTH DRIVERS |
8b58be88 | 2068 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 2069 | M: Gustavo Padovan <[email protected]> |
eb491eca | 2070 | M: Johan Hedberg <[email protected]> |
781c2844 | 2071 | L: [email protected] |
63fbd24e | 2072 | W: http://www.bluez.org/ |
22e7a424 MH |
2073 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2074 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2075 | S: Maintained |
679655da | 2076 | F: drivers/bluetooth/ |
1da177e4 | 2077 | |
63fbd24e | 2078 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2079 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 2080 | M: Gustavo Padovan <[email protected]> |
eb491eca | 2081 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
2082 | L: [email protected] |
2083 | W: http://www.bluez.org/ | |
22e7a424 MH |
2084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2086 | S: Maintained |
679655da JP |
2087 | F: net/bluetooth/ |
2088 | F: include/net/bluetooth/ | |
1da177e4 LT |
2089 | |
2090 | BONDING DRIVER | |
79b30750 | 2091 | M: Jay Vosburgh <[email protected]> |
898602a0 | 2092 | M: Veaceslav Falico <[email protected]> |
31639b94 | 2093 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 2094 | L: [email protected] |
ce00f85c JC |
2095 | W: http://sourceforge.net/projects/bonding/ |
2096 | S: Supported | |
679655da | 2097 | F: drivers/net/bonding/ |
c117ab84 | 2098 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2099 | |
b5f4df34 AS |
2100 | BPF (Safe dynamic programs and tools) |
2101 | M: Alexei Starovoitov <[email protected]> | |
2102 | L: [email protected] | |
2103 | L: [email protected] | |
2104 | S: Supported | |
2105 | F: kernel/bpf/ | |
2106 | ||
39105890 | 2107 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2108 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
2109 | L: [email protected] |
2110 | S: Supported | |
adfc5217 | 2111 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2112 | |
32ec90d5 FF |
2113 | BROADCOM GENET ETHERNET DRIVER |
2114 | M: Florian Fainelli <[email protected]> | |
2115 | L: [email protected] | |
2116 | S: Supported | |
2117 | F: drivers/net/ethernet/broadcom/genet/ | |
2118 | ||
948c51e6 | 2119 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2120 | M: Sony Chacko <[email protected]> |
2121 | M: [email protected] | |
948c51e6 MC |
2122 | L: [email protected] |
2123 | S: Supported | |
adfc5217 JK |
2124 | F: drivers/net/ethernet/broadcom/bnx2.* |
2125 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2126 | |
4d9d2cb0 | 2127 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2128 | M: Ariel Elior <[email protected]> |
4d9d2cb0 ET |
2129 | L: [email protected] |
2130 | S: Supported | |
adfc5217 | 2131 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2132 | |
90f4c594 | 2133 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2134 | M: Florian Fainelli <[email protected]> |
d3cc2e86 FF |
2135 | M: Ray Jui <[email protected]> |
2136 | M: Scott Branden <[email protected]> | |
497a045d | 2137 | L: [email protected] |
90f4c594 | 2138 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2139 | S: Maintained |
2140 | F: arch/arm/mach-bcm/ | |
2141 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2142 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
2143 | F: arch/arm/boot/dts/bcm281* |
2144 | F: arch/arm/configs/bcm_defconfig | |
e4ef47f2 | 2145 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2146 | F: drivers/clocksource/bcm_kona_timer.c |
2147 | ||
9209bec4 | 2148 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2149 | M: Stephen Warren <[email protected]> |
8bcdd929 | 2150 | M: Lee Jones <[email protected]> |
f680f25c | 2151 | L: [email protected] (moderated for non-subscribers) |
8bcdd929 | 2152 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2153 | S: Maintained |
9209bec4 | 2154 | N: bcm2835 |
f680f25c | 2155 | |
a2f6734c KC |
2156 | BROADCOM BCM33XX MIPS ARCHITECTURE |
2157 | M: Kevin Cernekee <[email protected]> | |
2158 | L: [email protected] | |
2159 | S: Maintained | |
2160 | F: arch/mips/bcm3384/* | |
2161 | F: arch/mips/include/asm/mach-bcm3384/* | |
2162 | F: arch/mips/kernel/*bmips* | |
2163 | ||
9209bec4 | 2164 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe HM |
2165 | M: Hauke Mehrtens <[email protected]> |
2166 | L: [email protected] | |
2167 | S: Maintained | |
2168 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2169 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2170 | F: arch/arm/boot/dts/bcm470* | |
2171 | ||
e076e962 FF |
2172 | BROADCOM BCM63XX ARM ARCHITECTURE |
2173 | M: Florian Fainelli <[email protected]> | |
2174 | L: [email protected] | |
eb6725d0 | 2175 | T: git git://github.com/broadcom/arm-bcm63xx.git |
e076e962 FF |
2176 | S: Maintained |
2177 | F: arch/arm/mach-bcm/bcm63xx.c | |
2178 | F: arch/arm/include/debug/bcm63xx.S | |
2179 | ||
7110e227 KC |
2180 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2181 | M: Kevin Cernekee <[email protected]> | |
2182 | L: [email protected] | |
2183 | S: Maintained | |
2184 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2185 | ||
2df94fd6 | 2186 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2187 | M: Brian Norris <[email protected]> |
3b4b6fe9 FF |
2188 | M: Gregory Fong <[email protected]> |
2189 | M: Florian Fainelli <[email protected]> | |
2df94fd6 | 2190 | L: [email protected] (moderated for non-subscribers) |
eb6725d0 | 2191 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2192 | S: Maintained |
2193 | F: arch/arm/mach-bcm/*brcmstb* | |
2194 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2195 | F: drivers/bus/brcmstb_gisb.c |
2df94fd6 | 2196 | |
70371cef KC |
2197 | BROADCOM BMIPS MIPS ARCHITECTURE |
2198 | M: Kevin Cernekee <[email protected]> | |
2199 | M: Florian Fainelli <[email protected]> | |
2200 | L: [email protected] | |
eb6725d0 | 2201 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2202 | S: Maintained |
2203 | F: arch/mips/bmips/* | |
2204 | F: arch/mips/include/asm/mach-bmips/* | |
2205 | F: arch/mips/kernel/*bmips* | |
2206 | F: arch/mips/boot/dts/bcm*.dts* | |
2207 | F: drivers/irqchip/irq-bcm7* | |
2208 | F: drivers/irqchip/irq-brcmstb* | |
2209 | ||
948c51e6 | 2210 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2211 | M: Prashant Sreedharan <[email protected]> |
8b58be88 | 2212 | M: Michael Chan <[email protected]> |
948c51e6 MC |
2213 | L: [email protected] |
2214 | S: Supported | |
adfc5217 | 2215 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2216 | |
a9533e7e HP |
2217 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2218 | M: Brett Rudley <[email protected]> | |
818c07b8 | 2219 | M: Arend van Spriel <[email protected]> |
85d63686 | 2220 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 2221 | M: Hante Meuleman <[email protected]> |
a9533e7e | 2222 | L: [email protected] |
5615171c | 2223 | L: [email protected] |
a9533e7e | 2224 | S: Supported |
f62ebdd5 | 2225 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 2226 | |
9958d6f9 | 2227 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2228 | M: [email protected] |
9958d6f9 BPG |
2229 | L: [email protected] |
2230 | S: Supported | |
2231 | F: drivers/scsi/bnx2fc/ | |
2232 | ||
6a6b5ad0 | 2233 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2234 | M: [email protected] |
6a6b5ad0 EW |
2235 | L: [email protected] |
2236 | S: Supported | |
2237 | F: drivers/scsi/bnx2i/ | |
2238 | ||
36c0237f SB |
2239 | BROADCOM CYGNUS/IPROC ARM ARCHITECTURE |
2240 | M: Ray Jui <[email protected]> | |
2241 | M: Scott Branden <[email protected]> | |
2242 | L: [email protected] (moderated for non-subscribers) | |
2243 | L: [email protected] | |
eb6725d0 | 2244 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2245 | S: Maintained |
2246 | N: iproc | |
2247 | N: cygnus | |
2248 | N: bcm9113* | |
2249 | N: bcm9583* | |
2250 | N: bcm583* | |
2251 | N: bcm113* | |
2252 | ||
7b7f588b | 2253 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2254 | M: Ray Jui <[email protected]> |
7b7f588b MM |
2255 | L: [email protected] |
2256 | S: Supported | |
2257 | F: drivers/gpio/gpio-bcm-kona.c | |
2258 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt | |
2259 | ||
c9678d86 RM |
2260 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2261 | M: Rafał Miłecki <[email protected]> | |
2262 | L: [email protected] | |
2263 | S: Maintained | |
2264 | F: drivers/bcma/ | |
2265 | F: include/linux/bcma/ | |
2266 | ||
b8302205 FF |
2267 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2268 | M: Florian Fainelli <[email protected]> | |
2269 | L: [email protected] | |
2270 | S: Supported | |
2271 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2272 | ||
7725ccfd | 2273 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2274 | M: Anil Gurumurthy <[email protected]> |
2275 | M: Sudarsana Kalluru <[email protected]> | |
455518e7 JP |
2276 | L: [email protected] |
2277 | S: Supported | |
2278 | F: drivers/scsi/bfa/ | |
7725ccfd | 2279 | |
8b230ed8 | 2280 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2281 | M: Rasesh Mody <[email protected]> |
8b230ed8 RM |
2282 | L: [email protected] |
2283 | S: Supported | |
f844a0ea | 2284 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2285 | |
5cdf7f76 | 2286 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2287 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
2288 | L: [email protected] |
2289 | S: Supported | |
679655da JP |
2290 | F: block/bsg.c |
2291 | F: include/linux/bsg.h | |
c117ab84 | 2292 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2293 | |
af39917d CL |
2294 | BT87X AUDIO DRIVER |
2295 | M: Clemens Ladisch <[email protected]> | |
2296 | L: [email protected] (moderated for non-subscribers) | |
2297 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2298 | S: Maintained | |
2299 | F: Documentation/sound/alsa/Bt87x.txt | |
2300 | F: sound/pci/bt87x.c | |
2301 | ||
ff1d5c2f | 2302 | BT8XXGPIO DRIVER |
eb032b98 | 2303 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
2304 | W: http://bu3sch.de/btgpio.php |
2305 | S: Maintained | |
72dbb705 | 2306 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2307 | |
eb1eb04f | 2308 | BTRFS FILE SYSTEM |
c0778e25 CM |
2309 | M: Chris Mason <[email protected]> |
2310 | M: Josef Bacik <[email protected]> | |
4e0c4a47 | 2311 | M: David Sterba <[email protected]> |
eb1eb04f JP |
2312 | L: [email protected] |
2313 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2314 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2316 | S: Maintained |
679655da JP |
2317 | F: Documentation/filesystems/btrfs.txt |
2318 | F: fs/btrfs/ | |
eb1eb04f | 2319 | |
1da177e4 | 2320 | BTTV VIDEO4LINUX DRIVER |
009a5410 | 2321 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 2322 | L: [email protected] |
96b6aba0 | 2323 | W: http://linuxtv.org |
275ffde4 | 2324 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2325 | S: Odd fixes |
679655da | 2326 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2327 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2328 | |
1f34923c KA |
2329 | BUSLOGIC SCSI DRIVER |
2330 | M: Khalid Aziz <[email protected]> | |
2331 | L: [email protected] | |
2332 | S: Maintained | |
2333 | F: drivers/scsi/BusLogic.* | |
2334 | F: drivers/scsi/FlashPoint.* | |
2335 | ||
af39917d CL |
2336 | C-MEDIA CMI8788 DRIVER |
2337 | M: Clemens Ladisch <[email protected]> | |
2338 | L: [email protected] (moderated for non-subscribers) | |
2339 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2340 | S: Maintained | |
2341 | F: sound/pci/oxygen/ | |
2342 | ||
2141355f MS |
2343 | C6X ARCHITECTURE |
2344 | M: Mark Salter <[email protected]> | |
2345 | M: Aurelien Jacquiot <[email protected]> | |
2346 | L: [email protected] | |
2347 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2348 | S: Maintained | |
2349 | F: arch/c6x/ | |
2350 | ||
a5432f5a | 2351 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2352 | M: David Howells <[email protected]> |
a5432f5a DH |
2353 | L: [email protected] |
2354 | S: Supported | |
2355 | F: Documentation/filesystems/caching/cachefiles.txt | |
2356 | F: fs/cachefiles/ | |
2357 | ||
c815ca39 HV |
2358 | CADET FM/AM RADIO RECEIVER DRIVER |
2359 | M: Hans Verkuil <[email protected]> | |
2360 | L: [email protected] | |
2361 | T: git git://linuxtv.org/media_tree.git | |
2362 | W: http://linuxtv.org | |
2363 | S: Maintained | |
2364 | F: drivers/media/radio/radio-cadet* | |
2365 | ||
77d5140f | 2366 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2367 | M: Jonathan Corbet <[email protected]> |
661263b5 | 2368 | L: [email protected] |
275ffde4 | 2369 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2370 | S: Maintained |
679655da | 2371 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2372 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2373 | |
201b6bab | 2374 | CAIF NETWORK LAYER |
5c574f50 | 2375 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
2376 | L: [email protected] |
2377 | S: Supported | |
2378 | F: Documentation/networking/caif/ | |
2379 | F: drivers/net/caif/ | |
c117ab84 | 2380 | F: include/uapi/linux/caif/ |
201b6bab JP |
2381 | F: include/net/caif/ |
2382 | F: net/caif/ | |
2383 | ||
77dac90f | 2384 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2385 | M: Muli Ben-Yehuda <[email protected]> |
2386 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
2387 | L: [email protected] |
2388 | S: Maintained | |
679655da JP |
2389 | F: arch/x86/kernel/pci-calgary_64.c |
2390 | F: arch/x86/kernel/tce_64.c | |
2391 | F: arch/x86/include/asm/calgary.h | |
2392 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2393 | |
e2d1d6c0 | 2394 | CAN NETWORK LAYER |
8d15d386 | 2395 | M: Oliver Hartkopp <[email protected]> |
f7214cf2 | 2396 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2397 | L: [email protected] |
84b0d715 | 2398 | W: https://github.com/linux-can |
870482a4 MKB |
2399 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2401 | S: Maintained |
f35f6c8f | 2402 | F: Documentation/networking/can.txt |
8d15d386 | 2403 | F: net/can/ |
8d15d386 | 2404 | F: include/linux/can/core.h |
c117ab84 CEB |
2405 | F: include/uapi/linux/can.h |
2406 | F: include/uapi/linux/can/bcm.h | |
2407 | F: include/uapi/linux/can/raw.h | |
2408 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2409 | |
4261a204 | 2410 | CAN NETWORK DRIVERS |
8b58be88 | 2411 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2412 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2413 | L: [email protected] |
84b0d715 | 2414 | W: https://github.com/linux-can |
870482a4 MKB |
2415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2417 | S: Maintained |
8d15d386 OH |
2418 | F: drivers/net/can/ |
2419 | F: include/linux/can/dev.h | |
8d15d386 | 2420 | F: include/linux/can/platform/ |
c117ab84 CEB |
2421 | F: include/uapi/linux/can/error.h |
2422 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2423 | |
95d16c72 JM |
2424 | CAPABILITIES |
2425 | M: Serge Hallyn <[email protected]> | |
2426 | L: [email protected] | |
6305902c | 2427 | S: Supported |
95d16c72 | 2428 | F: include/linux/capability.h |
c117ab84 | 2429 | F: include/uapi/linux/capability.h |
95d16c72 | 2430 | F: security/capability.c |
6305902c | 2431 | F: security/commoncap.c |
38a94118 | 2432 | F: kernel/capability.c |
95d16c72 | 2433 | |
b84894c7 KT |
2434 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2435 | M: Kevin Tsai <[email protected]> | |
2436 | S: Maintained | |
2437 | F: drivers/iio/light/cm* | |
2438 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2439 | ||
ef0bbac3 VB |
2440 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2441 | M: Varka Bhadram <[email protected]> | |
2442 | L: [email protected] | |
2443 | S: Maintained | |
2444 | F: drivers/net/ieee802154/cc2520.c | |
2445 | F: include/linux/spi/cc2520.h | |
2446 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2447 | ||
b8154542 | 2448 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2449 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2450 | L: [email protected] |
2451 | L: [email protected] | |
b8154542 AB |
2452 | W: http://www.ibm.com/developerworks/power/cell/ |
2453 | S: Supported | |
679655da | 2454 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2455 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2456 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2457 | F: arch/powerpc/oprofile/*cell* |
2458 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2459 | |
9030aaf9 | 2460 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
0f5417ce SW |
2461 | M: Yan, Zheng <[email protected]> |
2462 | M: Sage Weil <[email protected]> | |
82593f87 | 2463 | L: [email protected] |
09d90327 | 2464 | W: http://ceph.com/ |
fb99f881 | 2465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2466 | S: Supported |
2467 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2468 | F: fs/ceph/ |
2469 | F: net/ceph/ | |
2470 | F: include/linux/ceph/ | |
2471 | F: include/linux/crush/ | |
9030aaf9 | 2472 | |
18332a80 | 2473 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2474 | L: [email protected] |
10c6c9c9 | 2475 | S: Orphan |
679655da JP |
2476 | F: Documentation/usb/WUSB-Design-overview.txt |
2477 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2478 | F: drivers/usb/host/hwa-hc.c |
2479 | F: drivers/usb/host/whci/ | |
679655da JP |
2480 | F: drivers/usb/wusbcore/ |
2481 | F: include/linux/usb/wusb* | |
18332a80 | 2482 | |
70e84049 | 2483 | CFAG12864B LCD DRIVER |
8b58be88 | 2484 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2485 | W: http://miguelojeda.es/auxdisplay.htm |
2486 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2487 | S: Maintained |
679655da JP |
2488 | F: drivers/auxdisplay/cfag12864b.c |
2489 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2490 | |
2491 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2492 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2493 | W: http://miguelojeda.es/auxdisplay.htm |
2494 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2495 | S: Maintained |
679655da JP |
2496 | F: drivers/auxdisplay/cfag12864bfb.c |
2497 | F: include/linux/cfag12864b.h | |
70e84049 | 2498 | |
704232c2 | 2499 | CFG80211 and NL80211 |
8b58be88 | 2500 | M: Johannes Berg <[email protected]> |
704232c2 | 2501 | L: [email protected] |
ce466579 JB |
2502 | W: http://wireless.kernel.org/ |
2503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2505 | S: Maintained |
c117ab84 | 2506 | F: include/uapi/linux/nl80211.h |
679655da JP |
2507 | F: include/net/cfg80211.h |
2508 | F: net/wireless/* | |
2509 | X: net/wireless/wext* | |
704232c2 | 2510 | |
46e64261 GKH |
2511 | CHAR and MISC DRIVERS |
2512 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2513 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2515 | S: Supported |
46e64261 GKH |
2516 | F: drivers/char/* |
2517 | F: drivers/misc/* | |
471322a8 | 2518 | F: include/linux/miscdevice.h |
46e64261 | 2519 | |
0a920b5b | 2520 | CHECKPATCH |
8b58be88 | 2521 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2522 | M: Joe Perches <[email protected]> |
2523 | S: Maintained | |
679655da | 2524 | F: scripts/checkpatch.pl |
0a920b5b | 2525 | |
f8407f26 HW |
2526 | CHINESE DOCUMENTATION |
2527 | M: Harry Wei <[email protected]> | |
9740153c | 2528 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2529 | L: [email protected] (moderated for non-subscribers) |
2530 | S: Maintained | |
2531 | F: Documentation/zh_CN/ | |
2532 | ||
2721ea2c | 2533 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2534 | M: Peter Chen <[email protected]> |
8373856d | 2535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
2536 | L: [email protected] |
2537 | S: Maintained | |
2538 | F: drivers/usb/chipidea/ | |
2539 | ||
a93ad65d HG |
2540 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
2541 | M: Hans de Goede <[email protected]> | |
2542 | L: [email protected] | |
2543 | S: Maintained | |
2544 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
2545 | F: drivers/input/touchscreen/chipone_icn8318.c | |
2546 | ||
ab043105 OJ |
2547 | CHROME HARDWARE PLATFORM SUPPORT |
2548 | M: Olof Johansson <[email protected]> | |
2549 | S: Maintained | |
2550 | F: drivers/platform/chrome/ | |
2551 | ||
641cb85e | 2552 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2553 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2554 | M: Sujith Sankar <[email protected]> |
c327e8f4 | 2555 | M: Govindarajulu Varadarajan <[email protected]> |
5c6652f5 | 2556 | M: Neel Patel <[email protected]> |
7063fbf2 | 2557 | S: Supported |
a6a5580c | 2558 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2559 | |
e3cf00d0 | 2560 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2561 | M: Upinder Malhi <[email protected]> |
2562 | S: Supported | |
2563 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2564 | |
2b7a52a4 | 2565 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2566 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2567 | L: [email protected] |
2568 | S: Maintained | |
57d0b7a0 | 2569 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2570 | |
3d4cfdc9 MB |
2571 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2572 | M: Brian Austin <[email protected]> | |
2573 | M: Paul Handrigan <[email protected]> | |
2574 | L: [email protected] (moderated for non-subscribers) | |
2575 | S: Maintained | |
2576 | F: sound/soc/codecs/cs* | |
2577 | ||
94574d9a KRW |
2578 | CLEANCACHE API |
2579 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2580 | L: [email protected] | |
2581 | S: Maintained | |
2582 | F: mm/cleancache.c | |
2583 | F: include/linux/cleancache.h | |
2584 | ||
d4275354 | 2585 | CLK API |
8b58be88 | 2586 | M: Russell King <[email protected]> |
aa571b14 | 2587 | L: [email protected] |
37417046 | 2588 | S: Maintained |
d4275354 RK |
2589 | F: include/linux/clk.h |
2590 | ||
9222d247 JS |
2591 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2592 | M: Daniel Lezcano <[email protected]> | |
2593 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 2594 | L: [email protected] |
9222d247 JS |
2595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2596 | S: Supported | |
2597 | F: drivers/clocksource | |
2598 | ||
5df6d737 | 2599 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2600 | M: Hiral Patel <[email protected]> |
2601 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2602 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2603 | L: [email protected] |
2604 | S: Supported | |
2a99921a | 2605 | F: drivers/scsi/fnic/ |
5df6d737 | 2606 | |
529aa8cb TLSC |
2607 | CMPC ACPI DRIVER |
2608 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2609 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2610 | L: [email protected] |
529aa8cb TLSC |
2611 | S: Supported |
2612 | F: drivers/platform/x86/classmate-laptop.c | |
2613 | ||
74425eee | 2614 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2615 | M: Julia Lawall <[email protected]> |
74425eee | 2616 | M: Gilles Muller <[email protected]> |
26de9c26 | 2617 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2618 | M: Michal Marek <[email protected]> |
26de9c26 | 2619 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2620 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2621 | W: http://coccinelle.lip6.fr/ |
2622 | S: Supported | |
4b92b2aa | 2623 | F: Documentation/coccinelle.txt |
74425eee NP |
2624 | F: scripts/coccinelle/ |
2625 | F: scripts/coccicheck | |
2626 | ||
1da177e4 | 2627 | CODA FILE SYSTEM |
8b58be88 | 2628 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2629 | M: [email protected] |
2630 | L: [email protected] | |
2631 | W: http://www.coda.cs.cmu.edu/ | |
2632 | S: Maintained | |
679655da JP |
2633 | F: Documentation/filesystems/coda.txt |
2634 | F: fs/coda/ | |
2635 | F: include/linux/coda*.h | |
c117ab84 | 2636 | F: include/uapi/linux/coda*.h |
1da177e4 | 2637 | |
0b14261e PZ |
2638 | CODA V4L2 MEM2MEM DRIVER |
2639 | M: Philipp Zabel <[email protected]> | |
2640 | L: [email protected] | |
2641 | S: Maintained | |
2642 | F: Documentation/devicetree/bindings/media/coda.txt | |
2643 | F: drivers/media/platform/coda/ | |
2644 | ||
7704addb | 2645 | COMMON CLK FRAMEWORK |
7704addb | 2646 | M: Mike Turquette <[email protected]> |
f956165f | 2647 | M: Stephen Boyd <[email protected]> |
aa571b14 | 2648 | L: [email protected] |
baeb0d9b | 2649 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 2650 | S: Maintained |
60bea3b5 SW |
2651 | F: drivers/clk/ |
2652 | X: drivers/clk/clkdev.c | |
7704addb | 2653 | F: include/linux/clk-pr* |
60bea3b5 | 2654 | F: include/linux/clk/ |
7704addb | 2655 | |
e2d1d6c0 | 2656 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2657 | M: Steve French <[email protected]> |
51223df6 | 2658 | L: [email protected] |
d1f28953 | 2659 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2660 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 2661 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 2662 | S: Supported |
ec421a71 | 2663 | F: Documentation/filesystems/cifs/ |
679655da | 2664 | F: fs/cifs/ |
e2d1d6c0 | 2665 | |
1da177e4 | 2666 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2667 | M: Scott Murray <[email protected]> |
64dab204 | 2668 | L: [email protected] |
82c4dfc7 | 2669 | S: Maintained |
679655da | 2670 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2671 | |
2672 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2673 | M: Scott Murray <[email protected]> |
64dab204 | 2674 | L: [email protected] |
82c4dfc7 | 2675 | S: Maintained |
679655da | 2676 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2677 | |
2678 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2679 | M: Scott Murray <[email protected]> |
64dab204 | 2680 | L: [email protected] |
82c4dfc7 | 2681 | S: Maintained |
679655da | 2682 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2683 | |
5411552c | 2684 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2685 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2686 | L: [email protected] |
5411552c | 2687 | S: Maintained |
679655da | 2688 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2689 | |
949be0f7 | 2690 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2691 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2692 | L: [email protected] |
2693 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2694 | S: Maintained |
679655da | 2695 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2696 | |
e2d1d6c0 | 2697 | CONFIGFS |
d6351db2 JB |
2698 | M: Joel Becker <[email protected]> |
2699 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2700 | S: Supported |
679655da JP |
2701 | F: fs/configfs/ |
2702 | F: include/linux/configfs.h | |
e2d1d6c0 | 2703 | |
acb9c1b2 | 2704 | CONNECTOR |
8b58be88 | 2705 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2706 | L: [email protected] |
2707 | S: Maintained | |
2708 | F: drivers/connector/ | |
2709 | ||
a3e3354d | 2710 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2711 | M: Tejun Heo <[email protected]> |
ad50c159 | 2712 | M: Li Zefan <[email protected]> |
12340313 | 2713 | L: [email protected] |
860ca0e6 | 2714 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2715 | S: Maintained |
a3e3354d | 2716 | F: Documentation/cgroups/ |
679655da JP |
2717 | F: include/linux/cgroup* |
2718 | F: kernel/cgroup* | |
a3e3354d TH |
2719 | |
2720 | CONTROL GROUP - CPUSET | |
2721 | M: Li Zefan <[email protected]> | |
2722 | L: [email protected] | |
2723 | W: http://www.bullopensource.org/cpuset/ | |
2724 | W: http://oss.sgi.com/projects/cpusets/ | |
2725 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2726 | S: Maintained | |
2727 | F: Documentation/cgroups/cpusets.txt | |
2728 | F: include/linux/cpuset.h | |
2729 | F: kernel/cpuset.c | |
2730 | ||
2731 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2732 | M: Johannes Weiner <[email protected]> | |
2733 | M: Michal Hocko <[email protected]> | |
2734 | L: [email protected] | |
2735 | L: [email protected] | |
2736 | S: Maintained | |
2737 | F: mm/memcontrol.c | |
5d1ea48b | 2738 | F: mm/swap_cgroup.c |
fb3a0fb6 | 2739 | |
bebe4678 | 2740 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2741 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2742 | L: [email protected] |
2743 | S: Maintained | |
679655da JP |
2744 | F: Documentation/hwmon/coretemp |
2745 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2746 | |
1da177e4 | 2747 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2748 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2749 | W: http://www.fi.muni.cz/~kas/cosa/ |
2750 | S: Maintained | |
679655da | 2751 | F: drivers/net/wan/cosa* |
1da177e4 | 2752 | |
4371ee35 | 2753 | CPMAC ETHERNET DRIVER |
8b58be88 | 2754 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2755 | L: [email protected] |
2756 | S: Maintained | |
b544dbac | 2757 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2758 | |
1da177e4 | 2759 | CPU FREQUENCY DRIVERS |
49db1903 | 2760 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2761 | M: Viresh Kumar <[email protected]> |
a6c072c7 | 2762 | L: [email protected] |
1da177e4 | 2763 | S: Maintained |
27209d91 VK |
2764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2765 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2766 | F: drivers/cpufreq/ |
2767 | F: include/linux/cpufreq.h | |
1da177e4 | 2768 | |
8a67f0ef VK |
2769 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2770 | M: Viresh Kumar <[email protected]> | |
171d0ba8 | 2771 | M: Sudeep Holla <[email protected]> |
8a67f0ef VK |
2772 | L: [email protected] |
2773 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2774 | S: Maintained | |
2775 | F: drivers/cpufreq/arm_big_little.h | |
2776 | F: drivers/cpufreq/arm_big_little.c | |
2777 | F: drivers/cpufreq/arm_big_little_dt.c | |
2778 | ||
14d2c34c | 2779 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2780 | M: Lorenzo Pieralisi <[email protected]> |
2781 | M: Daniel Lezcano <[email protected]> | |
2782 | L: [email protected] | |
2783 | L: [email protected] | |
cea8321c | 2784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2785 | S: Maintained |
2786 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2787 | |
0c570c18 BZ |
2788 | CPUIDLE DRIVER - ARM EXYNOS |
2789 | M: Bartlomiej Zolnierkiewicz <[email protected]> | |
2790 | M: Daniel Lezcano <[email protected]> | |
2791 | M: Kukjin Kim <[email protected]> | |
2792 | L: [email protected] | |
2793 | L: [email protected] | |
2794 | S: Supported | |
2795 | F: drivers/cpuidle/cpuidle-exynos.c | |
2796 | F: arch/arm/mach-exynos/pm.c | |
2797 | ||
a8e39c35 | 2798 | CPUIDLE DRIVERS |
49db1903 | 2799 | M: Rafael J. Wysocki <[email protected]> |
a8e39c35 DL |
2800 | M: Daniel Lezcano <[email protected]> |
2801 | L: [email protected] | |
2802 | S: Maintained | |
cea8321c | 2803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2804 | F: drivers/cpuidle/* |
2805 | F: include/linux/cpuidle.h | |
2806 | ||
1da177e4 | 2807 | CPUID/MSR DRIVER |
8b58be88 | 2808 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2809 | S: Maintained |
679655da JP |
2810 | F: arch/x86/kernel/cpuid.c |
2811 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2812 | |
7fe2f639 | 2813 | CPU POWER MONITORING SUBSYSTEM |
7fe2f639 | 2814 | M: Thomas Renninger <[email protected]> |
103f1790 | 2815 | L: [email protected] |
7fe2f639 | 2816 | S: Maintained |
14430813 | 2817 | F: tools/power/cpupower/ |
7fe2f639 | 2818 | |
1da177e4 | 2819 | CRAMFS FILESYSTEM |
ce00f85c | 2820 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2821 | S: Orphan / Obsolete |
679655da JP |
2822 | F: Documentation/filesystems/cramfs.txt |
2823 | F: fs/cramfs/ | |
1da177e4 LT |
2824 | |
2825 | CRIS PORT | |
8b58be88 JP |
2826 | M: Mikael Starvik <[email protected]> |
2827 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2828 | L: [email protected] |
1da177e4 LT |
2829 | W: http://developer.axis.com |
2830 | S: Maintained | |
679655da | 2831 | F: arch/cris/ |
df621252 | 2832 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2833 | |
2834 | CRYPTO API | |
8b58be88 JP |
2835 | M: Herbert Xu <[email protected]> |
2836 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2837 | L: [email protected] |
54e5881d | 2838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2839 | S: Maintained |
679655da | 2840 | F: Documentation/crypto/ |
2ca87a17 | 2841 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
2842 | F: arch/*/crypto/ |
2843 | F: crypto/ | |
2844 | F: drivers/crypto/ | |
2845 | F: include/crypto/ | |
1da177e4 | 2846 | |
5b07bd57 | 2847 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2848 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2849 | L: [email protected] |
2850 | S: Maintained | |
51a2228a JP |
2851 | F: crypto/ansi_cprng.c |
2852 | F: crypto/rng.c | |
5b07bd57 | 2853 | |
9b4ffa48 | 2854 | CS5535 Audio ALSA driver |
8b58be88 | 2855 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2856 | S: Maintained |
679655da | 2857 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2858 | |
a910e4a9 | 2859 | CW1200 WLAN driver |
b75f0050 JP |
2860 | M: Solomon Peachy <[email protected]> |
2861 | S: Maintained | |
2862 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2863 | |
6d8425b1 | 2864 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2865 | M: Andy Walls <[email protected]> |
7b212edf | 2866 | L: [email protected] (subscribers-only) |
661263b5 | 2867 | L: [email protected] |
275ffde4 | 2868 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2869 | W: http://linuxtv.org |
30e10993 | 2870 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2871 | S: Maintained |
679655da | 2872 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2873 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2874 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2875 | |
3f101d91 HV |
2876 | CX2341X MPEG ENCODER HELPER MODULE |
2877 | M: Hans Verkuil <[email protected]> | |
2878 | L: [email protected] | |
2879 | T: git git://linuxtv.org/media_tree.git | |
2880 | W: http://linuxtv.org | |
2881 | S: Maintained | |
c368360b | 2882 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2883 | F: include/media/cx2341x* |
2884 | ||
20357578 | 2885 | CX88 VIDEO4LINUX DRIVER |
009a5410 | 2886 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2887 | L: [email protected] |
2888 | W: http://linuxtv.org | |
2889 | T: git git://linuxtv.org/media_tree.git | |
2890 | S: Odd fixes | |
2891 | F: Documentation/video4linux/cx88/ | |
2892 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2893 | |
91952bc0 AP |
2894 | CXD2820R MEDIA DRIVER |
2895 | M: Antti Palosaari <[email protected]> | |
2896 | L: [email protected] | |
2897 | W: http://linuxtv.org/ | |
2898 | W: http://palosaari.fi/linux/ | |
2899 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2900 | T: git git://linuxtv.org/anttip/media_tree.git | |
2901 | S: Maintained | |
2902 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2903 | |
e5ec3789 | 2904 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2905 | M: Santosh Raspatur <[email protected]> |
e5ec3789 SW |
2906 | L: [email protected] |
2907 | W: http://www.chelsio.com | |
2908 | S: Supported | |
f7917c00 | 2909 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 2910 | |
d8ae3c33 | 2911 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
2912 | M: Karen Xie <[email protected]> |
2913 | L: [email protected] | |
2914 | W: http://www.chelsio.com | |
2915 | S: Supported | |
2916 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 2917 | |
e5ec3789 | 2918 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 2919 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2920 | L: [email protected] |
e5ec3789 SW |
2921 | W: http://www.openfabrics.org |
2922 | S: Supported | |
679655da | 2923 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2924 | |
be4c9bad | 2925 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 2926 | M: Hariprasad S <[email protected]> |
be4c9bad RD |
2927 | L: [email protected] |
2928 | W: http://www.chelsio.com | |
2929 | S: Supported | |
f7917c00 | 2930 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 2931 | |
d8ae3c33 | 2932 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
2933 | M: Karen Xie <[email protected]> |
2934 | L: [email protected] | |
2935 | W: http://www.chelsio.com | |
2936 | S: Supported | |
2937 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 2938 | |
be4c9bad RD |
2939 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
2940 | M: Steve Wise <[email protected]> | |
2941 | L: [email protected] | |
2942 | W: http://www.openfabrics.org | |
2943 | S: Supported | |
2944 | F: drivers/infiniband/hw/cxgb4/ | |
2945 | ||
5c20a5c7 CL |
2946 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2947 | M: Casey Leedom <[email protected]> | |
2948 | L: [email protected] | |
2949 | W: http://www.chelsio.com | |
2950 | S: Supported | |
f7917c00 | 2951 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2952 | |
a9282d01 IM |
2953 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
2954 | M: Ian Munsie <[email protected]> | |
2955 | M: Michael Neuling <[email protected]> | |
2956 | L: [email protected] | |
2957 | S: Supported | |
2958 | F: drivers/misc/cxl/ | |
2959 | F: include/misc/cxl.h | |
2960 | F: include/uapi/misc/cxl.h | |
2961 | F: Documentation/powerpc/cxl.txt | |
2962 | F: Documentation/powerpc/cxl.txt | |
2963 | F: Documentation/ABI/testing/sysfs-class-cxl | |
2964 | ||
b52b97a3 GC |
2965 | STMMAC ETHERNET DRIVER |
2966 | M: Giuseppe Cavallaro <[email protected]> | |
2967 | L: [email protected] | |
2968 | W: http://www.stlinux.com | |
2969 | S: Supported | |
7ac6653a | 2970 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2971 | |
1da177e4 | 2972 | CYBERPRO FB DRIVER |
8b58be88 | 2973 | M: Russell King <[email protected]> |
efc03ecb | 2974 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2975 | W: http://www.arm.linux.org.uk/ |
2976 | S: Maintained | |
8a61f013 | 2977 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 2978 | |
1da177e4 | 2979 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2980 | W: http://www.cyclades.com/ |
d459883e | 2981 | S: Orphan |
c897401b | 2982 | F: drivers/tty/cyclades.c |
679655da | 2983 | F: include/linux/cyclades.h |
c117ab84 | 2984 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2985 | |
2986 | CYCLADES PC300 DRIVER | |
1da177e4 | 2987 | W: http://www.cyclades.com/ |
d459883e | 2988 | S: Orphan |
679655da | 2989 | F: drivers/net/wan/pc300* |
1da177e4 | 2990 | |
402f6ae4 AP |
2991 | CYPRESS_FIRMWARE MEDIA DRIVER |
2992 | M: Antti Palosaari <[email protected]> | |
2993 | L: [email protected] | |
2994 | W: http://linuxtv.org/ | |
2995 | W: http://palosaari.fi/linux/ | |
2996 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2997 | T: git git://linuxtv.org/anttip/media_tree.git | |
2998 | S: Maintained | |
2999 | F: drivers/media/common/cypress_firmware* | |
3000 | ||
e3ae3525 | 3001 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3002 | M: Ferruh Yigit <[email protected]> |
6305902c | 3003 | L: [email protected] |
be9a6f40 | 3004 | S: Supported |
6305902c JP |
3005 | F: drivers/input/touchscreen/cyttsp* |
3006 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3007 | |
aaaf5fbf JK |
3008 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3009 | M: Joshua Kinard <[email protected]> | |
3010 | S: Maintained | |
3011 | F: drivers/rtc/rtc-ds1685.c | |
3012 | F: include/linux/rtc/ds1685.h | |
3013 | ||
1da177e4 | 3014 | DAMA SLAVE for AX.25 |
8b58be88 | 3015 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
3016 | W: http://yaina.de/jreuter/ |
3017 | W: http://www.qsl.net/dl1bke/ | |
3018 | L: [email protected] | |
3019 | S: Maintained | |
679655da JP |
3020 | F: net/ax25/af_ax25.c |
3021 | F: net/ax25/ax25_dev.c | |
3022 | F: net/ax25/ax25_ds_* | |
3023 | F: net/ax25/ax25_in.c | |
3024 | F: net/ax25/ax25_out.c | |
3025 | F: net/ax25/ax25_timer.c | |
3026 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3027 | |
e2d1d6c0 | 3028 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3029 | L: [email protected] |
5ff77428 | 3030 | S: Orphan |
679655da | 3031 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3032 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3033 | |
3034 | DC390/AM53C974 SCSI driver | |
71bd849d HR |
3035 | M: Hannes Reinecke <[email protected]> |
3036 | L: [email protected] | |
e2d1d6c0 | 3037 | S: Maintained |
71bd849d | 3038 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3039 | |
1da177e4 | 3040 | DC395x SCSI driver |
61eee9a7 | 3041 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
3042 | M: Ali Akcaagac <[email protected]> |
3043 | M: Jamie Lenehan <[email protected]> | |
f5df5881 | 3044 | L: [email protected] |
cf015e9f JP |
3045 | W: http://twibble.org/dist/dc395x/ |
3046 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3047 | S: Maintained |
679655da JP |
3048 | F: Documentation/scsi/dc395x.txt |
3049 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3050 | |
eb8edb08 | 3051 | DCCP PROTOCOL |
a89d030e | 3052 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 3053 | L: [email protected] |
c996d8b9 | 3054 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3055 | S: Maintained |
679655da | 3056 | F: include/linux/dccp.h |
c117ab84 | 3057 | F: include/uapi/linux/dccp.h |
679655da JP |
3058 | F: include/linux/tfrc.h |
3059 | F: net/dccp/ | |
eb8edb08 | 3060 | |
1da177e4 | 3061 | DECnet NETWORK LAYER |
1da177e4 LT |
3062 | W: http://linux-decnet.sourceforge.net |
3063 | L: [email protected] | |
f546444d | 3064 | S: Orphan |
679655da JP |
3065 | F: Documentation/networking/decnet.txt |
3066 | F: net/decnet/ | |
1da177e4 | 3067 | |
ebff05b9 MR |
3068 | DECSTATION PLATFORM SUPPORT |
3069 | M: "Maciej W. Rozycki" <[email protected]> | |
3070 | L: [email protected] | |
3071 | W: http://www.linux-mips.org/wiki/DECstation | |
3072 | S: Maintained | |
3073 | F: arch/mips/dec/ | |
3074 | F: arch/mips/include/asm/dec/ | |
3075 | F: arch/mips/include/asm/mach-dec/ | |
3076 | ||
1da177e4 | 3077 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3078 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 3079 | S: Maintained |
33f810b2 | 3080 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3081 | |
ad8f07cc | 3082 | DELL LAPTOP DRIVER |
8b58be88 | 3083 | M: Matthew Garrett <[email protected]> |
cdbff611 | 3084 | M: Pali RohĂ¡r <[email protected]> |
d0944853 | 3085 | L: [email protected] |
ad8f07cc | 3086 | S: Maintained |
679655da | 3087 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3088 | |
cdbff611 PR |
3089 | DELL LAPTOP FREEFALL DRIVER |
3090 | M: Pali RohĂ¡r <[email protected]> | |
3091 | S: Maintained | |
3092 | F: drivers/platform/x86/dell-smo8800.c | |
3093 | ||
1da177e4 | 3094 | DELL LAPTOP SMM DRIVER |
a1406d87 | 3095 | M: Guenter Roeck <[email protected]> |
ef3522f7 | 3096 | S: Maintained |
679655da | 3097 | F: drivers/char/i8k.c |
c117ab84 | 3098 | F: include/uapi/linux/i8k.h |
1da177e4 | 3099 | |
90563ec4 | 3100 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3101 | M: Doug Warzecha <[email protected]> |
90563ec4 | 3102 | S: Maintained |
679655da JP |
3103 | F: Documentation/dcdbas.txt |
3104 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3105 | |
0b3f6109 | 3106 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3107 | M: Matthew Garrett <[email protected]> |
cdbff611 | 3108 | M: Pali RohĂ¡r <[email protected]> |
0b3f6109 | 3109 | S: Maintained |
36b3a96f | 3110 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3111 | |
5efc75e3 | 3112 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3113 | M: John Youn <[email protected]> |
5efc75e3 | 3114 | L: [email protected] |
18f340f9 | 3115 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3116 | S: Maintained |
197ba5f4 | 3117 | F: drivers/usb/dwc2/ |
5efc75e3 | 3118 | |
94ab23dd FB |
3119 | DESIGNWARE USB3 DRD IP DRIVER |
3120 | M: Felipe Balbi <[email protected]> | |
3121 | L: [email protected] | |
3122 | L: [email protected] | |
3123 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
3124 | S: Maintained | |
3125 | F: drivers/usb/dwc3/ | |
3126 | ||
833c9545 JB |
3127 | DEVICE COREDUMP (DEV_COREDUMP) |
3128 | M: Johannes Berg <[email protected]> | |
3129 | L: [email protected] | |
3130 | S: Maintained | |
3131 | F: drivers/base/devcoredump.c | |
3132 | F: include/linux/devcoredump.h | |
3133 | ||
89d07767 KP |
3134 | DEVICE FREQUENCY (DEVFREQ) |
3135 | M: MyungJoo Ham <[email protected]> | |
3136 | M: Kyungmin Park <[email protected]> | |
88476d34 | 3137 | L: [email protected] |
89d07767 KP |
3138 | S: Maintained |
3139 | F: drivers/devfreq/ | |
3140 | ||
1da177e4 | 3141 | DEVICE NUMBER REGISTRY |
8b58be88 | 3142 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 3143 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3144 | S: Maintained |
3145 | ||
e2d1d6c0 | 3146 | DEVICE-MAPPER (LVM) |
854ecaad | 3147 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 3148 | M: Mike Snitzer <[email protected]> |
854ecaad | 3149 | M: [email protected] |
e2d1d6c0 RD |
3150 | L: [email protected] |
3151 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3152 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3154 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3155 | S: Maintained |
679655da JP |
3156 | F: Documentation/device-mapper/ |
3157 | F: drivers/md/dm* | |
854ecaad | 3158 | F: drivers/md/persistent-data/ |
679655da JP |
3159 | F: include/linux/device-mapper.h |
3160 | F: include/linux/dm-*.h | |
8504eed3 | 3161 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3162 | |
c0d995aa OST |
3163 | DIALOG SEMICONDUCTOR DRIVERS |
3164 | M: Support Opensource <[email protected]> | |
3165 | W: http://www.dialog-semiconductor.com/products | |
3166 | S: Supported | |
3167 | F: Documentation/hwmon/da90?? | |
3168 | F: drivers/gpio/gpio-da90??.c | |
3169 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3170 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3171 | F: drivers/input/misc/da90??_onkey.c |
3172 | F: drivers/input/touchscreen/da9052_tsi.c | |
3173 | F: drivers/leds/leds-da90??.c | |
3174 | F: drivers/mfd/da903x.c | |
3175 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3176 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3177 | F: drivers/power/da9052-battery.c |
7be72c2c | 3178 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3179 | F: drivers/regulator/da903x.c |
3180 | F: drivers/regulator/da9???-regulator.[ch] | |
3181 | F: drivers/rtc/rtc-da90??.c | |
3182 | F: drivers/video/backlight/da90??_bl.c | |
3183 | F: drivers/watchdog/da90??_wdt.c | |
3184 | F: include/linux/mfd/da903x.h | |
3185 | F: include/linux/mfd/da9052/ | |
3186 | F: include/linux/mfd/da9055/ | |
3187 | F: include/linux/mfd/da9063/ | |
7be72c2c | 3188 | F: include/linux/mfd/da9150/ |
c0d995aa OST |
3189 | F: include/sound/da[79]*.h |
3190 | F: sound/soc/codecs/da[79]*.[ch] | |
3191 | ||
599aa697 LL |
3192 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3193 | M: Lidza Louina <[email protected]> | |
542f3d5a | 3194 | M: Mark Hounschell <[email protected]> |
599aa697 LL |
3195 | L: [email protected] |
3196 | S: Maintained | |
3197 | F: drivers/staging/dgnc/ | |
3198 | ||
3199 | DIGI EPCA PCI PRODUCTS | |
3200 | M: Lidza Louina <[email protected]> | |
abeb935f | 3201 | M: Mark Hounschell <[email protected]> |
6d825f79 | 3202 | M: Daeseok Youn <[email protected]> |
599aa697 LL |
3203 | L: [email protected] |
3204 | S: Maintained | |
3205 | F: drivers/staging/dgap/ | |
3206 | ||
335d7c58 | 3207 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3208 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
3209 | L: [email protected] |
3210 | S: Maintained | |
3211 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3212 | ||
d475c634 MW |
3213 | DIRECT ACCESS (DAX) |
3214 | M: Matthew Wilcox <[email protected]> | |
3215 | L: [email protected] | |
3216 | S: Supported | |
3217 | F: fs/dax.c | |
3218 | ||
e7839f25 | 3219 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3220 | M: Eric Paris <[email protected]> |
3c5119c0 | 3221 | S: Maintained |
679655da JP |
3222 | F: Documentation/filesystems/dnotify.txt |
3223 | F: fs/notify/dnotify/ | |
3224 | F: include/linux/dnotify.h | |
1da177e4 LT |
3225 | |
3226 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3227 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
3228 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3229 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3230 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3231 | S: Maintained | |
3232 | ||
4480f15b | 3233 | DISKQUOTA |
8b58be88 | 3234 | M: Jan Kara <[email protected]> |
1da177e4 | 3235 | S: Maintained |
679655da JP |
3236 | F: Documentation/filesystems/quota.txt |
3237 | F: fs/quota/ | |
3238 | F: include/linux/quota*.h | |
c117ab84 | 3239 | F: include/uapi/linux/quota*.h |
1da177e4 | 3240 | |
702686ad BT |
3241 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3242 | M: Bernie Thompson <[email protected]> | |
3243 | L: [email protected] | |
3244 | S: Maintained | |
3245 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3246 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3247 | F: include/video/udlfb.h |
3248 | F: Documentation/fb/udlfb.txt | |
3249 | ||
e7839f25 | 3250 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3251 | M: Christine Caulfield <[email protected]> |
3252 | M: David Teigland <[email protected]> | |
a4644184 | 3253 | L: [email protected] |
5be7b50f | 3254 | W: http://sources.redhat.com/cluster/ |
54e5881d | 3255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 3256 | S: Supported |
679655da | 3257 | F: fs/dlm/ |
5be7b50f | 3258 | |
53b6b3e0 SS |
3259 | DMA BUFFER SHARING FRAMEWORK |
3260 | M: Sumit Semwal <[email protected]> | |
3261 | S: Maintained | |
3262 | L: [email protected] | |
3263 | L: [email protected] | |
8ada6d2d | 3264 | L: [email protected] (moderated for non-subscribers) |
35fac7e3 | 3265 | F: drivers/dma-buf/ |
e46d12c6 JP |
3266 | F: include/linux/dma-buf* |
3267 | F: include/linux/reservation.h | |
3268 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3269 | F: Documentation/dma-buf-sharing.txt |
3270 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3271 | ||
b3e5f263 | 3272 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3273 | M: Vinod Koul <[email protected]> |
17b59560 VK |
3274 | L: [email protected] |
3275 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3276 | S: Maintained |
679655da | 3277 | F: drivers/dma/ |
0ce3c066 | 3278 | F: include/linux/dmaengine.h |
979a281e VK |
3279 | F: Documentation/dmaengine/ |
3280 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3281 | |
b825037d | 3282 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3283 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
3284 | L: [email protected] |
3285 | S: Maintained | |
679655da JP |
3286 | F: Documentation/hwmon/dme1737 |
3287 | F: drivers/hwmon/dme1737.c | |
b825037d | 3288 | |
1f31e1b1 JD |
3289 | DMI/SMBIOS SUPPORT |
3290 | M: Jean Delvare <[email protected]> | |
3291 | S: Maintained | |
3292 | F: drivers/firmware/dmi-id.c | |
3293 | F: drivers/firmware/dmi_scan.c | |
3294 | F: include/linux/dmi.h | |
3295 | ||
7d2c86b5 | 3296 | DOCUMENTATION |
ad3118b9 | 3297 | M: Jonathan Corbet <[email protected]> |
795fb7e7 JD |
3298 | L: [email protected] |
3299 | S: Maintained | |
679655da | 3300 | F: Documentation/ |
97be078b RD |
3301 | X: Documentation/ABI/ |
3302 | X: Documentation/devicetree/ | |
933a46b8 JC |
3303 | X: Documentation/acpi |
3304 | X: Documentation/power | |
3305 | X: Documentation/spi | |
e71e2c6f | 3306 | T: git git://git.lwn.net/linux-2.6.git docs-next |
abbaeff3 | 3307 | |
1da177e4 | 3308 | DOUBLETALK DRIVER |
8b58be88 | 3309 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
3310 | L: [email protected] |
3311 | S: Maintained | |
679655da JP |
3312 | F: drivers/char/dtlk.c |
3313 | F: include/linux/dtlk.h | |
1da177e4 | 3314 | |
e2d1d6c0 | 3315 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3316 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
3317 | L: [email protected] |
3318 | W: http://www.adaptec.com/ | |
3319 | S: Maintained | |
679655da JP |
3320 | F: drivers/scsi/dpt* |
3321 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3322 | |
b411b363 | 3323 | DRBD DRIVER |
28b8e8d4 JP |
3324 | P: Philipp Reisner |
3325 | P: Lars Ellenberg | |
3326 | M: [email protected] | |
3327 | L: [email protected] | |
3328 | W: http://www.drbd.org | |
3329 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
3330 | T: git git://git.drbd.org/drbd-8.3.git | |
3331 | S: Supported | |
3332 | F: drivers/block/drbd/ | |
3333 | F: lib/lru_cache.c | |
3334 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3335 | |
87544653 | 3336 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 3337 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 3338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3339 | S: Supported |
679655da | 3340 | F: Documentation/kobject.txt |
7cfc51b9 | 3341 | F: drivers/base/ |
679655da | 3342 | F: fs/sysfs/ |
87544653 | 3343 | F: fs/debugfs/ |
679655da | 3344 | F: include/linux/kobj* |
87544653 | 3345 | F: include/linux/debugfs.h |
679655da | 3346 | F: lib/kobj* |
1da177e4 LT |
3347 | |
3348 | DRM DRIVERS | |
8b58be88 | 3349 | M: David Airlie <[email protected]> |
4c6a3999 | 3350 | L: [email protected] |
b0447888 | 3351 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3352 | S: Maintained |
679655da | 3353 | F: drivers/gpu/drm/ |
433e3b34 | 3354 | F: drivers/gpu/vga/ |
850e9411 | 3355 | F: include/drm/ |
c117ab84 | 3356 | F: include/uapi/drm/ |
1da177e4 | 3357 | |
566f5939 AD |
3358 | RADEON DRM DRIVERS |
3359 | M: Alex Deucher <[email protected]> | |
3360 | M: Christian König <[email protected]> | |
3361 | L: [email protected] | |
3362 | T: git git://people.freedesktop.org/~agd5f/linux | |
3363 | S: Supported | |
3364 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3365 | F: include/uapi/drm/radeon* |
3366 | ||
03e255b9 TR |
3367 | DRM PANEL DRIVERS |
3368 | M: Thierry Reding <[email protected]> | |
3369 | L: [email protected] | |
3370 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3371 | S: Maintained | |
3372 | F: drivers/gpu/drm/drm_panel.c | |
3373 | F: drivers/gpu/drm/panel/ | |
3374 | F: include/drm/drm_panel.h | |
3375 | F: Documentation/devicetree/bindings/panel/ | |
3376 | ||
8daf7473 | 3377 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 3378 | M: Daniel Vetter <[email protected]> |
47f95647 | 3379 | M: Jani Nikula <[email protected]> |
362132d2 | 3380 | L: [email protected] |
8daf7473 | 3381 | L: [email protected] |
47f95647 | 3382 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3383 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3384 | S: Supported |
14430813 | 3385 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3386 | F: include/drm/i915* |
c117ab84 | 3387 | F: include/uapi/drm/i915* |
8daf7473 | 3388 | |
398a6d4a KP |
3389 | DRM DRIVERS FOR EXYNOS |
3390 | M: Inki Dae <[email protected]> | |
f1501303 ID |
3391 | M: Joonyoung Shim <[email protected]> |
3392 | M: Seung-Woo Kim <[email protected]> | |
3393 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 3394 | L: [email protected] |
25a58030 | 3395 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3396 | S: Supported |
14430813 | 3397 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3398 | F: include/drm/exynos* |
c117ab84 | 3399 | F: include/uapi/drm/exynos* |
398a6d4a | 3400 | |
0a3d775f PZ |
3401 | DRM DRIVERS FOR FREESCALE IMX |
3402 | M: Philipp Zabel <[email protected]> | |
3403 | L: [email protected] | |
3404 | S: Maintained | |
3405 | F: drivers/gpu/drm/imx/ | |
3406 | F: Documentation/devicetree/bindings/drm/imx/ | |
3407 | ||
bd3b49f2 | 3408 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3409 | M: Thierry Reding <[email protected]> |
3410 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
3411 | L: [email protected] |
3412 | L: [email protected] | |
a5ad7a63 | 3413 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3414 | S: Supported |
dee8268f | 3415 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3416 | F: drivers/gpu/host1x/ |
e1e90644 | 3417 | F: include/linux/host1x.h |
a5ad7a63 | 3418 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
3419 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3420 | ||
a284e9d1 LP |
3421 | DRM DRIVERS FOR RENESAS |
3422 | M: Laurent Pinchart <[email protected]> | |
3423 | L: [email protected] | |
3424 | L: [email protected] | |
3425 | T: git git://people.freedesktop.org/~airlied/linux | |
3426 | S: Supported | |
3427 | F: drivers/gpu/drm/rcar-du/ | |
3428 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 LP |
3429 | F: include/linux/platform_data/shmob_drm.h |
3430 | ||
625e0346 HS |
3431 | DRM DRIVERS FOR ROCKCHIP |
3432 | M: Mark Yao <[email protected]> | |
3433 | L: [email protected] | |
3434 | S: Maintained | |
3435 | F: drivers/gpu/drm/rockchip/ | |
3436 | F: Documentation/devicetree/bindings/video/rockchip* | |
3437 | ||
598df1ac AK |
3438 | DSBR100 USB FM RADIO DRIVER |
3439 | M: Alexey Klimov <[email protected]> | |
3440 | L: [email protected] | |
3441 | T: git git://linuxtv.org/media_tree.git | |
3442 | S: Maintained | |
3443 | F: drivers/media/radio/dsbr100.c | |
3444 | ||
1da177e4 | 3445 | DSCC4 DRIVER |
8b58be88 | 3446 | M: Francois Romieu <[email protected]> |
01f20734 | 3447 | L: [email protected] |
1da177e4 | 3448 | S: Maintained |
679655da | 3449 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3450 | |
91952bc0 AP |
3451 | DVB_USB_AF9015 MEDIA DRIVER |
3452 | M: Antti Palosaari <[email protected]> | |
3453 | L: [email protected] | |
3454 | W: http://linuxtv.org/ | |
3455 | W: http://palosaari.fi/linux/ | |
3456 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3457 | T: git git://linuxtv.org/anttip/media_tree.git | |
3458 | S: Maintained | |
3459 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3460 | ||
3461 | DVB_USB_AF9035 MEDIA DRIVER | |
3462 | M: Antti Palosaari <[email protected]> | |
3463 | L: [email protected] | |
3464 | W: http://linuxtv.org/ | |
3465 | W: http://palosaari.fi/linux/ | |
3466 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3467 | T: git git://linuxtv.org/anttip/media_tree.git | |
3468 | S: Maintained | |
3469 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3470 | ||
3471 | DVB_USB_ANYSEE MEDIA DRIVER | |
3472 | M: Antti Palosaari <[email protected]> | |
3473 | L: [email protected] | |
3474 | W: http://linuxtv.org/ | |
3475 | W: http://palosaari.fi/linux/ | |
3476 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3477 | T: git git://linuxtv.org/anttip/media_tree.git | |
3478 | S: Maintained | |
3479 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3480 | ||
3481 | DVB_USB_AU6610 MEDIA DRIVER | |
3482 | M: Antti Palosaari <[email protected]> | |
3483 | L: [email protected] | |
3484 | W: http://linuxtv.org/ | |
3485 | W: http://palosaari.fi/linux/ | |
3486 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3487 | T: git git://linuxtv.org/anttip/media_tree.git | |
3488 | S: Maintained | |
3489 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3490 | ||
3491 | DVB_USB_CE6230 MEDIA DRIVER | |
3492 | M: Antti Palosaari <[email protected]> | |
3493 | L: [email protected] | |
3494 | W: http://linuxtv.org/ | |
3495 | W: http://palosaari.fi/linux/ | |
3496 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3497 | T: git git://linuxtv.org/anttip/media_tree.git | |
3498 | S: Maintained | |
3499 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3500 | ||
d099dea2 MK |
3501 | DVB_USB_CXUSB MEDIA DRIVER |
3502 | M: Michael Krufky <[email protected]> | |
3503 | L: [email protected] | |
3504 | W: http://linuxtv.org/ | |
3505 | W: http://github.com/mkrufky | |
3506 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3507 | T: git git://linuxtv.org/media_tree.git | |
3508 | S: Maintained | |
9819da66 | 3509 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3510 | |
91952bc0 | 3511 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3512 | M: Antti Palosaari <[email protected]> |
3513 | L: [email protected] | |
3514 | W: http://linuxtv.org/ | |
3515 | W: http://palosaari.fi/linux/ | |
3516 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3517 | T: git git://linuxtv.org/anttip/media_tree.git | |
3518 | S: Maintained | |
91952bc0 | 3519 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3520 | |
5560983b | 3521 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3522 | M: Antti Palosaari <[email protected]> |
3523 | L: [email protected] | |
3524 | W: http://linuxtv.org/ | |
91952bc0 AP |
3525 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3526 | T: git git://linuxtv.org/anttip/media_tree.git | |
3527 | S: Maintained | |
5560983b | 3528 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3529 | |
8856f5f2 MK |
3530 | DVB_USB_MXL111SF MEDIA DRIVER |
3531 | M: Michael Krufky <[email protected]> | |
3532 | L: [email protected] | |
3533 | W: http://linuxtv.org/ | |
3534 | W: http://github.com/mkrufky | |
3535 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3536 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3537 | S: Maintained | |
3538 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3539 | ||
91952bc0 AP |
3540 | DVB_USB_RTL28XXU MEDIA DRIVER |
3541 | M: Antti Palosaari <[email protected]> | |
3542 | L: [email protected] | |
3543 | W: http://linuxtv.org/ | |
3544 | W: http://palosaari.fi/linux/ | |
3545 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3546 | T: git git://linuxtv.org/anttip/media_tree.git | |
3547 | S: Maintained | |
3548 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3549 | ||
3550 | DVB_USB_V2 MEDIA DRIVER | |
3551 | M: Antti Palosaari <[email protected]> | |
3552 | L: [email protected] | |
3553 | W: http://linuxtv.org/ | |
3554 | W: http://palosaari.fi/linux/ | |
3555 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3556 | T: git git://linuxtv.org/anttip/media_tree.git | |
3557 | S: Maintained | |
3558 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3559 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3560 | ||
ac0ac38f | 3561 | DYNAMIC DEBUG |
5c4a97d1 | 3562 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
3563 | S: Maintained |
3564 | F: lib/dynamic_debug.c | |
3565 | F: include/linux/dynamic_debug.h | |
3566 | ||
789c7048 | 3567 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3568 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 3569 | S: Maintained |
df621252 | 3570 | F: drivers/tty/serial/dz.* |
789c7048 | 3571 | |
f17effbe MF |
3572 | E3X0 POWER BUTTON DRIVER |
3573 | M: Moritz Fischer <[email protected]> | |
3574 | L: [email protected] | |
3575 | W: http://www.ettus.com | |
3576 | S: Supported | |
3577 | F: drivers/input/misc/e3x0-button.c | |
3578 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
3579 | ||
91952bc0 AP |
3580 | E4000 MEDIA DRIVER |
3581 | M: Antti Palosaari <[email protected]> | |
3582 | L: [email protected] | |
3583 | W: http://linuxtv.org/ | |
3584 | W: http://palosaari.fi/linux/ | |
3585 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3586 | T: git git://linuxtv.org/anttip/media_tree.git | |
3587 | S: Maintained | |
3588 | F: drivers/media/tuners/e4000* | |
3589 | ||
1da177e4 | 3590 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3591 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
3592 | L: [email protected] |
3593 | S: Maintained | |
679655da | 3594 | F: drivers/scsi/eata.c |
1da177e4 | 3595 | |
91952bc0 AP |
3596 | EC100 MEDIA DRIVER |
3597 | M: Antti Palosaari <[email protected]> | |
3598 | L: [email protected] | |
3599 | W: http://linuxtv.org/ | |
3600 | W: http://palosaari.fi/linux/ | |
3601 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3602 | T: git git://linuxtv.org/anttip/media_tree.git | |
3603 | S: Maintained | |
3604 | F: drivers/media/dvb-frontends/ec100* | |
3605 | ||
237fead6 | 3606 | ECRYPT FILE SYSTEM |
0de9adf2 | 3607 | M: Tyler Hicks <[email protected]> |
a058bfbb | 3608 | L: [email protected] |
24a923e4 | 3609 | W: http://ecryptfs.org |
6dc7516e | 3610 | W: https://launchpad.net/ecryptfs |
237fead6 | 3611 | S: Supported |
679655da JP |
3612 | F: Documentation/filesystems/ecryptfs.txt |
3613 | F: fs/ecryptfs/ | |
237fead6 | 3614 | |
da9bb1d2 | 3615 | EDAC-CORE |
8b58be88 | 3616 | M: Doug Thompson <[email protected]> |
aa15aa0e | 3617 | M: Borislav Petkov <[email protected]> |
009a5410 | 3618 | M: Mauro Carvalho Chehab <[email protected]> |
91445c72 | 3619 | L: [email protected] |
0e438e3f | 3620 | W: bluesmoke.sourceforge.net |
7a859516 BP |
3621 | T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next |
3622 | T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next | |
8c2a6a40 | 3623 | S: Supported |
679655da | 3624 | F: Documentation/edac.txt |
91445c72 | 3625 | F: drivers/edac/ |
679655da | 3626 | F: include/linux/edac.h |
0e438e3f | 3627 | |
c476c23b | 3628 | EDAC-AMD64 |
8b58be88 | 3629 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3630 | M: Borislav Petkov <[email protected]> |
91445c72 | 3631 | L: [email protected] |
c476c23b | 3632 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3633 | S: Maintained |
c476c23b BP |
3634 | F: drivers/edac/amd64_edac* |
3635 | ||
836dae5d RR |
3636 | EDAC-CALXEDA |
3637 | M: Doug Thompson <[email protected]> | |
3638 | M: Robert Richter <[email protected]> | |
3639 | L: [email protected] | |
3640 | W: bluesmoke.sourceforge.net | |
3641 | S: Maintained | |
3642 | F: drivers/edac/highbank* | |
3643 | ||
f65aad41 RB |
3644 | EDAC-CAVIUM |
3645 | M: Ralf Baechle <[email protected]> | |
3646 | M: David Daney <[email protected]> | |
3647 | L: [email protected] | |
3648 | L: [email protected] | |
3649 | W: bluesmoke.sourceforge.net | |
3650 | S: Supported | |
3651 | F: drivers/edac/octeon_edac* | |
3652 | ||
0e438e3f | 3653 | EDAC-E752X |
8b58be88 JP |
3654 | M: Mark Gross <[email protected]> |
3655 | M: Doug Thompson <[email protected]> | |
91445c72 | 3656 | L: [email protected] |
0e438e3f DP |
3657 | W: bluesmoke.sourceforge.net |
3658 | S: Maintained | |
679655da | 3659 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3660 | |
3661 | EDAC-E7XXX | |
8b58be88 | 3662 | M: Doug Thompson <[email protected]> |
91445c72 | 3663 | L: [email protected] |
0e438e3f DP |
3664 | W: bluesmoke.sourceforge.net |
3665 | S: Maintained | |
679655da | 3666 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3667 | |
77c5f5d2 | 3668 | EDAC-GHES |
009a5410 | 3669 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3670 | L: [email protected] |
3671 | W: bluesmoke.sourceforge.net | |
3672 | S: Maintained | |
2caa67a6 | 3673 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3674 | |
6bc78404 | 3675 | EDAC-I82443BXGX |
8b58be88 | 3676 | M: Tim Small <[email protected]> |
91445c72 | 3677 | L: [email protected] |
6bc78404 DT |
3678 | W: bluesmoke.sourceforge.net |
3679 | S: Maintained | |
679655da | 3680 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3681 | |
3682 | EDAC-I3000 | |
8b58be88 | 3683 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3684 | L: [email protected] |
6bc78404 DT |
3685 | W: bluesmoke.sourceforge.net |
3686 | S: Maintained | |
679655da | 3687 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3688 | |
3689 | EDAC-I5000 | |
8b58be88 | 3690 | M: Doug Thompson <[email protected]> |
91445c72 | 3691 | L: [email protected] |
ba9a5918 DT |
3692 | W: bluesmoke.sourceforge.net |
3693 | S: Maintained | |
679655da | 3694 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3695 | |
44c12cb2 | 3696 | EDAC-I5400 |
009a5410 | 3697 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3698 | L: [email protected] |
44c12cb2 MCC |
3699 | W: bluesmoke.sourceforge.net |
3700 | S: Maintained | |
679655da | 3701 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3702 | |
3c9c92b6 | 3703 | EDAC-I7300 |
009a5410 | 3704 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3705 | L: [email protected] |
3706 | W: bluesmoke.sourceforge.net | |
3707 | S: Maintained | |
3708 | F: drivers/edac/i7300_edac.c | |
3709 | ||
67c89316 | 3710 | EDAC-I7CORE |
009a5410 | 3711 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3712 | L: [email protected] |
3713 | W: bluesmoke.sourceforge.net | |
3714 | S: Maintained | |
70aff0ce | 3715 | F: drivers/edac/i7core_edac.c |
67c89316 | 3716 | |
ba9a5918 | 3717 | EDAC-I82975X |
8b58be88 | 3718 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3719 | M: "Arvind R." <[email protected]> |
91445c72 | 3720 | L: [email protected] |
ba9a5918 DT |
3721 | W: bluesmoke.sourceforge.net |
3722 | S: Maintained | |
679655da | 3723 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3724 | |
791b4706 JB |
3725 | EDAC-IE31200 |
3726 | M: Jason Baron <[email protected]> | |
3727 | L: [email protected] | |
3728 | W: bluesmoke.sourceforge.net | |
3729 | S: Maintained | |
3730 | F: drivers/edac/ie31200_edac.c | |
3731 | ||
ccdfb979 JT |
3732 | EDAC-MPC85XX |
3733 | M: Johannes Thumshirn <[email protected]> | |
3734 | L: [email protected] | |
3735 | W: bluesmoke.sourceforge.net | |
3736 | S: Maintained | |
3737 | F: drivers/edac/mpc85xx_edac.[ch] | |
3738 | ||
ba9a5918 | 3739 | EDAC-PASEMI |
8b58be88 | 3740 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3741 | L: [email protected] |
6bc78404 DT |
3742 | W: bluesmoke.sourceforge.net |
3743 | S: Maintained | |
679655da | 3744 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3745 | |
0e438e3f | 3746 | EDAC-R82600 |
8b58be88 | 3747 | M: Tim Small <[email protected]> |
91445c72 | 3748 | L: [email protected] |
0e438e3f DP |
3749 | W: bluesmoke.sourceforge.net |
3750 | S: Maintained | |
679655da | 3751 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3752 | |
4d096ca7 | 3753 | EDAC-SBRIDGE |
009a5410 | 3754 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3755 | L: [email protected] |
3756 | W: bluesmoke.sourceforge.net | |
3757 | S: Maintained | |
3758 | F: drivers/edac/sb_edac.c | |
3759 | ||
af39917d CL |
3760 | EDIROL UA-101/UA-1000 DRIVER |
3761 | M: Clemens Ladisch <[email protected]> | |
3762 | L: [email protected] (moderated for non-subscribers) | |
3763 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3764 | S: Maintained | |
3765 | F: sound/usb/misc/ua101.c | |
3766 | ||
1f7df953 MF |
3767 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3768 | M: Matt Fleming <[email protected]> | |
3769 | L: [email protected] | |
78bef24e | 3770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 3771 | S: Maintained |
fb2efb5c | 3772 | F: Documentation/efi-stub.txt |
1f7df953 MF |
3773 | F: arch/ia64/kernel/efi.c |
3774 | F: arch/x86/boot/compressed/eboot.[ch] | |
3775 | F: arch/x86/include/asm/efi.h | |
3776 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3777 | F: drivers/firmware/efi/* |
1f7df953 MF |
3778 | F: include/linux/efi*.h |
3779 | ||
d68772b7 MF |
3780 | EFI VARIABLE FILESYSTEM |
3781 | M: Matthew Garrett <[email protected]> | |
3782 | M: Jeremy Kerr <[email protected]> | |
3783 | M: Matt Fleming <[email protected]> | |
3784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3785 | L: [email protected] | |
3786 | S: Maintained | |
3787 | F: fs/efivarfs/ | |
3788 | ||
85a00d9b PJ |
3789 | EFIFB FRAMEBUFFER DRIVER |
3790 | L: [email protected] | |
3791 | M: Peter Jones <[email protected]> | |
3792 | S: Maintained | |
8a61f013 | 3793 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 3794 | |
0bee8d28 JT |
3795 | EFS FILESYSTEM |
3796 | W: http://aeschi.ch.eu.org/efs/ | |
3797 | S: Orphan | |
679655da | 3798 | F: fs/efs/ |
0bee8d28 | 3799 | |
4480f15b | 3800 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3801 | M: Hoang-Nam Nguyen <[email protected]> |
3802 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3803 | L: [email protected] |
fab97220 | 3804 | S: Supported |
679655da | 3805 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3806 | |
aa8a9e25 | 3807 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3808 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3809 | L: [email protected] |
3810 | S: Maintained | |
9aa32835 | 3811 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3812 | |
f0319efe | 3813 | EM28XX VIDEO4LINUX DRIVER |
009a5410 | 3814 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3815 | L: [email protected] |
3816 | W: http://linuxtv.org | |
3817 | T: git git://linuxtv.org/media_tree.git | |
3818 | S: Maintained | |
3819 | F: drivers/media/usb/em28xx/ | |
3820 | ||
3e3a7d66 | 3821 | EMBEDDED LINUX |
8b58be88 JP |
3822 | M: Paul Gortmaker <[email protected]> |
3823 | M: Matt Mackall <[email protected]> | |
3824 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3825 | L: [email protected] |
3826 | S: Maintained | |
3827 | ||
3a1c1d44 | 3828 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3829 | M: James Smart <[email protected]> |
ce00f85c JC |
3830 | L: [email protected] |
3831 | W: http://sourceforge.net/projects/lpfcxxxx | |
3832 | S: Supported | |
679655da | 3833 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3834 | |
5f5bac82 | 3835 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3836 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3837 | S: Maintained |
3838 | F: drivers/misc/cb710/ | |
3839 | F: drivers/mmc/host/cb710-mmc.* | |
3840 | F: include/linux/cb710.h | |
3841 | ||
931e39a1 ML |
3842 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3843 | M: Maxim Levitsky <[email protected]> | |
3844 | S: Maintained | |
2a837449 | 3845 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3846 | |
ec207dcc GS |
3847 | ENHANCED ERROR HANDLING (EEH) |
3848 | M: Gavin Shan <[email protected]> | |
3849 | L: [email protected] | |
3850 | S: Supported | |
3851 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3852 | F: arch/powerpc/kernel/eeh*.c | |
3853 | ||
d5ca9006 | 3854 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3855 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3856 | S: Maintained |
084bad91 | 3857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 3858 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 3859 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 3860 | |
38df6492 ME |
3861 | ET131X NETWORK DRIVER |
3862 | M: Mark Einon <[email protected]> | |
3863 | S: Odd Fixes | |
3864 | F: drivers/net/ethernet/agere/ | |
3865 | ||
1da177e4 | 3866 | ETHERNET BRIDGE |
adbbf69d | 3867 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3868 | L: [email protected] |
4c325313 | 3869 | L: [email protected] |
c996d8b9 | 3870 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3871 | S: Maintained |
679655da JP |
3872 | F: include/linux/netfilter_bridge/ |
3873 | F: net/bridge/ | |
1da177e4 | 3874 | |
22f08ad9 FF |
3875 | ETHERNET PHY LIBRARY |
3876 | M: Florian Fainelli <[email protected]> | |
3877 | L: [email protected] | |
3878 | S: Maintained | |
3879 | F: include/linux/phy.h | |
3880 | F: include/linux/phy_fixed.h | |
3881 | F: drivers/net/phy/ | |
3882 | F: Documentation/networking/phy.txt | |
3883 | F: drivers/of/of_mdio.c | |
3884 | F: drivers/of/of_net.c | |
3885 | ||
1da177e4 | 3886 | EXT2 FILE SYSTEM |
01971952 | 3887 | M: Jan Kara <[email protected]> |
72be2ccf | 3888 | L: [email protected] |
1da177e4 | 3889 | S: Maintained |
679655da JP |
3890 | F: Documentation/filesystems/ext2.txt |
3891 | F: fs/ext2/ | |
3892 | F: include/linux/ext2* | |
1da177e4 LT |
3893 | |
3894 | EXT3 FILE SYSTEM | |
01971952 | 3895 | M: Jan Kara <[email protected]> |
8b58be88 | 3896 | M: Andrew Morton <[email protected]> |
3c373a5f | 3897 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3898 | L: [email protected] |
3899 | S: Maintained | |
679655da JP |
3900 | F: Documentation/filesystems/ext3.txt |
3901 | F: fs/ext3/ | |
72be2ccf EM |
3902 | |
3903 | EXT4 FILE SYSTEM | |
8b58be88 | 3904 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3905 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3906 | L: [email protected] |
08a225f1 | 3907 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3908 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3909 | S: Maintained |
679655da JP |
3910 | F: Documentation/filesystems/ext4.txt |
3911 | F: fs/ext4/ | |
1da177e4 | 3912 | |
c5532b09 | 3913 | Extended Verification Module (EVM) |
74dd744f MZ |
3914 | M: Mimi Zohar <[email protected]> |
3915 | L: [email protected] | |
3916 | L: [email protected] | |
c5532b09 MZ |
3917 | S: Supported |
3918 | F: security/integrity/evm/ | |
3919 | ||
df6b3cfe MH |
3920 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3921 | M: MyungJoo Ham <[email protected]> | |
3922 | M: Chanwoo Choi <[email protected]> | |
3923 | L: [email protected] | |
81df63a9 | 3924 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3925 | S: Maintained |
3926 | F: drivers/extcon/ | |
3927 | F: Documentation/extcon/ | |
3928 | ||
e2a75c44 | 3929 | EXYNOS DP DRIVER |
b7701755 | 3930 | M: Jingoo Han <[email protected]> |
e2a75c44 JH |
3931 | L: [email protected] |
3932 | S: Maintained | |
3933 | F: drivers/gpu/drm/exynos/exynos_dp* | |
3934 | ||
33ad3912 DL |
3935 | EXYNOS MIPI DISPLAY DRIVERS |
3936 | M: Inki Dae <[email protected]> | |
3937 | M: Donghwa Lee <[email protected]> | |
3938 | M: Kyungmin Park <[email protected]> | |
3939 | L: [email protected] | |
3940 | S: Maintained | |
8a61f013 | 3941 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
3942 | F: include/video/exynos_mipi* |
3943 | ||
e53004e2 | 3944 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3945 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3946 | L: [email protected] |
3947 | S: Maintained | |
679655da JP |
3948 | F: Documentation/hwmon/f71805f |
3949 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3950 | |
eea977ed MB |
3951 | FC0011 TUNER DRIVER |
3952 | M: Michael Buesch <[email protected]> | |
3953 | L: [email protected] | |
3954 | S: Maintained | |
ccae7af2 MCC |
3955 | F: drivers/media/tuners/fc0011.h |
3956 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3957 | |
91952bc0 AP |
3958 | FC2580 MEDIA DRIVER |
3959 | M: Antti Palosaari <[email protected]> | |
3960 | L: [email protected] | |
3961 | W: http://linuxtv.org/ | |
3962 | W: http://palosaari.fi/linux/ | |
3963 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3964 | T: git git://linuxtv.org/anttip/media_tree.git | |
3965 | S: Maintained | |
3966 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3967 | |
88b2dbdb EP |
3968 | FANOTIFY |
3969 | M: Eric Paris <[email protected]> | |
3970 | S: Maintained | |
3971 | F: fs/notify/fanotify/ | |
3972 | F: include/linux/fanotify.h | |
c117ab84 | 3973 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3974 | |
1da177e4 | 3975 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3976 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3977 | W: http://www.farsite.co.uk/ |
3978 | S: Supported | |
679655da | 3979 | F: drivers/net/wan/farsync.* |
1da177e4 | 3980 | |
c5408b88 | 3981 | FAULT INJECTION SUPPORT |
8b58be88 | 3982 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3983 | S: Supported |
679655da JP |
3984 | F: Documentation/fault-injection/ |
3985 | F: lib/fault-inject.c | |
c5408b88 | 3986 | |
053e514f NT |
3987 | FBTFT Framebuffer drivers |
3988 | M: Thomas Petazzoni <[email protected]> | |
3989 | M: Noralf Trønnes <[email protected]> | |
3990 | S: Maintained | |
3991 | F: drivers/staging/fbtft/ | |
3992 | ||
cae727db | 3993 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3bd746cf | 3994 | M: Vasu Dev <[email protected]> |
f4aaea6d | 3995 | L: [email protected] |
cae727db RL |
3996 | W: www.Open-FCoE.org |
3997 | S: Supported | |
3998 | F: drivers/scsi/libfc/ | |
3999 | F: drivers/scsi/fcoe/ | |
4000 | F: include/scsi/fc/ | |
4001 | F: include/scsi/libfc.h | |
4002 | F: include/scsi/libfcoe.h | |
c117ab84 | 4003 | F: include/uapi/scsi/fc/ |
cae727db | 4004 | |
e2d1d6c0 | 4005 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4006 | M: Jeff Layton <[email protected]> |
18156e7e | 4007 | M: J. Bruce Fields <[email protected]> |
e2d1d6c0 | 4008 | L: [email protected] |
1da177e4 | 4009 | S: Maintained |
679655da JP |
4010 | F: include/linux/fcntl.h |
4011 | F: include/linux/fs.h | |
c117ab84 CEB |
4012 | F: include/uapi/linux/fcntl.h |
4013 | F: include/uapi/linux/fs.h | |
679655da JP |
4014 | F: fs/fcntl.c |
4015 | F: fs/locks.c | |
1da177e4 | 4016 | |
e2d1d6c0 | 4017 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4018 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 4019 | L: [email protected] |
173acc7c | 4020 | S: Maintained |
679655da | 4021 | F: fs/* |
173acc7c | 4022 | |
b26e0ed4 | 4023 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4024 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
4025 | L: [email protected] |
4026 | S: Maintained | |
d5ca6918 JP |
4027 | F: drivers/hwmon/f75375s.c |
4028 | F: include/linux/f75375s.h | |
b26e0ed4 | 4029 | |
a331b0c3 CL |
4030 | FIREWIRE AUDIO DRIVERS |
4031 | M: Clemens Ladisch <[email protected]> | |
4032 | L: [email protected] (moderated for non-subscribers) | |
4033 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4034 | S: Maintained | |
4035 | F: sound/firewire/ | |
4036 | ||
eb86ec51 SR |
4037 | FIREWIRE MEDIA DRIVERS (firedtv) |
4038 | M: Stefan Richter <[email protected]> | |
4039 | L: [email protected] | |
4040 | L: [email protected] | |
4041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4042 | S: Maintained | |
4043 | F: drivers/media/firewire/ | |
4044 | ||
a511ce33 CB |
4045 | FIREWIRE SBP-2 TARGET |
4046 | M: Chris Boot <[email protected]> | |
4047 | L: [email protected] | |
4048 | L: [email protected] | |
4049 | L: [email protected] | |
4050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4051 | S: Maintained | |
4052 | F: drivers/target/sbp/ | |
4053 | ||
7d2c86b5 | 4054 | FIREWIRE SUBSYSTEM |
8b58be88 | 4055 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 4056 | L: [email protected] |
958a29cb | 4057 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4059 | S: Maintained |
679655da | 4060 | F: drivers/firewire/ |
8f06ce3b SR |
4061 | F: include/linux/firewire.h |
4062 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4063 | F: tools/firewire/ |
e2d1d6c0 RD |
4064 | |
4065 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
4066 | M: Ming Lei <[email protected]> |
4067 | L: [email protected] | |
4068 | S: Maintained | |
679655da JP |
4069 | F: Documentation/firmware_class/ |
4070 | F: drivers/base/firmware*.c | |
4071 | F: include/linux/firmware.h | |
e2d1d6c0 | 4072 | |
f730e3dc | 4073 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4074 | M: Joshua Morris <[email protected]> |
4075 | M: Philip Kelleher <[email protected]> | |
4076 | S: Maintained | |
4077 | F: drivers/block/rsxx/ | |
4078 | ||
8206f664 JK |
4079 | FLOPPY DRIVER |
4080 | M: Jiri Kosina <[email protected]> | |
4081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
4082 | S: Odd fixes | |
4083 | F: drivers/block/floppy.c | |
4084 | ||
9c9f32ed AR |
4085 | FMC SUBSYSTEM |
4086 | M: Alessandro Rubini <[email protected]> | |
4087 | W: http://www.ohwr.org/projects/fmc-bus | |
4088 | S: Supported | |
4089 | F: drivers/fmc/ | |
4090 | F: include/linux/fmc*.h | |
4091 | F: include/linux/ipmi-fru.h | |
4092 | K: fmc_d.*register | |
4093 | ||
e2d1d6c0 | 4094 | FPU EMULATOR |
8b58be88 | 4095 | M: Bill Metzenthen <[email protected]> |
e769980f | 4096 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4097 | S: Maintained |
679655da | 4098 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4099 | |
4100 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4101 | L: [email protected] |
c173bfac | 4102 | S: Orphan |
679655da JP |
4103 | F: drivers/net/wan/dlci.c |
4104 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4105 | |
4106 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4107 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
4108 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 4109 | L: [email protected] |
e2d1d6c0 | 4110 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4111 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4112 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4113 | S: Maintained |
679655da | 4114 | F: Documentation/fb/ |
d958c62c | 4115 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
4116 | F: drivers/video/ |
4117 | F: include/video/ | |
679655da | 4118 | F: include/linux/fb.h |
c117ab84 CEB |
4119 | F: include/uapi/video/ |
4120 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4121 | |
a57c188e | 4122 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4123 | M: Timur Tabi <[email protected]> |
a57c188e | 4124 | L: [email protected] |
c4ef9bc4 | 4125 | S: Maintained |
8a61f013 | 4126 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4127 | |
e2d1d6c0 | 4128 | FREESCALE DMA DRIVER |
8b58be88 JP |
4129 | M: Li Yang <[email protected]> |
4130 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 4131 | L: [email protected] |
e2d1d6c0 | 4132 | S: Maintained |
679655da | 4133 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
4134 | |
4135 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 4136 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 4137 | L: [email protected] |
846557d3 | 4138 | L: [email protected] |
0d2b405a | 4139 | S: Maintained |
679655da | 4140 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4141 | |
60e8c5ab | 4142 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4143 | M: Sascha Hauer <[email protected]> |
c69f677c | 4144 | L: [email protected] |
efc03ecb | 4145 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 4146 | S: Maintained |
bad985a1 | 4147 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4148 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4149 | |
4d8e2cef HX |
4150 | FREESCALE QUAD SPI DRIVER |
4151 | M: Han Xu <[email protected]> | |
4152 | L: [email protected] | |
4153 | S: Maintained | |
4154 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4155 | ||
4689a6b1 | 4156 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4157 | M: Pantelis Antoniou <[email protected]> |
4158 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 4159 | L: [email protected] |
4689a6b1 PA |
4160 | L: [email protected] |
4161 | S: Maintained | |
ec21e2ec | 4162 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4163 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4164 | |
d9e9d82c | 4165 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4166 | L: [email protected] |
c4ef9bc4 | 4167 | S: Orphan |
679655da JP |
4168 | F: arch/powerpc/sysdev/qe_lib/ |
4169 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 4170 | |
b55ef929 | 4171 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4172 | M: Li Yang <[email protected]> |
6372594a | 4173 | L: [email protected] |
a4724ed6 | 4174 | L: [email protected] |
a7205b30 | 4175 | S: Maintained |
faf2e1db | 4176 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4177 | |
beaf53bf | 4178 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 4179 | M: Li Yang <[email protected]> |
beaf53bf | 4180 | L: [email protected] |
a4724ed6 | 4181 | L: [email protected] |
beaf53bf | 4182 | S: Maintained |
ec21e2ec | 4183 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 4184 | |
d9e9d82c | 4185 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 4186 | M: Timur Tabi <[email protected]> |
a4724ed6 | 4187 | L: [email protected] |
c4ef9bc4 | 4188 | S: Maintained |
df621252 | 4189 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
4190 | |
4191 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 4192 | M: Timur Tabi <[email protected]> |
dc85950a | 4193 | M: Nicolin Chen <[email protected]> |
b4b98297 | 4194 | M: Xiubo Li <[email protected]> |
93711660 | 4195 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 4196 | L: [email protected] |
c4ef9bc4 | 4197 | S: Maintained |
69aefcea | 4198 | F: sound/soc/fsl/fsl* |
dc85950a | 4199 | F: sound/soc/fsl/imx* |
69aefcea | 4200 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 4201 | |
31c88965 GR |
4202 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
4203 | M: J. German Rivera <[email protected]> | |
4204 | L: [email protected] | |
4205 | S: Maintained | |
4206 | F: drivers/staging/fsl-mc/ | |
4207 | ||
1da177e4 | 4208 | FREEVXFS FILESYSTEM |
8b58be88 | 4209 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
4210 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
4211 | S: Maintained | |
679655da | 4212 | F: fs/freevxfs/ |
1da177e4 | 4213 | |
71038f52 | 4214 | FREEZER |
49db1903 | 4215 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 4216 | M: Pavel Machek <[email protected]> |
bf1c138e | 4217 | L: [email protected] |
71038f52 | 4218 | S: Supported |
679655da JP |
4219 | F: Documentation/power/freezing-of-tasks.txt |
4220 | F: include/linux/freezer.h | |
4221 | F: kernel/freezer.c | |
71038f52 | 4222 | |
839a1f79 KRW |
4223 | FRONTSWAP API |
4224 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4225 | L: [email protected] | |
4226 | S: Maintained | |
4227 | F: mm/frontswap.c | |
4228 | F: include/linux/frontswap.h | |
4229 | ||
a5432f5a | 4230 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 4231 | M: David Howells <[email protected]> |
a5432f5a DH |
4232 | L: [email protected] |
4233 | S: Supported | |
4234 | F: Documentation/filesystems/caching/ | |
4235 | F: fs/fscache/ | |
4236 | F: include/linux/fscache*.h | |
4237 | ||
f58ad8f5 | 4238 | F2FS FILE SYSTEM |
9b29d481 | 4239 | M: Jaegeuk Kim <[email protected]> |
f6238a72 | 4240 | M: Changman Lee <[email protected]> |
f58ad8f5 JK |
4241 | L: [email protected] |
4242 | W: http://en.wikipedia.org/wiki/F2FS | |
4243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
4244 | S: Maintained | |
4245 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 4246 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
4247 | F: fs/f2fs/ |
4248 | F: include/linux/f2fs_fs.h | |
4249 | ||
5ab7ffea | 4250 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 4251 | M: David Howells <[email protected]> |
1da177e4 | 4252 | S: Maintained |
679655da | 4253 | F: arch/frv/ |
1da177e4 | 4254 | |
20b93734 | 4255 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 4256 | M: Jonathan Woithe <[email protected]> |
d0944853 | 4257 | L: [email protected] |
20b93734 | 4258 | S: Maintained |
679655da | 4259 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 4260 | |
4da621b6 HK |
4261 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
4262 | M: Kyungmin Park <[email protected]> | |
4263 | M: Heungjun Kim <[email protected]> | |
4264 | L: [email protected] | |
4265 | S: Maintained | |
90d72ac6 | 4266 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
4267 | F: include/media/m5mols.h |
4268 | ||
2d24c490 RG |
4269 | FUJITSU TABLET EXTRAS |
4270 | M: Robert Gerlach <[email protected]> | |
4271 | L: [email protected] | |
4272 | S: Maintained | |
4273 | F: drivers/platform/x86/fujitsu-tablet.c | |
4274 | ||
04578f17 | 4275 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 4276 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
4277 | L: [email protected] |
4278 | W: http://fuse.sourceforge.net/ | |
4279 | S: Maintained | |
679655da | 4280 | F: fs/fuse/ |
c117ab84 | 4281 | F: include/uapi/linux/fuse.h |
04578f17 | 4282 | |
1da177e4 | 4283 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 4284 | M: Rik Faith <[email protected]> |
1da177e4 | 4285 | L: [email protected] |
baaea1dc | 4286 | S: Odd Fixes (e.g., new signatures) |
679655da | 4287 | F: drivers/scsi/fdomain.* |
1da177e4 | 4288 | |
d8e2162c PO |
4289 | GCOV BASED KERNEL PROFILING |
4290 | M: Peter Oberparleiter <[email protected]> | |
4291 | S: Maintained | |
4292 | F: kernel/gcov/ | |
4293 | F: Documentation/gcov.txt | |
4294 | ||
1da177e4 | 4295 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 4296 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
4297 | L: [email protected] |
4298 | W: http://www.icp-vortex.com/ | |
4299 | S: Supported | |
679655da | 4300 | F: drivers/scsi/gdt* |
1da177e4 | 4301 | |
158daf16 JK |
4302 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
4303 | M: Jan Kiszka <[email protected]> | |
4304 | S: Supported | |
4305 | F: scripts/gdb/ | |
4306 | ||
3169a1c7 HV |
4307 | GEMTEK FM RADIO RECEIVER DRIVER |
4308 | M: Hans Verkuil <[email protected]> | |
4309 | L: [email protected] | |
4310 | T: git git://linuxtv.org/media_tree.git | |
4311 | W: http://linuxtv.org | |
4312 | S: Maintained | |
4313 | F: drivers/media/radio/radio-gemtek* | |
4314 | ||
1c23af90 | 4315 | GENERIC GPIO I2C DRIVER |
880b0e26 | 4316 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 4317 | S: Supported |
679655da JP |
4318 | F: drivers/i2c/busses/i2c-gpio.c |
4319 | F: include/linux/i2c-gpio.h | |
1c23af90 | 4320 | |
92ed1a76 PK |
4321 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
4322 | M: Peter Korsgaard <[email protected]> | |
4323 | L: [email protected] | |
4324 | S: Supported | |
e7065e20 JD |
4325 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
4326 | F: include/linux/i2c-mux-gpio.h | |
4327 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 4328 | |
9251ce95 | 4329 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 4330 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
4331 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
4332 | S: Maintained | |
679655da JP |
4333 | F: drivers/net/wan/c101.c |
4334 | F: drivers/net/wan/hd6457* | |
4335 | F: drivers/net/wan/hdlc* | |
4336 | F: drivers/net/wan/n2.c | |
4337 | F: drivers/net/wan/pc300too.c | |
4338 | F: drivers/net/wan/pci200syn.c | |
4339 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4340 | |
1527aab6 | 4341 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4342 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
4343 | L: [email protected] |
4344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4345 | S: Maintained | |
14430813 JP |
4346 | F: include/asm-generic/ |
4347 | F: include/uapi/asm-generic/ | |
1527aab6 | 4348 | |
ff764963 KVA |
4349 | GENERIC PHY FRAMEWORK |
4350 | M: Kishon Vijay Abraham I <[email protected]> | |
4351 | L: [email protected] | |
4352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4353 | S: Supported | |
4354 | F: drivers/phy/ | |
4355 | F: include/linux/phy/ | |
4356 | ||
eea97aed KH |
4357 | GENERIC PM DOMAINS |
4358 | M: "Rafael J. Wysocki" <[email protected]> | |
4359 | M: Kevin Hilman <[email protected]> | |
4360 | M: Ulf Hansson <[email protected]> | |
4361 | L: [email protected] | |
4362 | S: Supported | |
4363 | F: drivers/base/power/domain*.c | |
4364 | F: include/linux/pm_domain.h | |
4365 | ||
ccb86a69 | 4366 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4367 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 4368 | L: [email protected] |
ccb86a69 MT |
4369 | S: Supported |
4370 | F: drivers/uio/uio_pci_generic.c | |
4371 | ||
f8f1ec73 JP |
4372 | GET_MAINTAINER SCRIPT |
4373 | M: Joe Perches <[email protected]> | |
4374 | S: Maintained | |
4375 | F: scripts/get_maintainer.pl | |
4376 | ||
5be7b50f | 4377 | GFS2 FILE SYSTEM |
8b58be88 | 4378 | M: Steven Whitehouse <[email protected]> |
28666d6d | 4379 | M: Bob Peterson <[email protected]> |
a4644184 | 4380 | L: [email protected] |
5be7b50f | 4381 | W: http://sources.redhat.com/cluster/ |
28666d6d | 4382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 4383 | S: Supported |
679655da JP |
4384 | F: Documentation/filesystems/gfs2*.txt |
4385 | F: fs/gfs2/ | |
c117ab84 | 4386 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4387 | |
0a34eb8f | 4388 | GIGASET ISDN DRIVERS |
6b096fde | 4389 | M: Paul Bolle <[email protected]> |
0a34eb8f HL |
4390 | L: [email protected] |
4391 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 4392 | S: Odd Fixes |
679655da JP |
4393 | F: Documentation/isdn/README.gigaset |
4394 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4395 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4396 | |
7eea35fe JP |
4397 | GO7007 MPEG CODEC |
4398 | M: Hans Verkuil <[email protected]> | |
4399 | L: [email protected] | |
4400 | S: Maintained | |
4401 | F: drivers/media/usb/go7007/ | |
4402 | ||
ca96ea86 BN |
4403 | GOODIX TOUCHSCREEN |
4404 | M: Bastien Nocera <[email protected]> | |
4405 | L: [email protected] | |
4406 | S: Maintained | |
4407 | F: drivers/input/touchscreen/goodix.c | |
4408 | ||
a0dc00b4 | 4409 | GPIO SUBSYSTEM |
e4651a9f | 4410 | M: Linus Walleij <[email protected]> |
f2fa75cd | 4411 | M: Alexandre Courbot <[email protected]> |
d15b7179 | 4412 | L: [email protected] |
f2fa75cd LW |
4413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4414 | S: Maintained | |
4415 | F: Documentation/gpio/ | |
a0dc00b4 | 4416 | F: drivers/gpio/ |
bdc6e95e AC |
4417 | F: include/linux/gpio/ |
4418 | F: include/linux/gpio.h | |
9b692346 | 4419 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4420 | |
71a6d0af HW |
4421 | GRE DEMULTIPLEXER DRIVER |
4422 | M: Dmitry Kozlov <[email protected]> | |
4423 | L: [email protected] | |
4424 | S: Maintained | |
11c26770 JP |
4425 | F: net/ipv4/gre_demux.c |
4426 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4427 | F: include/net/gre.h |
4428 | ||
d4c41139 KG |
4429 | GRETH 10/100/1G Ethernet MAC device driver |
4430 | M: Kristoffer Glembo <[email protected]> | |
4431 | L: [email protected] | |
4432 | S: Maintained | |
a31a96ad | 4433 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4434 | |
e8deeae2 | 4435 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4436 | M: Frank Zago <[email protected]> |
661263b5 | 4437 | L: [email protected] |
275ffde4 | 4438 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4439 | S: Maintained |
0c0d06ca | 4440 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4441 | |
4b3fa3c4 OL |
4442 | GSPCA GL860 SUBDRIVER |
4443 | M: Olivier Lorin <[email protected]> | |
4444 | L: [email protected] | |
275ffde4 | 4445 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4446 | S: Maintained |
0c0d06ca | 4447 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4448 | |
e8deeae2 | 4449 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4450 | M: Erik Andren <[email protected]> |
661263b5 | 4451 | L: [email protected] |
275ffde4 | 4452 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4453 | S: Maintained |
0c0d06ca | 4454 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4455 | |
4456 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4457 | M: Hans de Goede <[email protected]> |
661263b5 | 4458 | L: [email protected] |
275ffde4 | 4459 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4460 | S: Maintained |
0c0d06ca | 4461 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4462 | |
261982f1 | 4463 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4464 | M: Brian Johnson <[email protected]> |
261982f1 | 4465 | L: [email protected] |
275ffde4 | 4466 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4467 | S: Maintained |
0c0d06ca | 4468 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4469 | |
e8deeae2 | 4470 | GSPCA T613 SUBDRIVER |
8b58be88 | 4471 | M: Leandro Costantino <[email protected]> |
661263b5 | 4472 | L: [email protected] |
275ffde4 | 4473 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4474 | S: Maintained |
0c0d06ca | 4475 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4476 | |
4477 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4478 | M: Hans de Goede <[email protected]> |
661263b5 | 4479 | L: [email protected] |
275ffde4 | 4480 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4481 | S: Maintained |
0c0d06ca | 4482 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4483 | |
584ec979 DB |
4484 | GUID PARTITION TABLE (GPT) |
4485 | M: Davidlohr Bueso <[email protected]> | |
4486 | L: [email protected] | |
4487 | S: Maintained | |
4488 | F: block/partitions/efi.* | |
4489 | ||
aa3c598b | 4490 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 4491 | M: Ezequiel Garcia <[email protected]> |
aa3c598b | 4492 | L: [email protected] |
275ffde4 | 4493 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4494 | S: Maintained |
4495 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4496 | |
71a6d0af HW |
4497 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4498 | M: Frank Seidel <[email protected]> | |
4499 | L: [email protected] | |
4500 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4501 | S: Maintained | |
4502 | F: drivers/platform/x86/hdaps.c | |
4503 | ||
48fc9e26 HV |
4504 | HDPVR USB VIDEO ENCODER DRIVER |
4505 | M: Hans Verkuil <[email protected]> | |
4506 | L: [email protected] | |
4507 | T: git git://linuxtv.org/media_tree.git | |
4508 | W: http://linuxtv.org | |
4509 | S: Odd Fixes | |
14430813 | 4510 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4511 | |
71a6d0af | 4512 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4513 | M: Naoya Horiguchi <[email protected]> |
71a6d0af | 4514 | L: [email protected] |
71a6d0af HW |
4515 | S: Maintained |
4516 | F: mm/memory-failure.c | |
4517 | F: mm/hwpoison-inject.c | |
4518 | ||
4519 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4520 | L: [email protected] | |
4521 | S: Odd Fixes | |
4522 | F: drivers/tty/hvc/ | |
4523 | ||
e5ab1477 AP |
4524 | HACKRF MEDIA DRIVER |
4525 | M: Antti Palosaari <[email protected]> | |
4526 | L: [email protected] | |
4527 | W: http://linuxtv.org/ | |
4528 | W: http://palosaari.fi/linux/ | |
4529 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4530 | T: git git://linuxtv.org/anttip/media_tree.git | |
4531 | S: Maintained | |
4532 | F: drivers/media/usb/hackrf/ | |
4533 | ||
5b543965 | 4534 | HARDWARE MONITORING |
7c81c60f | 4535 | M: Jean Delvare <[email protected]> |
ca462085 | 4536 | M: Guenter Roeck <[email protected]> |
5b543965 | 4537 | L: [email protected] |
595142e0 | 4538 | W: http://www.lm-sensors.org/ |
9e012c1a | 4539 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 4540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4541 | S: Maintained |
047f4ec2 | 4542 | F: Documentation/hwmon/ |
679655da | 4543 | F: drivers/hwmon/ |
047f4ec2 | 4544 | F: include/linux/hwmon*.h |
5b543965 | 4545 | |
844dd05f | 4546 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4547 | M: Matt Mackall <[email protected]> |
4548 | M: Herbert Xu <[email protected]> | |
3eda7167 | 4549 | L: [email protected] |
c0d0787b | 4550 | S: Odd fixes |
679655da JP |
4551 | F: Documentation/hw_random.txt |
4552 | F: drivers/char/hw_random/ | |
4553 | F: include/linux/hw_random.h | |
844dd05f | 4554 | |
8b37fcfc OBC |
4555 | HARDWARE SPINLOCK CORE |
4556 | M: Ohad Ben-Cohen <[email protected]> | |
4557 | S: Maintained | |
4558 | F: Documentation/hwspinlock.txt | |
4559 | F: drivers/hwspinlock/hwspinlock_* | |
4560 | F: include/linux/hwspinlock.h | |
4561 | ||
1da177e4 | 4562 | HARMONY SOUND DRIVER |
ac6aecbf | 4563 | L: [email protected] |
1da177e4 | 4564 | S: Maintained |
679655da | 4565 | F: sound/parisc/harmony.* |
1da177e4 | 4566 | |
91952bc0 AP |
4567 | HD29L2 MEDIA DRIVER |
4568 | M: Antti Palosaari <[email protected]> | |
4569 | L: [email protected] | |
4570 | W: http://linuxtv.org/ | |
4571 | W: http://palosaari.fi/linux/ | |
4572 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4573 | T: git git://linuxtv.org/anttip/media_tree.git | |
4574 | S: Maintained | |
4575 | F: drivers/media/dvb-frontends/hd29l2* | |
4576 | ||
e2d1d6c0 | 4577 | HEWLETT-PACKARD SMART2 RAID DRIVER |
e2d1d6c0 | 4578 | L: [email protected] |
af9f1b3c | 4579 | S: Orphan |
679655da JP |
4580 | F: Documentation/blockdev/cpqarray.txt |
4581 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4582 | |
9257aa49 | 4583 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
693373db | 4584 | M: Don Brace <[email protected]> |
9257aa49 | 4585 | L: [email protected] |
693373db DB |
4586 | L: [email protected] |
4587 | L: [email protected] | |
9257aa49 SC |
4588 | S: Supported |
4589 | F: Documentation/scsi/hpsa.txt | |
4590 | F: drivers/scsi/hpsa*.[ch] | |
4591 | F: include/linux/cciss*.h | |
c117ab84 | 4592 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4593 | |
e2d1d6c0 | 4594 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
693373db | 4595 | M: Don Brace <[email protected]> |
e2d1d6c0 | 4596 | L: [email protected] |
693373db DB |
4597 | L: [email protected] |
4598 | L: [email protected] | |
e2d1d6c0 | 4599 | S: Supported |
679655da JP |
4600 | F: Documentation/blockdev/cciss.txt |
4601 | F: drivers/block/cciss* | |
4602 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4603 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4604 | |
1da177e4 | 4605 | HFS FILESYSTEM |
6cf515e1 GU |
4606 | L: [email protected] |
4607 | S: Orphan | |
679655da JP |
4608 | F: Documentation/filesystems/hfs.txt |
4609 | F: fs/hfs/ | |
1da177e4 | 4610 | |
ef575f47 GU |
4611 | HFSPLUS FILESYSTEM |
4612 | L: [email protected] | |
4613 | S: Orphan | |
4614 | F: Documentation/filesystems/hfsplus.txt | |
4615 | F: fs/hfsplus/ | |
4616 | ||
1da177e4 | 4617 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4618 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
4619 | L: [email protected] |
4620 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4621 | S: Maintained | |
8a61f013 | 4622 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 4623 | |
4480f15b | 4624 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4625 | M: "Rafael J. Wysocki" <[email protected]> |
7fb06082 | 4626 | M: Pavel Machek <[email protected]> |
bf1c138e | 4627 | L: [email protected] |
e2d1d6c0 | 4628 | S: Supported |
679655da JP |
4629 | F: arch/x86/power/ |
4630 | F: drivers/base/power/ | |
4631 | F: kernel/power/ | |
4632 | F: include/linux/suspend.h | |
4633 | F: include/linux/freezer.h | |
4634 | F: include/linux/pm.h | |
679655da | 4635 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4636 | |
4ef4caad | 4637 | HID CORE LAYER |
8b58be88 | 4638 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 4639 | L: [email protected] |
54e5881d | 4640 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4641 | S: Maintained |
679655da JP |
4642 | F: drivers/hid/ |
4643 | F: include/linux/hid* | |
c117ab84 | 4644 | F: include/uapi/linux/hid* |
4ef4caad | 4645 | |
38bed542 | 4646 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4647 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 4648 | L: [email protected] |
75fc2d37 | 4649 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4650 | S: Maintained |
679655da | 4651 | F: Documentation/timers/ |
5cee9645 | 4652 | F: kernel/time/hrtimer.c |
88606e80 TG |
4653 | F: kernel/time/clockevents.c |
4654 | F: kernel/time/tick*.* | |
4655 | F: kernel/time/timer_*.c | |
05ed8490 | 4656 | F: include/linux/clockchips.h |
679655da | 4657 | F: include/linux/hrtimer.h |
38bed542 | 4658 | |
1da177e4 | 4659 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4660 | L: [email protected] |
8b64f2a0 | 4661 | S: Orphan |
679655da JP |
4662 | F: drivers/net/hamradio/dmascc.c |
4663 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4664 | |
ede1e6f8 | 4665 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4666 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
4667 | W: http://www.highpoint-tech.com |
4668 | S: Supported | |
679655da JP |
4669 | F: Documentation/scsi/hptiop.txt |
4670 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4671 | |
1da177e4 | 4672 | HIPPI |
8b58be88 | 4673 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
4674 | L: [email protected] |
4675 | S: Maintained | |
679655da | 4676 | F: include/linux/hippidevice.h |
c117ab84 | 4677 | F: include/uapi/linux/if_hippi.h |
679655da | 4678 | F: net/802/hippi.c |
ff5a3b50 | 4679 | F: drivers/net/hippi/ |
1da177e4 | 4680 | |
ff1d2767 | 4681 | HOST AP DRIVER |
8b58be88 | 4682 | M: Jouni Malinen <[email protected]> |
85d32e7b | 4683 | L: [email protected] (subscribers-only) |
724c6b35 | 4684 | L: [email protected] |
ff1d2767 JM |
4685 | W: http://hostap.epitest.fi/ |
4686 | S: Maintained | |
679655da | 4687 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4688 | |
dd8cd779 | 4689 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4690 | L: [email protected] |
95c70215 | 4691 | S: Orphan |
679655da | 4692 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4693 | |
e2d1d6c0 | 4694 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4695 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4696 | S: Maintained |
7e25d724 | 4697 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4698 | |
7d2c86b5 | 4699 | HPET: High Precision Event Timers driver |
8b58be88 | 4700 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 4701 | S: Maintained |
679655da JP |
4702 | F: Documentation/timers/hpet.txt |
4703 | F: drivers/char/hpet.c | |
4704 | F: include/linux/hpet.h | |
c117ab84 | 4705 | F: include/uapi/linux/hpet.h |
b9b0332f | 4706 | |
e07b5d79 | 4707 | HPET: x86 |
9e06f631 | 4708 | S: Orphan |
679655da JP |
4709 | F: arch/x86/kernel/hpet.c |
4710 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4711 | |
1da177e4 | 4712 | HPFS FILESYSTEM |
8b58be88 | 4713 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
4714 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4715 | S: Maintained | |
679655da | 4716 | F: fs/hpfs/ |
1da177e4 | 4717 | |
3441cded | 4718 | HSI SUBSYSTEM |
56459ea9 SR |
4719 | M: Sebastian Reichel <[email protected]> |
4720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4721 | S: Maintained |
4722 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4723 | F: Documentation/hsi.txt |
3441cded SR |
4724 | F: drivers/hsi/ |
4725 | F: include/linux/hsi/ | |
4726 | F: include/uapi/linux/hsi/ | |
4727 | ||
7d2c86b5 | 4728 | HSO 3G MODEM DRIVER |
8b58be88 | 4729 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
4730 | W: http://www.pharscape.org |
4731 | S: Maintained | |
679655da | 4732 | F: drivers/net/usb/hso.c |
11cd29b0 | 4733 | |
19990e29 AB |
4734 | HSR NETWORK PROTOCOL |
4735 | M: Arvid Brodin <[email protected]> | |
4736 | L: [email protected] | |
4737 | S: Maintained | |
4738 | F: net/hsr/ | |
4739 | ||
5a18c343 | 4740 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4741 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
4742 | L: [email protected] |
4743 | S: Maintained | |
679655da | 4744 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4745 | |
1da177e4 | 4746 | HUGETLB FILESYSTEM |
6d49e352 | 4747 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 4748 | S: Maintained |
679655da | 4749 | F: fs/hugetlbfs/ |
1da177e4 | 4750 | |
05183189 S |
4751 | Hyper-V CORE AND DRIVERS |
4752 | M: K. Y. Srinivasan <[email protected]> | |
4753 | M: Haiyang Zhang <[email protected]> | |
4754 | L: [email protected] | |
4755 | S: Maintained | |
a4162747 HZ |
4756 | F: arch/x86/include/asm/mshyperv.h |
4757 | F: arch/x86/include/uapi/asm/hyperv.h | |
4758 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4759 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4760 | F: drivers/hv/ |
f92ca80b | 4761 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4762 | F: drivers/net/hyperv/ |
a4162747 | 4763 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 4764 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
4765 | F: include/linux/hyperv.h |
4766 | F: tools/hv/ | |
05183189 | 4767 | |
d85c8a6a | 4768 | I2C OVER PARALLEL PORT |
7c81c60f | 4769 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4770 | L: [email protected] |
4771 | S: Maintained | |
4772 | F: Documentation/i2c/busses/i2c-parport | |
4773 | F: Documentation/i2c/busses/i2c-parport-light | |
4774 | F: drivers/i2c/busses/i2c-parport.c | |
4775 | F: drivers/i2c/busses/i2c-parport-light.c | |
4776 | ||
4777 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4778 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4779 | L: [email protected] |
4780 | S: Maintained | |
4781 | F: Documentation/i2c/busses/i2c-ali1535 | |
4782 | F: Documentation/i2c/busses/i2c-ali1563 | |
4783 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4784 | F: Documentation/i2c/busses/i2c-amd756 | |
4785 | F: Documentation/i2c/busses/i2c-amd8111 | |
4786 | F: Documentation/i2c/busses/i2c-i801 | |
4787 | F: Documentation/i2c/busses/i2c-nforce2 | |
4788 | F: Documentation/i2c/busses/i2c-piix4 | |
4789 | F: Documentation/i2c/busses/i2c-sis5595 | |
4790 | F: Documentation/i2c/busses/i2c-sis630 | |
4791 | F: Documentation/i2c/busses/i2c-sis96x | |
4792 | F: Documentation/i2c/busses/i2c-via | |
4793 | F: Documentation/i2c/busses/i2c-viapro | |
4794 | F: drivers/i2c/busses/i2c-ali1535.c | |
4795 | F: drivers/i2c/busses/i2c-ali1563.c | |
4796 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4797 | F: drivers/i2c/busses/i2c-amd756.c | |
4798 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4799 | F: drivers/i2c/busses/i2c-amd8111.c | |
4800 | F: drivers/i2c/busses/i2c-i801.c | |
4801 | F: drivers/i2c/busses/i2c-isch.c | |
4802 | F: drivers/i2c/busses/i2c-nforce2.c | |
4803 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4804 | F: drivers/i2c/busses/i2c-piix4.c | |
4805 | F: drivers/i2c/busses/i2c-sis5595.c | |
4806 | F: drivers/i2c/busses/i2c-sis630.c | |
4807 | F: drivers/i2c/busses/i2c-sis96x.c | |
4808 | F: drivers/i2c/busses/i2c-via.c | |
4809 | F: drivers/i2c/busses/i2c-viapro.c | |
4810 | ||
cb7f07a4 NH |
4811 | I2C/SMBUS ISMT DRIVER |
4812 | M: Seth Heasley <[email protected]> | |
4813 | M: Neil Horman <[email protected]> | |
4814 | L: [email protected] | |
4815 | F: drivers/i2c/busses/i2c-ismt.c | |
4816 | F: Documentation/i2c/busses/i2c-ismt | |
4817 | ||
6ea884db | 4818 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4819 | M: Jean Delvare <[email protected]> |
846557d3 | 4820 | L: [email protected] |
6ea884db | 4821 | S: Maintained |
8547a5bc | 4822 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4823 | |
5b543965 | 4824 | I2C SUBSYSTEM |
14d77c4d | 4825 | M: Wolfram Sang <[email protected]> |
846557d3 | 4826 | L: [email protected] |
9d4ea27a WS |
4827 | W: https://i2c.wiki.kernel.org/ |
4828 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 4829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4830 | S: Maintained |
40ed1b4c | 4831 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
4832 | F: Documentation/i2c/ |
4833 | F: drivers/i2c/ | |
4834 | F: include/linux/i2c.h | |
03b70d62 | 4835 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4836 | F: include/uapi/linux/i2c.h |
4837 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4838 | |
4560d677 WS |
4839 | I2C ACPI SUPPORT |
4840 | M: Mika Westerberg <[email protected]> | |
4841 | L: [email protected] | |
4842 | L: [email protected] | |
4843 | S: Maintained | |
4560d677 | 4844 | |
d85c8a6a | 4845 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4846 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4847 | L: [email protected] |
4848 | S: Maintained | |
4849 | F: Documentation/i2c/busses/i2c-taos-evm | |
4850 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4851 | ||
e8c76eed | 4852 | I2C-TINY-USB DRIVER |
8b58be88 | 4853 | M: Till Harbaum <[email protected]> |
846557d3 | 4854 | L: [email protected] |
932d1872 | 4855 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4856 | S: Maintained |
679655da | 4857 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4858 | |
1da177e4 | 4859 | i386 BOOT CODE |
8b58be88 | 4860 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4861 | S: Maintained |
679655da | 4862 | F: arch/x86/boot/ |
1da177e4 LT |
4863 | |
4864 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4865 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4867 | S: Maintained |
4868 | ||
1da177e4 | 4869 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4870 | M: Tony Luck <[email protected]> |
4871 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4872 | L: [email protected] |
6b1c70b1 | 4873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4874 | S: Maintained |
679655da | 4875 | F: arch/ia64/ |
1da177e4 | 4876 | |
956c203c | 4877 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4878 | M: Marcelo Henrique Cerri <[email protected]> |
4879 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4880 | L: [email protected] |
4881 | S: Supported | |
4882 | F: drivers/crypto/nx/ | |
4883 | ||
0e16aafb | 4884 | IBM Power 842 compression accelerator |
d1e66e6e | 4885 | M: Dan Streetman <[email protected]> |
0e16aafb SJ |
4886 | S: Supported |
4887 | F: drivers/crypto/nx/nx-842.c | |
4888 | F: include/linux/nx842.h | |
4889 | ||
1da177e4 | 4890 | IBM Power Linux RAID adapter |
8b58be88 | 4891 | M: Brian King <[email protected]> |
1da177e4 | 4892 | S: Supported |
679655da | 4893 | F: drivers/scsi/ipr.* |
1da177e4 | 4894 | |
9d348af4 | 4895 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 4896 | M: Thomas Falcon <[email protected]> |
9d348af4 SL |
4897 | L: [email protected] |
4898 | S: Supported | |
9aa32835 | 4899 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4900 | |
e6babec6 | 4901 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 4902 | M: Tyrel Datwyler <[email protected]> |
4b7652cc RJ |
4903 | L: [email protected] |
4904 | S: Supported | |
e6babec6 NF |
4905 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
4906 | F: drivers/scsi/ibmvscsi/viosrp.h | |
4907 | ||
4908 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 4909 | M: Tyrel Datwyler <[email protected]> |
e6babec6 NF |
4910 | L: [email protected] |
4911 | S: Supported | |
4912 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 4913 | |
1da177e4 | 4914 | IBM ServeRAID RAID DRIVER |
f9213e78 | 4915 | S: Orphan |
679655da | 4916 | F: drivers/scsi/ips.* |
1da177e4 | 4917 | |
6ed9f9c4 PT |
4918 | ICH LPC AND GPIO DRIVER |
4919 | M: Peter Tyser <[email protected]> | |
4920 | S: Maintained | |
4921 | F: drivers/mfd/lpc_ich.c | |
4922 | F: drivers/gpio/gpio-ich.c | |
4923 | ||
1e7106fc | 4924 | IDE SUBSYSTEM |
8b58be88 | 4925 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4926 | L: [email protected] |
8a6e2535 | 4927 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4928 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4929 | S: Maintained |
679655da JP |
4930 | F: Documentation/ide/ |
4931 | F: drivers/ide/ | |
4932 | F: include/linux/ide.h | |
1da177e4 | 4933 | |
6cb8c13d IP |
4934 | IDEAPAD LAPTOP EXTRAS DRIVER |
4935 | M: Ike Panhc <[email protected]> | |
4936 | L: [email protected] | |
4937 | W: http://launchpad.net/ideapad-laptop | |
4938 | S: Maintained | |
4939 | F: drivers/platform/x86/ideapad-laptop.c | |
4940 | ||
1ea4c161 AM |
4941 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4942 | M: Andrey Moiseev <[email protected]> | |
4943 | L: [email protected] | |
4944 | W: https://github.com/o2genum/ideapad-slidebar | |
4945 | S: Maintained | |
4946 | F: drivers/input/misc/ideapad_slidebar.c | |
4947 | ||
0f861e8c | 4948 | IDE/ATAPI DRIVERS |
487ba8e8 | 4949 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4950 | L: [email protected] |
c404c199 | 4951 | S: Maintained |
679655da JP |
4952 | F: Documentation/cdrom/ide-cd |
4953 | F: drivers/ide/ide-cd* | |
1da177e4 | 4954 | |
27471fdb | 4955 | IDLE-I7300 |
8b58be88 | 4956 | M: Andy Henroid <[email protected]> |
bf1c138e | 4957 | L: [email protected] |
27471fdb | 4958 | S: Supported |
679655da | 4959 | F: drivers/idle/i7300_idle.c |
27471fdb | 4960 | |
02cf2286 | 4961 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 4962 | M: Alexander Aring <[email protected]> |
ebef9c12 VB |
4963 | L: [email protected] |
4964 | W: https://github.com/linux-wpan | |
4965 | T: git git://github.com/linux-wpan/linux-wpan-next.git | |
02cf2286 SL |
4966 | S: Maintained |
4967 | F: net/ieee802154/ | |
68653359 | 4968 | F: net/mac802154/ |
251741b1 | 4969 | F: drivers/net/ieee802154/ |
580947d3 AA |
4970 | F: include/linux/nl802154.h |
4971 | F: include/linux/ieee802154.h | |
4972 | F: include/net/nl802154.h | |
4973 | F: include/net/mac802154.h | |
4974 | F: include/net/af_ieee802154.h | |
4975 | F: include/net/cfg802154.h | |
4976 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 4977 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 4978 | |
b1c97193 SY |
4979 | IGORPLUG-USB IR RECEIVER |
4980 | M: Sean Young <[email protected]> | |
4981 | L: [email protected] | |
4982 | S: Maintained | |
4983 | F: drivers/media/rc/igorplugusb.c | |
4984 | ||
40ad4a30 SY |
4985 | IGUANAWORKS USB IR TRANSCEIVER |
4986 | M: Sean Young <[email protected]> | |
4987 | L: [email protected] | |
4988 | S: Maintained | |
4989 | F: drivers/media/rc/iguanair.c | |
4990 | ||
9545f86e | 4991 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4992 | M: Jonathan Cameron <[email protected]> |
f0d61161 LPC |
4993 | R: Hartmut Knaack <[email protected]> |
4994 | R: Lars-Peter Clausen <[email protected]> | |
4995 | R: Peter Meerwald <[email protected]> | |
9545f86e AP |
4996 | L: [email protected] |
4997 | S: Maintained | |
03e7c251 | 4998 | F: drivers/iio/ |
9545f86e | 4999 | F: drivers/staging/iio/ |
8fe671fc | 5000 | F: include/linux/iio/ |
817020cf | 5001 | F: tools/iio/ |
9545f86e | 5002 | |
65519263 SG |
5003 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5004 | M: Matthieu Castet <[email protected]> | |
5005 | M: Stanislaw Gruszka <[email protected]> | |
5006 | S: Maintained | |
5007 | F: drivers/usb/atm/ueagle-atm.c | |
5008 | ||
e89ab51f GR |
5009 | INA209 HARDWARE MONITOR DRIVER |
5010 | M: Guenter Roeck <[email protected]> | |
5011 | L: [email protected] | |
5012 | S: Maintained | |
5013 | F: Documentation/hwmon/ina209 | |
5014 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5015 | F: drivers/hwmon/ina209.c | |
5016 | ||
5017 | INA2XX HARDWARE MONITOR DRIVER | |
5018 | M: Guenter Roeck <[email protected]> | |
5019 | L: [email protected] | |
5020 | S: Maintained | |
5021 | F: Documentation/hwmon/ina2xx | |
5022 | F: drivers/hwmon/ina2xx.c | |
5023 | F: include/linux/platform_data/ina2xx.h | |
5024 | ||
14dc124f SIG |
5025 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5026 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
5027 | M: Jens Taprogge <[email protected]> | |
5028 | M: Greg Kroah-Hartman <[email protected]> | |
5029 | L: [email protected] | |
5030 | W: http://industrypack.sourceforge.net | |
5031 | S: Maintained | |
5032 | F: drivers/ipack/ | |
5033 | ||
8adc53fd ZLK |
5034 | INGENIC JZ4780 DMA Driver |
5035 | M: Zubair Lutfullah Kakakhel <[email protected]> | |
5036 | S: Maintained | |
5037 | F: drivers/dma/dma-jz4780.c | |
5038 | ||
aa7168f4 | 5039 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 5040 | M: Mimi Zohar <[email protected]> |
bfd33c4b | 5041 | M: Dmitry Kasatkin <[email protected]> |
74dd744f MZ |
5042 | L: [email protected] |
5043 | L: [email protected] | |
5044 | L: [email protected] | |
aa7168f4 | 5045 | S: Supported |
679655da | 5046 | F: security/integrity/ima/ |
aa7168f4 | 5047 | |
9a4ea5a9 JH |
5048 | IMGTEC IR DECODER DRIVER |
5049 | M: James Hogan <[email protected]> | |
5050 | S: Maintained | |
5051 | F: drivers/media/rc/img-ir/ | |
5052 | ||
1da177e4 | 5053 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 5054 | L: [email protected] |
843393d3 | 5055 | S: Orphan |
8a61f013 | 5056 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
5057 | |
5058 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 5059 | M: Doug Ledford <[email protected]> |
8b58be88 JP |
5060 | M: Sean Hefty <[email protected]> |
5061 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 5062 | L: [email protected] |
605841f5 | 5063 | W: http://www.openfabrics.org/ |
8a6e2535 | 5064 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 5065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 5066 | S: Supported |
679655da JP |
5067 | F: Documentation/infiniband/ |
5068 | F: drivers/infiniband/ | |
c117ab84 | 5069 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
5070 | F: include/uapi/rdma/ |
5071 | F: include/rdma/ | |
1da177e4 | 5072 | |
c9f04f58 | 5073 | INOTIFY |
8b58be88 JP |
5074 | M: John McCutchan <[email protected]> |
5075 | M: Robert Love <[email protected]> | |
5076 | M: Eric Paris <[email protected]> | |
c9f04f58 | 5077 | S: Maintained |
679655da JP |
5078 | F: Documentation/filesystems/inotify.txt |
5079 | F: fs/notify/inotify/ | |
5080 | F: include/linux/inotify.h | |
c117ab84 | 5081 | F: include/uapi/linux/inotify.h |
c9f04f58 | 5082 | |
e2d1d6c0 | 5083 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 5084 | M: Dmitry Torokhov <[email protected]> |
e2d1d6c0 | 5085 | L: [email protected] |
8a6e2535 | 5086 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 5087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 5088 | S: Maintained |
679655da | 5089 | F: drivers/input/ |
f4eea7e2 | 5090 | F: include/linux/input.h |
c117ab84 | 5091 | F: include/uapi/linux/input.h |
f4eea7e2 | 5092 | F: include/linux/input/ |
e2d1d6c0 | 5093 | |
3267a87f | 5094 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 5095 | M: Henrik Rydberg <[email protected]> |
3267a87f | 5096 | L: [email protected] |
7f9c2454 | 5097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
75dd112a | 5098 | S: Odd fixes |
3267a87f | 5099 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 5100 | F: drivers/input/input-mt.c |
3267a87f HR |
5101 | K: \b(ABS|SYN)_MT_ |
5102 | ||
97fa99a3 JY |
5103 | INTEL ASoC BDW/HSW DRIVERS |
5104 | M: Jie Yang <[email protected]> | |
5105 | L: [email protected] | |
5106 | S: Supported | |
5107 | F: sound/soc/intel/sst-haswell* | |
5108 | F: sound/soc/intel/sst-dsp* | |
5109 | F: sound/soc/intel/sst-firmware.c | |
5110 | F: sound/soc/intel/broadwell.c | |
5111 | F: sound/soc/intel/haswell.c | |
5112 | ||
4ac13e17 DJ |
5113 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
5114 | M: Intel SCU Linux support <[email protected]> | |
fdc5813f | 5115 | M: Artur Paszkiewicz <[email protected]> |
4ac13e17 | 5116 | L: [email protected] |
7106891a DJ |
5117 | T: git git://git.code.sf.net/p/intel-sas/isci |
5118 | S: Supported | |
4ac13e17 | 5119 | F: drivers/scsi/isci/ |
4ac13e17 | 5120 | |
26717172 LB |
5121 | INTEL IDLE DRIVER |
5122 | M: Len Brown <[email protected]> | |
bf1c138e | 5123 | L: [email protected] |
08deed1e | 5124 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
5125 | S: Supported |
5126 | F: drivers/idle/intel_idle.c | |
5127 | ||
7c1ac18d KCA |
5128 | INTEL PSTATE DRIVER |
5129 | M: Kristen Carlson Accardi <[email protected]> | |
5130 | L: [email protected] | |
5131 | S: Supported | |
5132 | F: drivers/cpufreq/intel_pstate.c | |
5133 | ||
9eb8ef74 | 5134 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 5135 | M: Maik Broemme <[email protected]> |
c69f677c | 5136 | L: [email protected] |
ce00f85c | 5137 | S: Maintained |
679655da | 5138 | F: Documentation/fb/intelfb.txt |
8a61f013 | 5139 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 5140 | |
1da177e4 | 5141 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 5142 | M: Antonino Daplas <[email protected]> |
c69f677c | 5143 | L: [email protected] |
ce00f85c | 5144 | S: Maintained |
8a61f013 | 5145 | F: drivers/video/fbdev/i810/ |
1da177e4 | 5146 | |
f4a9bc4c | 5147 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 5148 | M: Sujith Thomas <[email protected]> |
d0944853 | 5149 | L: [email protected] |
5ca92bd9 | 5150 | W: https://01.org/linux-acpi |
f4a9bc4c | 5151 | S: Supported |
679655da | 5152 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 5153 | |
1da177e4 | 5154 | INTEL IA32 MICROCODE UPDATE SUPPORT |
ca68a525 | 5155 | M: Borislav Petkov <[email protected]> |
1da177e4 | 5156 | S: Maintained |
73d425fd JP |
5157 | F: arch/x86/kernel/cpu/microcode/core* |
5158 | F: arch/x86/kernel/cpu/microcode/intel* | |
1da177e4 | 5159 | |
248a9dc3 | 5160 | INTEL I/OAT DMA DRIVER |
18ebd564 | 5161 | M: Dave Jiang <[email protected]> |
08223d80 | 5162 | R: Dan Williams <[email protected]> |
18ebd564 DJ |
5163 | L: [email protected] |
5164 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
5165 | S: Supported | |
679655da | 5166 | F: drivers/dma/ioat* |
248a9dc3 | 5167 | |
6c8909b4 | 5168 | INTEL IOMMU (VT-d) |
8b58be88 | 5169 | M: David Woodhouse <[email protected]> |
6c8909b4 | 5170 | L: [email protected] |
54e5881d | 5171 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 5172 | S: Supported |
3fb39615 | 5173 | F: drivers/iommu/intel-iommu.c |
679655da | 5174 | F: include/linux/intel-iommu.h |
6c8909b4 | 5175 | |
b3e5f263 | 5176 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 5177 | R: Dan Williams <[email protected]> |
1dd8372d | 5178 | S: Odd fixes |
679655da | 5179 | F: drivers/dma/iop-adma.c |
b3e5f263 | 5180 | |
9251ce95 | 5181 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 5182 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 5183 | S: Maintained |
679655da JP |
5184 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
5185 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
5186 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
5187 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 5188 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 5189 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 5190 | |
844dd05f | 5191 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 5192 | M: Deepak Saxena <[email protected]> |
844dd05f | 5193 | S: Maintained |
679655da | 5194 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 5195 | |
2f302324 | 5196 | INTEL ETHERNET DRIVERS |
8b58be88 | 5197 | M: Jeff Kirsher <[email protected]> |
2f302324 JK |
5198 | R: Jesse Brandeburg <[email protected]> |
5199 | R: Shannon Nelson <[email protected]> | |
5200 | R: Carolyn Wyborny <[email protected]> | |
5201 | R: Don Skidmore <[email protected]> | |
5202 | R: Matthew Vick <[email protected]> | |
5203 | R: John Ronciak <[email protected]> | |
5204 | R: Mitch Williams <[email protected]> | |
5205 | L: [email protected] | |
f6fde11a | 5206 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 5207 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
5208 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
5209 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
5210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 5211 | S: Supported |
0d164401 JK |
5212 | F: Documentation/networking/e100.txt |
5213 | F: Documentation/networking/e1000.txt | |
5214 | F: Documentation/networking/e1000e.txt | |
5215 | F: Documentation/networking/igb.txt | |
5216 | F: Documentation/networking/igbvf.txt | |
5217 | F: Documentation/networking/ixgb.txt | |
5218 | F: Documentation/networking/ixgbe.txt | |
5219 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 5220 | F: Documentation/networking/i40e.txt |
105bf2fe | 5221 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 5222 | F: drivers/net/ethernet/intel/ |
bc90d291 | 5223 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 5224 | |
0963d59b LW |
5225 | INTEL-MID GPIO DRIVER |
5226 | M: David Cohen <[email protected]> | |
5227 | L: [email protected] | |
5228 | S: Maintained | |
5229 | F: drivers/gpio/gpio-intel-mid.c | |
5230 | ||
ca907a90 SY |
5231 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
5232 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 5233 | L: [email protected] |
ca907a90 | 5234 | S: Maintained |
679655da | 5235 | F: Documentation/networking/README.ipw2100 |
679655da | 5236 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 5237 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 5238 | |
4bd96a7a | 5239 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
5240 | M: Richard L Maliszewski <[email protected]> |
5241 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
5242 | M: Shane Wang <[email protected]> |
5243 | L: [email protected] | |
5244 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 5245 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
5246 | S: Supported |
5247 | F: Documentation/intel_txt.txt | |
5248 | F: include/linux/tboot.h | |
5249 | F: arch/x86/kernel/tboot.c | |
5250 | ||
8a70da82 | 5251 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 5252 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 | 5253 | M: [email protected] |
49e7d9df | 5254 | L: [email protected] (subscribers-only) |
8a70da82 IPG |
5255 | S: Supported |
5256 | W: http://linuxwimax.org | |
679655da JP |
5257 | F: Documentation/wimax/README.i2400m |
5258 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 5259 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 5260 | |
1c0ce89c SG |
5261 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
5262 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 5263 | L: [email protected] |
1c0ce89c | 5264 | S: Supported |
efa3144e WYG |
5265 | F: drivers/net/wireless/iwlegacy/ |
5266 | ||
b481de9c | 5267 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 5268 | M: Johannes Berg <[email protected]> |
6161b02b | 5269 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 5270 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 5271 | L: [email protected] |
b481de9c | 5272 | W: http://intellinuxwireless.org |
b62ff718 | 5273 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 5274 | S: Supported |
679655da | 5275 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 5276 | |
de8fe023 TW |
5277 | INTEL MANAGEMENT ENGINE (mei) |
5278 | M: Tomas Winkler <[email protected]> | |
5279 | L: [email protected] | |
5280 | S: Supported | |
c117ab84 | 5281 | F: include/uapi/linux/mei.h |
de8fe023 | 5282 | F: drivers/misc/mei/* |
e07950a1 | 5283 | F: Documentation/misc-devices/mei/* |
de8fe023 | 5284 | |
cb109a0e | 5285 | IOC3 ETHERNET DRIVER |
8b58be88 | 5286 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
5287 | L: [email protected] |
5288 | S: Maintained | |
8862bf1e | 5289 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 5290 | |
cb109a0e | 5291 | IOC3 SERIAL DRIVER |
8b58be88 | 5292 | M: Pat Gefre <[email protected]> |
d39e0721 | 5293 | L: [email protected] |
cb109a0e | 5294 | S: Maintained |
df621252 | 5295 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 5296 | |
0b6e8569 SW |
5297 | IOMMU DRIVERS |
5298 | M: Joerg Roedel <[email protected]> | |
5299 | L: [email protected] | |
5300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
5301 | S: Maintained | |
5302 | F: drivers/iommu/ | |
5303 | ||
4480f15b | 5304 | IP MASQUERADING |
8b58be88 | 5305 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 5306 | S: Maintained |
679655da | 5307 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 5308 | |
1202d6ff | 5309 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
5310 | M: Francois Romieu <[email protected]> |
5311 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
5312 | L: [email protected] |
5313 | S: Maintained | |
7443713a | 5314 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 5315 | |
4480f15b | 5316 | IPATH DRIVER |
8473c603 | 5317 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 5318 | L: [email protected] |
52a09a04 | 5319 | S: Maintained |
679655da | 5320 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 5321 | |
4409ebe9 | 5322 | IPMI SUBSYSTEM |
8b58be88 | 5323 | M: Corey Minyard <[email protected]> |
b0c90653 | 5324 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
5325 | W: http://openipmi.sourceforge.net/ |
5326 | S: Supported | |
679655da JP |
5327 | F: Documentation/IPMI.txt |
5328 | F: drivers/char/ipmi/ | |
5329 | F: include/linux/ipmi* | |
c117ab84 | 5330 | F: include/uapi/linux/ipmi* |
4409ebe9 | 5331 | |
2d800897 KW |
5332 | QCOM AUDIO (ASoC) DRIVERS |
5333 | M: Patrick Lai <[email protected]> | |
5334 | M: Banajit Goswami <[email protected]> | |
5335 | L: [email protected] (moderated for non-subscribers) | |
5336 | S: Supported | |
5337 | F: sound/soc/qcom/ | |
5338 | ||
e2d1d6c0 | 5339 | IPS SCSI RAID DRIVER |
8b58be88 | 5340 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
5341 | L: [email protected] |
5342 | W: http://www.adaptec.com/ | |
5343 | S: Maintained | |
679655da | 5344 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
5345 | |
5346 | IPVS | |
8b58be88 JP |
5347 | M: Wensong Zhang <[email protected]> |
5348 | M: Simon Horman <[email protected]> | |
5349 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 5350 | L: [email protected] |
e2d1d6c0 | 5351 | L: [email protected] |
1da177e4 | 5352 | S: Maintained |
679655da | 5353 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 5354 | F: include/net/ip_vs.h |
c117ab84 | 5355 | F: include/uapi/linux/ip_vs.h |
679655da | 5356 | F: net/netfilter/ipvs/ |
1da177e4 | 5357 | |
e7839f25 | 5358 | IPWIRELESS DRIVER |
8b58be88 JP |
5359 | M: Jiri Kosina <[email protected]> |
5360 | M: David Sterba <[email protected]> | |
92094aa0 | 5361 | S: Odd Fixes |
282361a0 | 5362 | F: drivers/tty/ipwireless/ |
099dc4fb | 5363 | |
e2d1d6c0 | 5364 | IPX NETWORK LAYER |
8b58be88 | 5365 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
5366 | L: [email protected] |
5367 | S: Maintained | |
679655da | 5368 | F: include/net/ipx.h |
c117ab84 | 5369 | F: include/uapi/linux/ipx.h |
679655da | 5370 | F: net/ipx/ |
e2d1d6c0 | 5371 | |
1da177e4 | 5372 | IRDA SUBSYSTEM |
8b58be88 | 5373 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 5374 | L: [email protected] (subscribers-only) |
ced649ea | 5375 | L: [email protected] |
1da177e4 | 5376 | W: http://irda.sourceforge.net/ |
f353976d | 5377 | S: Maintained |
e0057975 | 5378 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
5379 | F: Documentation/networking/irda.txt |
5380 | F: drivers/net/irda/ | |
5381 | F: include/net/irda/ | |
5382 | F: net/irda/ | |
1da177e4 | 5383 | |
a800c7cc TG |
5384 | IRQ SUBSYSTEM |
5385 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 5386 | L: [email protected] |
a800c7cc | 5387 | S: Maintained |
75fc2d37 | 5388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 5389 | F: kernel/irq/ |
2ed9fd28 JC |
5390 | |
5391 | IRQCHIP DRIVERS | |
5392 | M: Thomas Gleixner <[email protected]> | |
5393 | M: Jason Cooper <[email protected]> | |
5394 | L: [email protected] | |
5395 | S: Maintained | |
5396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5397 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 5398 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 5399 | F: drivers/irqchip/ |
a800c7cc | 5400 | |
7ab3a837 GL |
5401 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
5402 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
5403 | S: Maintained |
5404 | F: Documentation/IRQ-domain.txt | |
5405 | F: include/linux/irqdomain.h | |
5406 | F: kernel/irq/irqdomain.c | |
5407 | ||
e2d1d6c0 | 5408 | ISAPNP |
8b58be88 | 5409 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 5410 | S: Maintained |
679655da JP |
5411 | F: Documentation/isapnp.txt |
5412 | F: drivers/pnp/isapnp/ | |
5413 | F: include/linux/isapnp.h | |
e2d1d6c0 | 5414 | |
d39b8420 HV |
5415 | ISA RADIO MODULE |
5416 | M: Hans Verkuil <[email protected]> | |
5417 | L: [email protected] | |
5418 | T: git git://linuxtv.org/media_tree.git | |
5419 | W: http://linuxtv.org | |
5420 | S: Maintained | |
5421 | F: drivers/media/radio/radio-isa* | |
5422 | ||
71a6d0af HW |
5423 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5424 | M: Peter Jones <[email protected]> | |
5425 | M: Konrad Rzeszutek Wilk <[email protected]> | |
5426 | S: Maintained | |
5427 | F: drivers/firmware/iscsi_ibft* | |
5428 | ||
14816b1e | 5429 | ISCSI |
8b58be88 | 5430 | M: Mike Christie <[email protected]> |
14816b1e MC |
5431 | L: [email protected] |
5432 | W: www.open-iscsi.org | |
54e5881d | 5433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5434 | S: Maintained |
679655da JP |
5435 | F: drivers/scsi/*iscsi* |
5436 | F: include/scsi/*iscsi* | |
14816b1e | 5437 | |
1e65eb42 OG |
5438 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5439 | M: Or Gerlitz <[email protected]> | |
b261aeaf | 5440 | M: Sagi Grimberg <[email protected]> |
1e65eb42 OG |
5441 | M: Roi Dayan <[email protected]> |
5442 | L: [email protected] | |
5443 | S: Supported | |
5444 | W: http://www.openfabrics.org | |
5445 | W: www.open-iscsi.org | |
5446 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5447 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5448 | |
2b70e5fd SG |
5449 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
5450 | M: Sagi Grimberg <[email protected]> | |
5451 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master | |
5452 | L: [email protected] | |
5453 | L: [email protected] | |
5454 | S: Supported | |
5455 | W: http://www.linux-iscsi.org | |
5456 | F: drivers/infiniband/ulp/isert | |
5457 | ||
1da177e4 | 5458 | ISDN SUBSYSTEM |
8b58be88 | 5459 | M: Karsten Keil <[email protected]> |
d5d52273 | 5460 | L: [email protected] (subscribers-only) |
3da0ae62 | 5461 | L: [email protected] |
1da177e4 | 5462 | W: http://www.isdn4linux.de |
54e5881d | 5463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5464 | S: Maintained |
679655da JP |
5465 | F: Documentation/isdn/ |
5466 | F: drivers/isdn/ | |
5467 | F: include/linux/isdn.h | |
5468 | F: include/linux/isdn/ | |
c117ab84 CEB |
5469 | F: include/uapi/linux/isdn.h |
5470 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5471 | |
5472 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5473 | M: Armin Schindler <[email protected]> |
d5d52273 | 5474 | L: [email protected] (subscribers-only) |
1da177e4 LT |
5475 | W: http://www.melware.de |
5476 | S: Maintained | |
679655da | 5477 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5478 | |
d624870f | 5479 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 5480 | M: Jean Delvare <[email protected]> |
d624870f JD |
5481 | L: [email protected] |
5482 | S: Maintained | |
5483 | F: Documentation/hwmon/it87 | |
5484 | F: drivers/hwmon/it87.c | |
5485 | ||
d7104bff AP |
5486 | IT913X MEDIA DRIVER |
5487 | M: Antti Palosaari <[email protected]> | |
5488 | L: [email protected] | |
5489 | W: http://linuxtv.org/ | |
5490 | W: http://palosaari.fi/linux/ | |
5491 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5492 | T: git git://linuxtv.org/anttip/media_tree.git | |
5493 | S: Maintained | |
249c697e | 5494 | F: drivers/media/tuners/it913x* |
d7104bff | 5495 | |
91821ff3 | 5496 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 5497 | M: Andy Walls <[email protected]> |
7b212edf | 5498 | L: [email protected] (subscribers-only) |
661263b5 | 5499 | L: [email protected] |
275ffde4 | 5500 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
5501 | W: http://www.ivtvdriver.org |
5502 | S: Maintained | |
679655da | 5503 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 5504 | F: drivers/media/pci/ivtv/ |
c117ab84 | 5505 | F: include/uapi/linux/ivtv* |
91821ff3 | 5506 | |
68620bdd MP |
5507 | IX2505V MEDIA DRIVER |
5508 | M: Malcolm Priestley <[email protected]> | |
5509 | L: [email protected] | |
5510 | W: http://linuxtv.org/ | |
5511 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5512 | S: Maintained | |
5513 | F: drivers/media/dvb-frontends/ix2505v* | |
5514 | ||
4453d736 GR |
5515 | JC42.4 TEMPERATURE SENSOR DRIVER |
5516 | M: Guenter Roeck <[email protected]> | |
5517 | L: [email protected] | |
5518 | S: Maintained | |
5519 | F: drivers/hwmon/jc42.c | |
5520 | F: Documentation/hwmon/jc42 | |
5521 | ||
e2d1d6c0 | 5522 | JFS FILESYSTEM |
3256f80f | 5523 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
5524 | L: [email protected] |
5525 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5526 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5527 | S: Maintained |
679655da JP |
5528 | F: Documentation/filesystems/jfs.txt |
5529 | F: fs/jfs/ | |
e2d1d6c0 | 5530 | |
95252236 | 5531 | JME NETWORK DRIVER |
8b58be88 | 5532 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
5533 | L: [email protected] |
5534 | S: Maintained | |
63d24a0e | 5535 | F: drivers/net/ethernet/jme.* |
95252236 | 5536 | |
1da177e4 | 5537 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5538 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
5539 | L: [email protected] |
5540 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5541 | S: Maintained |
679655da | 5542 | F: fs/jffs2/ |
c117ab84 | 5543 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5544 | |
de456d37 | 5545 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 5546 | M: Andrew Morton <[email protected]> |
19003c18 | 5547 | M: Jan Kara <[email protected]> |
72be2ccf | 5548 | L: [email protected] |
ae0718f8 | 5549 | S: Maintained |
d183e11a | 5550 | F: fs/jbd/ |
d183e11a TT |
5551 | F: include/linux/jbd.h |
5552 | ||
5553 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
5554 | M: "Theodore Ts'o" <[email protected]> | |
5555 | L: [email protected] | |
5556 | S: Maintained | |
5557 | F: fs/jbd2/ | |
5558 | F: include/linux/jbd2.h | |
ae0718f8 | 5559 | |
fd8b6cb4 | 5560 | JSM Neo PCI based serial card |
9d141cb9 | 5561 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
5562 | L: [email protected] |
5563 | S: Maintained | |
df621252 | 5564 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5565 | |
af39917d CL |
5566 | K10TEMP HARDWARE MONITORING DRIVER |
5567 | M: Clemens Ladisch <[email protected]> | |
5568 | L: [email protected] | |
5569 | S: Maintained | |
5570 | F: Documentation/hwmon/k10temp | |
5571 | F: drivers/hwmon/k10temp.c | |
5572 | ||
4660cb35 | 5573 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5574 | M: Rudolf Marek <[email protected]> |
4660cb35 | 5575 | L: [email protected] |
ae0718f8 | 5576 | S: Maintained |
679655da JP |
5577 | F: Documentation/hwmon/k8temp |
5578 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5579 | |
1da177e4 | 5580 | KCONFIG |
5eb1f99e | 5581 | M: "Yann E. MORIN" <[email protected]> |
347d12d7 | 5582 | L: [email protected] |
cea8321c | 5583 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5584 | S: Maintained |
679655da JP |
5585 | F: Documentation/kbuild/kconfig-language.txt |
5586 | F: scripts/kconfig/ | |
1da177e4 | 5587 | |
ea6c2089 | 5588 | KDUMP |
8b58be88 JP |
5589 | M: Vivek Goyal <[email protected]> |
5590 | M: Haren Myneni <[email protected]> | |
34633993 | 5591 | L: [email protected] |
ea6c2089 VG |
5592 | W: http://lse.sourceforge.net/kdump/ |
5593 | S: Maintained | |
80811493 | 5594 | F: Documentation/kdump/ |
ea6c2089 | 5595 | |
f41bf02f HV |
5596 | KEENE FM RADIO TRANSMITTER DRIVER |
5597 | M: Hans Verkuil <[email protected]> | |
5598 | L: [email protected] | |
5599 | T: git git://linuxtv.org/media_tree.git | |
5600 | W: http://linuxtv.org | |
5601 | S: Maintained | |
5602 | F: drivers/media/radio/radio-keene* | |
5603 | ||
1da177e4 | 5604 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5605 | M: Ian Kent <[email protected]> |
f694fc97 | 5606 | L: [email protected] |
1da177e4 | 5607 | S: Maintained |
679655da | 5608 | F: fs/autofs4/ |
1da177e4 | 5609 | |
70fb7ba6 | 5610 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 5611 | M: Michal Marek <[email protected]> |
08deed1e JP |
5612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5614 | L: [email protected] |
5ce45962 | 5615 | S: Maintained |
679655da JP |
5616 | F: Documentation/kbuild/ |
5617 | F: Makefile | |
5618 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5619 | F: scripts/basic/ |
5620 | F: scripts/mk* | |
5621 | F: scripts/package/ | |
1da177e4 LT |
5622 | |
5623 | KERNEL JANITORS | |
c3000e03 | 5624 | L: [email protected] |
10466f5a | 5625 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5626 | S: Odd Fixes |
1da177e4 | 5627 | |
e8b43555 | 5628 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5629 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 5630 | L: [email protected] |
1da177e4 | 5631 | W: http://nfs.sourceforge.net/ |
98fac23f | 5632 | S: Supported |
679655da | 5633 | F: fs/nfsd/ |
c117ab84 | 5634 | F: include/uapi/linux/nfsd/ |
679655da JP |
5635 | F: fs/lockd/ |
5636 | F: fs/nfs_common/ | |
5637 | F: net/sunrpc/ | |
5638 | F: include/linux/lockd/ | |
5639 | F: include/linux/sunrpc/ | |
c117ab84 | 5640 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5641 | |
13b122b3 SK |
5642 | KERNEL SELFTEST FRAMEWORK |
5643 | M: Shuah Khan <[email protected]> | |
5644 | L: [email protected] | |
5645 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest | |
5646 | S: Maintained | |
5647 | F: tools/testing/selftests | |
5648 | ||
426d62e2 | 5649 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5650 | M: Gleb Natapov <[email protected]> |
c93a64fe | 5651 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 5652 | L: [email protected] |
e3e58478 | 5653 | W: http://www.linux-kvm.org |
a94b40a6 | 5654 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5655 | S: Supported |
c93a64fe PB |
5656 | F: Documentation/*/kvm*.txt |
5657 | F: Documentation/virtual/kvm/ | |
679655da | 5658 | F: arch/*/kvm/ |
1662e862 CB |
5659 | F: arch/x86/kernel/kvm.c |
5660 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
5661 | F: arch/*/include/asm/kvm* |
5662 | F: include/linux/kvm* | |
c117ab84 | 5663 | F: include/uapi/linux/kvm* |
679655da | 5664 | F: virt/kvm/ |
426d62e2 | 5665 | |
ad8003d3 | 5666 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5667 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
5668 | L: [email protected] |
5669 | W: http://kvm.qumranet.com | |
7de609c8 | 5670 | S: Maintained |
679655da | 5671 | F: arch/x86/include/asm/svm.h |
679655da | 5672 | F: arch/x86/kvm/svm.c |
426d62e2 | 5673 | |
513014b7 | 5674 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5675 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
5676 | L: [email protected] |
5677 | W: http://kvm.qumranet.com | |
6a7f972d | 5678 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5679 | S: Supported |
679655da JP |
5680 | F: arch/powerpc/include/asm/kvm* |
5681 | F: arch/powerpc/kvm/ | |
513014b7 | 5682 | |
85f8fffe | 5683 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5684 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 5685 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
5686 | M: [email protected] |
5687 | L: [email protected] | |
5688 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5689 | S: Supported | |
679655da JP |
5690 | F: Documentation/s390/kvm.txt |
5691 | F: arch/s390/include/asm/kvm* | |
80811493 | 5692 | F: arch/s390/kvm/ |
a968cd3e | 5693 | F: drivers/s390/kvm/ |
85f8fffe | 5694 | |
a749474d | 5695 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5696 | M: Christoffer Dall <[email protected]> |
5c8818b4 MZ |
5697 | M: Marc Zyngier <[email protected]> |
5698 | L: [email protected] (moderated for non-subscribers) | |
a749474d CD |
5699 | L: [email protected] |
5700 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5701 | S: Supported |
a749474d CD |
5702 | F: arch/arm/include/uapi/asm/kvm* |
5703 | F: arch/arm/include/asm/kvm* | |
5704 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5705 | F: virt/kvm/arm/ |
5706 | F: include/kvm/arm_* | |
a749474d | 5707 | |
6394a3ec | 5708 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5709 | M: Christoffer Dall <[email protected]> |
6394a3ec MZ |
5710 | M: Marc Zyngier <[email protected]> |
5711 | L: [email protected] (moderated for non-subscribers) | |
5712 | L: [email protected] | |
5713 | S: Maintained | |
5714 | F: arch/arm64/include/uapi/asm/kvm* | |
5715 | F: arch/arm64/include/asm/kvm* | |
5716 | F: arch/arm64/kvm/ | |
5717 | ||
dc009d92 | 5718 | KEXEC |
8b58be88 | 5719 | M: Eric Biederman <[email protected]> |
2f327dad | 5720 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5721 | L: [email protected] |
dc009d92 | 5722 | S: Maintained |
679655da | 5723 | F: include/linux/kexec.h |
c117ab84 | 5724 | F: include/uapi/linux/kexec.h |
679655da | 5725 | F: kernel/kexec.c |
dc009d92 | 5726 | |
e971461f DH |
5727 | KEYS/KEYRINGS: |
5728 | M: David Howells <[email protected]> | |
5729 | L: [email protected] | |
5730 | S: Maintained | |
d410fa4e | 5731 | F: Documentation/security/keys.txt |
e971461f DH |
5732 | F: include/linux/key.h |
5733 | F: include/linux/key-type.h | |
5734 | F: include/keys/ | |
5735 | F: security/keys/ | |
5736 | ||
7f3c68be | 5737 | KEYS-TRUSTED |
74dd744f MZ |
5738 | M: David Safford <[email protected]> |
5739 | M: Mimi Zohar <[email protected]> | |
7f3c68be MZ |
5740 | L: [email protected] |
5741 | L: [email protected] | |
5742 | S: Supported | |
d410fa4e | 5743 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5744 | F: include/keys/trusted-type.h |
5745 | F: security/keys/trusted.c | |
5746 | F: security/keys/trusted.h | |
5747 | ||
5748 | KEYS-ENCRYPTED | |
74dd744f MZ |
5749 | M: Mimi Zohar <[email protected]> |
5750 | M: David Safford <[email protected]> | |
7f3c68be MZ |
5751 | L: [email protected] |
5752 | L: [email protected] | |
5753 | S: Supported | |
d410fa4e | 5754 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5755 | F: include/keys/encrypted-type.h |
19c90aa6 | 5756 | F: security/keys/encrypted-keys/ |
7f3c68be | 5757 | |
5b778dad | 5758 | KGDB / KDB /debug_core |
8b58be88 | 5759 | M: Jason Wessel <[email protected]> |
4063eb5f | 5760 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5761 | L: [email protected] |
5762 | S: Maintained | |
679655da JP |
5763 | F: Documentation/DocBook/kgdb.tmpl |
5764 | F: drivers/misc/kgdbts.c | |
df621252 | 5765 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5766 | F: include/linux/kdb.h |
679655da | 5767 | F: include/linux/kgdb.h |
4063eb5f | 5768 | F: kernel/debug/ |
e3e2aaf7 | 5769 | |
456db8cc | 5770 | KMEMCHECK |
8b58be88 | 5771 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 5772 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 5773 | S: Maintained |
410d7a97 JP |
5774 | F: Documentation/kmemcheck.txt |
5775 | F: arch/x86/include/asm/kmemcheck.h | |
5776 | F: arch/x86/mm/kmemcheck/ | |
5777 | F: include/linux/kmemcheck.h | |
5778 | F: mm/kmemcheck.c | |
b9ce08c0 | 5779 | |
c3bb4d24 | 5780 | KMEMLEAK |
8b58be88 | 5781 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
5782 | S: Maintained |
5783 | F: Documentation/kmemleak.txt | |
5784 | F: include/linux/kmemleak.h | |
5785 | F: mm/kmemleak.c | |
5786 | F: mm/kmemleak-test.c | |
5787 | ||
89559a61 | 5788 | KPROBES |
8b58be88 JP |
5789 | M: Ananth N Mavinakayanahalli <[email protected]> |
5790 | M: Anil S Keshavamurthy <[email protected]> | |
5791 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 5792 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 5793 | S: Maintained |
679655da JP |
5794 | F: Documentation/kprobes.txt |
5795 | F: include/linux/kprobes.h | |
5796 | F: kernel/kprobes.c | |
89559a61 | 5797 | |
70e84049 | 5798 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5799 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
5800 | W: http://miguelojeda.es/auxdisplay.htm |
5801 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5802 | S: Maintained |
679655da JP |
5803 | F: Documentation/auxdisplay/ks0108 |
5804 | F: drivers/auxdisplay/ks0108.c | |
5805 | F: include/linux/ks0108.h | |
70e84049 | 5806 | |
1da177e4 | 5807 | LAPB module |
1da177e4 | 5808 | L: [email protected] |
bf9915cc | 5809 | S: Orphan |
679655da JP |
5810 | F: Documentation/networking/lapb-module.txt |
5811 | F: include/*/lapb.h | |
5812 | F: net/lapb/ | |
1da177e4 LT |
5813 | |
5814 | LASI 53c700 driver for PARISC | |
8b58be88 | 5815 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5816 | L: [email protected] |
5817 | S: Maintained | |
679655da JP |
5818 | F: Documentation/scsi/53c700.txt |
5819 | F: drivers/scsi/53c700* | |
1da177e4 | 5820 | |
263de9b5 | 5821 | LED SUBSYSTEM |
c772fc26 | 5822 | M: Bryan Wu <[email protected]> |
8b58be88 | 5823 | M: Richard Purdie <[email protected]> |
48b945a1 | 5824 | M: Jacek Anaszewski <[email protected]> |
aa69cb8c BW |
5825 | L: [email protected] |
5826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5827 | S: Maintained |
679655da JP |
5828 | F: drivers/leds/ |
5829 | F: include/linux/leds.h | |
263de9b5 | 5830 | |
b0461a44 | 5831 | LEGACY EEPROM DRIVER |
7c81c60f | 5832 | M: Jean Delvare <[email protected]> |
b0461a44 JD |
5833 | S: Maintained |
5834 | F: Documentation/misc-devices/eeprom | |
5835 | F: drivers/misc/eeprom/eeprom.c | |
5836 | ||
1da177e4 | 5837 | LEGO USB Tower driver |
8b58be88 | 5838 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
5839 | L: [email protected] |
5840 | W: http://legousb.sourceforge.net/ | |
5841 | S: Maintained | |
679655da | 5842 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5843 | |
055616a8 MK |
5844 | LG2160 MEDIA DRIVER |
5845 | M: Michael Krufky <[email protected]> | |
5846 | L: [email protected] | |
5847 | W: http://linuxtv.org/ | |
5848 | W: http://github.com/mkrufky | |
5849 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5850 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5851 | S: Maintained | |
5852 | F: drivers/media/dvb-frontends/lg2160.* | |
5853 | ||
6f0e7725 MK |
5854 | LGDT3305 MEDIA DRIVER |
5855 | M: Michael Krufky <[email protected]> | |
5856 | L: [email protected] | |
5857 | W: http://linuxtv.org/ | |
5858 | W: http://github.com/mkrufky | |
5859 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5860 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5861 | S: Maintained | |
5862 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5863 | ||
568a17ff | 5864 | LGUEST |
8b58be88 | 5865 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5866 | L: [email protected] |
568a17ff | 5867 | W: http://lguest.ozlabs.org/ |
72e91863 | 5868 | S: Odd Fixes |
070f420b | 5869 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5870 | F: arch/x86/lguest/ |
5871 | F: drivers/lguest/ | |
5872 | F: include/linux/lguest*.h | |
070f420b | 5873 | F: tools/lguest/ |
568a17ff | 5874 | |
32ac7cb2 TH |
5875 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
5876 | M: Tejun Heo <[email protected]> | |
5877 | L: [email protected] | |
5878 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
5879 | S: Maintained | |
5880 | F: drivers/ata/ | |
5881 | F: include/linux/ata.h | |
5882 | F: include/linux/libata.h | |
5883 | ||
5884 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
5885 | M: Viresh Kumar <[email protected]> | |
5886 | L: [email protected] | |
5887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
5888 | S: Maintained | |
5889 | F: include/linux/pata_arasan_cf_data.h | |
5890 | F: drivers/ata/pata_arasan_cf.c | |
5891 | ||
c7fa056c BZ |
5892 | LIBATA PATA DRIVERS |
5893 | M: Bartlomiej Zolnierkiewicz <[email protected]> | |
5894 | M: Tejun Heo <[email protected]> | |
5895 | L: [email protected] | |
5896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
5897 | S: Maintained | |
5898 | F: drivers/ata/pata_*.c | |
5899 | F: drivers/ata/ata_generic.c | |
5900 | ||
32ac7cb2 TH |
5901 | LIBATA SATA AHCI PLATFORM devices support |
5902 | M: Hans de Goede <[email protected]> | |
5903 | M: Tejun Heo <[email protected]> | |
5904 | L: [email protected] | |
5905 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
5906 | S: Maintained | |
5907 | F: drivers/ata/ahci_platform.c | |
5908 | F: drivers/ata/libahci_platform.c | |
5909 | F: include/linux/ahci_platform.h | |
5910 | ||
5911 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
5912 | M: Mikael Pettersson <[email protected]> | |
5913 | L: [email protected] | |
5914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
5915 | S: Maintained | |
5916 | F: drivers/ata/sata_promise.* | |
5917 | ||
1acd437c SL |
5918 | LIBLOCKDEP |
5919 | M: Sasha Levin <[email protected]> | |
5920 | S: Maintained | |
5921 | F: tools/lib/lockdep/ | |
5922 | ||
1da177e4 | 5923 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5924 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5925 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5926 | S: Supported | |
11c34c7d | 5927 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5928 | |
852bb9f5 | 5929 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5930 | M: Benjamin Herrenschmidt <[email protected]> |
5931 | M: Paul Mackerras <[email protected]> | |
ea668936 | 5932 | M: Michael Ellerman <[email protected]> |
1da177e4 | 5933 | W: http://www.penguinppc.org/ |
a4724ed6 | 5934 | L: [email protected] |
8a6e2535 | 5935 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5937 | S: Supported |
11c34c7d JP |
5938 | F: Documentation/powerpc/ |
5939 | F: arch/powerpc/ | |
1da177e4 LT |
5940 | |
5941 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5942 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5943 | W: http://www.penguinppc.org/ |
a4724ed6 | 5944 | L: [email protected] |
1da177e4 | 5945 | S: Maintained |
11c34c7d JP |
5946 | F: arch/powerpc/platforms/powermac/ |
5947 | F: drivers/macintosh/ | |
1da177e4 | 5948 | |
77a76369 | 5949 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5950 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5951 | L: [email protected] |
cba5b1c6 | 5952 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 5953 | S: Maintained |
11c34c7d JP |
5954 | F: arch/powerpc/platforms/512x/ |
5955 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5956 | |
5957 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 5958 | M: Alistair Popple <[email protected]> |
8b58be88 | 5959 | M: Matt Porter <[email protected]> |
1da177e4 | 5960 | W: http://www.penguinppc.org/ |
a4724ed6 | 5961 | L: [email protected] |
1da177e4 | 5962 | S: Maintained |
11c34c7d JP |
5963 | F: arch/powerpc/platforms/40x/ |
5964 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5965 | |
260c02a9 | 5966 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5967 | L: [email protected] |
cdeb8994 | 5968 | S: Orphan |
11c34c7d JP |
5969 | F: arch/powerpc/*/*virtex* |
5970 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5971 | |
e93adf1e | 5972 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 5973 | M: Vitaly Bordug <[email protected]> |
e93adf1e | 5974 | W: http://www.penguinppc.org/ |
a4724ed6 | 5975 | L: [email protected] |
e93adf1e | 5976 | S: Maintained |
a2b1f7c8 | 5977 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5978 | |
1da177e4 | 5979 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
a1e0fb42 | 5980 | M: Scott Wood <[email protected]> |
8b58be88 | 5981 | M: Kumar Gala <[email protected]> |
ce00f85c | 5982 | W: http://www.penguinppc.org/ |
a4724ed6 | 5983 | L: [email protected] |
a1e0fb42 | 5984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 5985 | S: Maintained |
11c34c7d | 5986 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5987 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5988 | |
ab06ff3a | 5989 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5990 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5991 | L: [email protected] |
92e19709 | 5992 | S: Maintained |
11c34c7d JP |
5993 | F: arch/powerpc/platforms/pasemi/ |
5994 | F: drivers/*/*pasemi* | |
5995 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5996 | |
1da177e4 | 5997 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5998 | M: Chris Wright <[email protected]> |
1a4520be | 5999 | L: [email protected] |
1da177e4 LT |
6000 | S: Supported |
6001 | ||
a23ce6da HW |
6002 | LIS3LV02D ACCELEROMETER DRIVER |
6003 | M: Eric Piel <[email protected]> | |
6004 | S: Maintained | |
ff606677 JD |
6005 | F: Documentation/misc-devices/lis3lv02d |
6006 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 6007 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 6008 | |
b700e7f0 SJ |
6009 | LIVE PATCHING |
6010 | M: Josh Poimboeuf <[email protected]> | |
6011 | M: Seth Jennings <[email protected]> | |
6012 | M: Jiri Kosina <[email protected]> | |
6013 | M: Vojtech Pavlik <[email protected]> | |
6014 | S: Maintained | |
6015 | F: kernel/livepatch/ | |
6016 | F: include/linux/livepatch.h | |
6017 | F: arch/x86/include/asm/livepatch.h | |
6018 | F: arch/x86/kernel/livepatch.c | |
6019 | F: Documentation/ABI/testing/sysfs-kernel-livepatch | |
13d1cf7e | 6020 | F: samples/livepatch/ |
b700e7f0 | 6021 | L: [email protected] |
74d50da3 | 6022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 6023 | |
e2d1d6c0 | 6024 | LLC (802.2) |
8b58be88 | 6025 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 6026 | S: Maintained |
679655da | 6027 | F: include/linux/llc.h |
c117ab84 | 6028 | F: include/uapi/linux/llc.h |
679655da JP |
6029 | F: include/net/llc* |
6030 | F: net/llc/ | |
e2d1d6c0 | 6031 | |
4e233cbe AD |
6032 | LM73 HARDWARE MONITOR DRIVER |
6033 | M: Guillaume Ligneul <[email protected]> | |
6034 | L: [email protected] | |
6035 | S: Maintained | |
6036 | F: drivers/hwmon/lm73.c | |
6037 | ||
156e2d1a | 6038 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 6039 | M: Jean Delvare <[email protected]> |
156e2d1a JD |
6040 | L: [email protected] |
6041 | S: Maintained | |
6042 | F: Documentation/hwmon/lm78 | |
6043 | F: drivers/hwmon/lm78.c | |
6044 | ||
1da177e4 | 6045 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 6046 | M: Jean Delvare <[email protected]> |
cc0b07ed | 6047 | L: [email protected] |
1da177e4 | 6048 | S: Maintained |
679655da JP |
6049 | F: Documentation/hwmon/lm83 |
6050 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
6051 | |
6052 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 6053 | M: Jean Delvare <[email protected]> |
cc0b07ed | 6054 | L: [email protected] |
1da177e4 | 6055 | S: Maintained |
679655da | 6056 | F: Documentation/hwmon/lm90 |
aae7bce4 | 6057 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 6058 | F: drivers/hwmon/lm90.c |
1da177e4 | 6059 | |
917cc4e6 GR |
6060 | LM95234 HARDWARE MONITOR DRIVER |
6061 | M: Guenter Roeck <[email protected]> | |
6062 | L: [email protected] | |
6063 | S: Maintained | |
6064 | F: Documentation/hwmon/lm95234 | |
6065 | F: drivers/hwmon/lm95234.c | |
6066 | ||
68620bdd MP |
6067 | LME2510 MEDIA DRIVER |
6068 | M: Malcolm Priestley <[email protected]> | |
6069 | L: [email protected] | |
6070 | W: http://linuxtv.org/ | |
6071 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6072 | S: Maintained | |
6073 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
6074 | ||
512e67f9 | 6075 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
6076 | M: Peter Zijlstra <[email protected]> |
6077 | M: Ingo Molnar <[email protected]> | |
981c3a4f | 6078 | L: [email protected] |
75fc2d37 | 6079 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 6080 | S: Maintained |
214e0aed DB |
6081 | F: Documentation/locking/lockdep*.txt |
6082 | F: Documentation/locking/lockstat.txt | |
679655da | 6083 | F: include/linux/lockdep.h |
7486d6da | 6084 | F: kernel/locking/ |
512e67f9 | 6085 | |
dde33348 | 6086 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 6087 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
6088 | L: [email protected] |
6089 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 6090 | S: Maintained |
679655da | 6091 | F: Documentation/ldm.txt |
20d16fef | 6092 | F: block/partitions/ldm.* |
1da177e4 | 6093 | |
ef6ada3d JE |
6094 | LogFS |
6095 | M: Joern Engel <[email protected]> | |
756ccb3c | 6096 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
6097 | L: [email protected] |
6098 | W: logfs.org | |
6099 | S: Maintained | |
6100 | F: fs/logfs/ | |
6101 | ||
b62d7946 RS |
6102 | LPC32XX MACHINE SUPPORT |
6103 | M: Roland Stigge <[email protected]> | |
6104 | L: [email protected] (moderated for non-subscribers) | |
6105 | S: Maintained | |
6106 | F: arch/arm/mach-lpc32xx/ | |
6107 | ||
c87e34ef | 6108 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
6109 | M: Nagalakshmi Nandigama <[email protected]> |
6110 | M: Praveen Krishnamoorthy <[email protected]> | |
6111 | M: Sreekanth Reddy <[email protected]> | |
6112 | M: Abhijit Mahajan <[email protected]> | |
6113 | L: [email protected] | |
c87e34ef MED |
6114 | L: [email protected] |
6115 | W: http://www.lsilogic.com/support | |
6116 | S: Supported | |
679655da | 6117 | F: drivers/message/fusion/ |
500c152a | 6118 | F: drivers/scsi/mpt2sas/ |
6119 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 6120 | |
1da177e4 | 6121 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 6122 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
6123 | L: [email protected] |
6124 | S: Maintained | |
679655da | 6125 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 6126 | |
e5f5c99a GR |
6127 | LTC4261 HARDWARE MONITOR DRIVER |
6128 | M: Guenter Roeck <[email protected]> | |
6129 | L: [email protected] | |
6130 | S: Maintained | |
6131 | F: Documentation/hwmon/ltc4261 | |
6132 | F: drivers/hwmon/ltc4261.c | |
6133 | ||
81365c31 | 6134 | LTP (Linux Test Project) |
28b8e8d4 | 6135 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 | 6136 | M: Cyril Hrubis <[email protected]> |
7d1ae8a8 | 6137 | M: Wanlong Gao <[email protected]> |
f2eb7f6f CH |
6138 | M: Jan Stancek <[email protected]> |
6139 | M: Stanislav Kholmanskikh <[email protected]> | |
6140 | M: Alexey Kodanev <[email protected]> | |
81365c31 | 6141 | L: [email protected] (subscribers-only) |
f2eb7f6f | 6142 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 6143 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
6144 | S: Maintained |
6145 | ||
c12a54b3 | 6146 | M32R ARCHITECTURE |
c12a54b3 | 6147 | W: http://www.linux-m32r.org/ |
b4174867 | 6148 | S: Orphan |
679655da | 6149 | F: arch/m32r/ |
c12a54b3 | 6150 | |
1da177e4 | 6151 | M68K ARCHITECTURE |
8b58be88 | 6152 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
6153 | L: [email protected] |
6154 | W: http://www.linux-m68k.org/ | |
54e5881d | 6155 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 6156 | S: Maintained |
679655da | 6157 | F: arch/m68k/ |
9db35182 | 6158 | F: drivers/zorro/ |
1da177e4 LT |
6159 | |
6160 | M68K ON APPLE MACINTOSH | |
8b58be88 | 6161 | M: Joshua Thompson <[email protected]> |
1da177e4 | 6162 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 6163 | L: [email protected] |
1da177e4 | 6164 | S: Maintained |
9db35182 | 6165 | F: arch/m68k/mac/ |
1da177e4 LT |
6166 | |
6167 | M68K ON HP9000/300 | |
8b58be88 | 6168 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
6169 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
6170 | S: Maintained | |
679655da | 6171 | F: arch/m68k/hp300/ |
1da177e4 | 6172 | |
74425546 AP |
6173 | M88DS3103 MEDIA DRIVER |
6174 | M: Antti Palosaari <[email protected]> | |
6175 | L: [email protected] | |
6176 | W: http://linuxtv.org/ | |
6177 | W: http://palosaari.fi/linux/ | |
6178 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6179 | T: git git://linuxtv.org/anttip/media_tree.git | |
6180 | S: Maintained | |
6181 | F: drivers/media/dvb-frontends/m88ds3103* | |
6182 | ||
68620bdd MP |
6183 | M88RS2000 MEDIA DRIVER |
6184 | M: Malcolm Priestley <[email protected]> | |
6185 | L: [email protected] | |
6186 | W: http://linuxtv.org/ | |
6187 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6188 | S: Maintained | |
6189 | F: drivers/media/dvb-frontends/m88rs2000* | |
6190 | ||
07a092fa | 6191 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
6192 | M: Alexey Klimov <[email protected]> |
6193 | L: [email protected] | |
6194 | T: git git://linuxtv.org/media_tree.git | |
6195 | S: Maintained | |
6196 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 6197 | |
64a327a7 | 6198 | MAC80211 |
8b58be88 | 6199 | M: Johannes Berg <[email protected]> |
64a327a7 | 6200 | L: [email protected] |
491b26b4 | 6201 | W: http://wireless.kernel.org/ |
ce466579 JB |
6202 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
6203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 6204 | S: Maintained |
679655da JP |
6205 | F: Documentation/networking/mac80211-injection.txt |
6206 | F: include/net/mac80211.h | |
6207 | F: net/mac80211/ | |
64a327a7 | 6208 | |
b863ceb7 | 6209 | MACVLAN DRIVER |
8b58be88 | 6210 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
6211 | L: [email protected] |
6212 | S: Maintained | |
679655da JP |
6213 | F: drivers/net/macvlan.c |
6214 | F: include/linux/if_macvlan.h | |
b863ceb7 | 6215 | |
2b6d83e2 JB |
6216 | MAILBOX API |
6217 | M: Jassi Brar <[email protected]> | |
6218 | L: [email protected] | |
6219 | S: Maintained | |
6220 | F: drivers/mailbox/ | |
6221 | F: include/linux/mailbox_client.h | |
6222 | F: include/linux/mailbox_controller.h | |
6223 | ||
faf1668c | 6224 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 6225 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 6226 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 6227 | L: [email protected] |
1b53dc74 | 6228 | S: Maintained |
faf1668c | 6229 | |
8427defd RK |
6230 | MARVELL ARMADA DRM SUPPORT |
6231 | M: Russell King <[email protected]> | |
6232 | S: Maintained | |
6233 | F: drivers/gpu/drm/armada/ | |
6234 | ||
3ad50cca GR |
6235 | MARVELL 88E6352 DSA support |
6236 | M: Guenter Roeck <[email protected]> | |
6237 | S: Maintained | |
6238 | F: drivers/net/dsa/mv88e6352.c | |
6239 | ||
44c14c1d | 6240 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
6241 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 6242 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 6243 | L: [email protected] |
6244 | S: Maintained | |
6245 | F: drivers/net/ethernet/marvell/sk* | |
6246 | ||
74cda169 | 6247 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 6248 | L: [email protected] |
8ac3e99e | 6249 | S: Orphan |
679655da | 6250 | F: drivers/net/wireless/libertas/ |
74cda169 | 6251 | |
b60d6975 | 6252 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 6253 | M: Sebastian Hesselbarth <[email protected]> |
979b6c13 | 6254 | L: [email protected] |
f5ca8502 | 6255 | S: Maintained |
527a6266 | 6256 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 6257 | F: include/linux/mv643xx.h |
1da177e4 | 6258 | |
370b8ed9 TP |
6259 | MARVELL MVNETA ETHERNET DRIVER |
6260 | M: Thomas Petazzoni <[email protected]> | |
6261 | L: [email protected] | |
6262 | S: Maintained | |
6263 | F: drivers/net/ethernet/marvell/mvneta.* | |
6264 | ||
fcad584d | 6265 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 BZ |
6266 | M: Amitkumar Karwar <[email protected]> |
6267 | M: Avinash Patil <[email protected]> | |
fcad584d BZ |
6268 | L: [email protected] |
6269 | S: Maintained | |
6270 | F: drivers/net/wireless/mwifiex/ | |
6271 | ||
a2c3f656 | 6272 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 6273 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 6274 | L: [email protected] |
16345910 | 6275 | S: Odd Fixes |
a2c3f656 LB |
6276 | F: drivers/net/wireless/mwl8k.c |
6277 | ||
2a69567b | 6278 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 6279 | M: Nicolas Pitre <[email protected]> |
18e2842b | 6280 | S: Odd Fixes |
1fa7e547 | 6281 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 6282 | |
1da177e4 | 6283 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 6284 | L: [email protected] |
52653199 | 6285 | S: Orphan |
8a61f013 | 6286 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 6287 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 6288 | |
ca462085 GR |
6289 | MAX16065 HARDWARE MONITOR DRIVER |
6290 | M: Guenter Roeck <[email protected]> | |
6291 | L: [email protected] | |
6292 | S: Maintained | |
6293 | F: Documentation/hwmon/max16065 | |
6294 | F: drivers/hwmon/max16065.c | |
6295 | ||
d20620de | 6296 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 6297 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
6298 | L: [email protected] |
6299 | S: Maintained | |
679655da JP |
6300 | F: Documentation/hwmon/max6650 |
6301 | F: drivers/hwmon/max6650.c | |
d20620de | 6302 | |
e89ab51f GR |
6303 | MAX6697 HARDWARE MONITOR DRIVER |
6304 | M: Guenter Roeck <[email protected]> | |
6305 | L: [email protected] | |
6306 | S: Maintained | |
6307 | F: Documentation/hwmon/max6697 | |
6308 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
6309 | F: drivers/hwmon/max6697.c | |
6310 | F: include/linux/platform_data/max6697.h | |
6311 | ||
f8f847b5 KK |
6312 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
6313 | M: Krzysztof Kozlowski <[email protected]> | |
6314 | L: [email protected] | |
6315 | S: Supported | |
6316 | F: drivers/power/max14577_charger.c | |
6317 | F: drivers/power/max77693_charger.c | |
6318 | ||
befeb596 KK |
6319 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
6320 | M: Chanwoo Choi <[email protected]> | |
6321 | M: Krzysztof Kozlowski <[email protected]> | |
6322 | L: [email protected] | |
6323 | S: Supported | |
6324 | F: drivers/*/max14577.c | |
6325 | F: drivers/*/max77686.c | |
6326 | F: drivers/*/max77693.c | |
6327 | F: drivers/extcon/extcon-max14577.c | |
6328 | F: drivers/extcon/extcon-max77693.c | |
6329 | F: drivers/rtc/rtc-max77686.c | |
6330 | F: drivers/clk/clk-max77686.c | |
6331 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
6332 | F: Documentation/devicetree/bindings/mfd/max77686.txt | |
6333 | F: Documentation/devicetree/bindings/mfd/max77693.txt | |
6334 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
6335 | F: include/linux/mfd/max14577*.h | |
6336 | F: include/linux/mfd/max77686*.h | |
6337 | F: include/linux/mfd/max77693*.h | |
6338 | ||
9be3c9a5 HV |
6339 | MAXIRADIO FM RADIO RECEIVER DRIVER |
6340 | M: Hans Verkuil <[email protected]> | |
6341 | L: [email protected] | |
6342 | T: git git://linuxtv.org/media_tree.git | |
6343 | W: http://linuxtv.org | |
6344 | S: Maintained | |
6345 | F: drivers/media/radio/radio-maxiradio* | |
6346 | ||
127c49ae | 6347 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
009a5410 | 6348 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
6349 | P: LinuxTV.org Project |
6350 | L: [email protected] | |
6351 | W: http://linuxtv.org | |
8a6e2535 | 6352 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 6353 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
6354 | S: Maintained |
6355 | F: Documentation/dvb/ | |
6356 | F: Documentation/video4linux/ | |
ffe06198 | 6357 | F: Documentation/DocBook/media/ |
127c49ae | 6358 | F: drivers/media/ |
ffe06198 | 6359 | F: drivers/staging/media/ |
127c49ae | 6360 | F: include/media/ |
6c0f0359 MCC |
6361 | F: include/uapi/linux/dvb/ |
6362 | F: include/uapi/linux/videodev2.h | |
6363 | F: include/uapi/linux/media.h | |
6364 | F: include/uapi/linux/v4l2-* | |
6365 | F: include/uapi/linux/meye.h | |
6366 | F: include/uapi/linux/ivtv* | |
6367 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 6368 | |
e399065b SS |
6369 | MEGARAID SCSI/SAS DRIVERS |
6370 | M: Kashyap Desai <[email protected]> | |
6371 | M: Sumit Saxena <[email protected]> | |
6372 | M: Uday Lingala <[email protected]> | |
6373 | L: [email protected] | |
baaea1dc | 6374 | L: [email protected] |
e399065b | 6375 | W: http://www.lsi.com |
ce00f85c | 6376 | S: Maintained |
679655da JP |
6377 | F: Documentation/scsi/megaraid.txt |
6378 | F: drivers/scsi/megaraid.* | |
6379 | F: drivers/scsi/megaraid/ | |
757e0108 | 6380 | |
2c46c9d5 AV |
6381 | MELLANOX ETHERNET DRIVER (mlx4_en) |
6382 | M: Amir Vadai <[email protected]> | |
db603047 | 6383 | M: Ido Shamay <[email protected]> |
b75f0050 | 6384 | L: [email protected] |
2c46c9d5 AV |
6385 | S: Supported |
6386 | W: http://www.mellanox.com | |
6387 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6388 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
6389 | ||
70ea91f1 SR |
6390 | MEMORY MANAGEMENT |
6391 | L: [email protected] | |
70ea91f1 SR |
6392 | W: http://www.linux-mm.org |
6393 | S: Maintained | |
679655da | 6394 | F: include/linux/mm.h |
551450bb CS |
6395 | F: include/linux/gfp.h |
6396 | F: include/linux/mmzone.h | |
6397 | F: include/linux/memory_hotplug.h | |
6398 | F: include/linux/vmalloc.h | |
679655da | 6399 | F: mm/ |
70ea91f1 | 6400 | |
f4e9ce66 | 6401 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 6402 | M: David Woodhouse <[email protected]> |
242c325e | 6403 | M: Brian Norris <[email protected]> |
1da177e4 | 6404 | L: [email protected] |
8a6e2535 JP |
6405 | W: http://www.linux-mtd.infradead.org/ |
6406 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 6407 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 6408 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 6409 | S: Maintained |
679655da JP |
6410 | F: drivers/mtd/ |
6411 | F: include/linux/mtd/ | |
c117ab84 | 6412 | F: include/uapi/mtd/ |
1da177e4 | 6413 | |
26c57ef1 | 6414 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 6415 | M: Johannes Thumshirn <[email protected]> |
26c57ef1 JT |
6416 | L: [email protected] |
6417 | S: Supported | |
6418 | F: drivers/watchdog/mena21_wdt.c | |
6419 | ||
3764e82e | 6420 | MEN CHAMELEON BUS (mcb) |
49e7d9df | 6421 | M: Johannes Thumshirn <[email protected]> |
3764e82e JT |
6422 | S: Supported |
6423 | F: drivers/mcb/ | |
6424 | F: include/linux/mcb.h | |
6425 | ||
48b490d2 AW |
6426 | MEN F21BMC (Board Management Controller) |
6427 | M: Andreas Werner <[email protected]> | |
6428 | S: Supported | |
6429 | F: drivers/mfd/menf21bmc.c | |
6430 | F: drivers/watchdog/menf21bmc_wdt.c | |
6431 | F: drivers/leds/leds-menf21bmc.c | |
6432 | F: drivers/hwmon/menf21bmc_hwmon.c | |
6433 | F: Documentation/hwmon/menf21bmc | |
6434 | ||
12285945 JH |
6435 | METAG ARCHITECTURE |
6436 | M: James Hogan <[email protected]> | |
d668d9ed | 6437 | L: [email protected] |
12285945 JH |
6438 | S: Supported |
6439 | F: arch/metag/ | |
6440 | F: Documentation/metag/ | |
6441 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 6442 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
6443 | F: drivers/irqchip/irq-metag.c |
6444 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 6445 | F: drivers/tty/metag_da.c |
12285945 | 6446 | |
c6375b0a | 6447 | MICROBLAZE ARCHITECTURE |
8b58be88 | 6448 | M: Michal Simek <[email protected]> |
c6375b0a MS |
6449 | W: http://www.monstr.eu/fdt/ |
6450 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
6451 | S: Supported | |
0a8c7914 | 6452 | F: arch/microblaze/ |
1da177e4 LT |
6453 | |
6454 | MICROTEK X6 SCANNER | |
61eee9a7 | 6455 | M: Oliver Neukum <[email protected]> |
1da177e4 | 6456 | S: Maintained |
679655da | 6457 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
6458 | |
6459 | MIPS | |
8b58be88 | 6460 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6461 | L: [email protected] |
6097050d | 6462 | W: http://www.linux-mips.org/ |
b05e988e | 6463 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 6464 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 6465 | S: Supported |
679655da JP |
6466 | F: Documentation/mips/ |
6467 | F: arch/mips/ | |
1da177e4 | 6468 | |
08b7620a HV |
6469 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
6470 | M: Hans Verkuil <[email protected]> | |
6471 | L: [email protected] | |
6472 | T: git git://linuxtv.org/media_tree.git | |
6473 | W: http://linuxtv.org | |
6474 | S: Odd Fixes | |
6475 | F: drivers/media/radio/radio-miropcm20* | |
6476 | ||
e126ba97 EC |
6477 | Mellanox MLX5 core VPI driver |
6478 | M: Eli Cohen <[email protected]> | |
6479 | L: [email protected] | |
6480 | L: [email protected] | |
6481 | W: http://www.mellanox.com | |
6482 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6483 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6484 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
6485 | S: Supported |
6486 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
6487 | F: include/linux/mlx5/ | |
6488 | ||
6489 | Mellanox MLX5 IB driver | |
b75f0050 JP |
6490 | M: Eli Cohen <[email protected]> |
6491 | L: [email protected] | |
6492 | W: http://www.mellanox.com | |
6493 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6494 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
6495 | S: Supported |
6496 | F: include/linux/mlx5/ | |
6497 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 6498 | |
0ce277e4 AP |
6499 | MN88472 MEDIA DRIVER |
6500 | M: Antti Palosaari <[email protected]> | |
6501 | L: [email protected] | |
6502 | W: http://linuxtv.org/ | |
6503 | W: http://palosaari.fi/linux/ | |
6504 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6505 | T: git git://linuxtv.org/anttip/media_tree.git | |
6506 | S: Maintained | |
6507 | F: drivers/staging/media/mn88472/ | |
6508 | F: drivers/media/dvb-frontends/mn88472.h | |
6509 | ||
4f4d238f AP |
6510 | MN88473 MEDIA DRIVER |
6511 | M: Antti Palosaari <[email protected]> | |
6512 | L: [email protected] | |
6513 | W: http://linuxtv.org/ | |
6514 | W: http://palosaari.fi/linux/ | |
6515 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6516 | T: git git://linuxtv.org/anttip/media_tree.git | |
6517 | S: Maintained | |
6518 | F: drivers/staging/media/mn88473/ | |
6519 | F: drivers/media/dvb-frontends/mn88473.h | |
6520 | ||
1da177e4 | 6521 | MODULE SUPPORT |
8b58be88 | 6522 | M: Rusty Russell <[email protected]> |
1da177e4 | 6523 | S: Maintained |
679655da JP |
6524 | F: include/linux/module.h |
6525 | F: kernel/module.c | |
1da177e4 LT |
6526 | |
6527 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 6528 | W: http://popies.net/meye/ |
b7788e13 | 6529 | S: Orphan |
679655da | 6530 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 6531 | F: drivers/media/pci/meye/ |
6c0f0359 | 6532 | F: include/uapi/linux/meye.h |
1da177e4 | 6533 | |
b9705b60 | 6534 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 6535 | M: Jiri Slaby <[email protected]> |
d735410a | 6536 | S: Maintained |
679655da | 6537 | F: Documentation/serial/moxa-smartio |
c897401b | 6538 | F: drivers/tty/mxser.* |
d735410a | 6539 | |
889b2f87 AK |
6540 | MR800 AVERMEDIA USB FM RADIO DRIVER |
6541 | M: Alexey Klimov <[email protected]> | |
6542 | L: [email protected] | |
6543 | T: git git://linuxtv.org/media_tree.git | |
6544 | S: Maintained | |
6545 | F: drivers/media/radio/radio-mr800.c | |
6546 | ||
d7155691 AO |
6547 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
6548 | M: Alan Ott <[email protected]> | |
6549 | L: [email protected] | |
6550 | S: Maintained | |
6551 | F: drivers/net/ieee802154/mrf24j40.c | |
6552 | ||
8c4c731a | 6553 | MSI LAPTOP SUPPORT |
182ae55c | 6554 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 6555 | L: [email protected] |
8c4c731a | 6556 | S: Maintained |
679655da | 6557 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 6558 | |
0f1006b1 AA |
6559 | MSI WMI SUPPORT |
6560 | M: Anisse Astier <[email protected]> | |
d0944853 | 6561 | L: [email protected] |
0f1006b1 AA |
6562 | S: Supported |
6563 | F: drivers/platform/x86/msi-wmi.c | |
6564 | ||
19a628a0 AP |
6565 | MSI001 MEDIA DRIVER |
6566 | M: Antti Palosaari <[email protected]> | |
6567 | L: [email protected] | |
6568 | W: http://linuxtv.org/ | |
6569 | W: http://palosaari.fi/linux/ | |
6570 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6571 | T: git git://linuxtv.org/anttip/media_tree.git | |
6572 | S: Maintained | |
0185e197 | 6573 | F: drivers/media/tuners/msi001* |
19a628a0 | 6574 | |
7570589d | 6575 | MSI2500 MEDIA DRIVER |
2c57213f AP |
6576 | M: Antti Palosaari <[email protected]> |
6577 | L: [email protected] | |
6578 | W: http://linuxtv.org/ | |
6579 | W: http://palosaari.fi/linux/ | |
6580 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6581 | T: git git://linuxtv.org/anttip/media_tree.git | |
6582 | S: Maintained | |
7570589d | 6583 | F: drivers/media/usb/msi2500/ |
2c57213f | 6584 | |
62a37dc7 | 6585 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
6586 | M: Laurent Pinchart <[email protected]> |
6587 | L: [email protected] | |
6588 | T: git git://linuxtv.org/media_tree.git | |
6589 | S: Maintained | |
6590 | F: drivers/media/i2c/mt9m032.c | |
6591 | F: include/media/mt9m032.h | |
6592 | ||
62a37dc7 | 6593 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
6594 | M: Laurent Pinchart <[email protected]> |
6595 | L: [email protected] | |
6596 | T: git git://linuxtv.org/media_tree.git | |
6597 | S: Maintained | |
6598 | F: drivers/media/i2c/mt9p031.c | |
6599 | F: include/media/mt9p031.h | |
6600 | ||
62a37dc7 | 6601 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
6602 | M: Laurent Pinchart <[email protected]> |
6603 | L: [email protected] | |
6604 | T: git git://linuxtv.org/media_tree.git | |
6605 | S: Maintained | |
6606 | F: drivers/media/i2c/mt9t001.c | |
6607 | F: include/media/mt9t001.h | |
6608 | ||
62a37dc7 | 6609 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
6610 | M: Laurent Pinchart <[email protected]> |
6611 | L: [email protected] | |
6612 | T: git git://linuxtv.org/media_tree.git | |
6613 | S: Maintained | |
f2272e13 | 6614 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 LP |
6615 | F: drivers/media/i2c/mt9v032.c |
6616 | F: include/media/mt9v032.h | |
6617 | ||
4e0d13cb | 6618 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 6619 | M: Samuel Ortiz <[email protected]> |
f7d3210e | 6620 | M: Lee Jones <[email protected]> |
7caa7991 | 6621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 6622 | S: Supported |
679655da | 6623 | F: drivers/mfd/ |
55b5940d | 6624 | F: include/linux/mfd/ |
4e0d13cb | 6625 | |
5c4e6f13 | 6626 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 6627 | M: Ulf Hansson <[email protected]> |
b2503a94 | 6628 | L: [email protected] |
708dce3f | 6629 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 6630 | S: Maintained |
679655da JP |
6631 | F: drivers/mmc/ |
6632 | F: include/linux/mmc/ | |
c117ab84 | 6633 | F: include/uapi/linux/mmc/ |
baca2da4 | 6634 | |
15a0580c | 6635 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 6636 | S: Orphan |
679655da JP |
6637 | F: drivers/mmc/host/mmc_spi.c |
6638 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 6639 | |
1da177e4 | 6640 | MULTISOUND SOUND DRIVER |
8b58be88 | 6641 | M: Andrew Veliath <[email protected]> |
1da177e4 | 6642 | S: Maintained |
679655da JP |
6643 | F: Documentation/sound/oss/MultiSound |
6644 | F: sound/oss/msnd* | |
1da177e4 | 6645 | |
d735410a | 6646 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 6647 | S: Orphan |
c897401b | 6648 | F: drivers/tty/isicom.c |
679655da | 6649 | F: include/linux/isicom.h |
d735410a | 6650 | |
550a7375 | 6651 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 6652 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 6653 | L: [email protected] |
43b416e5 | 6654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 6655 | S: Maintained |
679655da | 6656 | F: drivers/usb/musb/ |
550a7375 | 6657 | |
ea0af5f6 MK |
6658 | MXL5007T MEDIA DRIVER |
6659 | M: Michael Krufky <[email protected]> | |
6660 | L: [email protected] | |
6661 | W: http://linuxtv.org/ | |
6662 | W: http://github.com/mkrufky | |
6663 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6664 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6665 | S: Maintained | |
6666 | F: drivers/media/tuners/mxl5007t.* | |
6667 | ||
2d3cf588 | 6668 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 6669 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 6670 | L: [email protected] |
205057ae | 6671 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 6672 | S: Supported |
93f7848b | 6673 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 6674 | |
1da177e4 | 6675 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 6676 | S: Orphan |
d9fb9f38 | 6677 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 6678 | |
23dc05a3 DM |
6679 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6680 | M: Daniel Mack <[email protected]> | |
6681 | S: Maintained | |
6682 | L: [email protected] | |
6683 | W: http://www.native-instruments.com | |
6684 | F: sound/usb/caiaq/ | |
6685 | ||
1da177e4 | 6686 | NCP FILESYSTEM |
52653199 PV |
6687 | M: Petr Vandrovec <[email protected]> |
6688 | S: Odd Fixes | |
679655da | 6689 | F: fs/ncpfs/ |
1da177e4 | 6690 | |
a79b0322 FT |
6691 | NCR 5380 SCSI DRIVERS |
6692 | M: Finn Thain <[email protected]> | |
6693 | M: Michael Schmitz <[email protected]> | |
6694 | L: [email protected] | |
6695 | S: Maintained | |
6696 | F: Documentation/scsi/g_NCR5380.txt | |
6697 | F: drivers/scsi/NCR5380.* | |
6698 | F: drivers/scsi/arm/cumana_1.c | |
6699 | F: drivers/scsi/arm/oak.c | |
6700 | F: drivers/scsi/atari_NCR5380.c | |
6701 | F: drivers/scsi/atari_scsi.* | |
6702 | F: drivers/scsi/dmx3191d.c | |
6703 | F: drivers/scsi/dtc.* | |
6704 | F: drivers/scsi/g_NCR5380.* | |
6705 | F: drivers/scsi/g_NCR5380_mmio.c | |
6706 | F: drivers/scsi/mac_scsi.* | |
6707 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
6708 | F: drivers/scsi/sun3_scsi.* |
6709 | F: drivers/scsi/sun3_scsi_vme.c | |
6710 | F: drivers/scsi/t128.* | |
6711 | ||
1da177e4 | 6712 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 6713 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
6714 | L: [email protected] |
6715 | S: Maintained | |
679655da | 6716 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 6717 | |
4aa3eb4c GR |
6718 | NCT6775 HARDWARE MONITOR DRIVER |
6719 | M: Guenter Roeck <[email protected]> | |
6720 | L: [email protected] | |
6721 | S: Maintained | |
6722 | F: Documentation/hwmon/nct6775 | |
6723 | F: drivers/hwmon/nct6775.c | |
6724 | ||
3c2d774c | 6725 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 6726 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 6727 | L: [email protected] |
e3d33cb1 | 6728 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
6729 | S: Supported |
6730 | F: drivers/infiniband/hw/nes/ | |
6731 | ||
be2f2e84 | 6732 | NETEM NETWORK EMULATOR |
adbbf69d | 6733 | M: Stephen Hemminger <[email protected]> |
f318a63b | 6734 | L: [email protected] |
be2f2e84 | 6735 | S: Maintained |
679655da | 6736 | F: net/sched/sch_netem.c |
be2f2e84 | 6737 | |
b2f5a051 | 6738 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 6739 | M: Jon Mason <[email protected]> |
4a58448b | 6740 | L: [email protected] |
4a58448b | 6741 | S: Supported |
679655da | 6742 | F: Documentation/networking/s2io.txt |
b2f5a051 | 6743 | F: Documentation/networking/vxge.txt |
86387e1a | 6744 | F: drivers/net/ethernet/neterion/ |
4a58448b | 6745 | |
db9cf3a3 | 6746 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 6747 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 6748 | M: Patrick McHardy <[email protected]> |
42010ed0 | 6749 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d | 6750 | L: [email protected] |
82b98543 | 6751 | L: [email protected] |
1da177e4 LT |
6752 | W: http://www.netfilter.org/ |
6753 | W: http://www.iptables.org/ | |
42010ed0 PNA |
6754 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
6756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 6757 | S: Supported |
679655da JP |
6758 | F: include/linux/netfilter* |
6759 | F: include/linux/netfilter/ | |
6760 | F: include/net/netfilter/ | |
c117ab84 CEB |
6761 | F: include/uapi/linux/netfilter* |
6762 | F: include/uapi/linux/netfilter/ | |
679655da JP |
6763 | F: net/*/netfilter.c |
6764 | F: net/*/netfilter/ | |
6765 | F: net/netfilter/ | |
1da177e4 | 6766 | |
4cc67735 | 6767 | NETLABEL |
87a0874c | 6768 | M: Paul Moore <[email protected]> |
4cc67735 PM |
6769 | W: http://netlabel.sf.net |
6770 | L: [email protected] | |
87a0874c | 6771 | S: Maintained |
80811493 | 6772 | F: Documentation/netlabel/ |
679655da JP |
6773 | F: include/net/netlabel.h |
6774 | F: net/netlabel/ | |
4cc67735 | 6775 | |
1da177e4 | 6776 | NETROM NETWORK LAYER |
8b58be88 | 6777 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6778 | L: [email protected] |
d34cb28a | 6779 | W: http://www.linux-ax25.org/ |
1da177e4 | 6780 | S: Maintained |
679655da | 6781 | F: include/net/netrom.h |
c117ab84 | 6782 | F: include/uapi/linux/netrom.h |
679655da | 6783 | F: net/netrom/ |
1da177e4 | 6784 | |
5ddb88c0 | 6785 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 6786 | M: Markus Pargmann <[email protected]> |
1da177e4 | 6787 | S: Maintained |
5e4b269b | 6788 | L: [email protected] |
4ca5829a | 6789 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
6790 | F: Documentation/blockdev/nbd.txt |
6791 | F: drivers/block/nbd.c | |
6792 | F: include/linux/nbd.h | |
c117ab84 | 6793 | F: include/uapi/linux/nbd.h |
1da177e4 | 6794 | |
6e43650c NH |
6795 | NETWORK DROP MONITOR |
6796 | M: Neil Horman <[email protected]> | |
6797 | L: [email protected] | |
6798 | S: Maintained | |
6799 | W: https://fedorahosted.org/dropwatch/ | |
6800 | F: net/core/drop_monitor.c | |
6801 | ||
1da177e4 | 6802 | NETWORKING [GENERAL] |
8b58be88 | 6803 | M: "David S. Miller" <[email protected]> |
979b6c13 | 6804 | L: [email protected] |
b1e8fd54 | 6805 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6806 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6809 | S: Maintained |
679655da JP |
6810 | F: net/ |
6811 | F: include/net/ | |
018d21ed JP |
6812 | F: include/linux/in.h |
6813 | F: include/linux/net.h | |
6814 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6815 | F: include/uapi/linux/in.h |
6816 | F: include/uapi/linux/net.h | |
6817 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 6818 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 6819 | F: tools/net/ |
f4e53f9a | 6820 | F: tools/testing/selftests/net/ |
335a67d2 | 6821 | F: lib/random32.c |
a101ccd1 | 6822 | F: lib/test_bpf.c |
1da177e4 LT |
6823 | |
6824 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6825 | M: "David S. Miller" <[email protected]> |
6826 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
6827 | M: James Morris <[email protected]> |
6828 | M: Hideaki YOSHIFUJI <[email protected]> | |
6829 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 6830 | L: [email protected] |
08deed1e | 6831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6832 | S: Maintained |
679655da JP |
6833 | F: net/ipv4/ |
6834 | F: net/ipv6/ | |
6835 | F: include/net/ip* | |
0a14842f | 6836 | F: arch/x86/net/* |
1da177e4 | 6837 | |
73b7656c DM |
6838 | NETWORKING [IPSEC] |
6839 | M: Steffen Klassert <[email protected]> | |
6840 | M: Herbert Xu <[email protected]> | |
6841 | M: "David S. Miller" <[email protected]> | |
6842 | L: [email protected] | |
d1fc5024 SK |
6843 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6845 | S: Maintained |
5826bdd1 | 6846 | F: net/core/flow.c |
73b7656c DM |
6847 | F: net/xfrm/ |
6848 | F: net/key/ | |
6849 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6850 | F: net/ipv4/esp4.c |
6851 | F: net/ipv4/ah4.c | |
6852 | F: net/ipv4/ipcomp.c | |
6853 | F: net/ipv4/ip_vti.c | |
73b7656c | 6854 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6855 | F: net/ipv6/esp6.c |
6856 | F: net/ipv6/ah6.c | |
6857 | F: net/ipv6/ipcomp6.c | |
6858 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6859 | F: include/uapi/linux/xfrm.h |
6860 | F: include/net/xfrm.h | |
6861 | ||
10e2ff1c | 6862 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6863 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
6864 | L: [email protected] |
6865 | S: Maintained | |
6866 | ||
29f8f632 | 6867 | NETWORKING [WIRELESS] |
2cb4abd1 | 6868 | L: [email protected] |
8a6e2535 | 6869 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 6870 | |
788873ac JP |
6871 | NETWORKING DRIVERS |
6872 | L: [email protected] | |
6873 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6874 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6875 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6877 | S: Odd Fixes |
6878 | F: drivers/net/ | |
018d21ed | 6879 | F: include/linux/if_* |
0b63bf1f JD |
6880 | F: include/linux/netdevice.h |
6881 | F: include/linux/arcdevice.h | |
6882 | F: include/linux/etherdevice.h | |
6883 | F: include/linux/fcdevice.h | |
6884 | F: include/linux/fddidevice.h | |
6885 | F: include/linux/hippidevice.h | |
6886 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6887 | F: include/uapi/linux/if_* |
6888 | F: include/uapi/linux/netdevice.h | |
788873ac | 6889 | |
0e324cf6 JL |
6890 | NETWORKING DRIVERS (WIRELESS) |
6891 | M: Kalle Valo <[email protected]> | |
6892 | L: [email protected] | |
6893 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
6894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/ | |
6895 | S: Maintained | |
6896 | F: drivers/net/wireless/ | |
6897 | ||
3d396eb1 | 6898 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6899 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
6900 | M: Sony Chacko <[email protected]> |
6901 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 6902 | L: [email protected] |
9c2b5bde | 6903 | W: http://www.qlogic.com |
3d396eb1 | 6904 | S: Supported |
aa43c215 | 6905 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6906 | |
6423d30f AAJ |
6907 | NFC SUBSYSTEM |
6908 | M: Lauro Ramos Venancio <[email protected]> | |
6909 | M: Aloisio Almeida Jr <[email protected]> | |
6910 | M: Samuel Ortiz <[email protected]> | |
6911 | L: [email protected] | |
1eb3b216 | 6912 | L: [email protected] (subscribers-only) |
0293ba20 | 6913 | S: Supported |
6423d30f | 6914 | F: net/nfc/ |
55eb94f9 | 6915 | F: include/net/nfc/ |
c117ab84 | 6916 | F: include/uapi/linux/nfc.h |
6423d30f | 6917 | F: drivers/nfc/ |
08eaa1e0 | 6918 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6919 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6920 | |
e8b43555 | 6921 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6922 | M: Trond Myklebust <[email protected]> |
0e3b137f | 6923 | M: Anna Schumaker <[email protected]> |
78f58153 TM |
6924 | L: [email protected] |
6925 | W: http://client.linux-nfs.org | |
cd7b996a | 6926 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6927 | S: Maintained |
679655da JP |
6928 | F: fs/lockd/ |
6929 | F: fs/nfs/ | |
6930 | F: fs/nfs_common/ | |
6931 | F: net/sunrpc/ | |
6932 | F: include/linux/lockd/ | |
6933 | F: include/linux/nfs* | |
6934 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6935 | F: include/uapi/linux/nfs* |
6936 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6937 | |
85ef9cea | 6938 | NILFS2 FILESYSTEM |
e2126935 | 6939 | M: Ryusuke Konishi <[email protected]> |
6aff43f8 | 6940 | L: [email protected] |
f9472265 | 6941 | W: http://nilfs.sourceforge.net/ |
e2126935 | 6942 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 6943 | S: Supported |
679655da JP |
6944 | F: Documentation/filesystems/nilfs2.txt |
6945 | F: fs/nilfs2/ | |
6946 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6947 | |
1da177e4 | 6948 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6949 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
6950 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6951 | S: Maintained | |
679655da JP |
6952 | F: Documentation/scsi/NinjaSCSI.txt |
6953 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6954 | |
6955 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6956 | M: GOTO Masanori <[email protected]> |
6957 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
6958 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6959 | S: Maintained | |
679655da JP |
6960 | F: Documentation/scsi/NinjaSCSI.txt |
6961 | F: drivers/scsi/nsp32* | |
1da177e4 | 6962 | |
383b8fb9 LFT |
6963 | NIOS2 ARCHITECTURE |
6964 | M: Ley Foon Tan <[email protected]> | |
6965 | L: [email protected] (moderated for non-subscribers) | |
08c283cc | 6966 | T: git git://git.rocketboards.org/linux-socfpga-next.git |
383b8fb9 LFT |
6967 | S: Maintained |
6968 | F: arch/nios2/ | |
6969 | ||
2a6afddb PR |
6970 | NOKIA N900 POWER SUPPLY DRIVERS |
6971 | M: Pali RohĂ¡r <[email protected]> | |
6972 | S: Maintained | |
6973 | F: include/linux/power/bq2415x_charger.h | |
6974 | F: include/linux/power/bq27x00_battery.h | |
6975 | F: include/linux/power/isp1704_charger.h | |
6976 | F: drivers/power/bq2415x_charger.c | |
6977 | F: drivers/power/bq27x00_battery.c | |
6978 | F: drivers/power/isp1704_charger.c | |
6979 | F: drivers/power/rx51_battery.c | |
6980 | ||
fce8a7bb | 6981 | NTB DRIVER |
9ef6bf6c JM |
6982 | M: Jon Mason <[email protected]> |
6983 | M: Dave Jiang <[email protected]> | |
fce8a7bb | 6984 | S: Supported |
2984411f JM |
6985 | W: https://github.com/jonmason/ntb/wiki |
6986 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6987 | F: drivers/ntb/ |
548c237c | 6988 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6989 | F: include/linux/ntb.h |
6990 | ||
1da177e4 | 6991 | NTFS FILESYSTEM |
2818ef50 | 6992 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 6993 | L: [email protected] |
2818ef50 | 6994 | W: http://www.tuxera.com/ |
e6f4dee7 | 6995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6996 | S: Supported |
679655da JP |
6997 | F: Documentation/filesystems/ntfs.txt |
6998 | F: fs/ntfs/ | |
1da177e4 | 6999 | |
9eb8ef74 | 7000 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 7001 | M: Antonino Daplas <[email protected]> |
c69f677c | 7002 | L: [email protected] |
ce00f85c | 7003 | S: Maintained |
8a61f013 JH |
7004 | F: drivers/video/fbdev/riva/ |
7005 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 7006 | |
79461681 MW |
7007 | NVM EXPRESS DRIVER |
7008 | M: Matthew Wilcox <[email protected]> | |
7009 | L: [email protected] | |
7010 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
7011 | S: Supported | |
5be37bf9 | 7012 | F: drivers/block/nvme* |
79461681 MW |
7013 | F: include/linux/nvme.h |
7014 | ||
dece4585 CP |
7015 | NXP-NCI NFC DRIVER |
7016 | M: Clément Perrochaud <[email protected]> | |
7017 | R: Charles Gorand <[email protected]> | |
7018 | L: [email protected] (moderated for non-subscribers) | |
7019 | S: Supported | |
7020 | F: drivers/nfc/nxp-nci | |
7021 | ||
f50d7146 RK |
7022 | NXP TDA998X DRM DRIVER |
7023 | M: Russell King <[email protected]> | |
7024 | S: Supported | |
7025 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
7026 | F: include/drm/i2c/tda998x.h | |
7027 | ||
fbace43e PR |
7028 | NXP TFA9879 DRIVER |
7029 | M: Peter Rosin <[email protected]> | |
7030 | L: [email protected] (moderated for non-subscribers) | |
7031 | S: Maintained | |
7032 | F: sound/soc/codecs/tfa9879* | |
7033 | ||
f5525786 | 7034 | OMAP SUPPORT |
0e24bdd4 | 7035 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
7036 | L: [email protected] |
7037 | W: http://www.muru.com/linux/omap/ | |
7038 | W: http://linux.omap.com/ | |
8a6e2535 | 7039 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 7040 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 7041 | S: Maintained |
4e04d5a3 | 7042 | F: arch/arm/*omap*/ |
026da812 FB |
7043 | F: arch/arm/configs/omap1_defconfig |
7044 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 7045 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
7046 | F: drivers/irqchip/irq-omap-intc.c |
7047 | F: drivers/mfd/*omap*.c | |
7048 | F: drivers/mfd/menelaus.c | |
7049 | F: drivers/mfd/palmas.c | |
7050 | F: drivers/mfd/tps65217.c | |
7051 | F: drivers/mfd/tps65218.c | |
7052 | F: drivers/mfd/tps65910.c | |
7053 | F: drivers/mfd/twl-core.[ch] | |
7054 | F: drivers/mfd/twl4030*.c | |
7055 | F: drivers/mfd/twl6030*.c | |
7056 | F: drivers/mfd/twl6040*.c | |
7057 | F: drivers/regulator/palmas-regulator*.c | |
7058 | F: drivers/regulator/pbias-regulator.c | |
7059 | F: drivers/regulator/tps65217-regulator.c | |
7060 | F: drivers/regulator/tps65218-regulator.c | |
7061 | F: drivers/regulator/tps65910-regulator.c | |
7062 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 7063 | F: include/linux/i2c-omap.h |
f5525786 | 7064 | |
50f29fbd | 7065 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 7066 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
7067 | M: Tony Lindgren <[email protected]> |
7068 | L: [email protected] | |
d0fb18c5 | 7069 | L: [email protected] |
50f29fbd TL |
7070 | S: Maintained |
7071 | F: arch/arm/boot/dts/*omap* | |
7072 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
7073 | F: arch/arm/boot/dts/*am4* |
7074 | F: arch/arm/boot/dts/*am5* | |
7075 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 7076 | |
f5525786 | 7077 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 7078 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
7079 | L: [email protected] |
7080 | S: Maintained | |
7081 | F: arch/arm/*omap*/*clock* | |
7082 | ||
7083 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 7084 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
7085 | L: [email protected] |
7086 | S: Maintained | |
7087 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 7088 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 7089 | |
d21db568 | 7090 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
7091 | M: Rajendra Nayak <[email protected]> |
7092 | M: Paul Walmsley <[email protected]> | |
7093 | L: [email protected] | |
7094 | S: Maintained | |
d21db568 | 7095 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 7096 | |
f5525786 | 7097 | OMAP AUDIO SUPPORT |
6c284903 | 7098 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 7099 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
7100 | L: [email protected] (subscribers-only) |
7101 | L: [email protected] | |
7102 | S: Maintained | |
7103 | F: sound/soc/omap/ | |
7104 | ||
18640193 TL |
7105 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
7106 | M: Roger Quadros <[email protected]> | |
7107 | M: Tony Lindgren <[email protected]> | |
7108 | L: [email protected] | |
7109 | S: Maintained | |
7110 | F: drivers/memory/omap-gpmc.c | |
7111 | F: arch/arm/mach-omap2/*gpmc* | |
7112 | ||
f5525786 | 7113 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 7114 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 7115 | L: [email protected] |
f5525786 TL |
7116 | L: [email protected] |
7117 | S: Maintained | |
8a61f013 | 7118 | F: drivers/video/fbdev/omap/ |
f5525786 | 7119 | |
676eec0d | 7120 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 7121 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 7122 | L: [email protected] |
676eec0d | 7123 | L: [email protected] |
178ff4c9 | 7124 | S: Maintained |
8a61f013 | 7125 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
7126 | F: Documentation/arm/OMAP/DSS |
7127 | ||
8b37fcfc OBC |
7128 | OMAP HARDWARE SPINLOCK SUPPORT |
7129 | M: Ohad Ben-Cohen <[email protected]> | |
7130 | L: [email protected] | |
7131 | S: Maintained | |
7132 | F: drivers/hwspinlock/omap_hwspinlock.c | |
7133 | F: arch/arm/mach-omap2/hwspinlock.c | |
7134 | ||
f5525786 | 7135 | OMAP MMC SUPPORT |
8b58be88 | 7136 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
7137 | L: [email protected] |
7138 | S: Maintained | |
653f41b5 MC |
7139 | F: drivers/mmc/host/omap.c |
7140 | ||
7141 | OMAP HS MMC SUPPORT | |
0a4585c6 | 7142 | L: [email protected] |
653f41b5 | 7143 | L: [email protected] |
dfa5d196 | 7144 | S: Orphan |
653f41b5 | 7145 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
7146 | |
7147 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 7148 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
7149 | S: Maintained |
7150 | F: drivers/char/hw_random/omap-rng.c | |
7151 | ||
f400c82e | 7152 | OMAP HWMOD SUPPORT |
cdb55ab0 | 7153 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
7154 | M: Paul Walmsley <[email protected]> |
7155 | L: [email protected] | |
7156 | S: Maintained | |
8fc8b12b | 7157 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 7158 | |
8633fb30 PW |
7159 | OMAP HWMOD DATA |
7160 | M: Paul Walmsley <[email protected]> | |
7161 | L: [email protected] | |
7162 | S: Maintained | |
7163 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
7164 | ||
f400c82e | 7165 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 7166 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
7167 | L: [email protected] |
7168 | S: Maintained | |
7169 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
7170 | ||
0db83ced | 7171 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
7172 | M: Laurent Pinchart <[email protected]> |
7173 | L: [email protected] | |
7174 | S: Maintained | |
7eec52db | 7175 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 7176 | F: drivers/media/platform/omap3isp/ |
0db83ced | 7177 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 7178 | |
f5525786 | 7179 | OMAP USB SUPPORT |
f299470a | 7180 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
7181 | L: [email protected] |
7182 | L: [email protected] | |
43b416e5 | 7183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 7184 | S: Maintained |
a16fbd65 JP |
7185 | F: drivers/usb/*/*omap* |
7186 | F: arch/arm/*omap*/usb* | |
f5525786 | 7187 | |
6d994710 | 7188 | OMAP GPIO DRIVER |
a1415a8f | 7189 | M: Javier Martinez Canillas <[email protected]> |
97215800 | 7190 | M: Santosh Shilimkar <[email protected]> |
c69d72ae | 7191 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
7192 | L: [email protected] |
7193 | S: Maintained | |
7194 | F: drivers/gpio/gpio-omap.c | |
7195 | ||
c351e290 MJ |
7196 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
7197 | M: Mark Jackson <[email protected]> | |
7198 | L: [email protected] | |
7199 | S: Maintained | |
7200 | F: arch/arm/boot/dts/am335x-nano.dts | |
7201 | ||
0ad122d9 | 7202 | OMFS FILESYSTEM |
8b58be88 | 7203 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
7204 | L: [email protected] |
7205 | S: Maintained | |
679655da JP |
7206 | F: Documentation/filesystems/omfs.txt |
7207 | F: fs/omfs/ | |
0ad122d9 | 7208 | |
c1986ee9 | 7209 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 7210 | M: Harald Welte <[email protected]> |
c1986ee9 | 7211 | S: Maintained |
679655da JP |
7212 | F: drivers/char/pcmcia/cm4000_cs.c |
7213 | F: include/linux/cm4000_cs.h | |
c117ab84 | 7214 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 7215 | |
77c44ab1 | 7216 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 7217 | M: Harald Welte <[email protected]> |
77c44ab1 | 7218 | S: Maintained |
679655da | 7219 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 7220 | |
77d5140f | 7221 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 7222 | M: Jonathan Corbet <[email protected]> |
661263b5 | 7223 | L: [email protected] |
275ffde4 | 7224 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 7225 | S: Maintained |
90d72ac6 | 7226 | F: drivers/media/i2c/ov7670.c |
77d5140f | 7227 | |
431bca73 | 7228 | ONENAND FLASH DRIVER |
8b58be88 | 7229 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
7230 | L: [email protected] |
7231 | S: Maintained | |
679655da JP |
7232 | F: drivers/mtd/onenand/ |
7233 | F: include/linux/mtd/onenand*.h | |
431bca73 | 7234 | |
1da177e4 | 7235 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 7236 | M: Willem Riede <[email protected]> |
1da177e4 LT |
7237 | L: [email protected] |
7238 | L: [email protected] | |
7239 | S: Maintained | |
f7269cfc JD |
7240 | F: Documentation/scsi/osst.txt |
7241 | F: drivers/scsi/osst.* | |
7242 | F: drivers/scsi/osst_*.h | |
7243 | F: drivers/scsi/st.h | |
1da177e4 | 7244 | |
e2d1d6c0 | 7245 | OPENCORES I2C BUS DRIVER |
8b58be88 | 7246 | M: Peter Korsgaard <[email protected]> |
846557d3 | 7247 | L: [email protected] |
e2d1d6c0 | 7248 | S: Maintained |
679655da JP |
7249 | F: Documentation/i2c/busses/i2c-ocores |
7250 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 7251 | |
860c44c1 | 7252 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 7253 | M: Grant Likely <[email protected]> |
5d3ad8a6 | 7254 | M: Rob Herring <[email protected]> |
d0fb18c5 | 7255 | L: [email protected] |
a7fefe9f RH |
7256 | W: http://www.devicetree.org/ |
7257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git | |
860c44c1 | 7258 | S: Maintained |
f8828205 | 7259 | F: drivers/of/ |
860c44c1 | 7260 | F: include/linux/of*.h |
f8828205 | 7261 | F: scripts/dtc/ |
860c44c1 | 7262 | |
f8828205 | 7263 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 7264 | M: Rob Herring <[email protected]> |
f8828205 GL |
7265 | M: Pawel Moll <[email protected]> |
7266 | M: Mark Rutland <[email protected]> | |
de80963e | 7267 | M: Ian Campbell <[email protected]> |
bdbff6ba | 7268 | M: Kumar Gala <[email protected]> |
f8828205 GL |
7269 | L: [email protected] |
7270 | S: Maintained | |
7271 | F: Documentation/devicetree/ | |
7272 | F: arch/*/boot/dts/ | |
7273 | F: include/dt-bindings/ | |
7274 | ||
2bb65f56 PA |
7275 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
7276 | M: Pantelis Antoniou <[email protected]> | |
7277 | L: [email protected] | |
7278 | S: Maintained | |
7279 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
7280 | F: Documentation/devicetree/overlay-notes.txt | |
7281 | F: drivers/of/overlay.c | |
7282 | F: drivers/of/resolver.c | |
7283 | ||
19f9d392 JB |
7284 | OPENRISC ARCHITECTURE |
7285 | M: Jonas Bonn <[email protected]> | |
7286 | W: http://openrisc.net | |
eab7c1c0 | 7287 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
7288 | S: Maintained |
7289 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 7290 | F: arch/openrisc/ |
19f9d392 | 7291 | |
ccb1352e | 7292 | OPENVSWITCH |
4f337ed5 | 7293 | M: Pravin Shelar <[email protected]> |
b422da7c | 7294 | L: [email protected] |
ccb1352e JG |
7295 | L: [email protected] |
7296 | W: http://openvswitch.org | |
ccb1352e JG |
7297 | S: Maintained |
7298 | F: net/openvswitch/ | |
b422da7c | 7299 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 7300 | |
af39917d CL |
7301 | OPL4 DRIVER |
7302 | M: Clemens Ladisch <[email protected]> | |
7303 | L: [email protected] (moderated for non-subscribers) | |
7304 | T: git git://git.alsa-project.org/alsa-kernel.git | |
7305 | S: Maintained | |
7306 | F: sound/drivers/opl4/ | |
7307 | ||
1da177e4 | 7308 | OPROFILE |
4cf7e718 | 7309 | M: Robert Richter <[email protected]> |
1da177e4 LT |
7310 | L: [email protected] |
7311 | S: Maintained | |
81c4a8a6 | 7312 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
7313 | F: arch/*/oprofile/ |
7314 | F: drivers/oprofile/ | |
7315 | F: include/linux/oprofile.h | |
1da177e4 | 7316 | |
e2d1d6c0 | 7317 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 7318 | M: Mark Fasheh <[email protected]> |
d6351db2 | 7319 | M: Joel Becker <[email protected]> |
e2d1d6c0 | 7320 | L: [email protected] (moderated for non-subscribers) |
01945fa2 | 7321 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 7322 | S: Supported |
679655da JP |
7323 | F: Documentation/filesystems/ocfs2.txt |
7324 | F: Documentation/filesystems/dlmfs.txt | |
7325 | F: fs/ocfs2/ | |
e2d1d6c0 | 7326 | |
1da177e4 | 7327 | ORINOCO DRIVER |
724c6b35 | 7328 | L: [email protected] |
491b26b4 | 7329 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 7330 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 7331 | S: Orphan |
679655da | 7332 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 7333 | |
42c55aa8 | 7334 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 7335 | M: Boaz Harrosh <[email protected]> |
f1f6630b | 7336 | M: Benny Halevy <[email protected]> |
68274794 BH |
7337 | L: [email protected] |
7338 | W: http://open-osd.org | |
54e5881d | 7339 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 7340 | S: Maintained |
42c55aa8 | 7341 | F: drivers/scsi/osd/ |
6b6f0b6c | 7342 | F: include/scsi/osd_* |
42c55aa8 | 7343 | F: fs/exofs/ |
68274794 | 7344 | |
ef94b186 | 7345 | OVERLAY FILESYSTEM |
7c37fbda | 7346 | M: Miklos Szeredi <[email protected]> |
1d113735 MS |
7347 | L: [email protected] |
7348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 7349 | S: Supported |
1d113735 | 7350 | F: fs/overlayfs/ |
7c37fbda NB |
7351 | F: Documentation/filesystems/overlayfs.txt |
7352 | ||
e2d1d6c0 | 7353 | P54 WIRELESS DRIVER |
084cb0fe | 7354 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 7355 | L: [email protected] |
084cb0fe | 7356 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 7357 | S: Maintained |
679655da | 7358 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 7359 | |
f5cd7872 | 7360 | PA SEMI ETHERNET DRIVER |
8b58be88 | 7361 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
7362 | L: [email protected] |
7363 | S: Maintained | |
ded19add | 7364 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 7365 | |
beb58aa3 | 7366 | PA SEMI SMBUS DRIVER |
8b58be88 | 7367 | M: Olof Johansson <[email protected]> |
846557d3 | 7368 | L: [email protected] |
beb58aa3 | 7369 | S: Maintained |
679655da | 7370 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 7371 | |
48fc267e SK |
7372 | PADATA PARALLEL EXECUTION MECHANISM |
7373 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
7374 | L: [email protected] |
7375 | S: Maintained | |
7376 | F: kernel/padata.c | |
7377 | F: include/linux/padata.h | |
7378 | F: Documentation/padata.txt | |
7379 | ||
709ee531 | 7380 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 7381 | M: Harald Welte <[email protected]> |
d0944853 | 7382 | L: [email protected] |
709ee531 | 7383 | S: Maintained |
679655da | 7384 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 7385 | |
368dd5ac | 7386 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
7387 | M: David Howells <[email protected]> |
7388 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
7389 | L: [email protected] (moderated for non-subscribers) |
7390 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
7391 | S: Maintained | |
679655da JP |
7392 | F: Documentation/mn10300/ |
7393 | F: arch/mn10300/ | |
4fa97181 | 7394 | |
1da177e4 | 7395 | PARALLEL PORT SUPPORT |
3dd1a329 | 7396 | L: [email protected] (subscribers-only) |
5fdc2abe | 7397 | S: Orphan |
679655da JP |
7398 | F: drivers/parport/ |
7399 | F: include/linux/parport*.h | |
7400 | F: drivers/char/ppdev.c | |
c117ab84 | 7401 | F: include/uapi/linux/ppdev.h |
1da177e4 | 7402 | |
4cdf6bc2 | 7403 | PARAVIRT_OPS INTERFACE |
d633180c | 7404 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
7405 | M: Chris Wright <[email protected]> |
7406 | M: Alok Kataria <[email protected]> | |
7407 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 7408 | L: [email protected] |
4cdf6bc2 | 7409 | S: Supported |
a2e19991 | 7410 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
7411 | F: arch/*/kernel/paravirt* |
7412 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 7413 | |
e2d1d6c0 | 7414 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 7415 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
7416 | L: [email protected] (subscribers-only) |
7417 | W: http://www.torque.net/linux-pp.html | |
7418 | S: Maintained | |
679655da JP |
7419 | F: Documentation/blockdev/paride.txt |
7420 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
7421 | |
7422 | PARISC ARCHITECTURE | |
b8828770 | 7423 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 7424 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
7425 | L: [email protected] |
7426 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 7427 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 7428 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 7429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 7430 | S: Maintained |
679655da | 7431 | F: arch/parisc/ |
2b6bac9e | 7432 | F: Documentation/parisc/ |
679655da | 7433 | F: drivers/parisc/ |
2b6bac9e HD |
7434 | F: drivers/char/agp/parisc-agp.c |
7435 | F: drivers/input/serio/gscps2.c | |
7436 | F: drivers/parport/parport_gsc.* | |
7437 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 7438 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
7439 | F: drivers/video/console/sti* |
7440 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 7441 | |
1662d32c | 7442 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 7443 | M: Jim Cromie <[email protected]> |
1662d32c JC |
7444 | L: [email protected] |
7445 | S: Maintained | |
679655da JP |
7446 | F: Documentation/hwmon/pc87360 |
7447 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
7448 | |
7449 | PC8736x GPIO DRIVER | |
8b58be88 | 7450 | M: Jim Cromie <[email protected]> |
1662d32c | 7451 | S: Maintained |
679655da | 7452 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 7453 | |
1ad107fd | 7454 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 7455 | M: Jean Delvare <[email protected]> |
1ad107fd JD |
7456 | L: [email protected] |
7457 | S: Maintained | |
7458 | F: Documentation/hwmon/pc87427 | |
7459 | F: drivers/hwmon/pc87427.c | |
7460 | ||
b26e0ed4 | 7461 | PCA9532 LED DRIVER |
8b58be88 | 7462 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 7463 | S: Maintained |
d5ca6918 JP |
7464 | F: drivers/leds/leds-pca9532.c |
7465 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 7466 | |
5ce914a8 | 7467 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 7468 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
7469 | L: [email protected] |
7470 | S: Maintained | |
b4f0b74e | 7471 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 7472 | |
3971dae5 | 7473 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 7474 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
7475 | S: Maintained |
7476 | F: drivers/firmware/pcdp.* | |
7477 | ||
065c6359 | 7478 | PCI ERROR RECOVERY |
6305902c | 7479 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 7480 | L: [email protected] |
065c6359 | 7481 | S: Supported |
679655da | 7482 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 7483 | |
1da177e4 | 7484 | PCI SUBSYSTEM |
5ac3a6d2 | 7485 | M: Bjorn Helgaas <[email protected]> |
2905474d | 7486 | L: [email protected] |
99662dd1 | 7487 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 7488 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 7489 | S: Supported |
679655da JP |
7490 | F: Documentation/PCI/ |
7491 | F: drivers/pci/ | |
7492 | F: include/linux/pci* | |
6b49ee49 | 7493 | F: arch/x86/pci/ |
cad01f91 | 7494 | F: arch/x86/kernel/quirks.c |
1da177e4 | 7495 | |
b7e78170 RH |
7496 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
7497 | M: Rob Herring <[email protected]> | |
7498 | L: [email protected] | |
7499 | L: [email protected] | |
7500 | S: Maintained | |
7501 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
7502 | F: drivers/pci/host/pci-versatile.c | |
7503 | ||
5f6b6ccd TI |
7504 | PCI DRIVER FOR APPLIEDMICRO XGENE |
7505 | M: Tanmay Inamdar <[email protected]> | |
7506 | L: [email protected] | |
7507 | L: [email protected] | |
7508 | S: Maintained | |
7509 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
7510 | F: drivers/pci/host/pci-xgene.c | |
7511 | ||
62d0ff83 ML |
7512 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
7513 | M: Minghuan Lian <[email protected]> | |
7514 | M: Mingkai Hu <[email protected]> | |
7515 | M: Roy Zang <[email protected]> | |
7516 | L: [email protected] | |
7517 | L: [email protected] | |
7518 | L: [email protected] | |
7519 | S: Maintained | |
7520 | F: drivers/pci/host/*layerscape* | |
7521 | ||
f0b75693 | 7522 | PCI DRIVER FOR IMX6 |
f175aa2c | 7523 | M: Richard Zhu <[email protected]> |
1ba55f55 | 7524 | M: Lucas Stach <[email protected]> |
f0b75693 BH |
7525 | L: [email protected] |
7526 | L: [email protected] (moderated for non-subscribers) | |
7527 | S: Maintained | |
7528 | F: drivers/pci/host/*imx6* | |
7529 | ||
0c4ffcfe MK |
7530 | PCI DRIVER FOR TI KEYSTONE |
7531 | M: Murali Karicheri <[email protected]> | |
7532 | L: [email protected] | |
7533 | L: [email protected] (moderated for non-subscribers) | |
7534 | S: Maintained | |
7535 | F: drivers/pci/host/*keystone* | |
7536 | ||
f0b75693 BH |
7537 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
7538 | M: Thomas Petazzoni <[email protected]> | |
7539 | M: Jason Cooper <[email protected]> | |
7540 | L: [email protected] | |
7541 | L: [email protected] (moderated for non-subscribers) | |
7542 | S: Maintained | |
7543 | F: drivers/pci/host/*mvebu* | |
7544 | ||
0447cfd7 TR |
7545 | PCI DRIVER FOR NVIDIA TEGRA |
7546 | M: Thierry Reding <[email protected]> | |
7547 | L: [email protected] | |
f0b75693 | 7548 | L: [email protected] |
0447cfd7 TR |
7549 | S: Supported |
7550 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
7551 | F: drivers/pci/host/pci-tegra.c | |
7552 | ||
47ff3de9 KVA |
7553 | PCI DRIVER FOR TI DRA7XX |
7554 | M: Kishon Vijay Abraham I <[email protected]> | |
7555 | L: [email protected] | |
7556 | L: [email protected] | |
7557 | S: Supported | |
7558 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
7559 | F: drivers/pci/host/pci-dra7xx.c | |
7560 | ||
f0b75693 BH |
7561 | PCI DRIVER FOR RENESAS R-CAR |
7562 | M: Simon Horman <[email protected]> | |
7563 | L: [email protected] | |
7564 | L: [email protected] | |
7565 | S: Maintained | |
7566 | F: drivers/pci/host/*rcar* | |
7567 | ||
4af82255 | 7568 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 7569 | M: Jingoo Han <[email protected]> |
4af82255 | 7570 | L: [email protected] |
f0b75693 BH |
7571 | L: [email protected] (moderated for non-subscribers) |
7572 | L: [email protected] (moderated for non-subscribers) | |
4af82255 JH |
7573 | S: Maintained |
7574 | F: drivers/pci/host/pci-exynos.c | |
7575 | ||
f0b75693 | 7576 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 7577 | M: Jingoo Han <[email protected]> |
f0b75693 BH |
7578 | L: [email protected] |
7579 | S: Maintained | |
7580 | F: drivers/pci/host/*designware* | |
7581 | ||
cf28855b WD |
7582 | PCI DRIVER FOR GENERIC OF HOSTS |
7583 | M: Will Deacon <[email protected]> | |
7584 | L: [email protected] | |
7585 | L: [email protected] (moderated for non-subscribers) | |
7586 | S: Maintained | |
7587 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
7588 | F: drivers/pci/host/pci-host-generic.c | |
7589 | ||
51b66a6c | 7590 | PCIE DRIVER FOR ST SPEAR13XX |
51b66a6c | 7591 | L: [email protected] |
af539e98 | 7592 | S: Orphan |
51b66a6c PA |
7593 | F: drivers/pci/host/*spear* |
7594 | ||
1da177e4 | 7595 | PCMCIA SUBSYSTEM |
4230dfc9 | 7596 | P: Linux PCMCIA Team |
f5df5881 | 7597 | L: [email protected] |
6650e0a5 | 7598 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 7599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 7600 | S: Maintained |
679655da JP |
7601 | F: Documentation/pcmcia/ |
7602 | F: drivers/pcmcia/ | |
7603 | F: include/pcmcia/ | |
1da177e4 LT |
7604 | |
7605 | PCNET32 NETWORK DRIVER | |
227fb925 | 7606 | M: Don Fry <[email protected]> |
979b6c13 | 7607 | L: [email protected] |
1da177e4 | 7608 | S: Maintained |
b955f6ca | 7609 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 7610 | |
48fc267e SK |
7611 | PCRYPT PARALLEL CRYPTO ENGINE |
7612 | M: Steffen Klassert <[email protected]> | |
7613 | L: [email protected] | |
7614 | S: Maintained | |
7615 | F: crypto/pcrypt.c | |
7616 | F: include/crypto/pcrypt.h | |
7617 | ||
e72df0b8 TH |
7618 | PER-CPU MEMORY ALLOCATOR |
7619 | M: Tejun Heo <[email protected]> | |
7620 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
7621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
7622 | S: Maintained | |
7623 | F: include/linux/percpu*.h | |
7624 | F: mm/percpu*.c | |
7625 | F: arch/*/include/asm/percpu.h | |
7626 | ||
ad4ecbcb | 7627 | PER-TASK DELAY ACCOUNTING |
185e595f | 7628 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 7629 | S: Maintained |
679655da JP |
7630 | F: include/linux/delayacct.h |
7631 | F: kernel/delayacct.c | |
ad4ecbcb | 7632 | |
57c0c15b | 7633 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
7634 | M: Peter Zijlstra <[email protected]> |
7635 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 7636 | M: Ingo Molnar <[email protected]> |
f80c5393 | 7637 | M: Arnaldo Carvalho de Melo <[email protected]> |
981c3a4f | 7638 | L: [email protected] |
75fc2d37 | 7639 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 7640 | S: Supported |
d53e8365 | 7641 | F: kernel/events/* |
a003236c | 7642 | F: include/linux/perf_event.h |
c117ab84 | 7643 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
7644 | F: arch/*/kernel/perf_event*.c |
7645 | F: arch/*/kernel/*/perf_event*.c | |
7646 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 7647 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
7648 | F: arch/*/kernel/perf_callchain.c |
7649 | F: tools/perf/ | |
6c0b3244 | 7650 | |
dd49d0f5 | 7651 | PERSONALITY HANDLING |
8b58be88 | 7652 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
7653 | L: [email protected] |
7654 | S: Maintained | |
679655da | 7655 | F: include/linux/personality.h |
c117ab84 | 7656 | F: include/uapi/linux/personality.h |
dd49d0f5 | 7657 | |
838e7a03 | 7658 | PHONET PROTOCOL |
2a06b40f | 7659 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
7660 | S: Supported |
7661 | F: Documentation/networking/phonet.txt | |
7662 | F: include/linux/phonet.h | |
7663 | F: include/net/phonet/ | |
c117ab84 | 7664 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
7665 | F: net/phonet/ |
7666 | ||
1da177e4 | 7667 | PHRAM MTD DRIVER |
8b58be88 | 7668 | M: Joern Engel <[email protected]> |
1da177e4 LT |
7669 | L: [email protected] |
7670 | S: Maintained | |
679655da | 7671 | F: drivers/mtd/devices/phram.c |
1da177e4 | 7672 | |
efdbb10e BP |
7673 | PICOLCD HID DRIVER |
7674 | M: Bruno Prémont <[email protected]> | |
7675 | L: [email protected] | |
7676 | S: Maintained | |
7677 | F: drivers/hid/hid-picolcd* | |
7678 | ||
a53bfa07 JI |
7679 | PICOXCELL SUPPORT |
7680 | M: Jamie Iles <[email protected]> | |
7681 | L: [email protected] (moderated for non-subscribers) | |
7682 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
7683 | S: Supported | |
b8733987 | 7684 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 7685 | F: arch/arm/mach-picoxcell/ |
b8733987 | 7686 | F: drivers/crypto/picoxcell* |
a53bfa07 | 7687 | |
2744e8af LW |
7688 | PIN CONTROL SUBSYSTEM |
7689 | M: Linus Walleij <[email protected]> | |
c11f042b | 7690 | L: [email protected] |
dbe752a3 | 7691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 7692 | S: Maintained |
07f29ba6 | 7693 | F: drivers/pinctrl/ |
8e406fe4 | 7694 | F: include/linux/pinctrl/ |
2744e8af | 7695 | |
2201bbb8 JCPV |
7696 | PIN CONTROLLER - ATMEL AT91 |
7697 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
7698 | L: [email protected] (moderated for non-subscribers) | |
7699 | S: Maintained | |
c654b6bf | 7700 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 7701 | |
cbd1b652 MW |
7702 | PIN CONTROLLER - INTEL |
7703 | M: Mika Westerberg <[email protected]> | |
7704 | M: Heikki Krogerus <[email protected]> | |
7705 | S: Maintained | |
7706 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 7707 | |
9963b536 LP |
7708 | PIN CONTROLLER - RENESAS |
7709 | M: Laurent Pinchart <[email protected]> | |
7710 | L: [email protected] | |
7711 | S: Maintained | |
7712 | F: drivers/pinctrl/sh-pfc/ | |
7713 | ||
b75e60d6 | 7714 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 7715 | M: Tomasz Figa <[email protected]> |
b75e60d6 DA |
7716 | M: Thomas Abraham <[email protected]> |
7717 | L: [email protected] (moderated for non-subscribers) | |
7718 | L: [email protected] (moderated for non-subscribers) | |
7719 | S: Maintained | |
9b5b33f6 | 7720 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 7721 | |
deda8287 | 7722 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 7723 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
7724 | L: [email protected] |
7725 | L: [email protected] (moderated for non-subscribers) | |
7726 | W: http://www.st.com/spear | |
7727 | S: Maintained | |
8e406fe4 | 7728 | F: drivers/pinctrl/spear/ |
deda8287 | 7729 | |
249a6771 | 7730 | PKTCDVD DRIVER |
dbd47133 | 7731 | M: Jiri Kosina <[email protected]> |
249a6771 | 7732 | S: Maintained |
679655da JP |
7733 | F: drivers/block/pktcdvd.c |
7734 | F: include/linux/pktcdvd.h | |
c117ab84 | 7735 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 7736 | |
b31d8273 G |
7737 | PKUNITY SOC DRIVERS |
7738 | M: Guan Xuetao <[email protected]> | |
7739 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
7740 | S: Maintained | |
ceebf4d5 | 7741 | T: git git://github.com/gxt/linux.git |
b31d8273 | 7742 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 7743 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 7744 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 7745 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 7746 | |
9d2ecfb7 | 7747 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 7748 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
7749 | L: [email protected] |
7750 | W: http://www.lm-sensors.org/ | |
7751 | W: http://www.roeck-us.net/linux/drivers/ | |
7752 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
7753 | S: Maintained | |
7754 | F: Documentation/hwmon/pmbus | |
7755 | F: drivers/hwmon/pmbus/ | |
7756 | F: include/linux/i2c/pmbus.h | |
7757 | ||
89a36810 | 7758 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 7759 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
7760 | L: [email protected] |
7761 | W: http://www.pmc-sierra.com/ | |
7762 | S: Supported | |
7763 | F: drivers/scsi/pmcraid.* | |
7764 | ||
dbf9bfe6 | 7765 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 7766 | M: [email protected] |
dbf9bfe6 | 7767 | M: [email protected] |
f5a7b525 | 7768 | L: [email protected] |
dbf9bfe6 | 7769 | L: [email protected] |
7770 | S: Supported | |
7771 | F: drivers/scsi/pm8001/ | |
7772 | ||
1da177e4 | 7773 | POSIX CLOCKS and TIMERS |
8b58be88 | 7774 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 7775 | L: [email protected] |
75fc2d37 | 7776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 7777 | S: Maintained |
679655da JP |
7778 | F: fs/timerfd.c |
7779 | F: include/linux/timer* | |
5cee9645 | 7780 | F: kernel/time/*timer* |
1da177e4 | 7781 | |
3be86148 | 7782 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 7783 | M: Sebastian Reichel <[email protected]> |
57318935 | 7784 | M: Dmitry Eremin-Solenikov <[email protected]> |
8b58be88 | 7785 | M: David Woodhouse <[email protected]> |
ad8464a2 | 7786 | L: [email protected] |
54e5881d | 7787 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 7788 | S: Maintained |
679655da | 7789 | F: include/linux/power_supply.h |
8cd725a1 | 7790 | F: drivers/power/ |
3be86148 | 7791 | |
1da177e4 | 7792 | PNP SUPPORT |
46a1f21a | 7793 | M: Rafael J. Wysocki <[email protected]> |
1da177e4 | 7794 | S: Maintained |
679655da | 7795 | F: drivers/pnp/ |
1da177e4 | 7796 | |
999445d4 | 7797 | PNXxxxx I2C DRIVER |
8b58be88 | 7798 | M: Vitaly Wool <[email protected]> |
846557d3 | 7799 | L: [email protected] |
999445d4 | 7800 | S: Maintained |
679655da | 7801 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 7802 | |
1da177e4 | 7803 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 7804 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
7805 | L: [email protected] |
7806 | S: Maintained | |
224cf5ad | 7807 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
7808 | |
7809 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 7810 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 7811 | S: Maintained |
679655da | 7812 | F: net/atm/pppoatm.c |
c117ab84 | 7813 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
7814 | |
7815 | PPP OVER ETHERNET | |
8b58be88 | 7816 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 7817 | S: Maintained |
224cf5ad JK |
7818 | F: drivers/net/ppp/pppoe.c |
7819 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 7820 | |
a6d2370b | 7821 | PPP OVER L2TP |
8b58be88 | 7822 | M: James Chapman <[email protected]> |
a6d2370b | 7823 | S: Maintained |
90ca28d1 | 7824 | F: net/l2tp/l2tp_ppp.c |
679655da | 7825 | F: include/linux/if_pppol2tp.h |
c117ab84 | 7826 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 7827 | |
eae9d2ba | 7828 | PPS SUPPORT |
8b58be88 | 7829 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
7830 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
7831 | L: [email protected] (subscribers-only) | |
7832 | S: Maintained | |
cabaaf41 JP |
7833 | F: Documentation/pps/ |
7834 | F: drivers/pps/ | |
7835 | F: include/linux/pps*.h | |
eae9d2ba | 7836 | |
71a6d0af HW |
7837 | PPTP DRIVER |
7838 | M: Dmitry Kozlov <[email protected]> | |
7839 | L: [email protected] | |
7840 | S: Maintained | |
224cf5ad | 7841 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
7842 | W: http://sourceforge.net/projects/accel-pptp |
7843 | ||
1da177e4 | 7844 | PREEMPTIBLE KERNEL |
8b58be88 | 7845 | M: Robert Love <[email protected]> |
1da177e4 LT |
7846 | L: [email protected] |
7847 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
7848 | S: Supported | |
679655da JP |
7849 | F: Documentation/preempt-locking.txt |
7850 | F: include/linux/preempt.h | |
1da177e4 LT |
7851 | |
7852 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 7853 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 7854 | L: [email protected] |
9ef80804 | 7855 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 7856 | S: Obsolete |
679655da | 7857 | F: drivers/net/wireless/prism54/ |
1da177e4 | 7858 | |
02c18891 | 7859 | PS3 NETWORK SUPPORT |
b809b9ca | 7860 | M: Geoff Levand <[email protected]> |
02c18891 | 7861 | L: [email protected] |
a4724ed6 | 7862 | L: [email protected] |
b809b9ca | 7863 | S: Maintained |
8df158ac | 7864 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 7865 | |
f58a9d17 | 7866 | PS3 PLATFORM SUPPORT |
b809b9ca | 7867 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
7868 | L: [email protected] |
7869 | L: [email protected] | |
b809b9ca | 7870 | S: Maintained |
679655da JP |
7871 | F: arch/powerpc/boot/ps3* |
7872 | F: arch/powerpc/include/asm/lv1call.h | |
7873 | F: arch/powerpc/include/asm/ps3*.h | |
7874 | F: arch/powerpc/platforms/ps3/ | |
7875 | F: drivers/*/ps3* | |
7876 | F: drivers/ps3/ | |
fec629b8 | 7877 | F: drivers/rtc/rtc-ps3.c |
679655da | 7878 | F: drivers/usb/host/*ps3.c |
fec629b8 | 7879 | F: sound/ppc/snd_ps3* |
f58a9d17 | 7880 | |
cffb4add | 7881 | PS3VRAM DRIVER |
8b58be88 | 7882 | M: Jim Paris <[email protected]> |
a4724ed6 | 7883 | L: [email protected] |
cffb4add | 7884 | S: Maintained |
8a3977cb | 7885 | F: drivers/block/ps3vram.c |
cffb4add | 7886 | |
8defe599 | 7887 | PSTORE FILESYSTEM |
9d5e2a02 | 7888 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
7889 | M: Colin Cross <[email protected]> |
7890 | M: Kees Cook <[email protected]> | |
7891 | M: Tony Luck <[email protected]> | |
7892 | S: Maintained | |
7893 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
7894 | F: fs/pstore/ | |
7895 | F: include/linux/pstore* | |
04851772 | 7896 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
7897 | F: drivers/acpi/apei/erst.c |
7898 | ||
7fbc415d RC |
7899 | PTP HARDWARE CLOCK SUPPORT |
7900 | M: Richard Cochran <[email protected]> | |
e7333e3c | 7901 | L: [email protected] |
7fbc415d RC |
7902 | S: Maintained |
7903 | W: http://linuxptp.sourceforge.net/ | |
7904 | F: Documentation/ABI/testing/sysfs-ptp | |
7905 | F: Documentation/ptp/* | |
0ecb3cdd | 7906 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
7907 | F: drivers/net/phy/dp83640* |
7908 | F: drivers/ptp/* | |
7909 | F: include/linux/ptp_cl* | |
7910 | ||
cf94a4d1 | 7911 | PTRACE SUPPORT |
e846ee5f | 7912 | M: Roland McGrath <[email protected]> |
8b58be88 | 7913 | M: Oleg Nesterov <[email protected]> |
cf94a4d1 CH |
7914 | S: Maintained |
7915 | F: include/asm-generic/syscall.h | |
7916 | F: include/linux/ptrace.h | |
7917 | F: include/linux/regset.h | |
7918 | F: include/linux/tracehook.h | |
c117ab84 | 7919 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
7920 | F: kernel/ptrace.c |
7921 | ||
8320204a | 7922 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 7923 | M: Mike Isely <[email protected]> |
16e9495d | 7924 | L: [email protected] (subscribers-only) |
661263b5 | 7925 | L: [email protected] |
8320204a | 7926 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7927 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7928 | S: Maintained |
679655da | 7929 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7930 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7931 | |
39532e6c HG |
7932 | PWC WEBCAM DRIVER |
7933 | M: Hans de Goede <[email protected]> | |
7934 | L: [email protected] | |
7935 | T: git git://linuxtv.org/media_tree.git | |
7936 | S: Maintained | |
7937 | F: drivers/media/usb/pwc/* | |
7938 | ||
93c090b3 KD |
7939 | PWM FAN DRIVER |
7940 | M: Kamil Debski <[email protected]> | |
7941 | L: [email protected] | |
7942 | S: Supported | |
7943 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
7944 | F: Documentation/hwmon/pwm-fan | |
7945 | F: drivers/hwmon/pwm-fan.c | |
7946 | ||
200efedd | 7947 | PWM SUBSYSTEM |
aa3495f7 TR |
7948 | M: Thierry Reding <[email protected]> |
7949 | L: [email protected] | |
0c2498f1 | 7950 | S: Maintained |
006e854f | 7951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7952 | F: Documentation/pwm.txt |
7953 | F: Documentation/devicetree/bindings/pwm/ | |
7954 | F: include/linux/pwm.h | |
0c2498f1 | 7955 | F: drivers/pwm/ |
a140b98d TR |
7956 | F: drivers/video/backlight/pwm_bl.c |
7957 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7958 | |
30ec261e | 7959 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 7960 | M: Daniel Mack <[email protected]> |
a323f664 | 7961 | M: Haojian Zhuang <[email protected]> |
8da5e302 | 7962 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 7963 | L: [email protected] (moderated for non-subscribers) |
3f640c61 | 7964 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 7965 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 7966 | S: Maintained |
679655da JP |
7967 | F: arch/arm/mach-pxa/ |
7968 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7969 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 7970 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 7971 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 7972 | F: sound/arm/pxa* |
14430813 | 7973 | F: sound/soc/pxa/ |
1da177e4 | 7974 | |
ec64d3bf EG |
7975 | PXA3xx NAND FLASH DRIVER |
7976 | M: Ezequiel Garcia <[email protected]> | |
7977 | L: [email protected] | |
7978 | S: Maintained | |
9a67f099 | 7979 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 7980 | |
3f640c61 | 7981 | MMP SUPPORT |
8b58be88 | 7982 | M: Eric Miao <[email protected]> |
a323f664 | 7983 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 7984 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
7985 | T: git git://github.com/hzhuang1/linux.git |
7986 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7987 | S: Maintained |
3f640c61 | 7988 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7989 | |
272f133a PO |
7990 | PXA MMCI DRIVER |
7991 | S: Orphan | |
7992 | ||
57f63bc8 | 7993 | PXA RTC DRIVER |
8b58be88 | 7994 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
7995 | L: [email protected] |
7996 | S: Maintained | |
7997 | ||
cea4001a | 7998 | QAT DRIVER |
49e7d9df JP |
7999 | M: Tadeusz Struk <[email protected]> |
8000 | L: [email protected] | |
8001 | S: Supported | |
8002 | F: drivers/crypto/qat/ | |
cea4001a | 8003 | |
52a09a04 | 8004 | QIB DRIVER |
8473c603 | 8005 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
8006 | L: [email protected] |
8007 | S: Supported | |
8008 | F: drivers/infiniband/hw/qib/ | |
8009 | ||
5e9772b9 JS |
8010 | QLOGIC QLA1280 SCSI DRIVER |
8011 | M: Michael Reed <[email protected]> | |
8012 | L: [email protected] | |
8013 | S: Maintained | |
8014 | F: drivers/scsi/qla1280.[ch] | |
8015 | ||
1da177e4 | 8016 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 8017 | M: [email protected] |
1da177e4 LT |
8018 | L: [email protected] |
8019 | S: Supported | |
679655da JP |
8020 | F: Documentation/scsi/LICENSE.qla2xxx |
8021 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 8022 | |
883c98fe | 8023 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 8024 | M: [email protected] |
883c98fe RA |
8025 | L: [email protected] |
8026 | S: Supported | |
bacfb81b | 8027 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
8028 | F: drivers/scsi/qla4xxx/ |
8029 | ||
5a4faa87 | 8030 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 8031 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 8032 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
8033 | M: [email protected] |
8034 | L: [email protected] | |
8035 | S: Supported | |
679655da | 8036 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 8037 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 8038 | |
0ec00f03 | 8039 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 8040 | M: Shahed Shaikh <[email protected]> |
9f35a3cc | 8041 | M: [email protected] |
0ec00f03 AKS |
8042 | L: [email protected] |
8043 | S: Supported | |
aa43c215 | 8044 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 8045 | |
c4e84bde | 8046 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
8047 | M: Harish Patil <[email protected]> |
8048 | M: Sudarsana Kalluru <[email protected]> | |
8049 | M: [email protected] | |
4cbfbe25 | 8050 | M: [email protected] |
c4e84bde RM |
8051 | L: [email protected] |
8052 | S: Supported | |
aa43c215 | 8053 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 8054 | |
1da177e4 | 8055 | QNX4 FILESYSTEM |
8b58be88 | 8056 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
8057 | W: http://www.alarsen.net/linux/qnx4fs/ |
8058 | S: Maintained | |
80811493 | 8059 | F: fs/qnx4/ |
c117ab84 CEB |
8060 | F: include/uapi/linux/qnx4_fs.h |
8061 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 8062 | |
91952bc0 AP |
8063 | QT1010 MEDIA DRIVER |
8064 | M: Antti Palosaari <[email protected]> | |
8065 | L: [email protected] | |
8066 | W: http://linuxtv.org/ | |
8067 | W: http://palosaari.fi/linux/ | |
8068 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8069 | T: git git://linuxtv.org/anttip/media_tree.git | |
8070 | S: Maintained | |
8071 | F: drivers/media/tuners/qt1010* | |
8072 | ||
966fb5ec SM |
8073 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
8074 | M: QCA ath9k Development <[email protected]> | |
8075 | L: [email protected] | |
8076 | L: [email protected] | |
8077 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
8078 | S: Supported | |
8079 | F: drivers/net/wireless/ath/ath9k/ | |
8080 | ||
2ea0ffcb KV |
8081 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
8082 | M: Kalle Valo <[email protected]> | |
8083 | L: [email protected] | |
8084 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
8085 | T: git git://github.com/kvalo/ath.git | |
8086 | S: Supported | |
8087 | F: drivers/net/wireless/ath/ath10k/ | |
8088 | ||
4f4567cf RK |
8089 | QUALCOMM HEXAGON ARCHITECTURE |
8090 | M: Richard Kuo <[email protected]> | |
8091 | L: [email protected] | |
8092 | S: Supported | |
8093 | F: arch/hexagon/ | |
8094 | ||
8e84c258 EK |
8095 | QUALCOMM WCN36XX WIRELESS DRIVER |
8096 | M: Eugene Krasnikov <[email protected]> | |
8097 | L: [email protected] | |
8098 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
8099 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
8100 | S: Supported | |
8101 | F: drivers/net/wireless/ath/wcn36xx/ | |
8102 | ||
602adf40 | 8103 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
8104 | M: Ilya Dryomov <[email protected]> |
8105 | M: Sage Weil <[email protected]> | |
527a88b9 | 8106 | M: Alex Elder <[email protected]> |
602adf40 | 8107 | M: [email protected] |
09d90327 SW |
8108 | W: http://ceph.com/ |
8109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
8110 | S: Supported |
8111 | F: drivers/block/rbd.c | |
8112 | F: drivers/block/rbd_types.h | |
8113 | ||
1da177e4 | 8114 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8115 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 8116 | L: [email protected] |
1da177e4 | 8117 | S: Maintained |
8a61f013 | 8118 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 8119 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 8120 | |
c6c9b34c HG |
8121 | RADIOSHARK RADIO DRIVER |
8122 | M: Hans de Goede <[email protected]> | |
8123 | L: [email protected] | |
8124 | T: git git://linuxtv.org/media_tree.git | |
8125 | S: Maintained | |
8126 | F: drivers/media/radio/radio-shark.c | |
8127 | ||
8128 | RADIOSHARK2 RADIO DRIVER | |
8129 | M: Hans de Goede <[email protected]> | |
8130 | L: [email protected] | |
8131 | T: git git://linuxtv.org/media_tree.git | |
8132 | S: Maintained | |
8133 | F: drivers/media/radio/radio-shark2.c | |
8134 | F: drivers/media/radio/radio-tea5777.c | |
8135 | ||
1da177e4 | 8136 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8137 | M: Paul Mackerras <[email protected]> |
c69f677c | 8138 | L: [email protected] |
1da177e4 | 8139 | S: Maintained |
8a61f013 | 8140 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 8141 | |
e7839f25 | 8142 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 8143 | P: rt2x00 project |
b182427e | 8144 | M: Stanislaw Gruszka <[email protected]> |
f198f98e | 8145 | M: Helmut Schaa <[email protected]> |
95ea3627 | 8146 | L: [email protected] |
83fc9c89 | 8147 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
8148 | W: http://rt2x00.serialmonkey.com/ |
8149 | S: Maintained | |
8150 | F: drivers/net/wireless/rt2x00/ | |
8151 | ||
9db5579b | 8152 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 8153 | M: Jens Axboe <[email protected]> |
9db5579b | 8154 | S: Maintained |
679655da JP |
8155 | F: Documentation/blockdev/ramdisk.txt |
8156 | F: drivers/block/brd.c | |
9db5579b | 8157 | |
9e853f23 RZ |
8158 | PERSISTENT MEMORY DRIVER |
8159 | M: Ross Zwisler <[email protected]> | |
8160 | L: [email protected] | |
8161 | S: Supported | |
8162 | F: drivers/block/pmem.c | |
8163 | ||
9e95ce27 | 8164 | RANDOM NUMBER DRIVER |
0624bcaa | 8165 | M: "Theodore Ts'o" <[email protected]> |
9e95ce27 | 8166 | S: Maintained |
679655da | 8167 | F: drivers/char/random.c |
9e95ce27 | 8168 | |
394b701c | 8169 | RAPIDIO SUBSYSTEM |
8b58be88 | 8170 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 8171 | M: Alexandre Bounine <[email protected]> |
394b701c | 8172 | S: Maintained |
679655da | 8173 | F: drivers/rapidio/ |
394b701c | 8174 | |
e2d1d6c0 | 8175 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 8176 | L: [email protected] |
f52a5490 | 8177 | S: Orphan |
679655da | 8178 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
8179 | |
8180 | RCUTORTURE MODULE | |
e0198b29 | 8181 | M: Josh Triplett <[email protected]> |
8b58be88 | 8182 | M: "Paul E. McKenney" <[email protected]> |
981c3a4f | 8183 | L: [email protected] |
f9094d8e | 8184 | S: Supported |
08deed1e | 8185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 8186 | F: Documentation/RCU/torture.txt |
34e2d560 | 8187 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 8188 | |
c87b9c60 PM |
8189 | RCUTORTURE TEST FRAMEWORK |
8190 | M: "Paul E. McKenney" <[email protected]> | |
ab0afd6c | 8191 | M: Josh Triplett <[email protected]> |
4632a191 PM |
8192 | R: Steven Rostedt <[email protected]> |
8193 | R: Mathieu Desnoyers <[email protected]> | |
8194 | R: Lai Jiangshan <[email protected]> | |
981c3a4f | 8195 | L: [email protected] |
c87b9c60 PM |
8196 | S: Supported |
8197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
8198 | F: tools/testing/selftests/rcutorture | |
8199 | ||
c1f766b5 | 8200 | RDC R-321X SoC |
8b58be88 | 8201 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
8202 | S: Maintained |
8203 | ||
db17f395 | 8204 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 8205 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
8206 | L: [email protected] |
8207 | S: Maintained | |
58565a35 | 8208 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 8209 | |
a09ed661 | 8210 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 8211 | M: Chien Yen <[email protected]> |
fbb5a558 | 8212 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 8213 | S: Supported |
679655da | 8214 | F: net/rds/ |
a09ed661 | 8215 | |
595182bc | 8216 | READ-COPY UPDATE (RCU) |
8b58be88 | 8217 | M: "Paul E. McKenney" <[email protected]> |
ab0afd6c | 8218 | M: Josh Triplett <[email protected]> |
4632a191 PM |
8219 | R: Steven Rostedt <[email protected]> |
8220 | R: Mathieu Desnoyers <[email protected]> | |
8221 | R: Lai Jiangshan <[email protected]> | |
981c3a4f | 8222 | L: [email protected] |
9fab9787 | 8223 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 8224 | S: Supported |
08deed1e | 8225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 8226 | F: Documentation/RCU/ |
9fab9787 | 8227 | X: Documentation/RCU/torture.txt |
f9094d8e | 8228 | F: include/linux/rcu* |
4102adab PM |
8229 | X: include/linux/srcu.h |
8230 | F: kernel/rcu/ | |
34e2d560 | 8231 | X: kernel/torture.c |
595182bc | 8232 | |
0c86edc0 | 8233 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 8234 | M: Alessandro Zummo <[email protected]> |
7c6f84f8 | 8235 | M: Alexandre Belloni <[email protected]> |
76465493 | 8236 | L: [email protected] |
8a6e2535 | 8237 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 8238 | S: Maintained |
679655da JP |
8239 | F: Documentation/rtc.txt |
8240 | F: drivers/rtc/ | |
8241 | F: include/linux/rtc.h | |
c117ab84 | 8242 | F: include/uapi/linux/rtc.h |
0c86edc0 | 8243 | |
0e400c53 MB |
8244 | REALTEK AUDIO CODECS |
8245 | M: Bard Liao <[email protected]> | |
8246 | M: Oder Chiou <[email protected]> | |
8247 | S: Maintained | |
8248 | F: sound/soc/codecs/rt* | |
8249 | F: include/sound/rt*.h | |
8250 | ||
1da177e4 | 8251 | REISERFS FILE SYSTEM |
76c4e5ea | 8252 | L: [email protected] |
1da177e4 | 8253 | S: Supported |
679655da | 8254 | F: fs/reiserfs/ |
1da177e4 | 8255 | |
b83a313b | 8256 | REGISTER MAP ABSTRACTION |
b02e48f2 | 8257 | M: Mark Brown <[email protected]> |
dd060bc9 | 8258 | L: [email protected] |
b83a313b MB |
8259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
8260 | S: Supported | |
8261 | F: drivers/base/regmap/ | |
8262 | F: include/linux/regmap.h | |
8263 | ||
400e64df OBC |
8264 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
8265 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 8266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
8267 | S: Maintained |
8268 | F: drivers/remoteproc/ | |
8269 | F: Documentation/remoteproc.txt | |
6fc26488 | 8270 | F: include/linux/remoteproc.h |
400e64df | 8271 | |
d8115db5 OBC |
8272 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
8273 | M: Ohad Ben-Cohen <[email protected]> | |
8274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
8275 | S: Maintained | |
8276 | F: drivers/rpmsg/ | |
8277 | F: Documentation/rpmsg.txt | |
8278 | F: include/linux/rpmsg.h | |
8279 | ||
1b0fe6be PZ |
8280 | RESET CONTROLLER FRAMEWORK |
8281 | M: Philipp Zabel <[email protected]> | |
8282 | S: Maintained | |
8283 | F: drivers/reset/ | |
8284 | F: Documentation/devicetree/bindings/reset/ | |
8285 | F: include/linux/reset.h | |
8286 | F: include/linux/reset-controller.h | |
8287 | ||
e0897645 | 8288 | RFKILL |
8b58be88 | 8289 | M: Johannes Berg <[email protected]> |
19d337df | 8290 | L: [email protected] |
ce466579 JB |
8291 | W: http://wireless.kernel.org/ |
8292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
8293 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 8294 | S: Maintained |
505c9247 | 8295 | F: Documentation/rfkill.txt |
80811493 | 8296 | F: net/rfkill/ |
e0897645 | 8297 | |
933685ca TG |
8298 | RHASHTABLE |
8299 | M: Thomas Graf <[email protected]> | |
8300 | L: [email protected] | |
8301 | S: Maintained | |
8302 | F: lib/rhashtable.c | |
8303 | F: include/linux/rhashtable.h | |
8304 | ||
67e054e9 ML |
8305 | RICOH SMARTMEDIA/XD DRIVER |
8306 | M: Maxim Levitsky <[email protected]> | |
8307 | S: Maintained | |
21c26f50 JP |
8308 | F: drivers/mtd/nand/r852.c |
8309 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 8310 | |
92634125 ML |
8311 | RICOH R5C592 MEMORYSTICK DRIVER |
8312 | M: Maxim Levitsky <[email protected]> | |
8313 | S: Maintained | |
8314 | F: drivers/memstick/host/r592.* | |
8315 | ||
27f1d2f9 SA |
8316 | ROCCAT DRIVERS |
8317 | M: Stefan Achatz <[email protected]> | |
8318 | W: http://sourceforge.net/projects/roccat/ | |
8319 | S: Maintained | |
8320 | F: drivers/hid/hid-roccat* | |
8321 | F: include/linux/hid-roccat* | |
8322 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
8323 | ||
4b8ac966 JP |
8324 | ROCKER DRIVER |
8325 | M: Jiri Pirko <[email protected]> | |
8326 | M: Scott Feldman <[email protected]> | |
8327 | L: [email protected] | |
8328 | S: Supported | |
8329 | F: drivers/net/ethernet/rocker/ | |
8330 | ||
1da177e4 LT |
8331 | ROCKETPORT DRIVER |
8332 | P: Comtrol Corp. | |
1da177e4 LT |
8333 | W: http://www.comtrol.com |
8334 | S: Maintained | |
679655da | 8335 | F: Documentation/serial/rocket.txt |
c897401b | 8336 | F: drivers/tty/rocket* |
1da177e4 | 8337 | |
7645c2f4 KC |
8338 | ROCKETPORT EXPRESS/INFINITY DRIVER |
8339 | M: Kevin Cernekee <[email protected]> | |
8340 | L: [email protected] | |
8341 | S: Odd Fixes | |
8342 | F: drivers/tty/serial/rp2.* | |
8343 | ||
1da177e4 | 8344 | ROSE NETWORK LAYER |
8b58be88 | 8345 | M: Ralf Baechle <[email protected]> |
1da177e4 | 8346 | L: [email protected] |
d34cb28a | 8347 | W: http://www.linux-ax25.org/ |
1da177e4 | 8348 | S: Maintained |
679655da | 8349 | F: include/net/rose.h |
c117ab84 | 8350 | F: include/uapi/linux/rose.h |
679655da | 8351 | F: net/rose/ |
1da177e4 | 8352 | |
91952bc0 AP |
8353 | RTL2830 MEDIA DRIVER |
8354 | M: Antti Palosaari <[email protected]> | |
8355 | L: [email protected] | |
8356 | W: http://linuxtv.org/ | |
8357 | W: http://palosaari.fi/linux/ | |
8358 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8359 | T: git git://linuxtv.org/anttip/media_tree.git | |
8360 | S: Maintained | |
8361 | F: drivers/media/dvb-frontends/rtl2830* | |
8362 | ||
27a0aacf AP |
8363 | RTL2832 MEDIA DRIVER |
8364 | M: Antti Palosaari <[email protected]> | |
8365 | L: [email protected] | |
8366 | W: http://linuxtv.org/ | |
8367 | W: http://palosaari.fi/linux/ | |
8368 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8369 | T: git git://linuxtv.org/anttip/media_tree.git | |
8370 | S: Maintained | |
8371 | F: drivers/media/dvb-frontends/rtl2832* | |
8372 | ||
ba6e6f6e AP |
8373 | RTL2832_SDR MEDIA DRIVER |
8374 | M: Antti Palosaari <[email protected]> | |
8375 | L: [email protected] | |
8376 | W: http://linuxtv.org/ | |
8377 | W: http://palosaari.fi/linux/ | |
8378 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8379 | T: git git://linuxtv.org/anttip/media_tree.git | |
8380 | S: Maintained | |
b4bb1c28 | 8381 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 8382 | |
59840488 | 8383 | RTL8180 WIRELESS DRIVER |
605bebe2 | 8384 | L: [email protected] |
491b26b4 | 8385 | W: http://wireless.kernel.org/ |
54e5881d | 8386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 8387 | S: Orphan |
3cfeb0c3 | 8388 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 8389 | |
59840488 | 8390 | RTL8187 WIRELESS DRIVER |
9f0939bf | 8391 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
8392 | M: Hin-Tak Leung <[email protected]> |
8393 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 8394 | L: [email protected] |
491b26b4 | 8395 | W: http://wireless.kernel.org/ |
54e5881d | 8396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 8397 | S: Maintained |
3cfeb0c3 | 8398 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 8399 | |
3cf0c8ad LF |
8400 | RTL8192CE WIRELESS DRIVER |
8401 | M: Larry Finger <[email protected]> | |
8402 | M: Chaoming Li <[email protected]> | |
8403 | L: [email protected] | |
491b26b4 | 8404 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
8405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
8406 | S: Maintained | |
8407 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 8408 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 8409 | |
9eb8ef74 | 8410 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 8411 | M: Antonino Daplas <[email protected]> |
c69f677c | 8412 | L: [email protected] |
ce00f85c | 8413 | S: Maintained |
8a61f013 | 8414 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 8415 | |
1da177e4 | 8416 | S390 |
8b58be88 JP |
8417 | M: Martin Schwidefsky <[email protected]> |
8418 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 8419 | M: [email protected] |
d58140cc | 8420 | L: [email protected] |
5238da45 HC |
8421 | W: http://www.ibm.com/developerworks/linux/linux390/ |
8422 | S: Supported | |
679655da | 8423 | F: arch/s390/ |
a968cd3e | 8424 | F: drivers/s390/ |
3bfe6858 JN |
8425 | F: Documentation/s390/ |
8426 | F: Documentation/DocBook/s390* | |
5238da45 | 8427 | |
322986ca SO |
8428 | S390 COMMON I/O LAYER |
8429 | M: Sebastian Ott <[email protected]> | |
8430 | M: Peter Oberparleiter <[email protected]> | |
8431 | L: [email protected] | |
8432 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8433 | S: Supported | |
8434 | F: drivers/s390/cio/ | |
8435 | ||
8436 | S390 DASD DRIVER | |
8437 | M: Stefan Weinhuber <[email protected]> | |
8438 | M: Stefan Haberland <[email protected]> | |
8439 | L: [email protected] | |
8440 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8441 | S: Supported | |
8442 | F: drivers/s390/block/dasd* | |
8443 | F: block/partitions/ibm.c | |
8444 | ||
5238da45 | 8445 | S390 NETWORK DRIVERS |
8b58be88 | 8446 | M: Ursula Braun <[email protected]> |
5238da45 | 8447 | M: [email protected] |
d58140cc | 8448 | L: [email protected] |
5238da45 HC |
8449 | W: http://www.ibm.com/developerworks/linux/linux390/ |
8450 | S: Supported | |
679655da | 8451 | F: drivers/s390/net/ |
5238da45 | 8452 | |
322986ca SO |
8453 | S390 PCI SUBSYSTEM |
8454 | M: Sebastian Ott <[email protected]> | |
8455 | M: Gerald Schaefer <[email protected]> | |
8456 | L: [email protected] | |
8457 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8458 | S: Supported | |
8459 | F: arch/s390/pci/ | |
8460 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
8461 | ||
feed9b62 | 8462 | S390 ZCRYPT DRIVER |
5c8d0983 | 8463 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
8464 | M: [email protected] |
8465 | L: [email protected] | |
a968cd3e | 8466 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 8467 | S: Supported |
d5ca6918 | 8468 | F: drivers/s390/crypto/ |
feed9b62 | 8469 | |
5238da45 | 8470 | S390 ZFCP DRIVER |
d38e19d0 | 8471 | M: Steffen Maier <[email protected]> |
5238da45 | 8472 | M: [email protected] |
d58140cc | 8473 | L: [email protected] |
5238da45 | 8474 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 8475 | S: Supported |
679655da | 8476 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 8477 | |
dd96df2c | 8478 | S390 IUCV NETWORK LAYER |
8b58be88 | 8479 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
8480 | M: [email protected] |
8481 | L: [email protected] | |
8482 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8483 | S: Supported | |
679655da JP |
8484 | F: drivers/s390/net/*iucv* |
8485 | F: include/net/iucv/ | |
8486 | F: net/iucv/ | |
dd96df2c | 8487 | |
4dde7f75 | 8488 | S3C24XX SD/MMC Driver |
8b58be88 | 8489 | M: Ben Dooks <[email protected]> |
efc03ecb | 8490 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 8491 | S: Supported |
679655da | 8492 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 8493 | |
1f15a229 HV |
8494 | SAA6588 RDS RECEIVER DRIVER |
8495 | M: Hans Verkuil <[email protected]> | |
8496 | L: [email protected] | |
8497 | T: git git://linuxtv.org/media_tree.git | |
8498 | W: http://linuxtv.org | |
8499 | S: Odd Fixes | |
8500 | F: drivers/media/i2c/saa6588* | |
8501 | ||
98ed12e6 | 8502 | SAA7134 VIDEO4LINUX DRIVER |
009a5410 | 8503 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
8504 | L: [email protected] |
8505 | W: http://linuxtv.org | |
8506 | T: git git://linuxtv.org/media_tree.git | |
8507 | S: Odd fixes | |
e42bf501 | 8508 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
8509 | F: drivers/media/pci/saa7134/ |
8510 | ||
1da177e4 | 8511 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 8512 | M: Hans Verkuil <[email protected]> |
661263b5 | 8513 | L: [email protected] |
275ffde4 | 8514 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 8515 | S: Maintained |
90d72ac6 MCC |
8516 | F: drivers/media/common/saa7146/ |
8517 | F: drivers/media/pci/saa7146/ | |
8518 | F: include/media/saa7146* | |
1da177e4 | 8519 | |
92304a40 | 8520 | SAMSUNG LAPTOP DRIVER |
5909c654 | 8521 | M: Corentin Chary <[email protected]> |
92304a40 CC |
8522 | L: [email protected] |
8523 | S: Maintained | |
8524 | F: drivers/platform/x86/samsung-laptop.c | |
8525 | ||
4a109cc0 | 8526 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 8527 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
8528 | L: [email protected] (moderated for non-subscribers) |
8529 | S: Supported | |
14430813 | 8530 | F: sound/soc/samsung/ |
4a109cc0 | 8531 | |
0d89a28b | 8532 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 8533 | M: Jingoo Han <[email protected]> |
0d89a28b JH |
8534 | L: [email protected] |
8535 | S: Maintained | |
8a61f013 | 8536 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 8537 | |
f69d3a17 SK |
8538 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
8539 | M: Sangbeom Kim <[email protected]> | |
8540 | L: [email protected] | |
8541 | S: Supported | |
8542 | F: drivers/mfd/sec*.c | |
8543 | F: drivers/regulator/s2m*.c | |
8544 | F: drivers/regulator/s5m*.c | |
f69d3a17 SK |
8545 | F: include/linux/mfd/samsung/ |
8546 | ||
038f5c4b SN |
8547 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
8548 | M: Kyungmin Park <[email protected]> | |
8549 | M: Sylwester Nawrocki <[email protected]> | |
8550 | L: [email protected] | |
8551 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
8552 | S: Supported | |
8553 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 8554 | |
6fd86ab2 SN |
8555 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
8556 | M: Sylwester Nawrocki <[email protected]> | |
8557 | L: [email protected] | |
8558 | L: [email protected] (moderated for non-subscribers) | |
8559 | S: Maintained | |
8560 | F: drivers/media/platform/s3c-camif/ | |
8561 | F: include/media/s3c_camif.h | |
8562 | ||
b84ef24e AH |
8563 | SAMSUNG S5C73M3 CAMERA DRIVER |
8564 | M: Kyungmin Park <[email protected]> | |
8565 | M: Andrzej Hajda <[email protected]> | |
8566 | L: [email protected] | |
8567 | S: Supported | |
8568 | F: drivers/media/i2c/s5c73m3/* | |
8569 | ||
7d459937 AH |
8570 | SAMSUNG S5K5BAF CAMERA DRIVER |
8571 | M: Kyungmin Park <[email protected]> | |
8572 | M: Andrzej Hajda <[email protected]> | |
8573 | L: [email protected] | |
8574 | S: Supported | |
8575 | F: drivers/media/i2c/s5k5baf.c | |
8576 | ||
310e39c9 | 8577 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
8578 | M: Sylwester Nawrocki <[email protected]> |
8579 | M: Tomasz Figa <[email protected]> | |
310e39c9 TF |
8580 | S: Supported |
8581 | L: [email protected] (moderated for non-subscribers) | |
8582 | F: drivers/clk/samsung/ | |
8583 | ||
66890ed6 BA |
8584 | SAMSUNG SXGBE DRIVERS |
8585 | M: Byungho An <[email protected]> | |
8586 | M: Girish K S <[email protected]> | |
66890ed6 BA |
8587 | M: Vipul Pandya <[email protected]> |
8588 | S: Supported | |
8589 | L: [email protected] | |
8590 | F: drivers/net/ethernet/samsung/sxgbe/ | |
8591 | ||
93c537af LM |
8592 | SAMSUNG THERMAL DRIVER |
8593 | M: Lukasz Majewski <[email protected]> | |
8594 | L: [email protected] | |
8595 | L: [email protected] | |
8596 | S: Supported | |
8597 | T: https://github.com/lmajewski/linux-samsung-thermal.git | |
8598 | F: drivers/thermal/samsung/ | |
8599 | ||
e296cd32 KD |
8600 | SAMSUNG USB2 PHY DRIVER |
8601 | M: Kamil Debski <[email protected]> | |
8602 | L: [email protected] | |
8603 | S: Supported | |
8604 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
8605 | F: Documentation/phy/samsung-usb2.txt | |
8606 | F: drivers/phy/phy-exynos4210-usb2.c | |
8607 | F: drivers/phy/phy-exynos4x12-usb2.c | |
8608 | F: drivers/phy/phy-exynos5250-usb2.c | |
8609 | F: drivers/phy/phy-s5pv210-usb2.c | |
8610 | F: drivers/phy/phy-samsung-usb2.c | |
8611 | F: drivers/phy/phy-samsung-usb2.h | |
8612 | ||
ca749e2a | 8613 | SERIAL DRIVERS |
5e30bbb7 | 8614 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 8615 | L: [email protected] |
5e30bbb7 | 8616 | S: Maintained |
14430813 | 8617 | F: drivers/tty/serial/ |
ca749e2a | 8618 | |
aecb7b64 | 8619 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 8620 | M: Viresh Kumar <[email protected]> |
337ae47c | 8621 | M: Andy Shevchenko <[email protected]> |
aecb7b64 | 8622 | S: Maintained |
1fb200d6 | 8623 | F: include/linux/dma/dw.h |
3d598f47 | 8624 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 8625 | F: drivers/dma/dw/ |
aecb7b64 | 8626 | |
f9e37137 SJ |
8627 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
8628 | M: Seungwon Jeon <[email protected]> | |
8629 | M: Jaehoon Chung <[email protected]> | |
8630 | L: [email protected] | |
8631 | S: Maintained | |
8632 | F: include/linux/mmc/dw_mmc.h | |
8633 | F: drivers/mmc/host/dw_mmc* | |
8634 | ||
1db121d6 AN |
8635 | THUNDERBOLT DRIVER |
8636 | M: Andreas Noever <[email protected]> | |
8637 | S: Maintained | |
8638 | F: drivers/thunderbolt/ | |
8639 | ||
9222d247 | 8640 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 8641 | M: John Stultz <[email protected]> |
88606e80 | 8642 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 8643 | L: [email protected] |
75fc2d37 | 8644 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
8645 | S: Supported |
8646 | F: include/linux/clocksource.h | |
8647 | F: include/linux/time.h | |
8648 | F: include/linux/timex.h | |
c117ab84 CEB |
8649 | F: include/uapi/linux/time.h |
8650 | F: include/uapi/linux/timex.h | |
88606e80 TG |
8651 | F: kernel/time/clocksource.c |
8652 | F: kernel/time/time*.c | |
8653 | F: kernel/time/ntp.c | |
7fe5f1c1 | 8654 | F: tools/testing/selftests/timers/ |
88606e80 | 8655 | |
1da177e4 | 8656 | SC1200 WDT DRIVER |
b300645a | 8657 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 8658 | S: Maintained |
679655da | 8659 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
8660 | |
8661 | SCHEDULER | |
dd9b238c | 8662 | M: Ingo Molnar <[email protected]> |
8b58be88 | 8663 | M: Peter Zijlstra <[email protected]> |
981c3a4f | 8664 | L: [email protected] |
75fc2d37 | 8665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 8666 | S: Maintained |
95c0d71d | 8667 | F: kernel/sched/ |
679655da | 8668 | F: include/linux/sched.h |
c117ab84 | 8669 | F: include/uapi/linux/sched.h |
c2eb505b | 8670 | F: include/linux/wait.h |
1da177e4 | 8671 | |
6bcf6737 | 8672 | SCORE ARCHITECTURE |
ed38665e | 8673 | M: Chen Liqin <[email protected]> |
a2681a75 | 8674 | M: Lennox Wu <[email protected]> |
ed38665e | 8675 | W: http://www.sunplus.com |
6bcf6737 | 8676 | S: Supported |
a2681a75 | 8677 | F: arch/score/ |
6bcf6737 | 8678 | |
1da177e4 | 8679 | SCSI CDROM DRIVER |
8b58be88 | 8680 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8681 | L: [email protected] |
8682 | W: http://www.kernel.dk | |
8683 | S: Maintained | |
679655da | 8684 | F: drivers/scsi/sr* |
1da177e4 | 8685 | |
fb50a83d | 8686 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 8687 | M: Bart Van Assche <[email protected]> |
fb50a83d RD |
8688 | L: [email protected] |
8689 | S: Supported | |
8690 | W: http://www.openfabrics.org | |
8691 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
8692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
8693 | F: drivers/infiniband/ulp/srp/ | |
8694 | F: include/scsi/srp.h | |
8695 | ||
1da177e4 | 8696 | SCSI SG DRIVER |
8b58be88 | 8697 | M: Doug Gilbert <[email protected]> |
1da177e4 | 8698 | L: [email protected] |
59ab3c93 | 8699 | W: http://sg.danny.cz/sg |
1da177e4 | 8700 | S: Maintained |
59ab3c93 | 8701 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
8702 | F: drivers/scsi/sg.c |
8703 | F: include/scsi/sg.h | |
1da177e4 LT |
8704 | |
8705 | SCSI SUBSYSTEM | |
0351b8f8 | 8706 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 8707 | L: [email protected] |
0351b8f8 | 8708 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
1da177e4 | 8709 | S: Maintained |
679655da JP |
8710 | F: drivers/scsi/ |
8711 | F: include/scsi/ | |
1da177e4 LT |
8712 | |
8713 | SCSI TAPE DRIVER | |
8b58be88 | 8714 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
8715 | L: [email protected] |
8716 | S: Maintained | |
679655da | 8717 | F: Documentation/scsi/st.txt |
f7269cfc JD |
8718 | F: drivers/scsi/st.* |
8719 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
8720 | |
8721 | SCTP PROTOCOL | |
8b6efb75 | 8722 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 8723 | M: Neil Horman <[email protected]> |
1a418796 | 8724 | L: [email protected] |
5f85813c | 8725 | W: http://lksctp.sourceforge.net |
8b6efb75 | 8726 | S: Maintained |
679655da JP |
8727 | F: Documentation/networking/sctp.txt |
8728 | F: include/linux/sctp.h | |
4d58c025 | 8729 | F: include/uapi/linux/sctp.h |
679655da JP |
8730 | F: include/net/sctp/ |
8731 | F: net/sctp/ | |
1da177e4 LT |
8732 | |
8733 | SCx200 CPU SUPPORT | |
8b58be88 | 8734 | M: Jim Cromie <[email protected]> |
1662d32c | 8735 | S: Odd Fixes |
679655da | 8736 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 8737 | F: arch/x86/platform/scx200/ |
679655da JP |
8738 | F: drivers/watchdog/scx200_wdt.c |
8739 | F: drivers/i2c/busses/scx200* | |
8740 | F: drivers/mtd/maps/scx200_docflash.c | |
8741 | F: include/linux/scx200.h | |
1662d32c JC |
8742 | |
8743 | SCx200 GPIO DRIVER | |
8b58be88 | 8744 | M: Jim Cromie <[email protected]> |
1662d32c | 8745 | S: Maintained |
679655da JP |
8746 | F: drivers/char/scx200_gpio.c |
8747 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
8748 | |
8749 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 8750 | M: Jim Cromie <[email protected]> |
1662d32c | 8751 | S: Maintained |
679655da | 8752 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 8753 | |
6a36913a | 8754 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 8755 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
8756 | L: [email protected] (subscribers-only) |
8757 | S: Maintained | |
679655da | 8758 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 8759 | |
e7839f25 | 8760 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
7a241d6e | 8761 | L: [email protected] |
a1cb1d11 | 8762 | S: Orphan |
7a241d6e | 8763 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 8764 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 8765 | |
c04f9d61 KC |
8766 | SECURE COMPUTING |
8767 | M: Kees Cook <[email protected]> | |
a0cfd75f KC |
8768 | R: Andy Lutomirski <[email protected]> |
8769 | R: Will Drewry <[email protected]> | |
c04f9d61 KC |
8770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
8771 | S: Supported | |
8772 | F: kernel/seccomp.c | |
8773 | F: include/uapi/linux/seccomp.h | |
8774 | F: include/linux/seccomp.h | |
8775 | K: \bsecure_computing | |
8776 | K: \bTIF_SECCOMP\b | |
8777 | ||
0d1bb41a | 8778 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 8779 | M: Ben Dooks <[email protected]> |
dc524882 | 8780 | M: Jaehoon Chung <[email protected]> |
7a241d6e | 8781 | L: [email protected] |
0d1bb41a | 8782 | S: Maintained |
dc524882 | 8783 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 8784 | |
c63b3cba | 8785 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 8786 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 8787 | L: [email protected] |
c63b3cba VK |
8788 | L: [email protected] |
8789 | S: Maintained | |
8790 | F: drivers/mmc/host/sdhci-spear.c | |
8791 | ||
8711cca2 | 8792 | SECURITY SUBSYSTEM |
9b45c0d2 | 8793 | M: James Morris <[email protected]> |
70b4a259 | 8794 | M: Serge E. Hallyn <[email protected]> |
8711cca2 | 8795 | L: [email protected] (suggested Cc:) |
89879a7e | 8796 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 8797 | W: http://kernsec.org/ |
8711cca2 | 8798 | S: Supported |
7d2c86b5 | 8799 | F: security/ |
8711cca2 | 8800 | |
1da177e4 | 8801 | SECURITY CONTACT |
8b58be88 | 8802 | M: Security Officers <[email protected]> |
1da177e4 LT |
8803 | S: Supported |
8804 | ||
8805 | SELINUX SECURITY MODULE | |
e0238b4c | 8806 | M: Paul Moore <[email protected]> |
8b58be88 | 8807 | M: Stephen Smalley <[email protected]> |
8b58be88 | 8808 | M: Eric Paris <[email protected]> |
e0238b4c | 8809 | L: [email protected] (moderated for non-subscribers) |
f058925b | 8810 | W: http://selinuxproject.org |
5a5f2acf | 8811 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 8812 | S: Supported |
679655da JP |
8813 | F: include/linux/selinux* |
8814 | F: security/selinux/ | |
6bde95ce | 8815 | F: scripts/selinux/ |
1da177e4 | 8816 | |
c1c124e9 JJ |
8817 | APPARMOR SECURITY MODULE |
8818 | M: John Johansen <[email protected]> | |
8819 | L: [email protected] (subscribers-only, general discussion) | |
8820 | W: apparmor.wiki.kernel.org | |
8821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
8822 | S: Supported | |
8823 | F: security/apparmor/ | |
8824 | ||
cef2cf07 | 8825 | SENSABLE PHANTOM |
8b58be88 | 8826 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 8827 | S: Maintained |
679655da | 8828 | F: drivers/misc/phantom.c |
c117ab84 | 8829 | F: include/uapi/linux/phantom.h |
cef2cf07 | 8830 | |
6733b39a | 8831 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 8832 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 8833 | L: [email protected] |
0ca43cc0 | 8834 | W: http://www.emulex.com |
3387f656 JP |
8835 | S: Supported |
8836 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 8837 | |
6938f855 SP |
8838 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER |
8839 | M: Sathya Perla <[email protected]> | |
8840 | M: Ajit Khaparde <[email protected]> | |
8841 | M: Padmanabh Ratnakar <[email protected]> | |
8842 | M: Sriharsha Basavapatna <[email protected]> | |
7d2c86b5 | 8843 | L: [email protected] |
fea3af67 | 8844 | W: http://www.emulex.com |
7d2c86b5 | 8845 | S: Supported |
9aebddd1 | 8846 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 8847 | |
d2928a8c SX |
8848 | EMULEX ONECONNECT ROCE DRIVER |
8849 | M: Selvin Xavier <[email protected]> | |
8850 | M: Devesh Sharma <[email protected]> | |
8851 | M: Mitesh Ahuja <[email protected]> | |
8852 | L: [email protected] | |
8853 | W: http://www.emulex.com | |
8854 | S: Supported | |
8855 | F: drivers/infiniband/hw/ocrdma/ | |
8856 | ||
8ceee660 | 8857 | SFC NETWORK DRIVER |
c06f51ea | 8858 | M: Solarflare linux maintainers <[email protected]> |
8533ccf3 | 8859 | M: Shradha Shah <[email protected]> |
c06f51ea | 8860 | L: [email protected] |
8ceee660 | 8861 | S: Supported |
874aeea5 | 8862 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 8863 | |
e2d1d6c0 | 8864 | SGI GRU DRIVER |
cc883afc | 8865 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 8866 | S: Maintained |
679655da | 8867 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
8868 | |
8869 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 8870 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
8871 | L: [email protected] |
8872 | S: Supported | |
679655da | 8873 | F: Documentation/ia64/serial.txt |
df621252 | 8874 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 8875 | F: include/linux/ioc?.h |
e2d1d6c0 | 8876 | |
75312619 | 8877 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
8878 | M: Cliff Whickman <[email protected]> |
8879 | M: Robin Holt <[email protected]> | |
75312619 | 8880 | S: Maintained |
679655da | 8881 | F: drivers/misc/sgi-xp/ |
75312619 | 8882 | |
46eacf3b AP |
8883 | SI2157 MEDIA DRIVER |
8884 | M: Antti Palosaari <[email protected]> | |
8885 | L: [email protected] | |
8886 | W: http://linuxtv.org/ | |
8887 | W: http://palosaari.fi/linux/ | |
8888 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8889 | T: git git://linuxtv.org/anttip/media_tree.git | |
8890 | S: Maintained | |
8891 | F: drivers/media/tuners/si2157* | |
8892 | ||
75e2d5ba AP |
8893 | SI2168 MEDIA DRIVER |
8894 | M: Antti Palosaari <[email protected]> | |
8895 | L: [email protected] | |
8896 | W: http://linuxtv.org/ | |
8897 | W: http://palosaari.fi/linux/ | |
8898 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8899 | T: git git://linuxtv.org/anttip/media_tree.git | |
8900 | S: Maintained | |
8901 | F: drivers/media/dvb-frontends/si2168* | |
8902 | ||
49cc629d HV |
8903 | SI470X FM RADIO RECEIVER I2C DRIVER |
8904 | M: Hans Verkuil <[email protected]> | |
8905 | L: [email protected] | |
8906 | T: git git://linuxtv.org/media_tree.git | |
8907 | W: http://linuxtv.org | |
8908 | S: Odd Fixes | |
8909 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
8910 | ||
8911 | SI470X FM RADIO RECEIVER USB DRIVER | |
8912 | M: Hans Verkuil <[email protected]> | |
8913 | L: [email protected] | |
8914 | T: git git://linuxtv.org/media_tree.git | |
8915 | W: http://linuxtv.org | |
8916 | S: Maintained | |
8917 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
8918 | F: drivers/media/radio/si470x/radio-si470x.h | |
8919 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
8920 | ||
c937ca03 EV |
8921 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
8922 | M: Eduardo Valentin <[email protected]> | |
8923 | L: [email protected] | |
8924 | T: git git://linuxtv.org/media_tree.git | |
8925 | W: http://linuxtv.org | |
8926 | S: Odd Fixes | |
99995ded | 8927 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
8928 | |
8929 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
8930 | M: Eduardo Valentin <[email protected]> | |
8931 | L: [email protected] | |
8932 | T: git git://linuxtv.org/media_tree.git | |
8933 | W: http://linuxtv.org | |
8934 | S: Odd Fixes | |
99995ded DR |
8935 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
8936 | ||
8937 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
8938 | M: Hans Verkuil <[email protected]> | |
8939 | L: [email protected] | |
8940 | T: git git://linuxtv.org/media_tree.git | |
8941 | W: http://linuxtv.org | |
8942 | S: Maintained | |
8943 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 8944 | |
beb91d46 | 8945 | SIANO DVB DRIVER |
009a5410 | 8946 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
8947 | L: [email protected] |
8948 | W: http://linuxtv.org | |
8949 | T: git git://linuxtv.org/media_tree.git | |
8950 | S: Odd fixes | |
8951 | F: drivers/media/common/siano/ | |
beb91d46 | 8952 | F: drivers/media/usb/siano/ |
beb91d46 | 8953 | F: drivers/media/usb/siano/ |
14430813 | 8954 | F: drivers/media/mmc/siano/ |
beb91d46 | 8955 | |
6f15b602 HG |
8956 | SIMPLEFB FB DRIVER |
8957 | M: Hans de Goede <[email protected]> | |
8958 | L: [email protected] | |
8959 | S: Maintained | |
8960 | F: Documentation/devicetree/bindings/video/simple-framebuffer.txt | |
8961 | F: drivers/video/fbdev/simplefb.c | |
8962 | F: include/linux/platform_data/simplefb.h | |
8963 | ||
b618b69c | 8964 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 8965 | L: [email protected] |
bb60fcb2 | 8966 | S: Orphan |
b618b69c | 8967 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
8968 | |
8969 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 8970 | L: [email protected] |
bb60fcb2 | 8971 | S: Orphan |
b618b69c GL |
8972 | F: drivers/media/platform/sh_vou.c |
8973 | F: include/media/sh_vou.h | |
8974 | ||
6349d997 | 8975 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 8976 | M: Len Brown <[email protected]> |
6349d997 LB |
8977 | L: [email protected] |
8978 | W: http://simplefirmware.org/ | |
8979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 8980 | S: Supported |
943fc810 | 8981 | F: arch/x86/platform/sfi/ |
6349d997 LB |
8982 | F: drivers/sfi/ |
8983 | F: include/linux/sfi*.h | |
e2d1d6c0 | 8984 | |
1da177e4 LT |
8985 | SIMTEC EB110ATX (Chalice CATS) |
8986 | P: Ben Dooks | |
b16957c6 BD |
8987 | P: Vincent Sanders <[email protected]> |
8988 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
8989 | W: http://www.simtec.co.uk/products/EB110ATX/ |
8990 | S: Supported | |
8991 | ||
8992 | SIMTEC EB2410ITX (BAST) | |
8993 | P: Ben Dooks | |
b16957c6 BD |
8994 | P: Vincent Sanders <[email protected]> |
8995 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
8996 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
8997 | S: Supported | |
15dba387 JP |
8998 | F: arch/arm/mach-s3c24xx/mach-bast.c |
8999 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
9000 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 9001 | |
4c5adde7 | 9002 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 9003 | M: Sekhar Nori <[email protected]> |
c69d72ae | 9004 | M: Kevin Hilman <[email protected]> |
c9f46a85 | 9005 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 9006 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 9007 | S: Supported |
14430813 | 9008 | F: arch/arm/mach-davinci/ |
046d0a37 | 9009 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 9010 | |
8d4b3f08 | 9011 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 9012 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 | 9013 | L: [email protected] |
8d4b3f08 LP |
9014 | W: http://linuxtv.org/ |
9015 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9016 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 9017 | S: Maintained |
8d4b3f08 LP |
9018 | F: drivers/media/platform/davinci/ |
9019 | F: include/media/davinci/ | |
9020 | ||
417d2e50 BP |
9021 | TI AM437X VPFE DRIVER |
9022 | M: Lad, Prabhakar <[email protected]> | |
9023 | L: [email protected] | |
9024 | W: http://linuxtv.org/ | |
9025 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9026 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9027 | S: Maintained | |
9028 | F: drivers/media/platform/am437x/ | |
9029 | ||
c4c0283a BP |
9030 | OV2659 OMNIVISION SENSOR DRIVER |
9031 | M: Lad, Prabhakar <[email protected]> | |
9032 | L: [email protected] | |
9033 | W: http://linuxtv.org/ | |
9034 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9035 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9036 | S: Maintained | |
9037 | F: drivers/media/i2c/ov2659.c | |
9038 | F: include/media/ov2659.h | |
9039 | ||
92aab3c0 | 9040 | SIS 190 ETHERNET DRIVER |
8b58be88 | 9041 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
9042 | L: [email protected] |
9043 | S: Maintained | |
8c7de408 | 9044 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 9045 | |
1da177e4 | 9046 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 9047 | M: Daniele Venzano <[email protected]> |
1da177e4 | 9048 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 9049 | L: [email protected] |
1da177e4 | 9050 | S: Maintained |
8c7de408 | 9051 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
9052 | |
9053 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 9054 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 9055 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 9056 | S: Maintained |
679655da | 9057 | F: Documentation/fb/sisfb.txt |
8a61f013 | 9058 | F: drivers/video/fbdev/sis/ |
679655da | 9059 | F: include/video/sisfb.h |
1da177e4 LT |
9060 | |
9061 | SIS USB2VGA DRIVER | |
8b58be88 | 9062 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
9063 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
9064 | S: Maintained | |
679655da | 9065 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 9066 | |
415ad26d | 9067 | SLAB ALLOCATOR |
16e943bf | 9068 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 9069 | M: Pekka Enberg <[email protected]> |
16e943bf CL |
9070 | M: David Rientjes <[email protected]> |
9071 | M: Joonsoo Kim <[email protected]> | |
9072 | M: Andrew Morton <[email protected]> | |
415ad26d CL |
9073 | L: [email protected] |
9074 | S: Maintained | |
679655da | 9075 | F: include/linux/sl?b*.h |
16e943bf | 9076 | F: mm/sl?b* |
415ad26d | 9077 | |
9fab9787 PM |
9078 | SLEEPABLE READ-COPY UPDATE (SRCU) |
9079 | M: Lai Jiangshan <[email protected]> | |
9080 | M: "Paul E. McKenney" <[email protected]> | |
ab0afd6c | 9081 | M: Josh Triplett <[email protected]> |
4632a191 PM |
9082 | R: Steven Rostedt <[email protected]> |
9083 | R: Mathieu Desnoyers <[email protected]> | |
981c3a4f | 9084 | L: [email protected] |
9fab9787 PM |
9085 | W: http://www.rdrop.com/users/paulmck/RCU/ |
9086 | S: Supported | |
9087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
9088 | F: include/linux/srcu.h |
9089 | F: kernel/rcu/srcu.c | |
9fab9787 | 9090 | |
66372841 CS |
9091 | SMACK SECURITY MODULE |
9092 | M: Casey Schaufler <[email protected]> | |
9093 | L: [email protected] | |
9094 | W: http://schaufler-ca.com | |
9095 | T: git git://git.gitorious.org/smack-next/kernel.git | |
9096 | S: Maintained | |
9097 | F: Documentation/security/Smack.txt | |
9098 | F: security/smack/ | |
9099 | ||
20651e0b | 9100 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
9101 | M: Kevin Hilman <[email protected]> |
9102 | M: Nishanth Menon <[email protected]> | |
9103 | S: Maintained | |
20651e0b | 9104 | F: drivers/power/avs/ |
68ace3e1 KH |
9105 | F: include/linux/power/smartreflex.h |
9106 | L: [email protected] | |
9107 | ||
1da177e4 | 9108 | SMC91x ETHERNET DRIVER |
2f82af08 | 9109 | M: Nicolas Pitre <[email protected]> |
18e2842b | 9110 | S: Odd Fixes |
ae150435 | 9111 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 9112 | |
e8e31622 SA |
9113 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
9114 | M: Sakari Ailus <[email protected]> | |
9115 | L: [email protected] | |
9116 | S: Maintained | |
14430813 | 9117 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
9118 | F: include/media/smiapp.h |
9119 | F: drivers/media/i2c/smiapp-pll.c | |
9120 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 9121 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 9122 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 9123 | |
920fa1ff GR |
9124 | SMM665 HARDWARE MONITOR DRIVER |
9125 | M: Guenter Roeck <[email protected]> | |
9126 | L: [email protected] | |
9127 | S: Maintained | |
9128 | F: Documentation/hwmon/smm665 | |
9129 | F: drivers/hwmon/smm665.c | |
9130 | ||
9df7305b | 9131 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 9132 | M: Steve Glendinning <[email protected]> |
9df7305b | 9133 | L: [email protected] |
90b24cfb | 9134 | S: Maintained |
9df7305b SG |
9135 | F: Documentation/hwmon/emc2103 |
9136 | F: drivers/hwmon/emc2103.c | |
9137 | ||
a98d506c HG |
9138 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
9139 | M: Hans de Goede <[email protected]> | |
9140 | L: [email protected] | |
9141 | S: Supported | |
9142 | F: Documentation/hwmon/sch5627 | |
9143 | F: drivers/hwmon/sch5627.c | |
9144 | ||
6ea884db | 9145 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 9146 | M: Jean Delvare <[email protected]> |
6ea884db MH |
9147 | L: [email protected] |
9148 | S: Maintained | |
679655da JP |
9149 | F: Documentation/hwmon/smsc47b397 |
9150 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 9151 | |
fd9abb3d | 9152 | SMSC911x ETHERNET DRIVER |
90b24cfb | 9153 | M: Steve Glendinning <[email protected]> |
2cb37728 | 9154 | L: [email protected] |
90b24cfb | 9155 | S: Maintained |
679655da | 9156 | F: include/linux/smsc911x.h |
ae150435 | 9157 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
9158 | |
9159 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 9160 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 9161 | L: [email protected] |
90b24cfb | 9162 | S: Maintained |
ae150435 | 9163 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 9164 | |
3c8a63e2 | 9165 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 9166 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 9167 | L: [email protected] |
90b24cfb | 9168 | S: Maintained |
8a61f013 | 9169 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 9170 | |
668acf32 | 9171 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 9172 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 9173 | L: [email protected] |
275ffde4 | 9174 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 9175 | S: Maintained |
90d72ac6 MCC |
9176 | F: include/media/soc* |
9177 | F: drivers/media/i2c/soc_camera/ | |
9178 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 9179 | |
e2d1d6c0 | 9180 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 9181 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 9182 | S: Maintained |
679655da | 9183 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 9184 | |
e3994db1 | 9185 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
9186 | M: Bluecherry Maintainers <[email protected]> |
9187 | M: Andrey Utkin <[email protected]> | |
9188 | M: Andrey Utkin <[email protected]> | |
1f141f6b | 9189 | M: Ismael Luceno <[email protected]> |
e3994db1 JP |
9190 | L: [email protected] |
9191 | S: Supported | |
9192 | F: drivers/media/pci/solo6x10/ | |
9193 | ||
1da177e4 | 9194 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 9195 | M: Neil Brown <[email protected]> |
1da177e4 | 9196 | L: [email protected] |
524418bb | 9197 | S: Supported |
679655da JP |
9198 | F: drivers/md/ |
9199 | F: include/linux/raid/ | |
c117ab84 | 9200 | F: include/uapi/linux/raid/ |
1da177e4 | 9201 | |
1da177e4 | 9202 | SONIC NETWORK DRIVER |
8b58be88 | 9203 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 9204 | L: [email protected] |
1da177e4 | 9205 | S: Maintained |
d9fb9f38 | 9206 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 9207 | |
61e115a5 | 9208 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 9209 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
9210 | L: [email protected] |
9211 | S: Maintained | |
679655da JP |
9212 | F: drivers/ssb/ |
9213 | F: include/linux/ssb/ | |
61e115a5 | 9214 | |
1da177e4 | 9215 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 9216 | M: Mattia Dongili <[email protected]> |
d0944853 | 9217 | L: [email protected] |
5b18167d | 9218 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 9219 | S: Maintained |
679655da JP |
9220 | F: Documentation/laptops/sony-laptop.txt |
9221 | F: drivers/char/sonypi.c | |
9222 | F: drivers/platform/x86/sony-laptop.c | |
9223 | F: include/linux/sony-laptop.h | |
1da177e4 | 9224 | |
baf8532a | 9225 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 9226 | M: Alex Dubov <[email protected]> |
baf8532a AD |
9227 | W: http://tifmxx.berlios.de/ |
9228 | S: Maintained | |
679655da | 9229 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 9230 | |
0ab30494 ML |
9231 | SONY MEMORYSTICK STANDARD SUPPORT |
9232 | M: Maxim Levitsky <[email protected]> | |
9233 | S: Maintained | |
9234 | F: drivers/memstick/core/ms_block.* | |
9235 | ||
1da177e4 | 9236 | SOUND |
8b58be88 JP |
9237 | M: Jaroslav Kysela <[email protected]> |
9238 | M: Takashi Iwai <[email protected]> | |
93711660 | 9239 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 9240 | W: http://www.alsa-project.org/ |
dde7ad8d | 9241 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 9242 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 9243 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 9244 | S: Maintained |
3126a179 JP |
9245 | F: Documentation/sound/ |
9246 | F: include/sound/ | |
c117ab84 | 9247 | F: include/uapi/sound/ |
679655da | 9248 | F: sound/ |
1da177e4 | 9249 | |
33bbe149 MB |
9250 | SOUND - COMPRESSED AUDIO |
9251 | M: Vinod Koul <[email protected]> | |
9252 | L: [email protected] (moderated for non-subscribers) | |
9253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
9254 | S: Supported | |
f672f31a | 9255 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 9256 | F: include/sound/compress_driver.h |
f672f31a | 9257 | F: include/uapi/sound/compress_* |
33bbe149 MB |
9258 | F: sound/core/compress_offload.c |
9259 | F: sound/soc/soc-compress.c | |
9260 | ||
bd903bde | 9261 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 9262 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9263 | M: Mark Brown <[email protected]> |
86f14df8 | 9264 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 9265 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 9266 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 9267 | S: Supported |
2820f615 | 9268 | F: Documentation/sound/alsa/soc/ |
679655da | 9269 | F: sound/soc/ |
e6e55122 | 9270 | F: include/sound/soc* |
eb1a6af3 | 9271 | |
d7f8761b MB |
9272 | SOUND - DMAENGINE HELPERS |
9273 | M: Lars-Peter Clausen <[email protected]> | |
9274 | S: Supported | |
9275 | F: include/sound/dmaengine_pcm.h | |
9276 | F: sound/core/pcm_dmaengine.c | |
9277 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
9278 | ||
990a6a99 OS |
9279 | SP2 MEDIA DRIVER |
9280 | M: Olli Salonen <[email protected]> | |
9281 | L: [email protected] | |
9282 | W: http://linuxtv.org/ | |
9283 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9284 | S: Maintained | |
9285 | F: drivers/media/dvb-frontends/sp2* | |
9286 | ||
473321fc | 9287 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 9288 | M: "David S. Miller" <[email protected]> |
1da177e4 | 9289 | L: [email protected] |
8a6e2535 | 9290 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
9291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
9292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 9293 | S: Maintained |
679655da | 9294 | F: arch/sparc/ |
7765b8bb | 9295 | F: drivers/sbus/ |
1da177e4 | 9296 | |
6404fcca DM |
9297 | SPARC SERIAL DRIVERS |
9298 | M: "David S. Miller" <[email protected]> | |
9299 | L: [email protected] | |
08deed1e JP |
9300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
9301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 9302 | S: Maintained |
6816383a | 9303 | F: include/linux/sunserialcore.h |
df621252 | 9304 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
9305 | F: drivers/tty/serial/sunhv.c |
9306 | F: drivers/tty/serial/sunsab.c | |
9307 | F: drivers/tty/serial/sunsab.h | |
9308 | F: drivers/tty/serial/sunsu.c | |
9309 | F: drivers/tty/serial/sunzilog.c | |
9310 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 9311 | |
389325b4 CL |
9312 | SPARSE CHECKER |
9313 | M: "Christopher Li" <[email protected]> | |
9314 | L: [email protected] | |
9315 | W: https://sparse.wiki.kernel.org/ | |
9316 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
9317 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
9318 | S: Maintained | |
9319 | F: include/linux/compiler.h | |
9320 | ||
fc0c195a | 9321 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 9322 | M: Viresh Kumar <[email protected]> |
9cc23682 | 9323 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
9324 | L: [email protected] |
9325 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
9326 | W: http://www.st.com/spear |
9327 | S: Maintained | |
281e192f | 9328 | F: arch/arm/mach-spear/ |
fc0c195a VK |
9329 | |
9330 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 9331 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
9332 | L: [email protected] |
9333 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
9334 | W: http://www.st.com/spear |
9335 | S: Maintained | |
5df33a62 | 9336 | F: drivers/clk/spear/ |
fc0c195a | 9337 | |
e2d1d6c0 | 9338 | SPI SUBSYSTEM |
b02e48f2 | 9339 | M: Mark Brown <[email protected]> |
dfbe403c | 9340 | L: [email protected] |
e7e4e13c | 9341 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 9342 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 9343 | S: Maintained |
679655da JP |
9344 | F: Documentation/spi/ |
9345 | F: drivers/spi/ | |
9346 | F: include/linux/spi/ | |
c117ab84 | 9347 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 9348 | |
2752e401 | 9349 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
9350 | M: Ishizaki Kou <[email protected]> |
9351 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
9352 | L: [email protected] |
9353 | S: Supported | |
679655da | 9354 | F: Documentation/networking/spider_net.txt |
8df158ac | 9355 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 9356 | |
e2d1d6c0 | 9357 | SPU FILE SYSTEM |
8b58be88 | 9358 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
9359 | L: [email protected] |
9360 | L: [email protected] | |
e2d1d6c0 RD |
9361 | W: http://www.ibm.com/developerworks/power/cell/ |
9362 | S: Supported | |
679655da JP |
9363 | F: Documentation/filesystems/spufs.txt |
9364 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 9365 | |
fc555841 | 9366 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 9367 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
9368 | L: [email protected] (subscribers-only) |
9369 | W: http://squashfs.org.uk | |
9370 | S: Maintained | |
679655da JP |
9371 | F: Documentation/filesystems/squashfs.txt |
9372 | F: fs/squashfs/ | |
fc555841 | 9373 | |
1da177e4 | 9374 | SRM (Alpha) environment access |
8b58be88 | 9375 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 9376 | S: Maintained |
679655da | 9377 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 9378 | |
26e9a397 | 9379 | STABLE BRANCH |
879a5a00 | 9380 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 9381 | L: [email protected] |
879a5a00 | 9382 | S: Supported |
7b175c46 | 9383 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 9384 | |
26e9a397 | 9385 | STAGING SUBSYSTEM |
879a5a00 | 9386 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 9387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 9388 | L: [email protected] |
879a5a00 | 9389 | S: Supported |
679655da | 9390 | F: drivers/staging/ |
dbc6c2cc | 9391 | |
ebd3d010 JP |
9392 | STAGING - COMEDI |
9393 | M: Ian Abbott <[email protected]> | |
81b884c9 | 9394 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
9395 | S: Odd Fixes |
9396 | F: drivers/staging/comedi/ | |
9397 | ||
a0138163 JP |
9398 | STAGING - FLARION FT1000 DRIVERS |
9399 | M: Marek Belisko <[email protected]> | |
9400 | S: Odd Fixes | |
9401 | F: drivers/staging/ft1000/ | |
9402 | ||
6c1bb424 | 9403 | STAGING - INDUSTRIAL IO |
030a13d7 | 9404 | M: Jonathan Cameron <[email protected]> |
a0138163 | 9405 | L: [email protected] |
6c1bb424 JP |
9406 | S: Odd Fixes |
9407 | F: drivers/staging/iio/ | |
9408 | ||
a0138163 JP |
9409 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
9410 | M: Jarod Wilson <[email protected]> | |
9411 | W: http://www.lirc.org/ | |
9412 | S: Odd Fixes | |
b2b0186d | 9413 | F: drivers/staging/media/lirc/ |
a0138163 | 9414 | |
f5e5de1e OD |
9415 | STAGING - LUSTRE PARALLEL FILESYSTEM |
9416 | M: Oleg Drokin <[email protected]> | |
9417 | M: Andreas Dilger <[email protected]> | |
9418 | L: [email protected] (moderated for non-subscribers) | |
9419 | W: http://lustre.opensfs.org/ | |
9420 | S: Maintained | |
9421 | F: drivers/staging/lustre | |
9422 | ||
7c6b6c71 | 9423 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 9424 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
9425 | M: Marc Dietrich <[email protected]> |
9426 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 9427 | L: [email protected] |
7c6b6c71 MD |
9428 | S: Maintained |
9429 | F: drivers/staging/nvec/ | |
9430 | ||
a0138163 | 9431 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
9432 | M: Jens Frederich <[email protected]> |
9433 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
9434 | M: Jon Nettleton <[email protected]> |
9435 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 9436 | S: Maintained |
a0138163 JP |
9437 | F: drivers/staging/olpc_dcon/ |
9438 | ||
94cfdd15 | 9439 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
96747a8f | 9440 | M: Shigekatsu Tateno <[email protected]> |
94cfdd15 CK |
9441 | S: Maintained |
9442 | F: drivers/staging/ozwpan/ | |
9443 | ||
a0138163 | 9444 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
9445 | M: Willy Tarreau <[email protected]> |
9446 | S: Odd Fixes | |
9447 | F: drivers/staging/panel/ | |
9448 | ||
a0138163 JP |
9449 | STAGING - REALTEK RTL8712U DRIVERS |
9450 | M: Larry Finger <[email protected]> | |
9451 | M: Florian Schilhabel <[email protected]>. | |
9452 | S: Odd Fixes | |
9453 | F: drivers/staging/rtl8712/ | |
9454 | ||
7591ba8b JS |
9455 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
9456 | M: Larry Finger <[email protected]> | |
9457 | M: Jes Sorensen <[email protected]> | |
9458 | L: [email protected] | |
9459 | S: Maintained | |
9460 | F: drivers/staging/rtl8723au/ | |
9461 | ||
13e4e9b8 SM |
9462 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
9463 | M: Sudip Mukherjee <[email protected]> | |
9464 | M: Teddy Wang <[email protected]> | |
9465 | M: Sudip Mukherjee <[email protected]> | |
9466 | L: [email protected] | |
9467 | S: Maintained | |
9468 | F: drivers/staging/sm7xxfb/ | |
9469 | ||
980ac4d7 SM |
9470 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
9471 | M: Sudip Mukherjee <[email protected]> | |
9472 | M: Teddy Wang <[email protected]> | |
9473 | M: Sudip Mukherjee <[email protected]> | |
9474 | L: [email protected] | |
9475 | S: Maintained | |
9476 | F: drivers/staging/sm750fb/ | |
9477 | ||
510fa408 JP |
9478 | STAGING - SLICOSS |
9479 | M: Lior Dotan <[email protected]> | |
9480 | M: Christopher Harrer <[email protected]> | |
9481 | S: Odd Fixes | |
9482 | F: drivers/staging/slicoss/ | |
9483 | ||
a0138163 JP |
9484 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
9485 | M: William Hubbs <[email protected]> | |
9486 | M: Chris Brannon <[email protected]> | |
d33bce31 | 9487 | M: Kirk Reiser <[email protected]> |
a0138163 | 9488 | M: Samuel Thibault <[email protected]> |
e6a152ef | 9489 | L: [email protected] |
a0138163 JP |
9490 | W: http://www.linux-speakup.org/ |
9491 | S: Odd Fixes | |
9492 | F: drivers/staging/speakup/ | |
9493 | ||
b3e871ce JP |
9494 | STAGING - VIA VT665X DRIVERS |
9495 | M: Forest Bond <[email protected]> | |
9496 | S: Odd Fixes | |
9497 | F: drivers/staging/vt665?/ | |
9498 | ||
709bcb07 | 9499 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 9500 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
9501 | S: Odd Fixes |
9502 | F: drivers/staging/xgifb/ | |
9503 | ||
1da177e4 | 9504 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 9505 | M: Ion Badulescu <[email protected]> |
b4f90189 | 9506 | S: Odd Fixes |
9bba23b0 | 9507 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 9508 | |
e2d1d6c0 | 9509 | SUN3/3X |
8b58be88 | 9510 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
9511 | W: http://sammy.net/sun3/ |
9512 | S: Maintained | |
679655da JP |
9513 | F: arch/m68k/kernel/*sun3* |
9514 | F: arch/m68k/sun3*/ | |
9515 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 9516 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 9517 | |
af6a5af8 HG |
9518 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
9519 | M: Hans de Goede <[email protected]> | |
9520 | L: [email protected] | |
9521 | S: Maintained | |
9522 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
9523 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
9524 | ||
2bc9ff01 DK |
9525 | SUNDANCE NETWORK DRIVER |
9526 | M: Denis Kirjanov <[email protected]> | |
9527 | L: [email protected] | |
9528 | S: Maintained | |
9529 | F: drivers/net/ethernet/dlink/sundance.c | |
9530 | ||
2cbb12a4 | 9531 | SUPERH |
2cbb12a4 | 9532 | L: [email protected] |
8a6e2535 | 9533 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 9534 | S: Orphan |
066069e1 | 9535 | F: Documentation/sh/ |
679655da | 9536 | F: arch/sh/ |
066069e1 | 9537 | F: drivers/sh/ |
1da177e4 | 9538 | |
4480f15b | 9539 | SUSPEND TO RAM |
7fb06082 | 9540 | M: "Rafael J. Wysocki" <[email protected]> |
8b58be88 JP |
9541 | M: Len Brown <[email protected]> |
9542 | M: Pavel Machek <[email protected]> | |
bf1c138e | 9543 | L: [email protected] |
e2d1d6c0 | 9544 | S: Supported |
679655da JP |
9545 | F: Documentation/power/ |
9546 | F: arch/x86/kernel/acpi/ | |
9547 | F: drivers/base/power/ | |
9548 | F: kernel/power/ | |
9549 | F: include/linux/suspend.h | |
9550 | F: include/linux/freezer.h | |
9551 | F: include/linux/pm.h | |
1da177e4 LT |
9552 | |
9553 | SVGA HANDLING | |
8b58be88 | 9554 | M: Martin Mares <[email protected]> |
1da177e4 LT |
9555 | L: [email protected] |
9556 | S: Maintained | |
679655da JP |
9557 | F: Documentation/svga.txt |
9558 | F: arch/x86/boot/video* | |
1da177e4 | 9559 | |
6e28b761 KRW |
9560 | SWIOTLB SUBSYSTEM |
9561 | M: Konrad Rzeszutek Wilk <[email protected]> | |
9562 | L: [email protected] | |
9563 | S: Supported | |
9564 | F: lib/swiotlb.c | |
9565 | F: arch/*/kernel/pci-swiotlb.c | |
9566 | F: include/linux/swiotlb.h | |
9567 | ||
007f790c JP |
9568 | SWITCHDEV |
9569 | M: Jiri Pirko <[email protected]> | |
9570 | L: [email protected] | |
9571 | S: Supported | |
9572 | F: net/switchdev/ | |
9573 | F: include/net/switchdev.h | |
9574 | ||
db8e35d5 VG |
9575 | SYNOPSYS ARC ARCHITECTURE |
9576 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
9577 | S: Supported |
9578 | F: arch/arc/ | |
6659a20a | 9579 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 9580 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 9581 | |
1da177e4 | 9582 | SYSV FILESYSTEM |
8b58be88 | 9583 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 9584 | S: Maintained |
679655da JP |
9585 | F: Documentation/filesystems/sysv-fs.txt |
9586 | F: fs/sysv/ | |
9587 | F: include/linux/sysv_fs.h | |
1da177e4 | 9588 | |
86cfa7fc NB |
9589 | TARGET SUBSYSTEM |
9590 | M: Nicholas A. Bellinger <[email protected]> | |
9591 | L: [email protected] | |
b9f5edc2 | 9592 | L: [email protected] |
86cfa7fc | 9593 | W: http://www.linux-iscsi.org |
cf015e9f | 9594 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 9595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
9596 | S: Supported |
9597 | F: drivers/target/ | |
9598 | F: include/target/ | |
9599 | F: Documentation/target/ | |
9600 | ||
4e68852d | 9601 | TASKSTATS STATISTICS INTERFACE |
185e595f | 9602 | M: Balbir Singh <[email protected]> |
4e68852d | 9603 | S: Maintained |
679655da JP |
9604 | F: Documentation/accounting/taskstats* |
9605 | F: include/linux/taskstats* | |
9606 | F: kernel/taskstats.c | |
4e68852d | 9607 | |
781b456a | 9608 | TC CLASSIFIER |
f935f3f8 | 9609 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
9610 | L: [email protected] |
9611 | S: Maintained | |
679655da | 9612 | F: include/net/pkt_cls.h |
c117ab84 | 9613 | F: include/uapi/linux/pkt_cls.h |
679655da | 9614 | F: net/sched/ |
781b456a | 9615 | |
5067f08a | 9616 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
9617 | M: "Wong Hoi Sing, Edison" <[email protected]> |
9618 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
9619 | W: http://tcp-lp-mod.sourceforge.net/ |
9620 | S: Maintained | |
679655da | 9621 | F: net/ipv4/tcp_lp.c |
5067f08a | 9622 | |
91952bc0 AP |
9623 | TDA10071 MEDIA DRIVER |
9624 | M: Antti Palosaari <[email protected]> | |
9625 | L: [email protected] | |
9626 | W: http://linuxtv.org/ | |
9627 | W: http://palosaari.fi/linux/ | |
9628 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9629 | T: git git://linuxtv.org/anttip/media_tree.git | |
9630 | S: Maintained | |
9631 | F: drivers/media/dvb-frontends/tda10071* | |
9632 | ||
9633 | TDA18212 MEDIA DRIVER | |
9634 | M: Antti Palosaari <[email protected]> | |
9635 | L: [email protected] | |
9636 | W: http://linuxtv.org/ | |
9637 | W: http://palosaari.fi/linux/ | |
9638 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9639 | T: git git://linuxtv.org/anttip/media_tree.git | |
9640 | S: Maintained | |
9641 | F: drivers/media/tuners/tda18212* | |
9642 | ||
9643 | TDA18218 MEDIA DRIVER | |
9644 | M: Antti Palosaari <[email protected]> | |
9645 | L: [email protected] | |
9646 | W: http://linuxtv.org/ | |
9647 | W: http://palosaari.fi/linux/ | |
9648 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9649 | T: git git://linuxtv.org/anttip/media_tree.git | |
9650 | S: Maintained | |
9651 | F: drivers/media/tuners/tda18218* | |
9652 | ||
3b2f6aba MK |
9653 | TDA18271 MEDIA DRIVER |
9654 | M: Michael Krufky <[email protected]> | |
9655 | L: [email protected] | |
9656 | W: http://linuxtv.org/ | |
9657 | W: http://github.com/mkrufky | |
9658 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9659 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9660 | S: Maintained | |
9661 | F: drivers/media/tuners/tda18271* | |
9662 | ||
e48307a9 MK |
9663 | TDA827x MEDIA DRIVER |
9664 | M: Michael Krufky <[email protected]> | |
9665 | L: [email protected] | |
9666 | W: http://linuxtv.org/ | |
9667 | W: http://github.com/mkrufky | |
9668 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9669 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9670 | S: Maintained | |
9671 | F: drivers/media/tuners/tda8290.* | |
9672 | ||
66cf9212 MK |
9673 | TDA8290 MEDIA DRIVER |
9674 | M: Michael Krufky <[email protected]> | |
9675 | L: [email protected] | |
9676 | W: http://linuxtv.org/ | |
9677 | W: http://github.com/mkrufky | |
9678 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9679 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9680 | S: Maintained | |
9681 | F: drivers/media/tuners/tda8290.* | |
9682 | ||
4b9fba30 HV |
9683 | TDA9840 MEDIA DRIVER |
9684 | M: Hans Verkuil <[email protected]> | |
9685 | L: [email protected] | |
9686 | T: git git://linuxtv.org/media_tree.git | |
9687 | W: http://linuxtv.org | |
9688 | S: Maintained | |
9689 | F: drivers/media/i2c/tda9840* | |
9690 | ||
2cb654fd | 9691 | TEA5761 TUNER DRIVER |
009a5410 | 9692 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
9693 | L: [email protected] |
9694 | W: http://linuxtv.org | |
9695 | T: git git://linuxtv.org/media_tree.git | |
9696 | S: Odd fixes | |
9697 | F: drivers/media/tuners/tea5761.* | |
9698 | ||
9699 | TEA5767 TUNER DRIVER | |
009a5410 | 9700 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
9701 | L: [email protected] |
9702 | W: http://linuxtv.org | |
9703 | T: git git://linuxtv.org/media_tree.git | |
9704 | S: Maintained | |
9705 | F: drivers/media/tuners/tea5767.* | |
9706 | ||
4b9fba30 HV |
9707 | TEA6415C MEDIA DRIVER |
9708 | M: Hans Verkuil <[email protected]> | |
9709 | L: [email protected] | |
9710 | T: git git://linuxtv.org/media_tree.git | |
9711 | W: http://linuxtv.org | |
9712 | S: Maintained | |
9713 | F: drivers/media/i2c/tea6415c* | |
9714 | ||
9715 | TEA6420 MEDIA DRIVER | |
9716 | M: Hans Verkuil <[email protected]> | |
9717 | L: [email protected] | |
9718 | T: git git://linuxtv.org/media_tree.git | |
9719 | W: http://linuxtv.org | |
9720 | S: Maintained | |
9721 | F: drivers/media/i2c/tea6420* | |
9722 | ||
3d249d4c | 9723 | TEAM DRIVER |
dca9ab92 | 9724 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
9725 | L: [email protected] |
9726 | S: Supported | |
9727 | F: drivers/net/team/ | |
9728 | F: include/linux/if_team.h | |
c117ab84 | 9729 | F: include/uapi/linux/if_team.h |
3d249d4c | 9730 | |
7d029125 VD |
9731 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9732 | M: Savoir-faire Linux Inc. <[email protected]> | |
9733 | S: Maintained | |
9734 | F: arch/x86/platform/ts5500/ | |
9735 | ||
40ad4a30 SY |
9736 | TECHNOTREND USB IR RECEIVER |
9737 | M: Sean Young <[email protected]> | |
9738 | L: [email protected] | |
9739 | S: Maintained | |
9740 | F: drivers/media/rc/ttusbir.c | |
9741 | ||
adabdb0c | 9742 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 9743 | M: Stephen Warren <[email protected]> |
adabdb0c | 9744 | M: Thierry Reding <[email protected]> |
554077c5 | 9745 | M: Alexandre Courbot <[email protected]> |
84b9414b | 9746 | L: [email protected] |
fd117cd1 | 9747 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 9748 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 9749 | S: Supported |
bbbe96ed | 9750 | N: [^a-z]tegra |
84b9414b | 9751 | |
adabdb0c SW |
9752 | TEGRA CLOCK DRIVER |
9753 | M: Peter De Schrijver <[email protected]> | |
9754 | M: Prashant Gaikwad <[email protected]> | |
9755 | S: Supported | |
9756 | F: drivers/clk/tegra/ | |
9757 | ||
9758 | TEGRA DMA DRIVER | |
9759 | M: Laxman Dewangan <[email protected]> | |
9760 | S: Supported | |
9761 | F: drivers/dma/tegra20-apb-dma.c | |
9762 | ||
adabdb0c SW |
9763 | TEGRA I2C DRIVER |
9764 | M: Laxman Dewangan <[email protected]> | |
9765 | S: Supported | |
9766 | F: drivers/i2c/busses/i2c-tegra.c | |
9767 | ||
9768 | TEGRA IOMMU DRIVERS | |
9769 | M: Hiroshi Doyu <[email protected]> | |
9770 | S: Supported | |
9771 | F: drivers/iommu/tegra* | |
9772 | ||
9773 | TEGRA KBC DRIVER | |
9774 | M: Rakesh Iyer <[email protected]> | |
9775 | M: Laxman Dewangan <[email protected]> | |
9776 | S: Supported | |
9777 | F: drivers/input/keyboard/tegra-kbc.c | |
9778 | ||
adabdb0c SW |
9779 | TEGRA PWM DRIVER |
9780 | M: Thierry Reding <[email protected]> | |
9781 | S: Supported | |
9782 | F: drivers/pwm/pwm-tegra.c | |
9783 | ||
9784 | TEGRA SERIAL DRIVER | |
9785 | M: Laxman Dewangan <[email protected]> | |
9786 | S: Supported | |
9787 | F: drivers/tty/serial/serial-tegra.c | |
9788 | ||
9789 | TEGRA SPI DRIVER | |
9790 | M: Laxman Dewangan <[email protected]> | |
9791 | S: Supported | |
9792 | F: drivers/spi/spi-tegra* | |
9793 | ||
1a348ccc | 9794 | TEHUTI ETHERNET DRIVER |
8b58be88 | 9795 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
9796 | L: [email protected] |
9797 | S: Supported | |
ef7f5429 | 9798 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 9799 | |
4e68852d | 9800 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 9801 | M: Mark Gross <[email protected]> |
4e68852d | 9802 | S: Supported |
679655da | 9803 | F: drivers/char/tlclk.c |
4e68852d | 9804 | |
4480f15b | 9805 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 9806 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
9807 | M: Max Filippov <[email protected]> |
9808 | L: [email protected] | |
4e68852d | 9809 | S: Maintained |
679655da | 9810 | F: arch/xtensa/ |
3dc99857 | 9811 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 9812 | |
5313ba66 HV |
9813 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
9814 | M: Hans Verkuil <[email protected]> | |
9815 | L: [email protected] | |
9816 | T: git git://linuxtv.org/media_tree.git | |
9817 | W: http://linuxtv.org | |
9818 | S: Maintained | |
9819 | F: drivers/media/radio/radio-raremono.c | |
9820 | ||
d3fb6955 | 9821 | THERMAL |
b75f0050 | 9822 | M: Zhang Rui <[email protected]> |
f14d1c24 | 9823 | M: Eduardo Valentin <[email protected]> |
b75f0050 JP |
9824 | L: [email protected] |
9825 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
9826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
9827 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
9828 | S: Supported | |
9829 | F: drivers/thermal/ | |
9830 | F: include/linux/thermal.h | |
af6c9f16 | 9831 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
9832 | F: include/linux/cpu_cooling.h |
9833 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 9834 | |
30ba2fbd VD |
9835 | THINGM BLINK(1) USB RGB LED DRIVER |
9836 | M: Vivien Didelot <[email protected]> | |
9837 | S: Maintained | |
9838 | F: drivers/hid/hid-thingm.c | |
9839 | ||
4e68852d | 9840 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 9841 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 9842 | L: [email protected] |
d0944853 | 9843 | L: [email protected] |
4e68852d AC |
9844 | W: http://ibm-acpi.sourceforge.net |
9845 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 9846 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 9847 | S: Maintained |
679655da | 9848 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 9849 | |
1b46f2a2 | 9850 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 9851 | M: Eduardo Valentin <[email protected]> |
1b46f2a2 | 9852 | L: [email protected] |
531ff13e | 9853 | L: [email protected] |
5a723e81 | 9854 | S: Maintained |
794b2e25 | 9855 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 9856 | |
0c7665c3 MF |
9857 | TI CDCE706 CLOCK DRIVER |
9858 | M: Max Filippov <[email protected]> | |
9859 | S: Maintained | |
9860 | F: drivers/clk/clk-cdce706.c | |
9861 | ||
49b6a5e3 TK |
9862 | TI CLOCK DRIVER |
9863 | M: Tero Kristo <[email protected]> | |
9864 | L: [email protected] | |
9865 | S: Maintained | |
9866 | F: drivers/clk/ti/ | |
9867 | F: include/linux/clk/ti.h | |
9868 | ||
4020f2d7 | 9869 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 9870 | M: Alex Dubov <[email protected]> |
795fb7e7 | 9871 | S: Maintained |
679655da JP |
9872 | F: drivers/misc/tifm* |
9873 | F: drivers/mmc/host/tifm_sd.c | |
9874 | F: include/linux/tifm.h | |
4020f2d7 | 9875 | |
e0c52404 | 9876 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 9877 | M: Santosh Shilimkar <[email protected]> |
e0c52404 SS |
9878 | L: [email protected] |
9879 | L: [email protected] (moderated for non-subscribers) | |
9880 | S: Maintained | |
9881 | F: drivers/soc/ti/* | |
9882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
9883 | ||
9884 | ||
152ad442 SR |
9885 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
9886 | M: M R Swami Reddy <[email protected]> | |
d392dead | 9887 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
9888 | L: [email protected] (moderated for non-subscribers) |
9889 | S: Maintained | |
9890 | F: sound/soc/codecs/lm49453* | |
d392dead | 9891 | F: sound/soc/codecs/isabelle* |
152ad442 | 9892 | |
0edd807d KM |
9893 | TI LP855x BACKLIGHT DRIVER |
9894 | M: Milo Kim <[email protected]> | |
9895 | S: Maintained | |
9896 | F: Documentation/backlight/lp855x-driver.txt | |
9897 | F: drivers/video/backlight/lp855x_bl.c | |
9898 | F: include/linux/platform_data/lp855x.h | |
9899 | ||
faf13f6d KM |
9900 | TI LP8727 CHARGER DRIVER |
9901 | M: Milo Kim <[email protected]> | |
9902 | S: Maintained | |
9903 | F: drivers/power/lp8727_charger.c | |
9904 | F: include/linux/platform_data/lp8727.h | |
9905 | ||
22f1229f KM |
9906 | TI LP8788 MFD DRIVER |
9907 | M: Milo Kim <[email protected]> | |
9908 | S: Maintained | |
9909 | F: drivers/iio/adc/lp8788_adc.c | |
9910 | F: drivers/leds/leds-lp8788.c | |
9911 | F: drivers/mfd/lp8788*.c | |
9912 | F: drivers/power/lp8788-charger.c | |
9913 | F: drivers/regulator/lp8788-*.c | |
9914 | F: include/linux/mfd/lp8788*.h | |
9915 | ||
84640e27 KM |
9916 | TI NETCP ETHERNET DRIVER |
9917 | M: Wingman Kwok <[email protected]> | |
9918 | M: Murali Karicheri <[email protected]> | |
9919 | L: [email protected] | |
9920 | S: Maintained | |
9921 | F: drivers/net/ethernet/ti/netcp* | |
9922 | ||
dd5e8e6b | 9923 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 9924 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
9925 | L: [email protected] (moderated for non-subscribers) |
9926 | S: Maintained | |
9927 | F: sound/soc/codecs/twl4030* | |
9928 | ||
90921014 | 9929 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
9930 | L: [email protected] |
9931 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
9932 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
9933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 9934 | S: Orphan |
90921014 LC |
9935 | F: drivers/net/wireless/ti/ |
9936 | F: include/linux/wl12xx.h | |
9937 | ||
e86eaa3a | 9938 | TIPC NETWORK LAYER |
8b58be88 | 9939 | M: Jon Maloy <[email protected]> |
115403df | 9940 | M: Ying Xue <[email protected]> |
633d2bde AS |
9941 | L: [email protected] (core kernel code) |
9942 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 9943 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 9944 | S: Maintained |
c117ab84 | 9945 | F: include/uapi/linux/tipc*.h |
679655da | 9946 | F: net/tipc/ |
e86eaa3a | 9947 | |
867e359b | 9948 | TILE ARCHITECTURE |
c47b15c4 | 9949 | M: Chris Metcalf <[email protected]> |
740e1433 | 9950 | W: http://www.ezchip.com/scm/ |
867e359b CM |
9951 | S: Supported |
9952 | F: arch/tile/ | |
6b940606 | 9953 | F: drivers/char/tile-srom.c |
5c770755 | 9954 | F: drivers/edac/tile_edac.c |
6b940606 CM |
9955 | F: drivers/net/ethernet/tile/ |
9956 | F: drivers/rtc/rtc-tile.c | |
9957 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 9958 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
9959 | F: drivers/usb/host/*-tilegx.c |
9960 | F: include/linux/usb/tilegx.h | |
867e359b | 9961 | |
1da177e4 | 9962 | TLAN NETWORK DRIVER |
8b58be88 | 9963 | M: Samuel Chessman <[email protected]> |
88c07dde | 9964 | L: [email protected] (subscribers-only) |
1da177e4 LT |
9965 | W: http://sourceforge.net/projects/tlan/ |
9966 | S: Maintained | |
679655da | 9967 | F: Documentation/networking/tlan.txt |
b544dbac | 9968 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 9969 | |
d74db3b2 | 9970 | TOMOYO SECURITY MODULE |
8b58be88 JP |
9971 | M: Kentaro Takeda <[email protected]> |
9972 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
9973 | L: [email protected] (subscribers-only, for developers in English) |
9974 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
9975 | L: [email protected] (subscribers-only, for developers in Japanese) |
9976 | L: [email protected] (subscribers-only, for users in Japanese) | |
9977 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 9978 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 9979 | S: Maintained |
679655da | 9980 | F: security/tomoyo/ |
d74db3b2 | 9981 | |
9caeb532 | 9982 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 9983 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 9984 | L: [email protected] |
9caeb532 HRK |
9985 | S: Maintained |
9986 | F: drivers/platform/x86/topstar-laptop.c | |
9987 | ||
1da177e4 | 9988 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 9989 | M: Azael Avalos <[email protected]> |
d0944853 | 9990 | L: [email protected] |
0a63ca11 | 9991 | S: Maintained |
679655da | 9992 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 9993 | |
0a63ca11 AA |
9994 | TOSHIBA BLUETOOTH DRIVER |
9995 | M: Azael Avalos <[email protected]> | |
9996 | L: [email protected] | |
9997 | S: Maintained | |
9998 | F: drivers/platform/x86/toshiba_bluetooth.c | |
9999 | ||
10000 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
10001 | M: Azael Avalos <[email protected]> | |
10002 | L: [email protected] | |
10003 | S: Maintained | |
10004 | F: drivers/platform/x86/toshiba_haps.c | |
10005 | ||
1da177e4 | 10006 | TOSHIBA SMM DRIVER |
8b58be88 | 10007 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
10008 | L: [email protected] |
10009 | W: http://www.buzzard.org.uk/toshiba/ | |
10010 | S: Maintained | |
679655da JP |
10011 | F: drivers/char/toshiba.c |
10012 | F: include/linux/toshiba.h | |
c117ab84 | 10013 | F: include/uapi/linux/toshiba.h |
1da177e4 | 10014 | |
d719f900 | 10015 | TMIO MMC DRIVER |
252f29a9 | 10016 | M: Ian Molton <[email protected]> |
d1057c40 | 10017 | L: [email protected] |
d719f900 | 10018 | S: Maintained |
d1057c40 GL |
10019 | F: drivers/mmc/host/tmio_mmc* |
10020 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
10021 | F: include/linux/mmc/tmio.h | |
10022 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 10023 | |
917cc4e6 GR |
10024 | TMP401 HARDWARE MONITOR DRIVER |
10025 | M: Guenter Roeck <[email protected]> | |
10026 | L: [email protected] | |
10027 | S: Maintained | |
10028 | F: Documentation/hwmon/tmp401 | |
10029 | F: drivers/hwmon/tmp401.c | |
10030 | ||
98f32602 | 10031 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 10032 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
10033 | L: [email protected] |
10034 | S: Maintained | |
10035 | F: include/linux/shmem_fs.h | |
10036 | F: mm/shmem.c | |
10037 | ||
45f95b53 | 10038 | TM6000 VIDEO4LINUX DRIVER |
009a5410 | 10039 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
10040 | L: [email protected] |
10041 | W: http://linuxtv.org | |
10042 | T: git git://linuxtv.org/media_tree.git | |
10043 | S: Odd fixes | |
10044 | F: drivers/media/usb/tm6000/ | |
10045 | ||
c65fde19 HV |
10046 | TW68 VIDEO4LINUX DRIVER |
10047 | M: Hans Verkuil <[email protected]> | |
10048 | L: [email protected] | |
10049 | T: git git://linuxtv.org/media_tree.git | |
10050 | W: http://linuxtv.org | |
10051 | S: Odd Fixes | |
10052 | F: drivers/media/pci/tw68/ | |
10053 | ||
4e68852d | 10054 | TPM DEVICE DRIVER |
901486b8 | 10055 | M: Peter Huewe <[email protected]> |
cbb2d5e4 | 10056 | M: Marcel Selhorst <[email protected]> |
ce93b4b0 | 10057 | R: Jason Gunthorpe <[email protected]> |
383dec1f | 10058 | W: http://tpmdd.sourceforge.net |
63a10dfd | 10059 | L: [email protected] (moderated for non-subscribers) |
f78c81b4 PH |
10060 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
10061 | T: https://github.com/PeterHuewe/linux-tpmdd | |
4e68852d | 10062 | S: Maintained |
679655da | 10063 | F: drivers/char/tpm/ |
4e68852d | 10064 | |
1a0f1b27 AL |
10065 | TPM IBM_VTPM DEVICE DRIVER |
10066 | M: Ashley Lai <[email protected]> | |
10067 | W: http://tpmdd.sourceforge.net | |
10068 | L: [email protected] (moderated for non-subscribers) | |
10069 | S: Maintained | |
10070 | F: drivers/char/tpm/tpm_ibmvtpm* | |
10071 | ||
d6f005a1 JP |
10072 | TRACING |
10073 | M: Steven Rostedt <[email protected]> | |
d6f005a1 | 10074 | M: Ingo Molnar <[email protected]> |
75fc2d37 | 10075 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
10076 | S: Maintained |
10077 | F: Documentation/trace/ftrace.txt | |
10078 | F: arch/*/*/*/ftrace.h | |
10079 | F: arch/*/kernel/ftrace.c | |
10080 | F: include/*/ftrace.h | |
10081 | F: include/linux/trace*.h | |
10082 | F: include/trace/ | |
10083 | F: kernel/trace/ | |
6e68e6c5 | 10084 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 10085 | |
1da177e4 | 10086 | TRIVIAL PATCHES |
8b58be88 | 10087 | M: Jiri Kosina <[email protected]> |
54e5881d | 10088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 10089 | S: Maintained |
86ef925f | 10090 | K: ^Subject:.*(?i)trivial |
1da177e4 | 10091 | |
4e68852d | 10092 | TTY LAYER |
879a5a00 | 10093 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 10094 | M: Jiri Slaby <[email protected]> |
879a5a00 | 10095 | S: Supported |
08deed1e | 10096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 10097 | F: drivers/tty/ |
df621252 | 10098 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
10099 | F: include/linux/serial_core.h |
10100 | F: include/linux/serial.h | |
10101 | F: include/linux/tty.h | |
c117ab84 CEB |
10102 | F: include/uapi/linux/serial_core.h |
10103 | F: include/uapi/linux/serial.h | |
10104 | F: include/uapi/linux/tty.h | |
4e68852d | 10105 | |
91952bc0 AP |
10106 | TUA9001 MEDIA DRIVER |
10107 | M: Antti Palosaari <[email protected]> | |
10108 | L: [email protected] | |
10109 | W: http://linuxtv.org/ | |
10110 | W: http://palosaari.fi/linux/ | |
10111 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10112 | T: git git://linuxtv.org/anttip/media_tree.git | |
10113 | S: Maintained | |
10114 | F: drivers/media/tuners/tua9001* | |
10115 | ||
740db6d7 | 10116 | TULIP NETWORK DRIVERS |
8b58be88 | 10117 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
10118 | L: [email protected] |
10119 | S: Maintained | |
0f04e2aa | 10120 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
10121 | |
10122 | TUN/TAP driver | |
ba57b6f2 | 10123 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
10124 | W: http://vtun.sourceforge.net/tun |
10125 | S: Maintained | |
679655da JP |
10126 | F: Documentation/networking/tuntap.txt |
10127 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 10128 | |
b454cc66 | 10129 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 10130 | M: "Maciej W. Rozycki" <[email protected]> |
c406339c RB |
10131 | M: Ralf Baechle <[email protected]> |
10132 | L: [email protected] | |
10133 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 10134 | S: Maintained |
679655da JP |
10135 | F: drivers/tc/ |
10136 | F: include/linux/tc.h | |
b454cc66 | 10137 | |
1da177e4 | 10138 | U14-34F SCSI DRIVER |
8b58be88 | 10139 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
10140 | L: [email protected] |
10141 | S: Maintained | |
679655da | 10142 | F: drivers/scsi/u14-34f.c |
1da177e4 | 10143 | |
e2d1d6c0 | 10144 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 10145 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 10146 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 10147 | L: [email protected] |
e2966cbe | 10148 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
10149 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
10150 | S: Maintained | |
679655da JP |
10151 | F: Documentation/filesystems/ubifs.txt |
10152 | F: fs/ubifs/ | |
e2d1d6c0 | 10153 | |
cc2020e6 | 10154 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 10155 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
10156 | W: http://www.uclinux.org/ |
10157 | L: [email protected] (subscribers-only) | |
10158 | S: Maintained | |
61bc02bb JP |
10159 | F: arch/m68k/*/*_no.* |
10160 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 10161 | |
1da177e4 | 10162 | UDF FILESYSTEM |
8b58be88 | 10163 | M: Jan Kara <[email protected]> |
1da177e4 | 10164 | S: Maintained |
679655da JP |
10165 | F: Documentation/filesystems/udf.txt |
10166 | F: fs/udf/ | |
1da177e4 | 10167 | |
cc2020e6 | 10168 | UFS FILESYSTEM |
8b58be88 | 10169 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 10170 | S: Maintained |
679655da JP |
10171 | F: Documentation/filesystems/ufs.txt |
10172 | F: fs/ufs/ | |
cc2020e6 | 10173 | |
0a09d3ab DR |
10174 | UHID USERSPACE HID IO DRIVER: |
10175 | M: David Herrmann <[email protected]> | |
10176 | L: [email protected] | |
10177 | S: Maintained | |
10178 | F: drivers/hid/uhid.c | |
c117ab84 | 10179 | F: include/uapi/linux/uhid.h |
0a09d3ab | 10180 | |
18332a80 | 10181 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 10182 | L: [email protected] |
10c6c9c9 | 10183 | S: Orphan |
355ffe69 | 10184 | F: drivers/uwb/ |
679655da JP |
10185 | F: include/linux/uwb.h |
10186 | F: include/linux/uwb/ | |
18332a80 | 10187 | |
b31d8273 G |
10188 | UNICORE32 ARCHITECTURE: |
10189 | M: Guan Xuetao <[email protected]> | |
10190 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
10191 | S: Maintained | |
ceebf4d5 | 10192 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
10193 | F: arch/unicore32/ |
10194 | ||
d8379ab1 TF |
10195 | UNIFDEF |
10196 | M: Tony Finch <[email protected]> | |
10197 | W: http://dotat.at/prog/unifdef | |
10198 | S: Maintained | |
10199 | F: scripts/unifdef.c | |
10200 | ||
1da177e4 | 10201 | UNIFORM CDROM DRIVER |
8b58be88 | 10202 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
10203 | W: http://www.kernel.dk |
10204 | S: Maintained | |
679655da JP |
10205 | F: Documentation/cdrom/ |
10206 | F: drivers/cdrom/cdrom.c | |
10207 | F: include/linux/cdrom.h | |
c117ab84 | 10208 | F: include/uapi/linux/cdrom.h |
1da177e4 | 10209 | |
56df0122 | 10210 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
10211 | M: Benjamin Romer <[email protected]> |
10212 | M: David Kershner <[email protected]> | |
10213 | L: [email protected] (Unisys internal) | |
10214 | S: Supported | |
10215 | F: drivers/staging/unisys/ | |
56df0122 | 10216 | |
9941fa6e VH |
10217 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
10218 | M: Vinayak Holikatti <[email protected]> | |
9941fa6e VH |
10219 | L: [email protected] |
10220 | S: Supported | |
10221 | F: Documentation/scsi/ufs.txt | |
10222 | F: drivers/scsi/ufs/ | |
10223 | ||
e2d1d6c0 | 10224 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 10225 | M: Artem Bityutskiy <[email protected]> |
346be9bc | 10226 | M: Richard Weinberger <[email protected]> |
e2d1d6c0 RD |
10227 | W: http://www.linux-mtd.infradead.org/ |
10228 | L: [email protected] | |
b6b44e0a | 10229 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 10230 | S: Supported |
80811493 | 10231 | F: drivers/mtd/ubi/ |
679655da | 10232 | F: include/linux/mtd/ubi.h |
c117ab84 | 10233 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 10234 | |
1da177e4 | 10235 | USB ACM DRIVER |
61eee9a7 | 10236 | M: Oliver Neukum <[email protected]> |
6372594a | 10237 | L: [email protected] |
1da177e4 | 10238 | S: Maintained |
679655da JP |
10239 | F: Documentation/usb/acm.txt |
10240 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 10241 | |
b7d572e1 PF |
10242 | USB AR5523 WIRELESS DRIVER |
10243 | M: Pontus Fuchs <[email protected]> | |
10244 | L: [email protected] | |
10245 | S: Maintained | |
10246 | F: drivers/net/wireless/ath/ar5523/ | |
10247 | ||
115bb1ff | 10248 | USB ATTACHED SCSI |
f50a4968 | 10249 | M: Hans de Goede <[email protected]> |
8eae0fb7 | 10250 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
10251 | L: [email protected] |
10252 | L: [email protected] | |
8eae0fb7 | 10253 | S: Maintained |
115bb1ff MW |
10254 | F: drivers/usb/storage/uas.c |
10255 | ||
1da177e4 | 10256 | USB CDC ETHERNET DRIVER |
61eee9a7 | 10257 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 10258 | L: [email protected] |
1da177e4 | 10259 | S: Maintained |
679655da | 10260 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 10261 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 10262 | |
66e3e591 KP |
10263 | USB CHAOSKEY DRIVER |
10264 | M: Keith Packard <[email protected]> | |
10265 | L: [email protected] | |
10266 | S: Maintained | |
10267 | F: drivers/usb/misc/chaoskey.c | |
10268 | ||
b02b371e | 10269 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 10270 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
10271 | L: [email protected] |
10272 | S: Maintained | |
679655da | 10273 | F: drivers/usb/c67x00/ |
b02b371e | 10274 | |
d0374f4f | 10275 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 10276 | M: Peter Korsgaard <[email protected]> |
043600a6 | 10277 | L: [email protected] |
d0374f4f PK |
10278 | W: http://www.linux-usb.org/usbnet |
10279 | S: Maintained | |
679655da | 10280 | F: drivers/net/usb/dm9601.c |
d0374f4f | 10281 | |
cc2020e6 | 10282 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 10283 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
10284 | L: [email protected] |
10285 | W: http://rio500.sourceforge.net | |
10286 | S: Maintained | |
679655da | 10287 | F: drivers/usb/misc/rio500* |
cc2020e6 | 10288 | |
1da177e4 | 10289 | USB EHCI DRIVER |
578333ab | 10290 | M: Alan Stern <[email protected]> |
795fb7e7 | 10291 | L: [email protected] |
578333ab | 10292 | S: Maintained |
679655da JP |
10293 | F: Documentation/usb/ehci.txt |
10294 | F: drivers/usb/host/ehci* | |
1da177e4 | 10295 | |
69ae9e3e | 10296 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 10297 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 10298 | L: [email protected] |
69ae9e3e | 10299 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
10300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
10301 | S: Maintained | |
679655da JP |
10302 | F: drivers/usb/gadget/ |
10303 | F: include/linux/usb/gadget* | |
69ae9e3e | 10304 | |
2dea64b4 | 10305 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 10306 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 10307 | L: [email protected] |
54e5881d | 10308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 10309 | S: Maintained |
c2f01971 | 10310 | F: Documentation/hid/hiddev.txt |
679655da | 10311 | F: drivers/hid/usbhid/ |
1da177e4 | 10312 | |
959eea21 | 10313 | USB ISP116X DRIVER |
8b58be88 | 10314 | M: Olav Kongas <[email protected]> |
795fb7e7 | 10315 | L: [email protected] |
959eea21 | 10316 | S: Maintained |
679655da JP |
10317 | F: drivers/usb/host/isp116x* |
10318 | F: include/linux/usb/isp116x.h | |
959eea21 | 10319 | |
1da177e4 | 10320 | USB MASS STORAGE DRIVER |
8b58be88 | 10321 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 10322 | L: [email protected] |
8836aeb8 | 10323 | L: [email protected] |
1da177e4 LT |
10324 | S: Maintained |
10325 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 10326 | F: drivers/usb/storage/ |
1da177e4 | 10327 | |
af39917d CL |
10328 | USB MIDI DRIVER |
10329 | M: Clemens Ladisch <[email protected]> | |
10330 | L: [email protected] (moderated for non-subscribers) | |
10331 | T: git git://git.alsa-project.org/alsa-kernel.git | |
10332 | S: Maintained | |
10333 | F: sound/usb/midi.* | |
10334 | ||
444ce9d4 JP |
10335 | USB NETWORKING DRIVERS |
10336 | L: [email protected] | |
10337 | S: Odd Fixes | |
10338 | F: drivers/net/usb/ | |
10339 | ||
1da177e4 | 10340 | USB OHCI DRIVER |
578333ab | 10341 | M: Alan Stern <[email protected]> |
795fb7e7 | 10342 | L: [email protected] |
578333ab | 10343 | S: Maintained |
679655da JP |
10344 | F: Documentation/usb/ohci.txt |
10345 | F: drivers/usb/host/ohci* | |
1da177e4 | 10346 | |
963ffa3e PC |
10347 | USB OTG FSM (Finite State Machine) |
10348 | M: Peter Chen <[email protected]> | |
8373856d | 10349 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
10350 | L: [email protected] |
10351 | S: Maintained | |
10352 | F: drivers/usb/common/usb-otg-fsm.c | |
10353 | ||
563da3a9 VM |
10354 | USB OVER IP DRIVER |
10355 | M: Valentina Manea <[email protected]> | |
10356 | M: Shuah Khan <[email protected]> | |
10357 | L: [email protected] | |
10358 | S: Maintained | |
10359 | F: drivers/usb/usbip/ | |
10360 | F: tools/usb/usbip/ | |
10361 | ||
1da177e4 | 10362 | USB PEGASUS DRIVER |
a16b945c | 10363 | M: Petko Manolov <[email protected]> |
795fb7e7 | 10364 | L: [email protected] |
043600a6 | 10365 | L: [email protected] |
052e3128 PM |
10366 | T: git git://github.com/petkan/pegasus.git |
10367 | W: https://github.com/petkan/pegasus | |
1da177e4 | 10368 | S: Maintained |
679655da | 10369 | F: drivers/net/usb/pegasus.* |
1da177e4 | 10370 | |
d3ad558f FB |
10371 | USB PHY LAYER |
10372 | M: Felipe Balbi <[email protected]> | |
10373 | L: [email protected] | |
10374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
10375 | S: Maintained | |
10376 | F: drivers/usb/phy/ | |
d3ad558f | 10377 | |
73e4fb3f | 10378 | USB PRINTER DRIVER (usblp) |
8b58be88 | 10379 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 10380 | L: [email protected] |
73e4fb3f | 10381 | S: Supported |
679655da | 10382 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
10383 | |
10384 | USB RTL8150 DRIVER | |
a16b945c | 10385 | M: Petko Manolov <[email protected]> |
795fb7e7 | 10386 | L: [email protected] |
043600a6 | 10387 | L: [email protected] |
052e3128 PM |
10388 | T: git git://github.com/petkan/rtl8150.git |
10389 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 10390 | S: Maintained |
679655da | 10391 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 10392 | |
f896b796 | 10393 | USB SERIAL SUBSYSTEM |
66085694 | 10394 | M: Johan Hovold <[email protected]> |
795fb7e7 | 10395 | L: [email protected] |
4e68852d | 10396 | S: Maintained |
679655da | 10397 | F: Documentation/usb/usb-serial.txt |
f896b796 | 10398 | F: drivers/usb/serial/ |
679655da | 10399 | F: include/linux/usb/serial.h |
1da177e4 | 10400 | |
b3f0db1c SG |
10401 | USB SMSC75XX ETHERNET DRIVER |
10402 | M: Steve Glendinning <[email protected]> | |
10403 | L: [email protected] | |
10404 | S: Maintained | |
10405 | F: drivers/net/usb/smsc75xx.* | |
10406 | ||
2f7ca802 | 10407 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 10408 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 10409 | L: [email protected] |
90b24cfb | 10410 | S: Maintained |
679655da | 10411 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 10412 | |
1da177e4 | 10413 | USB SUBSYSTEM |
879a5a00 | 10414 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 10415 | L: [email protected] |
1da177e4 | 10416 | W: http://www.linux-usb.org |
08deed1e | 10417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 10418 | S: Supported |
679655da | 10419 | F: Documentation/usb/ |
679655da JP |
10420 | F: drivers/usb/ |
10421 | F: include/linux/usb.h | |
10422 | F: include/linux/usb/ | |
1da177e4 LT |
10423 | |
10424 | USB UHCI DRIVER | |
8b58be88 | 10425 | M: Alan Stern <[email protected]> |
795fb7e7 | 10426 | L: [email protected] |
1da177e4 | 10427 | S: Maintained |
679655da | 10428 | F: drivers/usb/host/uhci* |
1da177e4 | 10429 | |
69ae9e3e | 10430 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 10431 | M: Oliver Neukum <[email protected]> |
043600a6 | 10432 | L: [email protected] |
69ae9e3e | 10433 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 10434 | S: Maintained |
679655da JP |
10435 | F: drivers/net/usb/usbnet.c |
10436 | F: include/linux/usb/usbnet.h | |
1da177e4 | 10437 | |
c0efd232 | 10438 | USB VIDEO CLASS |
c53ac071 | 10439 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 10440 | L: [email protected] (subscribers-only) |
661263b5 | 10441 | L: [email protected] |
275ffde4 | 10442 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 10443 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 10444 | S: Maintained |
0c0d06ca | 10445 | F: drivers/media/usb/uvc/ |
6c0f0359 | 10446 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 10447 | |
b60b9c45 HV |
10448 | USB VISION DRIVER |
10449 | M: Hans Verkuil <[email protected]> | |
10450 | L: [email protected] | |
10451 | T: git git://linuxtv.org/media_tree.git | |
10452 | W: http://linuxtv.org | |
10453 | S: Odd Fixes | |
10454 | F: drivers/media/usb/usbvision/ | |
10455 | ||
8282da47 LP |
10456 | USB WEBCAM GADGET |
10457 | M: Laurent Pinchart <[email protected]> | |
10458 | L: [email protected] | |
10459 | S: Maintained | |
3a83c16e | 10460 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 10461 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 10462 | |
bf164cc0 | 10463 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 10464 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
10465 | L: [email protected] |
10466 | S: Maintained | |
679655da | 10467 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 10468 | |
eb6bab13 | 10469 | USB XHCI DRIVER |
03d85053 | 10470 | M: Mathias Nyman <[email protected]> |
eb6bab13 SS |
10471 | L: [email protected] |
10472 | S: Supported | |
36d0344c SS |
10473 | F: drivers/usb/host/xhci* |
10474 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 10475 | |
1da177e4 | 10476 | USB ZD1201 DRIVER |
4086b9ca | 10477 | L: [email protected] |
1da177e4 | 10478 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 10479 | S: Orphan |
679655da | 10480 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 10481 | |
b7eee616 | 10482 | USB ZR364XX DRIVER |
8b58be88 | 10483 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 10484 | L: [email protected] |
661263b5 | 10485 | L: [email protected] |
275ffde4 | 10486 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
10487 | W: http://royale.zerezo.com/zr364xx/ |
10488 | S: Maintained | |
679655da | 10489 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 10490 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 10491 | |
e7839f25 | 10492 | USER-MODE LINUX (UML) |
8b58be88 | 10493 | M: Jeff Dike <[email protected]> |
b15194b7 | 10494 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
10495 | L: [email protected] |
10496 | L: [email protected] | |
10497 | W: http://user-mode-linux.sourceforge.net | |
10498 | S: Maintained | |
61516587 | 10499 | F: Documentation/virtual/uml/ |
679655da | 10500 | F: arch/um/ |
b070989a | 10501 | F: arch/x86/um/ |
679655da JP |
10502 | F: fs/hostfs/ |
10503 | F: fs/hppfs/ | |
b7eee616 | 10504 | |
e5f114e9 | 10505 | USERSPACE I/O (UIO) |
6a534c9d | 10506 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 10507 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 10508 | S: Maintained |
3d3fecbd | 10509 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
10510 | F: Documentation/DocBook/uio-howto.tmpl |
10511 | F: drivers/uio/ | |
10512 | F: include/linux/uio*.h | |
e5f114e9 | 10513 | |
256cccbe | 10514 | UTIL-LINUX PACKAGE |
8b58be88 | 10515 | M: Karel Zak <[email protected]> |
256cccbe KZ |
10516 | L: [email protected] |
10517 | W: http://en.wikipedia.org/wiki/Util-linux | |
10518 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
10519 | S: Maintained |
10520 | ||
c1fd1c07 | 10521 | UVESAFB DRIVER |
8b58be88 | 10522 | M: Michal Januszewski <[email protected]> |
c69f677c | 10523 | L: [email protected] |
c1fd1c07 MJ |
10524 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
10525 | S: Maintained | |
679655da | 10526 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 10527 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 10528 | |
4480f15b | 10529 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 10530 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 10531 | S: Maintained |
679655da JP |
10532 | F: Documentation/filesystems/vfat.txt |
10533 | F: fs/fat/ | |
1da177e4 | 10534 | |
cba3345c AW |
10535 | VFIO DRIVER |
10536 | M: Alex Williamson <[email protected]> | |
10537 | L: [email protected] | |
10538 | S: Maintained | |
10539 | F: Documentation/vfio.txt | |
10540 | F: drivers/vfio/ | |
10541 | F: include/linux/vfio.h | |
c117ab84 | 10542 | F: include/uapi/linux/vfio.h |
cba3345c | 10543 | |
9e6f3438 PO |
10544 | VIDEOBUF2 FRAMEWORK |
10545 | M: Pawel Osciak <[email protected]> | |
10546 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 10547 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
10548 | L: [email protected] |
10549 | S: Maintained | |
90d72ac6 | 10550 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
10551 | F: include/media/videobuf2-* |
10552 | ||
9a82446b AS |
10553 | VIRTIO CONSOLE DRIVER |
10554 | M: Amit Shah <[email protected]> | |
10555 | L: [email protected] | |
10556 | S: Maintained | |
10557 | F: drivers/char/virtio_console.c | |
10558 | F: include/linux/virtio_console.h | |
c117ab84 | 10559 | F: include/uapi/linux/virtio_console.h |
9a82446b | 10560 | |
2426ec8f | 10561 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
10562 | M: "Michael S. Tsirkin" <[email protected]> |
10563 | L: [email protected] | |
10564 | S: Maintained | |
10565 | F: drivers/virtio/ | |
c893c8d7 | 10566 | F: tools/virtio/ |
2426ec8f MT |
10567 | F: drivers/net/virtio_net.c |
10568 | F: drivers/block/virtio_blk.c | |
10569 | F: include/linux/virtio_*.h | |
916cdabc | 10570 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 10571 | |
3a4d5c94 MT |
10572 | VIRTIO HOST (VHOST) |
10573 | M: "Michael S. Tsirkin" <[email protected]> | |
10574 | L: [email protected] | |
c996d8b9 | 10575 | L: [email protected] |
3a4d5c94 MT |
10576 | L: [email protected] |
10577 | S: Maintained | |
10578 | F: drivers/vhost/ | |
c117ab84 | 10579 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 10580 | |
271c8651 GH |
10581 | VIRTIO INPUT DRIVER |
10582 | M: Gerd Hoffmann <[email protected]> | |
10583 | S: Maintained | |
10584 | F: drivers/virtio/virtio_input.c | |
10585 | F: include/uapi/linux/virtio_input.h | |
10586 | ||
1da177e4 | 10587 | VIA RHINE NETWORK DRIVER |
8b58be88 | 10588 | M: Roger Luethi <[email protected]> |
1da177e4 | 10589 | S: Maintained |
f2148a47 | 10590 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 10591 | |
f0bf7f61 | 10592 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 10593 | M: Bruce Chang <[email protected]> |
8b58be88 | 10594 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
10595 | S: Maintained |
10596 | F: drivers/mmc/host/via-sdmmc.c | |
10597 | ||
69e4a7c2 | 10598 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 10599 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 10600 | L: [email protected] |
69e4a7c2 | 10601 | S: Maintained |
c7babebd FTS |
10602 | F: include/linux/via-core.h |
10603 | F: include/linux/via-gpio.h | |
10604 | F: include/linux/via_i2c.h | |
8a61f013 | 10605 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 10606 | |
01f20734 | 10607 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 10608 | M: Francois Romieu <[email protected]> |
01f20734 FR |
10609 | L: [email protected] |
10610 | S: Maintained | |
f2148a47 | 10611 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 10612 | |
77911fd2 | 10613 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
10614 | M: Hans Verkuil <[email protected]> |
10615 | L: [email protected] | |
10616 | T: git git://linuxtv.org/media_tree.git | |
10617 | W: http://linuxtv.org | |
10618 | S: Maintained | |
77911fd2 | 10619 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 10620 | |
be7f8273 | 10621 | VLAN (802.1Q) |
8b58be88 | 10622 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
10623 | L: [email protected] |
10624 | S: Maintained | |
679655da JP |
10625 | F: drivers/net/macvlan.c |
10626 | F: include/linux/if_*vlan.h | |
10627 | F: net/8021q/ | |
be7f8273 | 10628 | |
55e331cf | 10629 | VLYNQ BUS |
8b58be88 | 10630 | M: Florian Fainelli <[email protected]> |
8578d7af | 10631 | L: [email protected] (subscribers-only) |
55e331cf FF |
10632 | S: Maintained |
10633 | F: drivers/vlynq/vlynq.c | |
10634 | F: include/linux/vlynq.h | |
10635 | ||
390beae4 MW |
10636 | VME SUBSYSTEM |
10637 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 10638 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
10639 | M: Greg Kroah-Hartman <[email protected]> |
10640 | L: [email protected] | |
10641 | S: Maintained | |
10642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
10643 | F: Documentation/vme_api.txt | |
10644 | F: drivers/staging/vme/ | |
10645 | F: drivers/vme/ | |
10646 | F: include/linux/vme* | |
10647 | ||
4488e09b AK |
10648 | VMWARE HYPERVISOR INTERFACE |
10649 | M: Alok Kataria <[email protected]> | |
10650 | L: [email protected] | |
10651 | S: Supported | |
10652 | F: arch/x86/kernel/cpu/vmware.c | |
10653 | ||
73b35d07 DT |
10654 | VMWARE BALLOON DRIVER |
10655 | M: Xavier Deguillard <[email protected]> | |
10656 | M: Philip Moltmann <[email protected]> | |
10657 | M: "VMware, Inc." <[email protected]> | |
10658 | L: [email protected] | |
10659 | S: Maintained | |
10660 | F: drivers/misc/vmw_balloon.c | |
10661 | ||
8b8be51b TH |
10662 | VMWARE VMMOUSE SUBDRIVER |
10663 | M: "VMware Graphics" <[email protected]> | |
10664 | M: "VMware, Inc." <[email protected]> | |
10665 | L: [email protected] | |
10666 | S: Maintained | |
10667 | F: drivers/input/mouse/vmmouse.c | |
10668 | F: drivers/input/mouse/vmmouse.h | |
10669 | ||
d1a890fa | 10670 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
10671 | M: Shreyas Bhatewara <[email protected]> |
10672 | M: "VMware, Inc." <[email protected]> | |
10673 | L: [email protected] | |
10674 | S: Maintained | |
10675 | F: drivers/net/vmxnet3/ | |
d1a890fa | 10676 | |
851b1642 | 10677 | VMware PVSCSI driver |
f2d7e40e | 10678 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
10679 | M: VMware PV-Drivers <[email protected]> |
10680 | L: [email protected] | |
10681 | S: Maintained | |
10682 | F: drivers/scsi/vmw_pvscsi.c | |
10683 | F: drivers/scsi/vmw_pvscsi.h | |
10684 | ||
e53e86c7 | 10685 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 10686 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 10687 | M: Mark Brown <[email protected]> |
5cdeb2c8 | 10688 | L: [email protected] |
e53e86c7 | 10689 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 10690 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 10691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 10692 | S: Supported |
679655da JP |
10693 | F: drivers/regulator/ |
10694 | F: include/linux/regulator/ | |
e53e86c7 | 10695 | |
ab41319e | 10696 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 10697 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
10698 | L: [email protected] |
10699 | S: Maintained | |
679655da JP |
10700 | F: Documentation/hwmon/vt1211 |
10701 | F: drivers/hwmon/vt1211.c | |
ab41319e | 10702 | |
1de9e371 | 10703 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 10704 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
10705 | L: [email protected] |
10706 | S: Maintained | |
679655da | 10707 | F: drivers/hwmon/vt8231.c |
1de9e371 | 10708 | |
88095e7b TO |
10709 | VUB300 USB to SDIO/SD/MMC bridge chip |
10710 | M: Tony Olech <[email protected]> | |
10711 | L: [email protected] | |
10712 | L: [email protected] | |
10713 | S: Supported | |
10714 | F: drivers/mmc/host/vub300.c | |
10715 | ||
1da177e4 | 10716 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 10717 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 10718 | S: Maintained |
679655da JP |
10719 | F: Documentation/w1/ |
10720 | F: drivers/w1/ | |
1da177e4 | 10721 | |
13927079 | 10722 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 10723 | M: Marc Hulsman <[email protected]> |
13927079 | 10724 | L: [email protected] |
25845c22 | 10725 | S: Maintained |
679655da JP |
10726 | F: Documentation/hwmon/w83791d |
10727 | F: drivers/hwmon/w83791d.c | |
13927079 | 10728 | |
61db011d | 10729 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 10730 | M: Rudolf Marek <[email protected]> |
61db011d RM |
10731 | L: [email protected] |
10732 | S: Maintained | |
679655da JP |
10733 | F: Documentation/hwmon/w83793 |
10734 | F: drivers/hwmon/w83793.c | |
61db011d | 10735 | |
e3760b43 | 10736 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 10737 | M: Jean Delvare <[email protected]> |
e3760b43 JD |
10738 | L: [email protected] |
10739 | S: Maintained | |
10740 | F: drivers/hwmon/w83795.c | |
10741 | ||
1da177e4 | 10742 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 10743 | M: Pierre Ossman <[email protected]> |
1da177e4 | 10744 | S: Maintained |
679655da | 10745 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 10746 | |
b4e05923 HG |
10747 | WACOM PROTOCOL 4 SERIAL TABLETS |
10748 | M: Julian Squires <[email protected]> | |
10749 | M: Hans de Goede <[email protected]> | |
10750 | L: [email protected] | |
10751 | S: Maintained | |
10752 | F: drivers/input/tablet/wacom_serial4.c | |
10753 | ||
3527761c | 10754 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 10755 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
10756 | L: [email protected] |
10757 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 10758 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 10759 | S: Maintained |
679655da JP |
10760 | F: Documentation/watchdog/ |
10761 | F: drivers/watchdog/ | |
10762 | F: include/linux/watchdog.h | |
c117ab84 | 10763 | F: include/uapi/linux/watchdog.h |
3527761c | 10764 | |
1da177e4 | 10765 | WD7000 SCSI DRIVER |
8b58be88 | 10766 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
10767 | L: [email protected] |
10768 | S: Maintained | |
679655da | 10769 | F: drivers/scsi/wd7000.c |
1da177e4 | 10770 | |
b22e00f3 DR |
10771 | WIIMOTE HID DRIVER |
10772 | M: David Herrmann <[email protected]> | |
10773 | L: [email protected] | |
10774 | S: Maintained | |
10775 | F: drivers/hid/hid-wiimote* | |
10776 | ||
e258b80e | 10777 | WINBOND CIR DRIVER |
364e9e18 | 10778 | M: David Härdeman <[email protected]> |
e258b80e | 10779 | S: Maintained |
116ab806 | 10780 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 10781 | |
8a70da82 | 10782 | WIMAX STACK |
8b58be88 | 10783 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 | 10784 | M: [email protected] |
49e7d9df | 10785 | L: [email protected] (subscribers-only) |
8a70da82 IPG |
10786 | S: Supported |
10787 | W: http://linuxwimax.org | |
315987dc | 10788 | F: Documentation/wimax/README.wimax |
315987dc JP |
10789 | F: include/linux/wimax/debug.h |
10790 | F: include/net/wimax.h | |
c117ab84 | 10791 | F: include/uapi/linux/wimax.h |
315987dc | 10792 | F: net/wimax/ |
8a70da82 | 10793 | |
5fc14680 | 10794 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 10795 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 10796 | S: Maintained |
679655da | 10797 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 10798 | |
1da177e4 | 10799 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 10800 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 10801 | L: [email protected] |
926554c4 | 10802 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 10803 | S: Maintained |
679655da | 10804 | F: drivers/net/wireless/wl3501* |
1da177e4 | 10805 | |
febf1dff | 10806 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 10807 | M: Mark Brown <[email protected]> |
8b58be88 | 10808 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
10809 | L: [email protected] |
10810 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
10811 | W: http://opensource.wolfsonmicro.com/node/7 | |
10812 | S: Supported | |
679655da JP |
10813 | F: drivers/input/touchscreen/*wm97* |
10814 | F: include/linux/wm97xx.h | |
febf1dff | 10815 | |
055bcbcb | 10816 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 10817 | L: [email protected] |
cf8eda3e | 10818 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 10819 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 10820 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 10821 | S: Supported |
3768f0b1 | 10822 | F: Documentation/hwmon/wm83?? |
af1c5386 | 10823 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 10824 | F: drivers/clk/clk-wm83*.c |
9c309598 | 10825 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 10826 | F: drivers/leds/leds-wm83*.c |
25b273ba | 10827 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 10828 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 10829 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
10830 | F: drivers/input/misc/wm831x-on.c |
10831 | F: drivers/input/touchscreen/wm831x-ts.c | |
10832 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
10833 | F: drivers/mfd/arizona* |
10834 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
10835 | F: drivers/power/wm83*.c |
10836 | F: drivers/rtc/rtc-wm83*.c | |
10837 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 10838 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 10839 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 10840 | F: include/linux/mfd/arizona/ |
3860e6c4 | 10841 | F: include/linux/mfd/wm831x/ |
b75ea16a | 10842 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 10843 | F: include/linux/mfd/wm8400* |
59ec6da2 | 10844 | F: include/linux/wm97xx.h |
055bcbcb | 10845 | F: include/sound/wm????.h |
9c309598 | 10846 | F: sound/soc/codecs/arizona.? |
055bcbcb | 10847 | F: sound/soc/codecs/wm* |
b75ea16a | 10848 | |
3e6cd7a4 TH |
10849 | WORKQUEUE |
10850 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
10851 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
10852 | S: Maintained | |
10853 | F: include/linux/workqueue.h | |
10854 | F: kernel/workqueue.c | |
10855 | F: Documentation/workqueue.txt | |
10856 | ||
1da177e4 | 10857 | X.25 NETWORK LAYER |
8bf28059 | 10858 | M: Andrew Hendry <[email protected]> |
1da177e4 | 10859 | L: [email protected] |
8bf28059 | 10860 | S: Odd Fixes |
679655da JP |
10861 | F: Documentation/networking/x25* |
10862 | F: include/net/x25* | |
10863 | F: net/x25/ | |
1da177e4 | 10864 | |
e2d1d6c0 | 10865 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
10866 | M: Thomas Gleixner <[email protected]> |
10867 | M: Ingo Molnar <[email protected]> | |
10868 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 10869 | M: [email protected] |
981c3a4f | 10870 | L: [email protected] |
75fc2d37 | 10871 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 10872 | S: Maintained |
679655da JP |
10873 | F: Documentation/x86/ |
10874 | F: arch/x86/ | |
e2d1d6c0 | 10875 | |
d0944853 | 10876 | X86 PLATFORM DRIVERS |
e181ba15 | 10877 | M: Darren Hart <[email protected]> |
d0944853 | 10878 | L: [email protected] |
e181ba15 | 10879 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 10880 | S: Maintained |
14430813 | 10881 | F: drivers/platform/x86/ |
d0944853 | 10882 | |
c1f5c54b IM |
10883 | X86 MCE INFRASTRUCTURE |
10884 | M: Tony Luck <[email protected]> | |
487ba8e8 | 10885 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
10886 | L: [email protected] |
10887 | S: Maintained | |
10888 | F: arch/x86/kernel/cpu/mcheck/* | |
10889 | ||
f0905c5a AL |
10890 | X86 VDSO |
10891 | M: Andy Lutomirski <[email protected]> | |
10892 | L: [email protected] | |
10893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
10894 | S: Maintained | |
d603c8e1 | 10895 | F: arch/x86/entry/vdso/ |
f0905c5a | 10896 | |
d6fad502 | 10897 | XC2028/3028 TUNER DRIVER |
009a5410 | 10898 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
10899 | L: [email protected] |
10900 | W: http://linuxtv.org | |
10901 | T: git git://linuxtv.org/media_tree.git | |
10902 | S: Maintained | |
10903 | F: drivers/media/tuners/tuner-xc2028.* | |
10904 | ||
c4468085 | 10905 | XEN HYPERVISOR INTERFACE |
c4468085 | 10906 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
10907 | M: Boris Ostrovsky <[email protected]> |
10908 | M: David Vrabel <[email protected]> | |
11dbb52b | 10909 | L: [email protected] (moderated for non-subscribers) |
ea70ba3a | 10910 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
10911 | S: Supported |
10912 | F: arch/x86/xen/ | |
10913 | F: drivers/*/xen-*front.c | |
10914 | F: drivers/xen/ | |
10915 | F: arch/x86/include/asm/xen/ | |
10916 | F: include/xen/ | |
c117ab84 | 10917 | F: include/uapi/xen/ |
c4468085 | 10918 | |
77bfb479 SS |
10919 | XEN HYPERVISOR ARM |
10920 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 10921 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
10922 | S: Supported |
10923 | F: arch/arm/xen/ | |
10924 | F: arch/arm/include/asm/xen/ | |
10925 | ||
b475e83f SS |
10926 | XEN HYPERVISOR ARM64 |
10927 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 10928 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
10929 | S: Supported |
10930 | F: arch/arm64/xen/ | |
10931 | F: arch/arm64/include/asm/xen/ | |
10932 | ||
9b57e1a7 IC |
10933 | XEN NETWORK BACKEND DRIVER |
10934 | M: Ian Campbell <[email protected]> | |
8386040b | 10935 | M: Wei Liu <[email protected]> |
11dbb52b | 10936 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
10937 | L: [email protected] |
10938 | S: Supported | |
10939 | F: drivers/net/xen-netback/* | |
10940 | ||
c5f8e29d KRW |
10941 | XEN PCI SUBSYSTEM |
10942 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 10943 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
10944 | S: Supported |
10945 | F: arch/x86/pci/*xen* | |
10946 | F: drivers/pci/*xen* | |
10947 | ||
a2c5ae65 KRW |
10948 | XEN BLOCK SUBSYSTEM |
10949 | M: Konrad Rzeszutek Wilk <[email protected]> | |
bcadb699 | 10950 | M: Roger Pau Monné <[email protected]> |
a2c5ae65 KRW |
10951 | L: [email protected] (moderated for non-subscribers) |
10952 | S: Supported | |
10953 | F: drivers/block/xen-blkback/* | |
10954 | F: drivers/block/xen* | |
10955 | ||
15d03609 JG |
10956 | XEN PVSCSI DRIVERS |
10957 | M: Juergen Gross <[email protected]> | |
10958 | L: [email protected] (moderated for non-subscribers) | |
10959 | L: [email protected] | |
10960 | S: Supported | |
10961 | F: drivers/scsi/xen-scsifront.c | |
10962 | F: drivers/xen/xen-scsiback.c | |
10963 | F: include/xen/interface/io/vscsiif.h | |
10964 | ||
c5f8e29d KRW |
10965 | XEN SWIOTLB SUBSYSTEM |
10966 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 10967 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
10968 | S: Supported |
10969 | F: arch/x86/xen/*swiotlb* | |
10970 | F: drivers/xen/*swiotlb* | |
10971 | ||
1da177e4 LT |
10972 | XFS FILESYSTEM |
10973 | P: Silicon Graphics Inc | |
809625ca | 10974 | M: Dave Chinner <[email protected]> |
18caa67a | 10975 | M: [email protected] |
d7ede1aa | 10976 | L: [email protected] |
1da177e4 | 10977 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 10978 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 10979 | S: Supported |
679655da JP |
10980 | F: Documentation/filesystems/xfs.txt |
10981 | F: fs/xfs/ | |
1da177e4 | 10982 | |
8a3b7a25 | 10983 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
10984 | M: Anirudha Sarangi <[email protected]> |
10985 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
10986 | S: Maintained |
10987 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
10988 | ||
238b8721 | 10989 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 10990 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
10991 | L: [email protected] |
10992 | S: Maintained | |
df621252 | 10993 | F: drivers/tty/serial/uartlite.c |
238b8721 | 10994 | |
df330515 LP |
10995 | XILINX VIDEO IP CORES |
10996 | M: Hyun Kwon <[email protected]> | |
10997 | M: Laurent Pinchart <[email protected]> | |
10998 | L: [email protected] | |
10999 | T: git git://linuxtv.org/media_tree.git | |
11000 | S: Supported | |
11001 | F: Documentation/devicetree/bindings/media/xilinx/ | |
11002 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 11003 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 11004 | |
74316949 EB |
11005 | XILLYBUS DRIVER |
11006 | M: Eli Billauer <[email protected]> | |
11007 | L: [email protected] | |
11008 | S: Supported | |
11009 | F: drivers/char/xillybus/ | |
11010 | ||
f620e4b8 MF |
11011 | XTENSA XTFPGA PLATFORM SUPPORT |
11012 | M: Max Filippov <[email protected]> | |
11013 | L: [email protected] | |
11014 | S: Maintained | |
11015 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 11016 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 11017 | |
1da177e4 | 11018 | YAM DRIVER FOR AX.25 |
8b58be88 | 11019 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
11020 | L: [email protected] |
11021 | S: Maintained | |
679655da JP |
11022 | F: drivers/net/hamradio/yam* |
11023 | F: include/linux/yam.h | |
1da177e4 | 11024 | |
af64a5eb | 11025 | YEALINK PHONE DRIVER |
8b58be88 | 11026 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
11027 | L: [email protected] |
11028 | S: Maintained | |
679655da JP |
11029 | F: Documentation/input/yealink.txt |
11030 | F: drivers/input/misc/yealink.* | |
af64a5eb | 11031 | |
1da177e4 | 11032 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 11033 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
11034 | W: http://yaina.de/jreuter/ |
11035 | W: http://www.qsl.net/dl1bke/ | |
11036 | L: [email protected] | |
11037 | S: Maintained | |
679655da JP |
11038 | F: Documentation/networking/z8530drv.txt |
11039 | F: drivers/net/hamradio/*scc.c | |
11040 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 11041 | |
0cf31ec1 | 11042 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 11043 | M: Seth Jennings <[email protected]> |
0cf31ec1 SJ |
11044 | L: [email protected] |
11045 | S: Maintained | |
11046 | F: mm/zbud.c | |
11047 | F: include/linux/zbud.h | |
11048 | ||
7c0c3afb | 11049 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
11050 | M: Daniel Drake <[email protected]> |
11051 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 11052 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 11053 | L: [email protected] |
7c0c3afb DD |
11054 | L: [email protected] (subscribers-only) |
11055 | S: Maintained | |
679655da | 11056 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 11057 | |
1da177e4 | 11058 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 11059 | L: [email protected] |
f63145e2 | 11060 | L: [email protected] |
1da177e4 | 11061 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 11062 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 11063 | S: Odd Fixes |
90d72ac6 | 11064 | F: drivers/media/pci/zoran/ |
1da177e4 | 11065 | |
6920f2cc MK |
11066 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
11067 | M: Minchan Kim <[email protected]> | |
11068 | M: Nitin Gupta <[email protected]> | |
74f3037c | 11069 | R: Sergey Senozhatsky <[email protected]> |
6920f2cc MK |
11070 | L: [email protected] |
11071 | S: Maintained | |
11072 | F: drivers/block/zram/ | |
11073 | F: Documentation/blockdev/zram.txt | |
11074 | ||
8b4a4080 | 11075 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 11076 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 11077 | S: Maintained |
df621252 | 11078 | F: drivers/tty/serial/zs.* |
8b4a4080 | 11079 | |
eae70d06 MK |
11080 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
11081 | M: Minchan Kim <[email protected]> | |
11082 | M: Nitin Gupta <[email protected]> | |
11083 | L: [email protected] | |
11084 | S: Maintained | |
11085 | F: mm/zsmalloc.c | |
11086 | F: include/linux/zsmalloc.h | |
d02be50d | 11087 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 11088 | |
0cf31ec1 | 11089 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 11090 | M: Seth Jennings <[email protected]> |
0cf31ec1 SJ |
11091 | L: [email protected] |
11092 | S: Maintained | |
11093 | F: mm/zswap.c | |
11094 | ||
1da177e4 | 11095 | THE REST |
8b58be88 | 11096 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 11097 | L: [email protected] |
8a6e2535 | 11098 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 11099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 11100 | S: Buried alive in reporters |
34d03cc1 JP |
11101 | F: * |
11102 | F: */ |