]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
37 | (scripts/checkpatch.pl) to catch trival style violations. | |
38 | See Documentation/CodingStyle for guidance here. | |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's | |
56 | Certificate of Origin" (DCO) is listed in the file | |
57 | Documentation/SubmittingPatches. | |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: [email protected], especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
73 | L: Mailing list that is relevant to this area | |
74 | W: Web-page with status/info | |
8a6e2535 | 75 | Q: Patchwork web based patch tracking system site |
b153da60 | 76 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit. |
c7c4fb18 JP |
77 | S: Status, one of the following: |
78 | Supported: Someone is actually paid to look after this. | |
79 | Maintained: Someone actually looks after it. | |
80 | Odd Fixes: It has a maintainer but they don't have time to do | |
81 | much other than throw the odd patch in. See below.. | |
82 | Orphan: No current maintainer [but maybe you could take the | |
83 | role as you write your new code]. | |
84 | Obsolete: Old code. Something tagged obsolete generally means | |
85 | it has been replaced by a better system and you | |
86 | should be using that. | |
87 | F: Files and directories with wildcard patterns. | |
88 | A trailing slash includes all files and subdirectory files. | |
89 | F: drivers/net/ all files in and below drivers/net | |
90 | F: drivers/net/* all files in drivers/net, but not below | |
91 | F: */net/* all files in "any top level directory"/net | |
92 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
93 | N: Files and directories with regex patterns. |
94 | N: [^a-z]tegra all files whose path contains the word tegra | |
95 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
96 | scripts/get_maintainer.pl has different behavior for files that |
97 | match F: pattern and matches of N: patterns. By default, | |
98 | get_maintainer will not look at git log history when an F: pattern | |
99 | match occurs. When an N: match occurs, git log history is used | |
100 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
101 | X: Files and directories that are NOT maintained, same rules as F: |
102 | Files exclusions are tested before file matches. | |
103 | Can be useful for excluding a specific subdirectory, for instance: | |
104 | F: net/ | |
105 | X: net/ipv6/ | |
106 | matches all files in and below net excluding net/ipv6/ | |
107 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 108 | patch or file. For instance: |
c7c4fb18 | 109 | K: of_get_profile |
bbbe96ed | 110 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 111 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
112 | matches patches or files that contain one or more of the words |
113 | printk, pr_info or pr_err | |
c7c4fb18 | 114 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
115 | |
116 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
117 | order. If you could add yourselves to it in alphabetical order that would be | |
118 | so much easier [Ed] | |
119 | ||
c7c4fb18 | 120 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 121 | |
c7c4fb18 | 122 | ----------------------------------- |
679655da | 123 | |
a6d89915 | 124 | 3C59X NETWORK DRIVER |
8b58be88 | 125 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
126 | L: [email protected] |
127 | S: Maintained | |
679655da | 128 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 129 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 130 | |
1da177e4 | 131 | 3CR990 NETWORK DRIVER |
8b58be88 | 132 | M: David Dillow <[email protected]> |
979b6c13 | 133 | L: [email protected] |
1da177e4 | 134 | S: Maintained |
ca7a8e85 | 135 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 136 | |
c4de0ceb AR |
137 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
138 | M: Adam Radford <[email protected]> | |
1da177e4 | 139 | L: [email protected] |
c4de0ceb | 140 | W: http://www.lsi.com |
1da177e4 | 141 | S: Supported |
c4de0ceb | 142 | F: drivers/scsi/3w-* |
1da177e4 LT |
143 | |
144 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 145 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
146 | L: [email protected] |
147 | S: Maintained | |
679655da | 148 | F: drivers/scsi/53c700* |
1da177e4 LT |
149 | |
150 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 151 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
152 | L: [email protected] |
153 | S: Maintained | |
679655da | 154 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 155 | |
1da177e4 | 156 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 157 | M: Realtek linux nic maintainers <[email protected]> |
8b58be88 | 158 | M: Francois Romieu <[email protected]> |
979b6c13 | 159 | L: [email protected] |
1da177e4 | 160 | S: Maintained |
a8fe65b8 | 161 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
162 | |
163 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 164 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
165 | L: [email protected] |
166 | W: http://serial.sourceforge.net | |
8ee16a1b | 167 | S: Maintained |
08deed1e | 168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 169 | F: drivers/tty/serial/8250* |
679655da | 170 | F: include/linux/serial_8250.h |
1da177e4 LT |
171 | |
172 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 173 | L: [email protected] |
0cf445ce | 174 | S: Orphan / Obsolete |
644570b8 | 175 | F: drivers/net/ethernet/8390/ |
1da177e4 | 176 | |
67543e50 | 177 | 9P FILE SYSTEM |
8b58be88 JP |
178 | M: Eric Van Hensbergen <[email protected]> |
179 | M: Ron Minnich <[email protected]> | |
180 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 181 | L: [email protected] |
27a2a5ff | 182 | W: http://swik.net/v9fs |
8a6e2535 | 183 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 185 | S: Maintained |
679655da JP |
186 | F: Documentation/filesystems/9p.txt |
187 | F: fs/9p/ | |
2315cb14 RL |
188 | F: net/9p/ |
189 | F: include/net/9p/ | |
190 | F: include/uapi/linux/virtio_9p.h | |
191 | F: include/trace/events/9p.h | |
192 | ||
67543e50 | 193 | |
91952bc0 AP |
194 | A8293 MEDIA DRIVER |
195 | M: Antti Palosaari <[email protected]> | |
196 | L: [email protected] | |
197 | W: http://linuxtv.org/ | |
198 | W: http://palosaari.fi/linux/ | |
199 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
200 | T: git git://linuxtv.org/anttip/media_tree.git | |
201 | S: Maintained | |
202 | F: drivers/media/dvb-frontends/a8293* | |
203 | ||
e2d1d6c0 | 204 | AACRAID SCSI RAID DRIVER |
8b58be88 | 205 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
206 | L: [email protected] |
207 | W: http://www.adaptec.com/ | |
1da177e4 | 208 | S: Supported |
679655da JP |
209 | F: Documentation/scsi/aacraid.txt |
210 | F: drivers/scsi/aacraid/ | |
1da177e4 | 211 | |
249e3c85 | 212 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 213 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
214 | L: [email protected] |
215 | S: Maintained | |
679655da | 216 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 217 | |
249e3c85 | 218 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 219 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
220 | L: [email protected] |
221 | S: Maintained | |
679655da | 222 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 223 | |
1da177e4 | 224 | ACENIC DRIVER |
8b58be88 | 225 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
226 | L: [email protected] |
227 | S: Maintained | |
531c4f89 | 228 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 229 | |
e86435eb | 230 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 231 | M: Peter Feuerer <[email protected]> |
d0944853 | 232 | L: [email protected] |
4fc26e36 JP |
233 | W: http://piie.net/?section=acerhdf |
234 | S: Maintained | |
235 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 236 | |
745a5d21 | 237 | ACER WMI LAPTOP EXTRAS |
182ae55c | 238 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 239 | L: [email protected] |
745a5d21 | 240 | S: Maintained |
679655da | 241 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 242 | |
1da177e4 | 243 | ACPI |
8b58be88 | 244 | M: Len Brown <[email protected]> |
49db1903 | 245 | M: Rafael J. Wysocki <[email protected]> |
6968e50c | 246 | L: [email protected] |
360818b8 RW |
247 | W: https://01.org/linux-acpi |
248 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
249 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 250 | S: Supported |
679655da JP |
251 | F: drivers/acpi/ |
252 | F: drivers/pnp/pnpacpi/ | |
253 | F: include/linux/acpi.h | |
43368e74 | 254 | F: include/acpi/ |
994b942f | 255 | F: Documentation/acpi |
89ca78a0 | 256 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
257 | F: drivers/pci/*acpi* |
258 | F: drivers/pci/*/*acpi* | |
259 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 260 | F: tools/power/acpi |
8b59a454 | 261 | |
3774929d RW |
262 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
263 | M: Robert Moore <[email protected]> | |
264 | M: Lv Zheng <[email protected]> | |
265 | M: Rafael J. Wysocki <[email protected]> | |
266 | L: [email protected] | |
267 | L: [email protected] | |
268 | W: https://acpica.org/ | |
269 | W: https://github.com/acpica/acpica/ | |
270 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
272 | S: Supported | |
273 | F: drivers/acpi/acpica/ | |
274 | F: include/acpi/ | |
2754c447 | 275 | F: tools/power/acpi/ |
3774929d | 276 | |
8b59a454 | 277 | ACPI FAN DRIVER |
8b58be88 | 278 | M: Zhang Rui <[email protected]> |
8b59a454 | 279 | L: [email protected] |
5ca92bd9 | 280 | W: https://01.org/linux-acpi |
8b59a454 | 281 | S: Supported |
679655da | 282 | F: drivers/acpi/fan.c |
1da177e4 | 283 | |
8b59a454 | 284 | ACPI THERMAL DRIVER |
8b58be88 | 285 | M: Zhang Rui <[email protected]> |
8b59a454 | 286 | L: [email protected] |
5ca92bd9 | 287 | W: https://01.org/linux-acpi |
8b59a454 | 288 | S: Supported |
679655da | 289 | F: drivers/acpi/*thermal* |
998be20f | 290 | |
359acec8 | 291 | ACPI VIDEO DRIVER |
8b58be88 | 292 | M: Zhang Rui <[email protected]> |
8b59a454 | 293 | L: [email protected] |
5ca92bd9 | 294 | W: https://01.org/linux-acpi |
8b59a454 | 295 | S: Supported |
679655da | 296 | F: drivers/acpi/video.c |
998be20f | 297 | |
bff431e4 | 298 | ACPI WMI DRIVER |
d0944853 | 299 | L: [email protected] |
5b927259 | 300 | S: Orphan |
679655da | 301 | F: drivers/platform/x86/wmi.c |
bff431e4 | 302 | |
2f39d519 | 303 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 304 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
305 | W: http://wiki.parisc-linux.org/AD1889 |
306 | L: [email protected] | |
307 | S: Maintained | |
679655da | 308 | F: sound/pci/ad1889.* |
2f39d519 | 309 | |
527a1a83 MH |
310 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
311 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 312 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 313 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/misc/ad525x_dpot.c | |
316 | ||
317 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
318 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 319 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 320 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
321 | S: Supported |
322 | F: drivers/regulator/ad5398.c | |
323 | ||
324 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
325 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 326 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 327 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
328 | S: Supported |
329 | F: drivers/input/misc/ad714x.c | |
330 | ||
331 | AD7877 TOUCHSCREEN DRIVER | |
332 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 333 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 334 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
335 | S: Supported |
336 | F: drivers/input/touchscreen/ad7877.c | |
337 | ||
338 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
339 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 340 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 341 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
342 | S: Supported |
343 | F: drivers/input/touchscreen/ad7879.c | |
344 | ||
1330b0dc JK |
345 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
346 | M: Jiri Kosina <[email protected]> | |
347 | S: Maintained | |
348 | ||
1da177e4 | 349 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 350 | M: Jean Delvare <[email protected]> |
cc0b07ed | 351 | L: [email protected] |
1da177e4 | 352 | S: Maintained |
679655da JP |
353 | F: Documentation/hwmon/adm1025 |
354 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 355 | |
cae2caae | 356 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 357 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
358 | L: [email protected] |
359 | S: Maintained | |
679655da | 360 | F: drivers/hwmon/adm1029.c |
cae2caae | 361 | |
cc0b88cf | 362 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 363 | L: [email protected] |
491b26b4 | 364 | W: http://wireless.kernel.org/ |
e71bcbd0 | 365 | S: Orphan |
679655da | 366 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 367 | |
e8e31622 SA |
368 | ADP1653 FLASH CONTROLLER DRIVER |
369 | M: Sakari Ailus <[email protected]> | |
370 | L: [email protected] | |
371 | S: Maintained | |
372 | F: drivers/media/i2c/adp1653.c | |
373 | F: include/media/adp1653.h | |
374 | ||
527a1a83 MH |
375 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
376 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 377 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 378 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
379 | S: Supported |
380 | F: drivers/mfd/adp5520.c | |
381 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 382 | F: drivers/leds/leds-adp5520.c |
77278d50 | 383 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
384 | F: drivers/input/keyboard/adp5520-keys.c |
385 | ||
386 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
387 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 388 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 389 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
390 | S: Supported |
391 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 392 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
393 | |
394 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
395 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 396 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 397 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
398 | S: Supported |
399 | F: drivers/video/backlight/adp8860_bl.c | |
400 | ||
8c22a8f5 DE |
401 | ADS1015 HARDWARE MONITOR DRIVER |
402 | M: Dirk Eibach <[email protected]> | |
403 | L: [email protected] | |
404 | S: Maintained | |
405 | F: Documentation/hwmon/ads1015 | |
406 | F: drivers/hwmon/ads1015.c | |
407 | F: include/linux/i2c/ads1015.h | |
408 | ||
1da177e4 | 409 | ADT746X FAN DRIVER |
8b58be88 | 410 | M: Colin Leroy <[email protected]> |
1da177e4 | 411 | S: Maintained |
679655da | 412 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 413 | |
b058b859 | 414 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 415 | M: Jean Delvare <[email protected]> |
b058b859 JD |
416 | L: [email protected] |
417 | S: Maintained | |
418 | F: Documentation/hwmon/adt7475 | |
419 | F: drivers/hwmon/adt7475.c | |
420 | ||
527a1a83 MH |
421 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
422 | M: Michael Hennerich <[email protected]> | |
a3f531ac | 423 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 424 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
425 | S: Supported |
426 | F: drivers/input/misc/adxl34x.c | |
427 | ||
8c6af9e1 | 428 | ADVANSYS SCSI DRIVER |
8b58be88 | 429 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
430 | L: [email protected] |
431 | S: Maintained | |
679655da JP |
432 | F: Documentation/scsi/advansys.txt |
433 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 434 | |
1da177e4 | 435 | AEDSP16 DRIVER |
8b58be88 | 436 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 437 | S: Maintained |
679655da | 438 | F: sound/oss/aedsp16.c |
1da177e4 | 439 | |
91952bc0 AP |
440 | AF9013 MEDIA DRIVER |
441 | M: Antti Palosaari <[email protected]> | |
442 | L: [email protected] | |
443 | W: http://linuxtv.org/ | |
444 | W: http://palosaari.fi/linux/ | |
445 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
446 | T: git git://linuxtv.org/anttip/media_tree.git | |
447 | S: Maintained | |
448 | F: drivers/media/dvb-frontends/af9013* | |
449 | ||
450 | AF9033 MEDIA DRIVER | |
451 | M: Antti Palosaari <[email protected]> | |
452 | L: [email protected] | |
453 | W: http://linuxtv.org/ | |
454 | W: http://palosaari.fi/linux/ | |
455 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
456 | T: git git://linuxtv.org/anttip/media_tree.git | |
457 | S: Maintained | |
458 | F: drivers/media/dvb-frontends/af9033* | |
459 | ||
1da177e4 | 460 | AFFS FILE SYSTEM |
6cf515e1 GU |
461 | L: [email protected] |
462 | S: Orphan | |
679655da JP |
463 | F: Documentation/filesystems/affs.txt |
464 | F: fs/affs/ | |
1da177e4 | 465 | |
e2d1d6c0 | 466 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 467 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
468 | L: [email protected] |
469 | S: Supported | |
679655da JP |
470 | F: fs/afs/ |
471 | F: include/net/af_rxrpc.h | |
472 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 473 | |
1da177e4 | 474 | AGPGART DRIVER |
8b58be88 | 475 | M: David Airlie <[email protected]> |
54e5881d | 476 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 477 | S: Maintained |
679655da JP |
478 | F: drivers/char/agp/ |
479 | F: include/linux/agp* | |
c117ab84 | 480 | F: include/uapi/linux/agp* |
1da177e4 LT |
481 | |
482 | AHA152X SCSI DRIVER | |
8b58be88 | 483 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
484 | L: [email protected] |
485 | S: Maintained | |
679655da JP |
486 | F: drivers/scsi/aha152x* |
487 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 488 | |
64624d4f | 489 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 490 | M: Hannes Reinecke <[email protected]> |
64624d4f | 491 | L: [email protected] |
1da177e4 | 492 | S: Maintained |
679655da | 493 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 494 | |
450500ad HV |
495 | AIMSLAB FM RADIO RECEIVER DRIVER |
496 | M: Hans Verkuil <[email protected]> | |
497 | L: [email protected] | |
498 | T: git git://linuxtv.org/media_tree.git | |
499 | W: http://linuxtv.org | |
500 | S: Maintained | |
501 | F: drivers/media/radio/radio-aimslab* | |
502 | ||
e2d1d6c0 | 503 | AIO |
8b58be88 | 504 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
505 | L: [email protected] |
506 | S: Supported | |
679655da JP |
507 | F: fs/aio.c |
508 | F: include/linux/*aio*.h | |
e2d1d6c0 | 509 | |
1da177e4 | 510 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 511 | M: Duncan Sands <[email protected]> |
6372594a | 512 | L: [email protected] |
1da177e4 LT |
513 | W: http://www.linux-usb.org/SpeedTouch/ |
514 | S: Maintained | |
679655da JP |
515 | F: drivers/usb/atm/speedtch.c |
516 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 517 | |
272f133a | 518 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 519 | M: Manuel Lauss <[email protected]> |
08fcb720 | 520 | S: Maintained |
679655da | 521 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 522 | |
4a4e5787 | 523 | ALI1563 I2C DRIVER |
8b58be88 | 524 | M: Rudolf Marek <[email protected]> |
846557d3 | 525 | L: [email protected] |
4a4e5787 | 526 | S: Maintained |
679655da JP |
527 | F: Documentation/i2c/busses/i2c-ali1563 |
528 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 529 | |
1da177e4 | 530 | ALPHA PORT |
8b58be88 | 531 | M: Richard Henderson <[email protected]> |
8b58be88 | 532 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 533 | M: Matt Turner <[email protected]> |
c89f4f9a | 534 | S: Odd Fixes |
a9406699 | 535 | L: [email protected] |
679655da | 536 | F: arch/alpha/ |
1da177e4 | 537 | |
adf9251f TK |
538 | ALTERA UART/JTAG UART SERIAL DRIVERS |
539 | M: Tobias Klauser <[email protected]> | |
540 | L: [email protected] | |
541 | L: [email protected] (moderated for non-subscribers) | |
542 | S: Maintained | |
543 | F: drivers/tty/serial/altera_uart.c | |
544 | F: drivers/tty/serial/altera_jtaguart.c | |
545 | F: include/linux/altera_uart.h | |
546 | F: include/linux/altera_jtaguart.h | |
547 | ||
f4875e12 TL |
548 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
549 | M: Tom Lendacky <[email protected]> | |
550 | L: [email protected] | |
551 | S: Supported | |
552 | F: drivers/crypto/ccp/ | |
553 | F: include/linux/ccp.h | |
554 | ||
512d1027 | 555 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 556 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
557 | L: [email protected] |
558 | S: Maintained | |
559 | F: Documentation/hwmon/fam15h_power | |
560 | F: drivers/hwmon/fam15h_power.c | |
561 | ||
167a675a | 562 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 563 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 564 | L: [email protected] (moderated for non-subscribers) |
167a675a | 565 | S: Supported |
679655da | 566 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 567 | |
f90b8116 | 568 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 569 | P: Andres Salomon <[email protected]> |
67d76710 | 570 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
571 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
572 | S: Supported | |
679655da JP |
573 | F: drivers/char/hw_random/geode-rng.c |
574 | F: drivers/crypto/geode* | |
575 | F: drivers/video/geode/ | |
576 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 577 | |
919ee7dd | 578 | AMD IOMMU (AMD-VI) |
e4110568 | 579 | M: Joerg Roedel <[email protected]> |
919ee7dd | 580 | L: [email protected] |
525b233c | 581 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 582 | S: Maintained |
b2c16391 JP |
583 | F: drivers/iommu/amd_iommu*.[ch] |
584 | F: include/linux/amd-iommu.h | |
919ee7dd | 585 | |
e7f5b309 | 586 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 587 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 588 | L: [email protected] |
943482d0 | 589 | S: Maintained |
679655da | 590 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 591 | |
284f42b6 | 592 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 593 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 594 | S: Supported |
bd5f47ec | 595 | F: drivers/macintosh/ams/ |
284f42b6 | 596 | |
f94b533d | 597 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
598 | M: Tom Tucker <[email protected]> |
599 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 600 | L: [email protected] |
f94b533d | 601 | S: Maintained |
679655da | 602 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 603 | |
531fca16 HV |
604 | ANALOG DEVICES INC AD9389B DRIVER |
605 | M: Hans Verkuil <[email protected]> | |
606 | L: [email protected] | |
607 | S: Maintained | |
608 | F: drivers/media/i2c/ad9389b* | |
609 | ||
c40ddfa3 HV |
610 | ANALOG DEVICES INC ADV7511 DRIVER |
611 | M: Hans Verkuil <[email protected]> | |
612 | L: [email protected] | |
613 | S: Maintained | |
614 | F: drivers/media/i2c/adv7511* | |
615 | ||
531fca16 HV |
616 | ANALOG DEVICES INC ADV7604 DRIVER |
617 | M: Hans Verkuil <[email protected]> | |
618 | L: [email protected] | |
619 | S: Maintained | |
620 | F: drivers/media/i2c/adv7604* | |
621 | ||
c40ddfa3 HV |
622 | ANALOG DEVICES INC ADV7842 DRIVER |
623 | M: Hans Verkuil <[email protected]> | |
624 | L: [email protected] | |
625 | S: Maintained | |
626 | F: drivers/media/i2c/adv7842* | |
627 | ||
527a1a83 | 628 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 629 | M: Lars-Peter Clausen <[email protected]> |
4bdef3bd | 630 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 631 | W: http://wiki.analog.com/ |
a4edbc10 | 632 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 633 | S: Supported |
39c9d199 | 634 | F: sound/soc/codecs/adau* |
cc52688a | 635 | F: sound/soc/codecs/adav* |
4bdef3bd | 636 | F: sound/soc/codecs/ad1* |
ae48f5ef | 637 | F: sound/soc/codecs/ad7* |
4bdef3bd | 638 | F: sound/soc/codecs/ssm* |
40216ce7 | 639 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 640 | |
527a1a83 | 641 | ANALOG DEVICES INC ASOC DRIVERS |
a4edbc10 | 642 | L: [email protected] |
527a1a83 MH |
643 | L: [email protected] (moderated for non-subscribers) |
644 | W: http://blackfin.uclinux.org/ | |
645 | S: Supported | |
646 | F: sound/soc/blackfin/* | |
647 | ||
42269063 | 648 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 649 | M: Johannes Berg <[email protected]> |
a4724ed6 | 650 | L: [email protected] |
93711660 | 651 | L: [email protected] (moderated for non-subscribers) |
42269063 | 652 | S: Maintained |
679655da | 653 | F: sound/aoa/ |
42269063 | 654 | |
1da177e4 | 655 | APM DRIVER |
81024fc4 JK |
656 | M: Jiri Kosina <[email protected]> |
657 | S: Odd fixes | |
679655da JP |
658 | F: arch/x86/kernel/apm_32.c |
659 | F: include/linux/apm_bios.h | |
c117ab84 | 660 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 661 | F: drivers/char/apm-emulation.c |
1da177e4 | 662 | |
bd7aa4b2 | 663 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 664 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
665 | L: [email protected] |
666 | S: Maintained | |
679655da | 667 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 668 | |
6f2fad74 | 669 | APPLE SMC DRIVER |
d618540f HR |
670 | M: Henrik Rydberg <[email protected]> |
671 | L: [email protected] | |
6f2fad74 | 672 | S: Maintained |
679655da | 673 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 674 | |
1da177e4 | 675 | APPLETALK NETWORK LAYER |
8b58be88 | 676 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 677 | S: Maintained |
679655da JP |
678 | F: drivers/net/appletalk/ |
679 | F: net/appletalk/ | |
1da177e4 | 680 | |
62a37dc7 LP |
681 | APTINA CAMERA SENSOR PLL |
682 | M: Laurent Pinchart <[email protected]> | |
683 | L: [email protected] | |
684 | S: Maintained | |
685 | F: drivers/media/i2c/aptina-pll.* | |
686 | ||
a480167b | 687 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 688 | M: Viresh Kumar <[email protected]> |
a480167b VK |
689 | L: [email protected] |
690 | S: Maintained | |
691 | F: include/linux/pata_arasan_cf_data.h | |
692 | F: drivers/ata/pata_arasan_cf.c | |
693 | ||
1154ea7d | 694 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 695 | M: Jaya Kumar <[email protected]> |
1154ea7d | 696 | S: Maintained |
679655da JP |
697 | F: drivers/video/arcfb.c |
698 | F: drivers/video/fb_defio.c | |
1154ea7d | 699 | |
1da177e4 | 700 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 701 | M: Ian Molton <[email protected]> |
1da177e4 | 702 | S: Maintained |
679655da JP |
703 | F: arch/arm/lib/floppydma.S |
704 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 705 | |
6f96521f WD |
706 | ARM PMU PROFILING AND DEBUGGING |
707 | M: Will Deacon <[email protected]> | |
708 | S: Maintained | |
709 | F: arch/arm/kernel/perf_event* | |
710 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
711 | F: arch/arm/include/asm/pmu.h |
712 | F: arch/arm/kernel/hw_breakpoint.c | |
713 | F: arch/arm/include/asm/hw_breakpoint.h | |
714 | ||
d4275354 | 715 | ARM PORT |
8b58be88 | 716 | M: Russell King <[email protected]> |
efc03ecb | 717 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
718 | W: http://www.arm.linux.org.uk/ |
719 | S: Maintained | |
720 | F: arch/arm/ | |
721 | ||
d323c243 SB |
722 | ARM SUB-ARCHITECTURES |
723 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 724 | S: Maintained |
d323c243 SB |
725 | F: arch/arm/mach-*/ |
726 | F: arch/arm/plat-*/ | |
727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
728 | ||
cefbf4ea RK |
729 | ARM PRIMECELL AACI PL041 DRIVER |
730 | M: Russell King <[email protected]> | |
731 | S: Maintained | |
732 | F: sound/arm/aaci.* | |
733 | ||
734 | ARM PRIMECELL CLCD PL110 DRIVER | |
735 | M: Russell King <[email protected]> | |
736 | S: Maintained | |
737 | F: drivers/video/amba-clcd.* | |
738 | ||
739 | ARM PRIMECELL KMI PL050 DRIVER | |
740 | M: Russell King <[email protected]> | |
741 | S: Maintained | |
742 | F: drivers/input/serio/ambakmi.* | |
743 | F: include/linux/amba/kmi.h | |
744 | ||
2761f5c2 | 745 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
746 | M: Russell King <[email protected]> |
747 | S: Maintained | |
679655da | 748 | F: drivers/mmc/host/mmci.* |
2f748aaa | 749 | F: include/linux/amba/mmci.h |
2761f5c2 | 750 | |
1b4304e5 RK |
751 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
752 | M: Russell King <[email protected]> | |
753 | S: Maintained | |
754 | F: drivers/tty/serial/amba-pl01*.c | |
755 | F: include/linux/amba/serial.h | |
2761f5c2 | 756 | |
cefbf4ea RK |
757 | ARM PRIMECELL BUS SUPPORT |
758 | M: Russell King <[email protected]> | |
759 | S: Maintained | |
760 | F: drivers/amba/ | |
761 | F: include/linux/amba/bus.h | |
762 | ||
2b7a52a4 | 763 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 764 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 765 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
766 | S: Maintained |
767 | ||
9c784f95 | 768 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 769 | M: Sergey Lapin <[email protected]> |
efc03ecb | 770 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
771 | S: Maintained |
772 | ||
2b7a52a4 | 773 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 774 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 775 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
776 | S: Maintained |
777 | ||
1b106699 MR |
778 | ARM/Allwinner A1X SoC support |
779 | M: Maxime Ripard <[email protected]> | |
780 | L: [email protected] (moderated for non-subscribers) | |
781 | S: Maintained | |
60b0f380 MR |
782 | N: sun[x4567]i |
783 | ||
784 | ARM/Allwinner SoC Clock Support | |
785 | M: Emilio López <[email protected]> | |
786 | S: Maintained | |
787 | F: drivers/clk/sunxi/ | |
1b106699 | 788 | |
c1fc8675 | 789 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 790 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
791 | M: Nicolas Ferre <[email protected]> |
792 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 793 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 794 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
795 | W: http://www.linux4sam.org |
796 | S: Supported | |
797 | F: arch/arm/mach-at91/ | |
70e389cc MB |
798 | F: arch/arm/boot/dts/at91*.dts |
799 | F: arch/arm/boot/dts/at91*.dtsi | |
800 | F: arch/arm/boot/dts/sama*.dts | |
801 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 802 | |
986cf2e9 | 803 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 804 | M: Rob Herring <[email protected]> |
986cf2e9 RH |
805 | L: [email protected] (moderated for non-subscribers) |
806 | S: Maintained | |
807 | F: arch/arm/mach-highbank/ | |
808 | ||
d94f944e | 809 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 810 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
811 | S: Maintained |
812 | F: arch/arm/mach-cns3xxx/ | |
813 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
814 | ||
386ab516 AS |
815 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
816 | M: Alexander Shiyan <[email protected]> | |
817 | L: [email protected] (moderated for non-subscribers) | |
818 | S: Odd Fixes | |
819 | F: arch/arm/mach-clps711x/ | |
820 | ||
2b7a52a4 | 821 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 822 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 823 | M: Ryan Mallon <[email protected]> |
efc03ecb | 824 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 825 | S: Maintained |
d19d3667 HS |
826 | F: arch/arm/mach-ep93xx/ |
827 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
828 | |
829 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 830 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 831 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
832 | S: Maintained |
833 | ||
d4275354 | 834 | ARM/CLKDEV SUPPORT |
8b58be88 | 835 | M: Russell King <[email protected]> |
efc03ecb | 836 | L: [email protected] (moderated for non-subscribers) |
37417046 | 837 | S: Maintained |
d4275354 | 838 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 839 | F: drivers/clk/clkdev.c |
d4275354 | 840 | |
d48134e7 | 841 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 842 | M: Mike Rapoport <[email protected]> |
efc03ecb | 843 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
844 | S: Maintained |
845 | ||
94150095 HF |
846 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
847 | M: Hubert Feurstein <[email protected]> | |
848 | S: Maintained | |
849 | F: arch/arm/mach-ep93xx/micro9.c | |
850 | ||
1da177e4 | 851 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 852 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
853 | S: Maintained |
854 | ||
881a95f9 | 855 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 856 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 857 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
858 | T: git git://git.berlios.de/gemini-board |
859 | S: Maintained | |
f49afbb5 | 860 | F: arch/arm/mach-gemini/ |
881a95f9 | 861 | |
a990cbd8 | 862 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 863 | M: Barry Song <[email protected]> |
a990cbd8 | 864 | L: [email protected] (moderated for non-subscribers) |
85529d14 | 865 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
866 | S: Maintained |
867 | F: arch/arm/mach-prima2/ | |
05f30e8d BS |
868 | F: drivers/clk/clk-prima2.c |
869 | F: drivers/clocksource/timer-prima2.c | |
870 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 871 | N: [^a-z]sirf |
a990cbd8 | 872 | |
d4275354 | 873 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 874 | M: Russell King <[email protected]> |
efc03ecb | 875 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
876 | W: http://www.arm.linux.org.uk/ |
877 | S: Maintained | |
878 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 879 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 880 | |
4721f3ce UKK |
881 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
882 | M: Uwe Kleine-König <[email protected]> | |
883 | L: [email protected] (moderated for non-subscribers) | |
884 | S: Maintained | |
885 | N: efm32 | |
886 | ||
a9da4f7e | 887 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
888 | M: Daniel Ribeiro <[email protected]> |
889 | M: Stefan Schmidt <[email protected]> | |
890 | M: Harald Welte <[email protected]> | |
d66f1886 | 891 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
892 | W: http://www.openezx.org/ |
893 | S: Maintained | |
cafc2265 SS |
894 | T: topgit git://git.openezx.org/openezx.git |
895 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 896 | |
6a915af9 | 897 | ARM/FARADAY FA526 PORT |
162500b3 | 898 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 899 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 900 | S: Maintained |
1fa7e547 | 901 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 902 | F: arch/arm/mm/*-fa* |
6a915af9 | 903 | |
d4275354 | 904 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 905 | M: Russell King <[email protected]> |
efc03ecb | 906 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
907 | W: http://www.arm.linux.org.uk/ |
908 | S: Maintained | |
909 | F: arch/arm/include/asm/hardware/dec21285.h | |
910 | F: arch/arm/mach-footbridge/ | |
911 | ||
86183a5f | 912 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
2a82f95c | 913 | M: Shawn Guo <[email protected]> |
8b58be88 | 914 | M: Sascha Hauer <[email protected]> |
efc03ecb | 915 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 916 | S: Maintained |
2a82f95c | 917 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git |
adf79292 | 918 | F: arch/arm/mach-imx/ |
2a82f95c | 919 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 920 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 921 | |
a9866a09 SG |
922 | ARM/FREESCALE MXS ARM ARCHITECTURE |
923 | M: Shawn Guo <[email protected]> | |
924 | L: [email protected] (moderated for non-subscribers) | |
925 | S: Maintained | |
926 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
927 | F: arch/arm/mach-mxs/ | |
928 | ||
2b7a52a4 | 929 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 930 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 931 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
932 | S: Maintained |
933 | ||
90b8fc34 | 934 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 935 | M: Steve Sakoman <[email protected]> |
efc03ecb | 936 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
937 | S: Maintained |
938 | ||
ef47d5f0 | 939 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 940 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
941 | M: Paul Parsons <[email protected]> |
942 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
943 | S: Maintained |
944 | F: arch/arm/mach-pxa/hx4700.c | |
945 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 946 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 947 | |
21f37bc3 | 948 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 949 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
950 | W: www.jlime.com |
951 | S: Maintained | |
084bad91 KE |
952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
953 | F: arch/arm/mach-sa1100/jornada720.c | |
954 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 955 | |
5e767ab9 JMC |
956 | ARM/IGEP MACHINE SUPPORT |
957 | M: Enric Balletbo i Serra <[email protected]> | |
958 | M: Javier Martinez Canillas <[email protected]> | |
959 | L: [email protected] | |
960 | L: [email protected] (moderated for non-subscribers) | |
961 | S: Maintained | |
06ff74fd | 962 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 963 | |
403d2971 MV |
964 | ARM/INCOME PXA270 SUPPORT |
965 | M: Marek Vasut <[email protected]> | |
966 | L: [email protected] (moderated for non-subscribers) | |
967 | S: Maintained | |
ec154082 | 968 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 969 | |
2b7a52a4 | 970 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 971 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 972 | M: Dan Williams <[email protected]> |
efc03ecb | 973 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 974 | S: Maintained |
e2bdb176 DW |
975 | |
976 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 977 | M: Dan Williams <[email protected]> |
efc03ecb | 978 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 979 | S: Maintained |
2b7a52a4 LB |
980 | |
981 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 982 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 983 | M: Dan Williams <[email protected]> |
efc03ecb | 984 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 985 | S: Maintained |
2b7a52a4 LB |
986 | |
987 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 988 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 989 | M: Dan Williams <[email protected]> |
efc03ecb | 990 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 991 | S: Maintained |
2b7a52a4 | 992 | |
2b7a52a4 | 993 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 994 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 995 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
996 | S: Maintained |
997 | ||
dfdd8cc9 KH |
998 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
999 | M: Imre Kaloz <[email protected]> | |
1000 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 1001 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
1002 | S: Maintained |
1003 | F: arch/arm/mach-ixp4xx/ | |
1004 | ||
838553c5 | 1005 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1006 | M: Jonathan Cameron <[email protected]> |
1007 | L: [email protected] (moderated for non-subscribers) | |
1008 | S: Maintained | |
1009 | F: arch/arm/mach-pxa/stargate2.c | |
1010 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1011 | ||
2b7a52a4 | 1012 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1013 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1014 | M: Dan Williams <[email protected]> |
efc03ecb | 1015 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1016 | S: Maintained |
2b7a52a4 LB |
1017 | |
1018 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1019 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1020 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1021 | S: Maintained |
1022 | ||
1154f858 SS |
1023 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1024 | M: Santosh Shilimkar <[email protected]> | |
1025 | L: [email protected] (moderated for non-subscribers) | |
1026 | S: Maintained | |
1027 | F: arch/arm/mach-keystone/ | |
cffa8e3b | 1028 | F: drivers/clk/keystone/ |
317929cd | 1029 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1030 | |
2b7a52a4 | 1031 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1032 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1033 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1034 | S: Maintained |
1035 | ||
3b886171 | 1036 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1037 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1038 | S: Maintained |
1039 | ||
75f41273 TP |
1040 | ARM/Marvell Armada 370 and Armada XP SOC support |
1041 | M: Jason Cooper <[email protected]> | |
1042 | M: Andrew Lunn <[email protected]> | |
1043 | M: Gregory Clement <[email protected]> | |
dcb71503 | 1044 | M: Sebastian Hesselbarth <[email protected]> |
75f41273 TP |
1045 | L: [email protected] (moderated for non-subscribers) |
1046 | S: Maintained | |
1047 | F: arch/arm/mach-mvebu/ | |
1048 | ||
40f4978b SH |
1049 | ARM/Marvell Berlin SoC support |
1050 | M: Sebastian Hesselbarth <[email protected]> | |
1051 | L: [email protected] (moderated for non-subscribers) | |
1052 | S: Maintained | |
1053 | F: arch/arm/mach-berlin/ | |
1054 | ||
4f1312b0 NP |
1055 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1056 | M: Jason Cooper <[email protected]> | |
1057 | M: Andrew Lunn <[email protected]> | |
dcb71503 | 1058 | M: Sebastian Hesselbarth <[email protected]> |
efc03ecb | 1059 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1060 | S: Maintained |
1061 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1062 | F: arch/arm/mach-kirkwood/ |
1063 | F: arch/arm/mach-mv78xx0/ | |
1064 | F: arch/arm/mach-orion5x/ | |
1065 | F: arch/arm/plat-orion/ | |
3b886171 | 1066 | |
d69ac131 AC |
1067 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1068 | M: Alexander Clouter <[email protected]> | |
1069 | L: [email protected] (moderated for non-subscribers) | |
1070 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1071 | S: Maintained | |
1072 | F: arch/arm/mach-orion5x/ts78xx-* | |
1073 | ||
adcb079f AB |
1074 | ARM/MICREL KS8695 ARCHITECTURE |
1075 | M: Greg Ungerer <[email protected]> | |
1076 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1077 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1078 | S: Odd Fixes |
1079 | ||
d78ff0a5 | 1080 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1081 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1082 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1083 | F: arch/arm/mach-pxa/mioa701.c |
1084 | S: Maintained | |
1085 | ||
9624dfe6 | 1086 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1087 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1088 | S: Maintained |
1089 | ||
e0ee9851 | 1090 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1091 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1092 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1093 | L: [email protected] (moderated for non-subscribers) |
1094 | S: Maintained | |
1095 | F: arch/arm/mach-nomadik/ | |
87572880 | 1096 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1098 | |
9d76295a | 1099 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1100 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1101 | L: [email protected] (subscribers-only) |
1102 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1103 | S: Supported | |
1104 | ||
0c19d21e DW |
1105 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1106 | M: David Brown <[email protected]> | |
b4c9bfab | 1107 | M: Daniel Walker <[email protected]> |
0c19d21e | 1108 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1109 | L: [email protected] |
0c19d21e DW |
1110 | F: arch/arm/mach-msm/ |
1111 | F: drivers/video/msm/ | |
1112 | F: drivers/mmc/host/msm_sdcc.c | |
1113 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1114 | F: drivers/tty/serial/msm_serial.h |
1115 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1116 | F: drivers/*/pm8???-* |
31a12b31 | 1117 | F: drivers/mfd/ssbi/ |
ea91db52 | 1118 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1120 | S: Maintained |
1121 | ||
8459c159 | 1122 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1123 | M: Dmitry Eremin-Solenikov <[email protected]> |
1124 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1125 | S: Maintained |
1126 | ||
5d783a2d | 1127 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1128 | M: Marek Vasut <[email protected]> |
75280787 | 1129 | L: [email protected] |
b5e4ad57 MV |
1130 | W: http://hackndev.com |
1131 | S: Maintained | |
933d35f0 JP |
1132 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1133 | F: arch/arm/mach-pxa/palmtx.c | |
1134 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1135 | F: arch/arm/mach-pxa/palmt5.c | |
1136 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1137 | F: arch/arm/mach-pxa/palmld.c | |
1138 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1139 | F: arch/arm/mach-pxa/palmte2.c | |
1140 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1141 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1142 | |
b57fe924 | 1143 | ARM/PALM TREO SUPPORT |
8b58be88 | 1144 | M: Tomas Cech <[email protected]> |
75280787 | 1145 | L: [email protected] |
90af5811 TSC |
1146 | W: http://hackndev.com |
1147 | S: Maintained | |
b57fe924 JP |
1148 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1149 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1150 | |
c49e1e63 | 1151 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1152 | M: Sergey Lapin <[email protected]> |
75280787 | 1153 | L: [email protected] |
7d2c86b5 JP |
1154 | W: http://hackndev.com |
1155 | S: Maintained | |
933d35f0 JP |
1156 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1157 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1158 | |
1da177e4 | 1159 | ARM/PLEB SUPPORT |
8b58be88 | 1160 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1161 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1162 | S: Maintained | |
1163 | ||
1164 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1165 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1166 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1167 | W: http://www.arm.linux.org.uk/ |
1168 | S: Maintained | |
1169 | ||
2b7a52a4 | 1170 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1171 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1172 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1173 | S: Maintained |
1174 | ||
d4275354 | 1175 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1176 | M: Russell King <[email protected]> |
efc03ecb | 1177 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1178 | W: http://www.arm.linux.org.uk/ |
1179 | S: Maintained | |
d4275354 RK |
1180 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1181 | F: arch/arm/include/asm/hardware/ioc.h | |
1182 | F: arch/arm/include/asm/hardware/iomd.h | |
1183 | F: arch/arm/include/asm/hardware/memc.h | |
1184 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1185 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1186 | F: drivers/net/ethernet/i825xx/ether1* |
1187 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1188 | F: drivers/scsi/arm/ |
1189 | ||
08ddbb0a HS |
1190 | ARM/Rockchip SoC support |
1191 | M: Heiko Stuebner <[email protected]> | |
1192 | L: [email protected] (moderated for non-subscribers) | |
1193 | S: Maintained | |
1194 | F: arch/arm/mach-rockchip/ | |
1195 | F: drivers/*/*rockchip* | |
1196 | ||
b21477f9 | 1197 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1198 | M: Ben Dooks <[email protected]> |
482ce512 | 1199 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1200 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1201 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1202 | W: http://www.fluff.org/ben/linux/ |
1203 | S: Maintained | |
6f0589c8 MB |
1204 | F: arch/arm/boot/dts/s3c* |
1205 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1206 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1207 | F: arch/arm/mach-s3c24*/ |
1208 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1209 | F: drivers/*/*s3c2410* |
1210 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1211 | F: drivers/spi/spi-s3c* |
1212 | F: sound/soc/samsung/* | |
1da177e4 | 1213 | |
0dcecae2 | 1214 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1215 | M: Kukjin Kim <[email protected]> |
1216 | L: [email protected] (moderated for non-subscribers) | |
1217 | L: [email protected] (moderated for non-subscribers) | |
1218 | S: Maintained | |
1219 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1220 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1221 | N: exynos |
f556cb07 | 1222 | |
10ffa964 KP |
1223 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1224 | M: Kyungmin Park <[email protected]> | |
1225 | L: [email protected] (moderated for non-subscribers) | |
1226 | S: Maintained | |
1227 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1228 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1229 | |
3ce4ccb6 KD |
1230 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1231 | M: Kyungmin Park <[email protected]> | |
1232 | M: Kamil Debski <[email protected]> | |
1233 | L: [email protected] | |
1234 | L: [email protected] | |
1235 | S: Maintained | |
1236 | F: drivers/media/platform/s5p-g2d/ | |
1237 | ||
e6a476fd MS |
1238 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1239 | M: Kyungmin Park <[email protected]> | |
1240 | M: Kamil Debski <[email protected]> | |
6305902c | 1241 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1242 | L: [email protected] |
1243 | L: [email protected] | |
1244 | S: Maintained | |
934455d7 | 1245 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1246 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1247 | |
1248 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1249 | M: Kyungmin Park <[email protected]> | |
1250 | M: Tomasz Stanislawski <[email protected]> | |
1251 | L: [email protected] | |
1252 | L: [email protected] | |
1253 | S: Maintained | |
90d72ac6 | 1254 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1255 | |
d48d38e8 | 1256 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1257 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1258 | M: Magnus Damm <[email protected]> |
1259 | L: [email protected] | |
d48d38e8 | 1260 | W: http://oss.renesas.com |
bbff48f5 | 1261 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1262 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1263 | S: Supported |
1264 | F: arch/arm/mach-shmobile/ | |
1265 | F: drivers/sh/ | |
1266 | ||
66314223 DN |
1267 | ARM/SOCFPGA ARCHITECTURE |
1268 | M: Dinh Nguyen <[email protected]> | |
1269 | S: Maintained | |
1270 | F: arch/arm/mach-socfpga/ | |
1271 | ||
1272 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1273 | M: Dinh Nguyen <[email protected]> | |
1274 | S: Maintained | |
1275 | F: drivers/clk/socfpga/ | |
1276 | ||
65ebcc11 SK |
1277 | ARM/STI ARCHITECTURE |
1278 | M: Srinivas Kandagatla <[email protected]> | |
1279 | M: Stuart Menefy <[email protected]> | |
1280 | L: [email protected] (moderated for non-subscribers) | |
1281 | L: [email protected] | |
1282 | W: http://www.stlinux.com | |
1283 | S: Maintained | |
1284 | F: arch/arm/mach-sti/ | |
1285 | ||
2b7a52a4 | 1286 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1287 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1288 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1289 | S: Maintained |
1290 | ||
1bbd7089 | 1291 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1292 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1293 | L: [email protected] (moderated for non-subscribers) |
1294 | S: Maintained | |
1295 | ||
2b7a52a4 | 1296 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1297 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1298 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1299 | S: Maintained |
1300 | ||
98ad6e3b | 1301 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1302 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1303 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1304 | W: http://www.mcuos.com |
1305 | S: Maintained | |
4e89e8f6 | 1306 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1307 | F: drivers/input/keyboard/w90p910_keypad.c |
1308 | F: drivers/input/touchscreen/w90p910_ts.c | |
1309 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1310 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1311 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1312 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1313 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1314 | F: drivers/usb/host/ehci-w90x900.c |
1315 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1316 | |
54274d71 | 1317 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1318 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1319 | L: [email protected] (moderated for non-subscribers) |
1320 | S: Supported | |
1321 | F: arch/arm/mach-u300/ | |
1322 | F: drivers/i2c/busses/i2c-stu300.c | |
1323 | F: drivers/rtc/rtc-coh901331.c | |
1324 | F: drivers/watchdog/coh901327_wdt.c | |
1325 | F: drivers/dma/coh901318* | |
87572880 LW |
1326 | F: drivers/mfd/ab3100* |
1327 | F: drivers/rtc/rtc-ab3100.c | |
1328 | F: drivers/rtc/rtc-coh901331.c | |
1329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1330 | |
87572880 | 1331 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1332 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1333 | L: [email protected] (moderated for non-subscribers) |
1334 | S: Maintained | |
1335 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1336 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1337 | F: drivers/dma/ste_dma40* |
e4651a9f | 1338 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1339 | F: drivers/mfd/abx500* |
1340 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1341 | F: drivers/mfd/dbx500* |
1342 | F: drivers/mfd/db8500* | |
1343 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1344 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1345 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1347 | |
e93fde28 UH |
1348 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1349 | M: Ulf Hansson <[email protected]> | |
1350 | L: [email protected] (moderated for non-subscribers) | |
1351 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1352 | S: Maintained | |
1353 | F: drivers/clk/ux500/ | |
1354 | F: include/linux/platform_data/clk-ux500.h | |
1355 | ||
d4275354 | 1356 | ARM/VFP SUPPORT |
8b58be88 | 1357 | M: Russell King <[email protected]> |
efc03ecb | 1358 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1359 | W: http://www.arm.linux.org.uk/ |
1360 | S: Maintained | |
1361 | F: arch/arm/vfp/ | |
1362 | ||
e66b6d8e MV |
1363 | ARM/VOIPAC PXA270 SUPPORT |
1364 | M: Marek Vasut <[email protected]> | |
1365 | L: [email protected] (moderated for non-subscribers) | |
1366 | S: Maintained | |
1367 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1368 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1369 | |
04529fe2 TP |
1370 | ARM/VT8500 ARM ARCHITECTURE |
1371 | M: Tony Prisk <[email protected]> | |
1372 | L: [email protected] (moderated for non-subscribers) | |
1373 | S: Maintained | |
1374 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1375 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1376 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1377 | F: drivers/mmc/host/wmt-sdmmc.c |
1378 | F: drivers/pwm/pwm-vt8500.c | |
1379 | F: drivers/rtc/rtc-vt8500.c | |
1380 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1381 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1382 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1383 | F: drivers/video/vt8500lcdfb.* |
1384 | F: drivers/video/wm8505fb* | |
1385 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1386 | |
e66b6d8e MV |
1387 | ARM/ZIPIT Z2 SUPPORT |
1388 | M: Marek Vasut <[email protected]> | |
1389 | L: [email protected] (moderated for non-subscribers) | |
1390 | S: Maintained | |
1391 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1392 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1393 | |
51f29d44 MS |
1394 | ARM/ZYNQ ARCHITECTURE |
1395 | M: Michal Simek <[email protected]> | |
1396 | L: [email protected] (moderated for non-subscribers) | |
1397 | W: http://wiki.xilinx.com | |
1398 | T: git git://git.xilinx.com/linux-xlnx.git | |
1399 | S: Supported | |
1400 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1401 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1402 | N: zynq |
1403 | N: xilinx | |
1404 | F: drivers/clocksource/cadence_ttc_timer.c | |
e3ec3a3d | 1405 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1406 | |
b8f9879e WD |
1407 | ARM SMMU DRIVER |
1408 | M: Will Deacon <[email protected]> | |
1409 | L: [email protected] (moderated for non-subscribers) | |
1410 | S: Maintained | |
1411 | F: drivers/iommu/arm-smmu.c | |
1412 | ||
38074229 CM |
1413 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1414 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1415 | M: Will Deacon <[email protected]> |
38074229 CM |
1416 | L: [email protected] (moderated for non-subscribers) |
1417 | S: Maintained | |
1418 | F: arch/arm64/ | |
d19766ec | 1419 | F: Documentation/arm64/ |
38074229 | 1420 | |
9d7005f9 LP |
1421 | AS3645A LED FLASH CONTROLLER DRIVER |
1422 | M: Laurent Pinchart <[email protected]> | |
1423 | L: [email protected] | |
1424 | T: git git://linuxtv.org/media_tree.git | |
1425 | S: Maintained | |
1426 | F: drivers/media/i2c/as3645a.c | |
1427 | F: include/media/as3645a.h | |
1428 | ||
d58de038 GJ |
1429 | ASC7621 HARDWARE MONITOR DRIVER |
1430 | M: George Joseph <[email protected]> | |
1431 | L: [email protected] | |
1432 | S: Maintained | |
1433 | F: Documentation/hwmon/asc7621 | |
1434 | F: drivers/hwmon/asc7621.c | |
1435 | ||
b229ece9 | 1436 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1437 | M: Corentin Chary <[email protected]> |
1da177e4 | 1438 | L: [email protected] |
d0944853 | 1439 | L: [email protected] |
76593d6f | 1440 | W: http://acpi4asus.sf.net |
85091b71 | 1441 | S: Maintained |
b229ece9 CC |
1442 | F: drivers/platform/x86/asus*.c |
1443 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1444 | |
953a6479 | 1445 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1446 | M: Dan Williams <[email protected]> |
b3e5f263 | 1447 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1448 | S: Maintained |
679655da JP |
1449 | F: Documentation/crypto/async-tx-api.txt |
1450 | F: crypto/async_tx/ | |
1451 | F: drivers/dma/ | |
1452 | F: include/linux/dmaengine.h | |
1453 | F: include/linux/async_tx.h | |
b3e5f263 | 1454 | |
a1867d36 | 1455 | AT24 EEPROM DRIVER |
14d77c4d | 1456 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1457 | L: [email protected] |
1458 | S: Maintained | |
1459 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1460 | F: include/linux/platform_data/at24.h |
a1867d36 | 1461 | |
e7839f25 | 1462 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1463 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1464 | W: http://support.coraid.com/support/linux |
1da177e4 | 1465 | S: Supported |
679655da JP |
1466 | F: Documentation/aoe/ |
1467 | F: drivers/block/aoe/ | |
1da177e4 | 1468 | |
9a10a870 | 1469 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1470 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1471 | L: [email protected] |
1472 | S: Supported | |
1473 | F: drivers/net/wireless/ath/* | |
1474 | ||
fa1c114f | 1475 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1476 | M: Jiri Slaby <[email protected]> |
1477 | M: Nick Kossifidis <[email protected]> | |
f726ee65 | 1478 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1479 | L: [email protected] |
1480 | L: [email protected] | |
72c706b7 | 1481 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1482 | S: Maintained |
fa451753 | 1483 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1484 | |
12e62d6f KV |
1485 | ATHEROS ATH6KL WIRELESS DRIVER |
1486 | M: Kalle Valo <[email protected]> | |
1487 | L: [email protected] | |
1488 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1489 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1490 | S: Supported |
1491 | F: drivers/net/wireless/ath/ath6kl/ | |
1492 | ||
2be7d22f VK |
1493 | WILOCITY WIL6210 WIRELESS DRIVER |
1494 | M: Vladimir Kondratiev <[email protected]> | |
1495 | L: [email protected] | |
1496 | L: [email protected] | |
1497 | S: Supported | |
1498 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1499 | F: drivers/net/wireless/ath/wil6210/ | |
1500 | ||
1d7e1e6b CL |
1501 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1502 | M: Christian Lamparter <[email protected]> | |
1503 | L: [email protected] | |
1504 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1505 | S: Maintained | |
1506 | F: drivers/net/wireless/ath/carl9170/ | |
1507 | ||
2c2a6172 LT |
1508 | ATK0110 HWMON DRIVER |
1509 | M: Luca Tettamanti <[email protected]> | |
1510 | L: [email protected] | |
1511 | S: Maintained | |
1512 | F: drivers/hwmon/asus_atk0110.c | |
1513 | ||
6f69a6d7 | 1514 | ATI_REMOTE2 DRIVER |
8b58be88 | 1515 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1516 | S: Maintained |
679655da | 1517 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1518 | |
7ae115b4 | 1519 | ATLX ETHERNET DRIVERS |
8b58be88 | 1520 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1521 | M: Chris Snook <[email protected]> |
e443e383 | 1522 | L: [email protected] |
8d5ca6ec JC |
1523 | W: http://sourceforge.net/projects/atl1 |
1524 | W: http://atl1.sourceforge.net | |
1525 | S: Maintained | |
2b133ad6 | 1526 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1527 | |
1da177e4 | 1528 | ATM |
8b58be88 | 1529 | M: Chas Williams <[email protected]> |
476604de | 1530 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1531 | L: [email protected] |
1da177e4 LT |
1532 | W: http://linux-atm.sourceforge.net |
1533 | S: Maintained | |
679655da JP |
1534 | F: drivers/atm/ |
1535 | F: include/linux/atm* | |
c117ab84 | 1536 | F: include/uapi/linux/atm* |
1da177e4 | 1537 | |
04ac2f46 | 1538 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1539 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1540 | S: Maintained |
1541 | F: drivers/mmc/host/atmel-mci.c | |
1542 | F: drivers/mmc/host/atmel-mci-regs.h | |
1543 | ||
a1cfac48 | 1544 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1545 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1546 | S: Supported |
df621252 | 1547 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1548 | |
b414dc16 NF |
1549 | ATMEL DMA DRIVER |
1550 | M: Nicolas Ferre <[email protected]> | |
1551 | L: [email protected] (moderated for non-subscribers) | |
1552 | S: Supported | |
1553 | F: drivers/dma/at_hdmac.c | |
1554 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1555 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1556 | |
888f2804 LD |
1557 | ATMEL I2C DRIVER |
1558 | M: Ludovic Desroches <[email protected]> | |
1559 | L: [email protected] | |
1560 | S: Supported | |
1561 | F: drivers/i2c/busses/i2c-at91.c | |
1562 | ||
15515545 JW |
1563 | ATMEL ISI DRIVER |
1564 | M: Josh Wu <[email protected]> | |
1565 | L: [email protected] | |
1566 | S: Supported | |
f2294c2d | 1567 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1568 | F: include/media/atmel-isi.h |
1569 | ||
8f4c79ce | 1570 | ATMEL LCDFB DRIVER |
8b58be88 | 1571 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1572 | L: [email protected] |
8f4c79ce | 1573 | S: Maintained |
679655da JP |
1574 | F: drivers/video/atmel_lcdfb.c |
1575 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1576 | |
89e5785f | 1577 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1578 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1579 | S: Supported |
9f2f381f | 1580 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1581 | |
754ce4f2 | 1582 | ATMEL SPI DRIVER |
a02875a6 | 1583 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1584 | S: Supported |
9df92e6c | 1585 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1586 | |
e9cb1c5a NF |
1587 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1588 | M: Nicolas Ferre <[email protected]> | |
1589 | L: [email protected] (moderated for non-subscribers) | |
1590 | S: Supported | |
1591 | F: drivers/misc/atmel_tclib.c | |
1592 | F: drivers/clocksource/tcb_clksrc.c | |
1593 | ||
ff2675d6 JW |
1594 | ATMEL TSADCC DRIVER |
1595 | M: Josh Wu <[email protected]> | |
1596 | L: [email protected] | |
1597 | S: Supported | |
1598 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1599 | ||
914a3f3b | 1600 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1601 | M: Nicolas Ferre <[email protected]> |
1602 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1603 | S: Supported |
679655da | 1604 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1605 | |
1da177e4 | 1606 | ATMEL WIRELESS DRIVER |
8b58be88 | 1607 | M: Simon Kelley <[email protected]> |
724c6b35 | 1608 | L: [email protected] |
1da177e4 LT |
1609 | W: http://www.thekelleys.org.uk/atmel |
1610 | W: http://atmelwlandriver.sourceforge.net/ | |
1611 | S: Maintained | |
679655da | 1612 | F: drivers/net/wireless/atmel* |
1da177e4 | 1613 | |
26780d9e BG |
1614 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
1615 | M: Bradley Grove <[email protected]> | |
1616 | L: [email protected] | |
1617 | W: http://www.attotech.com | |
1618 | S: Supported | |
1619 | F: drivers/scsi/esas2r | |
1620 | ||
a92b7b80 | 1621 | AUDIT SUBSYSTEM |
8b58be88 | 1622 | M: Eric Paris <[email protected]> |
b9a06207 | 1623 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1624 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1625 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1626 | S: Maintained |
679655da | 1627 | F: include/linux/audit.h |
c117ab84 | 1628 | F: include/uapi/linux/audit.h |
679655da | 1629 | F: kernel/audit* |
a92b7b80 | 1630 | |
70e84049 | 1631 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1632 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1633 | W: http://miguelojeda.es/auxdisplay.htm |
1634 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1635 | S: Maintained |
679655da JP |
1636 | F: drivers/auxdisplay/ |
1637 | F: include/linux/cfag12864b.h | |
70e84049 | 1638 | |
5f97f7f9 | 1639 | AVR32 ARCHITECTURE |
e336f61f HCE |
1640 | M: Haavard Skinnemoen <[email protected]> |
1641 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1642 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1643 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1644 | W: http://avrfreaks.net/ |
e336f61f | 1645 | S: Maintained |
679655da | 1646 | F: arch/avr32/ |
5f97f7f9 HS |
1647 | |
1648 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1649 | M: Haavard Skinnemoen <[email protected]> |
1650 | M: Hans-Christian Egtvedt <[email protected]> | |
1651 | S: Maintained | |
679655da | 1652 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1653 | |
1da177e4 | 1654 | AX.25 NETWORK LAYER |
8b58be88 | 1655 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1656 | L: [email protected] |
d34cb28a | 1657 | W: http://www.linux-ax25.org/ |
1da177e4 | 1658 | S: Maintained |
c117ab84 | 1659 | F: include/uapi/linux/ax25.h |
679655da JP |
1660 | F: include/net/ax25.h |
1661 | F: net/ax25/ | |
1da177e4 | 1662 | |
d5269395 | 1663 | AZ6007 DVB DRIVER |
1b2c14b4 | 1664 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1665 | L: [email protected] |
1666 | W: http://linuxtv.org | |
1667 | T: git git://linuxtv.org/media_tree.git | |
1668 | S: Maintained | |
1669 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1670 | ||
6777376e HV |
1671 | AZTECH FM RADIO RECEIVER DRIVER |
1672 | M: Hans Verkuil <[email protected]> | |
1673 | L: [email protected] | |
1674 | T: git git://linuxtv.org/media_tree.git | |
1675 | W: http://linuxtv.org | |
1676 | S: Maintained | |
1677 | F: drivers/media/radio/radio-aztech* | |
1678 | ||
e2d1d6c0 | 1679 | B43 WIRELESS DRIVER |
8b58be88 | 1680 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1681 | L: [email protected] |
ed072f9e | 1682 | L: [email protected] |
491b26b4 | 1683 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1684 | S: Maintained |
679655da | 1685 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1686 | |
1687 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1688 | M: Larry Finger <[email protected]> |
1689 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1690 | L: [email protected] |
ed072f9e | 1691 | L: [email protected] |
491b26b4 | 1692 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1693 | S: Maintained |
679655da | 1694 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1695 | |
300abeb5 | 1696 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1697 | M: Jingoo Han <[email protected]> |
300abeb5 | 1698 | S: Maintained |
679655da JP |
1699 | F: drivers/video/backlight/ |
1700 | F: include/linux/backlight.h | |
300abeb5 | 1701 | |
c6c8fea2 | 1702 | BATMAN ADVANCED |
207df49e | 1703 | M: Marek Lindner <[email protected]> |
c679ff8f | 1704 | M: Simon Wunderlich <[email protected]> |
207df49e | 1705 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1706 | L: [email protected] |
1707 | W: http://www.open-mesh.org/ | |
1708 | S: Maintained | |
1709 | F: net/batman-adv/ | |
1710 | ||
e2d1d6c0 | 1711 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1712 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1713 | L: [email protected] |
1714 | W: http://www.baycom.org/~tom/ham/ham.html | |
1715 | S: Maintained | |
679655da | 1716 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1717 | |
cafe5635 | 1718 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1719 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1720 | L: [email protected] |
1721 | W: http://bcache.evilpiepirate.org | |
1722 | S: Maintained: | |
1723 | F: drivers/md/bcache/ | |
1724 | ||
e2d1d6c0 | 1725 | BEFS FILE SYSTEM |
55817d3d | 1726 | S: Orphan |
679655da JP |
1727 | F: Documentation/filesystems/befs.txt |
1728 | F: fs/befs/ | |
e2d1d6c0 RD |
1729 | |
1730 | BFS FILE SYSTEM | |
8b58be88 | 1731 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1732 | S: Maintained |
679655da JP |
1733 | F: Documentation/filesystems/bfs.txt |
1734 | F: fs/bfs/ | |
c117ab84 | 1735 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1736 | |
1394f032 | 1737 | BLACKFIN ARCHITECTURE |
a4edbc10 SZ |
1738 | M: Steven Miao <[email protected]> |
1739 | L: [email protected] | |
e3b2d3f3 BW |
1740 | W: http://blackfin.uclinux.org |
1741 | S: Supported | |
679655da | 1742 | F: arch/blackfin/ |
566da5b2 | 1743 | |
e190d6b1 | 1744 | BLACKFIN EMAC DRIVER |
a4edbc10 | 1745 | L: [email protected] |
e190d6b1 BW |
1746 | W: http://blackfin.uclinux.org |
1747 | S: Supported | |
7b35f033 | 1748 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1749 | |
566da5b2 | 1750 | BLACKFIN RTC DRIVER |
a4edbc10 | 1751 | L: [email protected] |
566da5b2 MF |
1752 | W: http://blackfin.uclinux.org |
1753 | S: Supported | |
679655da | 1754 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1755 | |
936ed49a | 1756 | BLACKFIN SDH DRIVER |
109ec8c3 | 1757 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1758 | L: [email protected] |
936ed49a MF |
1759 | W: http://blackfin.uclinux.org |
1760 | S: Supported | |
1761 | F: drivers/mmc/host/bfin_sdh.c | |
1762 | ||
1394f032 | 1763 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1764 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1765 | L: [email protected] |
e3b2d3f3 BW |
1766 | W: http://blackfin.uclinux.org |
1767 | S: Supported | |
8460241e | 1768 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1769 | |
1e6d320f | 1770 | BLACKFIN WATCHDOG DRIVER |
a4edbc10 | 1771 | L: [email protected] |
1e6d320f BW |
1772 | W: http://blackfin.uclinux.org |
1773 | S: Supported | |
679655da | 1774 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1775 | |
d24ecfcc | 1776 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1777 | M: Sonic Zhang <[email protected]> |
a4edbc10 | 1778 | L: [email protected] |
d24ecfcc BW |
1779 | W: http://blackfin.uclinux.org/ |
1780 | S: Supported | |
679655da | 1781 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1782 | |
1e204377 SJ |
1783 | BLACKFIN MEDIA DRIVER |
1784 | M: Scott Jiang <[email protected]> | |
a4edbc10 | 1785 | L: [email protected] |
1e204377 SJ |
1786 | W: http://blackfin.uclinux.org/ |
1787 | S: Supported | |
1788 | F: drivers/media/platform/blackfin/ | |
1789 | F: drivers/media/i2c/adv7183* | |
1790 | F: drivers/media/i2c/vs6624* | |
1791 | ||
b54cf35a JSM |
1792 | BLINKM RGB LED DRIVER |
1793 | M: Jan-Simon Moeller <[email protected]> | |
1794 | S: Maintained | |
1795 | F: drivers/leds/leds-blinkm.c | |
1796 | ||
1da177e4 | 1797 | BLOCK LAYER |
8b58be88 | 1798 | M: Jens Axboe <[email protected]> |
08deed1e | 1799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1800 | S: Maintained |
679655da | 1801 | F: block/ |
1da177e4 | 1802 | |
2b54aaef | 1803 | BLOCK2MTD DRIVER |
8b58be88 | 1804 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1805 | L: [email protected] |
1806 | S: Maintained | |
679655da | 1807 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1808 | |
63fbd24e | 1809 | BLUETOOTH DRIVERS |
8b58be88 | 1810 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1811 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1812 | M: Johan Hedberg <[email protected]> |
781c2844 | 1813 | L: [email protected] |
63fbd24e | 1814 | W: http://www.bluez.org/ |
22e7a424 MH |
1815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1816 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1817 | S: Maintained |
679655da | 1818 | F: drivers/bluetooth/ |
1da177e4 | 1819 | |
63fbd24e | 1820 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1821 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1822 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1823 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1824 | L: [email protected] |
1825 | W: http://www.bluez.org/ | |
22e7a424 MH |
1826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1827 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1828 | S: Maintained |
679655da JP |
1829 | F: net/bluetooth/ |
1830 | F: include/net/bluetooth/ | |
1da177e4 LT |
1831 | |
1832 | BONDING DRIVER | |
8b58be88 | 1833 | M: Jay Vosburgh <[email protected]> |
28ad7b06 | 1834 | M: Veaceslav Falico <[email protected]> |
4cd72c6e | 1835 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1836 | L: [email protected] |
ce00f85c JC |
1837 | W: http://sourceforge.net/projects/bonding/ |
1838 | S: Supported | |
679655da | 1839 | F: drivers/net/bonding/ |
c117ab84 | 1840 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1841 | |
39105890 | 1842 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1843 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1844 | L: [email protected] |
1845 | S: Supported | |
adfc5217 | 1846 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1847 | |
948c51e6 | 1848 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1849 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1850 | L: [email protected] |
1851 | S: Supported | |
adfc5217 JK |
1852 | F: drivers/net/ethernet/broadcom/bnx2.* |
1853 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1854 | |
4d9d2cb0 | 1855 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
28fb9655 | 1856 | M: Ariel Elior <[email protected]> |
4d9d2cb0 ET |
1857 | L: [email protected] |
1858 | S: Supported | |
adfc5217 | 1859 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1860 | |
af4b8e37 | 1861 | BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE |
497a045d CD |
1862 | M: Christian Daudt <[email protected]> |
1863 | L: [email protected] | |
af4b8e37 CD |
1864 | T: git git://git.github.com/broadcom/bcm11351 |
1865 | S: Maintained | |
1866 | F: arch/arm/mach-bcm/ | |
1867 | F: arch/arm/boot/dts/bcm113* | |
1868 | F: arch/arm/boot/dts/bcm281* | |
1869 | F: arch/arm/configs/bcm_defconfig | |
1870 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1871 | F: drivers/clocksource/bcm_kona_timer.c | |
1872 | ||
f680f25c SW |
1873 | BROADCOM BCM2835 ARM ARCHICTURE |
1874 | M: Stephen Warren <[email protected]> | |
1875 | L: [email protected] (moderated for non-subscribers) | |
1876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1877 | S: Maintained | |
1878 | F: arch/arm/mach-bcm2835/ | |
1879 | F: arch/arm/boot/dts/bcm2835* | |
1880 | F: arch/arm/configs/bcm2835_defconfig | |
1881 | F: drivers/*/*bcm2835* | |
1882 | ||
948c51e6 | 1883 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1884 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1885 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1886 | L: [email protected] |
1887 | S: Supported | |
adfc5217 | 1888 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1889 | |
a9533e7e HP |
1890 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1891 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1892 | M: Arend van Spriel <[email protected]> |
85d63686 | 1893 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1894 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1895 | L: [email protected] |
5615171c | 1896 | L: [email protected] |
a9533e7e | 1897 | S: Supported |
f62ebdd5 | 1898 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1899 | |
9958d6f9 | 1900 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
f69098c5 | 1901 | M: Eddie Wai <[email protected]> |
9958d6f9 BPG |
1902 | L: [email protected] |
1903 | S: Supported | |
1904 | F: drivers/scsi/bnx2fc/ | |
1905 | ||
6a6b5ad0 EW |
1906 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1907 | M: Eddie Wai <[email protected]> | |
1908 | L: [email protected] | |
1909 | S: Supported | |
1910 | F: drivers/scsi/bnx2i/ | |
1911 | ||
c9678d86 RM |
1912 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1913 | M: Rafał Miłecki <[email protected]> | |
1914 | L: [email protected] | |
1915 | S: Maintained | |
1916 | F: drivers/bcma/ | |
1917 | F: include/linux/bcma/ | |
1918 | ||
7725ccfd | 1919 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1920 | M: Anil Gurumurthy <[email protected]> |
1921 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1922 | L: [email protected] |
1923 | S: Supported | |
1924 | F: drivers/scsi/bfa/ | |
7725ccfd | 1925 | |
8b230ed8 RM |
1926 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1927 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1928 | L: [email protected] |
1929 | S: Supported | |
f844a0ea | 1930 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1931 | |
5cdf7f76 | 1932 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1933 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1934 | L: [email protected] |
1935 | S: Supported | |
679655da JP |
1936 | F: block/bsg.c |
1937 | F: include/linux/bsg.h | |
c117ab84 | 1938 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1939 | |
af39917d CL |
1940 | BT87X AUDIO DRIVER |
1941 | M: Clemens Ladisch <[email protected]> | |
1942 | L: [email protected] (moderated for non-subscribers) | |
1943 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1944 | S: Maintained | |
1945 | F: Documentation/sound/alsa/Bt87x.txt | |
1946 | F: sound/pci/bt87x.c | |
1947 | ||
ff1d5c2f | 1948 | BT8XXGPIO DRIVER |
eb032b98 | 1949 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1950 | W: http://bu3sch.de/btgpio.php |
1951 | S: Maintained | |
72dbb705 | 1952 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1953 | |
eb1eb04f | 1954 | BTRFS FILE SYSTEM |
c0778e25 CM |
1955 | M: Chris Mason <[email protected]> |
1956 | M: Josef Bacik <[email protected]> | |
eb1eb04f JP |
1957 | L: [email protected] |
1958 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1959 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1961 | S: Maintained |
679655da JP |
1962 | F: Documentation/filesystems/btrfs.txt |
1963 | F: fs/btrfs/ | |
eb1eb04f | 1964 | |
1da177e4 | 1965 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1966 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1967 | L: [email protected] |
96b6aba0 | 1968 | W: http://linuxtv.org |
275ffde4 | 1969 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1970 | S: Odd fixes |
679655da | 1971 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1972 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1973 | |
1f34923c KA |
1974 | BUSLOGIC SCSI DRIVER |
1975 | M: Khalid Aziz <[email protected]> | |
1976 | L: [email protected] | |
1977 | S: Maintained | |
1978 | F: drivers/scsi/BusLogic.* | |
1979 | F: drivers/scsi/FlashPoint.* | |
1980 | ||
af39917d CL |
1981 | C-MEDIA CMI8788 DRIVER |
1982 | M: Clemens Ladisch <[email protected]> | |
1983 | L: [email protected] (moderated for non-subscribers) | |
1984 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1985 | S: Maintained | |
1986 | F: sound/pci/oxygen/ | |
1987 | ||
2141355f MS |
1988 | C6X ARCHITECTURE |
1989 | M: Mark Salter <[email protected]> | |
1990 | M: Aurelien Jacquiot <[email protected]> | |
1991 | L: [email protected] | |
1992 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1993 | S: Maintained | |
1994 | F: arch/c6x/ | |
1995 | ||
a5432f5a | 1996 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1997 | M: David Howells <[email protected]> |
a5432f5a DH |
1998 | L: [email protected] |
1999 | S: Supported | |
2000 | F: Documentation/filesystems/caching/cachefiles.txt | |
2001 | F: fs/cachefiles/ | |
2002 | ||
c815ca39 HV |
2003 | CADET FM/AM RADIO RECEIVER DRIVER |
2004 | M: Hans Verkuil <[email protected]> | |
2005 | L: [email protected] | |
2006 | T: git git://linuxtv.org/media_tree.git | |
2007 | W: http://linuxtv.org | |
2008 | S: Maintained | |
2009 | F: drivers/media/radio/radio-cadet* | |
2010 | ||
77d5140f | 2011 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2012 | M: Jonathan Corbet <[email protected]> |
661263b5 | 2013 | L: [email protected] |
275ffde4 | 2014 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2015 | S: Maintained |
679655da | 2016 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2017 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2018 | |
201b6bab | 2019 | CAIF NETWORK LAYER |
5c574f50 | 2020 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
2021 | L: [email protected] |
2022 | S: Supported | |
2023 | F: Documentation/networking/caif/ | |
2024 | F: drivers/net/caif/ | |
c117ab84 | 2025 | F: include/uapi/linux/caif/ |
201b6bab JP |
2026 | F: include/net/caif/ |
2027 | F: net/caif/ | |
2028 | ||
77dac90f | 2029 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2030 | M: Muli Ben-Yehuda <[email protected]> |
2031 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
2032 | L: [email protected] |
2033 | S: Maintained | |
679655da JP |
2034 | F: arch/x86/kernel/pci-calgary_64.c |
2035 | F: arch/x86/kernel/tce_64.c | |
2036 | F: arch/x86/include/asm/calgary.h | |
2037 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2038 | |
e2d1d6c0 | 2039 | CAN NETWORK LAYER |
8d15d386 | 2040 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 2041 | L: [email protected] |
ec78213a | 2042 | W: http://gitorious.org/linux-can |
405cc273 | 2043 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2044 | S: Maintained |
f35f6c8f | 2045 | F: Documentation/networking/can.txt |
8d15d386 | 2046 | F: net/can/ |
8d15d386 | 2047 | F: include/linux/can/core.h |
c117ab84 CEB |
2048 | F: include/uapi/linux/can.h |
2049 | F: include/uapi/linux/can/bcm.h | |
2050 | F: include/uapi/linux/can/raw.h | |
2051 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2052 | |
4261a204 | 2053 | CAN NETWORK DRIVERS |
8b58be88 | 2054 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2055 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2056 | L: [email protected] |
ec78213a | 2057 | W: http://gitorious.org/linux-can |
405cc273 | 2058 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2059 | S: Maintained |
8d15d386 OH |
2060 | F: drivers/net/can/ |
2061 | F: include/linux/can/dev.h | |
8d15d386 | 2062 | F: include/linux/can/platform/ |
c117ab84 CEB |
2063 | F: include/uapi/linux/can/error.h |
2064 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2065 | |
95d16c72 JM |
2066 | CAPABILITIES |
2067 | M: Serge Hallyn <[email protected]> | |
2068 | L: [email protected] | |
6305902c | 2069 | S: Supported |
95d16c72 | 2070 | F: include/linux/capability.h |
c117ab84 | 2071 | F: include/uapi/linux/capability.h |
95d16c72 | 2072 | F: security/capability.c |
6305902c | 2073 | F: security/commoncap.c |
38a94118 | 2074 | F: kernel/capability.c |
95d16c72 | 2075 | |
b8154542 | 2076 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2077 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2078 | L: [email protected] |
2079 | L: [email protected] | |
b8154542 AB |
2080 | W: http://www.ibm.com/developerworks/power/cell/ |
2081 | S: Supported | |
679655da | 2082 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2083 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2084 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2085 | F: arch/powerpc/oprofile/*cell* |
2086 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2087 | |
9030aaf9 | 2088 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2089 | M: Sage Weil <[email protected]> |
82593f87 | 2090 | L: [email protected] |
09d90327 | 2091 | W: http://ceph.com/ |
fb99f881 | 2092 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2093 | S: Supported |
2094 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2095 | F: fs/ceph/ |
2096 | F: net/ceph/ | |
2097 | F: include/linux/ceph/ | |
2098 | F: include/linux/crush/ | |
9030aaf9 | 2099 | |
18332a80 | 2100 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2101 | L: [email protected] |
10c6c9c9 | 2102 | S: Orphan |
679655da JP |
2103 | F: Documentation/usb/WUSB-Design-overview.txt |
2104 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2105 | F: drivers/usb/host/hwa-hc.c |
2106 | F: drivers/usb/host/whci/ | |
679655da JP |
2107 | F: drivers/usb/wusbcore/ |
2108 | F: include/linux/usb/wusb* | |
18332a80 | 2109 | |
70e84049 | 2110 | CFAG12864B LCD DRIVER |
8b58be88 | 2111 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2112 | W: http://miguelojeda.es/auxdisplay.htm |
2113 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2114 | S: Maintained |
679655da JP |
2115 | F: drivers/auxdisplay/cfag12864b.c |
2116 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2117 | |
2118 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2119 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2120 | W: http://miguelojeda.es/auxdisplay.htm |
2121 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2122 | S: Maintained |
679655da JP |
2123 | F: drivers/auxdisplay/cfag12864bfb.c |
2124 | F: include/linux/cfag12864b.h | |
70e84049 | 2125 | |
704232c2 | 2126 | CFG80211 and NL80211 |
8b58be88 | 2127 | M: Johannes Berg <[email protected]> |
704232c2 | 2128 | L: [email protected] |
ce466579 JB |
2129 | W: http://wireless.kernel.org/ |
2130 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2132 | S: Maintained |
c117ab84 | 2133 | F: include/uapi/linux/nl80211.h |
679655da JP |
2134 | F: include/net/cfg80211.h |
2135 | F: net/wireless/* | |
2136 | X: net/wireless/wext* | |
704232c2 | 2137 | |
46e64261 GKH |
2138 | CHAR and MISC DRIVERS |
2139 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2140 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2141 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2142 | S: Supported |
46e64261 GKH |
2143 | F: drivers/char/* |
2144 | F: drivers/misc/* | |
2145 | ||
0a920b5b | 2146 | CHECKPATCH |
8b58be88 | 2147 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2148 | M: Joe Perches <[email protected]> |
2149 | S: Maintained | |
679655da | 2150 | F: scripts/checkpatch.pl |
0a920b5b | 2151 | |
f8407f26 HW |
2152 | CHINESE DOCUMENTATION |
2153 | M: Harry Wei <[email protected]> | |
9740153c | 2154 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2155 | L: [email protected] (moderated for non-subscribers) |
2156 | S: Maintained | |
2157 | F: Documentation/zh_CN/ | |
2158 | ||
2721ea2c | 2159 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e GKH |
2160 | M: Peter Chen <[email protected]> |
2161 | T: git://github.com/hzpeterchen/linux-usb.git | |
2721ea2c AS |
2162 | L: [email protected] |
2163 | S: Maintained | |
2164 | F: drivers/usb/chipidea/ | |
2165 | ||
ab043105 OJ |
2166 | CHROME HARDWARE PLATFORM SUPPORT |
2167 | M: Olof Johansson <[email protected]> | |
2168 | S: Maintained | |
2169 | F: drivers/platform/chrome/ | |
2170 | ||
641cb85e | 2171 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2172 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2173 | M: Sujith Sankar <[email protected]> |
2174 | M: Govindarajulu Varadarajan <[email protected]> | |
5c6652f5 NP |
2175 | M: Neel Patel <[email protected]> |
2176 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2177 | S: Supported |
a6a5580c | 2178 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2179 | |
e3cf00d0 UM |
2180 | CISCO VIC LOW LATENCY NIC DRIVER |
2181 | M: Upinder Malhi <[email protected]> | |
2182 | S: Supported | |
2183 | F: drivers/infiniband/hw/usnic | |
2184 | ||
2b7a52a4 | 2185 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2186 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2187 | L: [email protected] |
2188 | S: Maintained | |
57d0b7a0 | 2189 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2190 | |
2b7a52a4 | 2191 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2192 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2193 | L: [email protected] |
2b7a52a4 | 2194 | S: Maintained |
679655da | 2195 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2196 | |
d9e9d82c | 2197 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2198 | M: Timur Tabi <[email protected]> |
93711660 | 2199 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2200 | S: Odd Fixes |
679655da | 2201 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2202 | |
94574d9a KRW |
2203 | CLEANCACHE API |
2204 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2205 | L: [email protected] | |
2206 | S: Maintained | |
2207 | F: mm/cleancache.c | |
2208 | F: include/linux/cleancache.h | |
2209 | ||
d4275354 | 2210 | CLK API |
8b58be88 | 2211 | M: Russell King <[email protected]> |
37417046 | 2212 | S: Maintained |
d4275354 RK |
2213 | F: include/linux/clk.h |
2214 | ||
9222d247 JS |
2215 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2216 | M: Daniel Lezcano <[email protected]> | |
2217 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 2218 | L: [email protected] |
9222d247 JS |
2219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2220 | S: Supported | |
2221 | F: drivers/clocksource | |
2222 | ||
5df6d737 | 2223 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2224 | M: Hiral Patel <[email protected]> |
2225 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2226 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2227 | L: [email protected] |
2228 | S: Supported | |
2a99921a | 2229 | F: drivers/scsi/fnic/ |
5df6d737 | 2230 | |
529aa8cb TLSC |
2231 | CMPC ACPI DRIVER |
2232 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2233 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2234 | L: [email protected] |
529aa8cb TLSC |
2235 | S: Supported |
2236 | F: drivers/platform/x86/classmate-laptop.c | |
2237 | ||
74425eee | 2238 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2239 | M: Julia Lawall <[email protected]> |
74425eee | 2240 | M: Gilles Muller <[email protected]> |
26de9c26 | 2241 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2242 | M: Michal Marek <[email protected]> |
26de9c26 | 2243 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2245 | W: http://coccinelle.lip6.fr/ |
2246 | S: Supported | |
4b92b2aa | 2247 | F: Documentation/coccinelle.txt |
74425eee NP |
2248 | F: scripts/coccinelle/ |
2249 | F: scripts/coccicheck | |
2250 | ||
1da177e4 | 2251 | CODA FILE SYSTEM |
8b58be88 | 2252 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2253 | M: [email protected] |
2254 | L: [email protected] | |
2255 | W: http://www.coda.cs.cmu.edu/ | |
2256 | S: Maintained | |
679655da JP |
2257 | F: Documentation/filesystems/coda.txt |
2258 | F: fs/coda/ | |
2259 | F: include/linux/coda*.h | |
c117ab84 | 2260 | F: include/uapi/linux/coda*.h |
1da177e4 | 2261 | |
7704addb | 2262 | COMMON CLK FRAMEWORK |
7704addb MT |
2263 | M: Mike Turquette <[email protected]> |
2264 | L: [email protected] (same as CLK API & CLKDEV) | |
2265 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2266 | S: Maintained | |
60bea3b5 SW |
2267 | F: drivers/clk/ |
2268 | X: drivers/clk/clkdev.c | |
7704addb | 2269 | F: include/linux/clk-pr* |
60bea3b5 | 2270 | F: include/linux/clk/ |
7704addb | 2271 | |
e2d1d6c0 | 2272 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2273 | M: Steve French <[email protected]> |
51223df6 | 2274 | L: [email protected] |
d1f28953 | 2275 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2276 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2277 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2279 | S: Supported |
679655da JP |
2280 | F: Documentation/filesystems/cifs.txt |
2281 | F: fs/cifs/ | |
e2d1d6c0 | 2282 | |
1da177e4 | 2283 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2284 | M: Scott Murray <[email protected]> |
64dab204 | 2285 | L: [email protected] |
82c4dfc7 | 2286 | S: Maintained |
679655da | 2287 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2288 | |
2289 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2290 | M: Scott Murray <[email protected]> |
64dab204 | 2291 | L: [email protected] |
82c4dfc7 | 2292 | S: Maintained |
679655da | 2293 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2294 | |
2295 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2296 | M: Scott Murray <[email protected]> |
64dab204 | 2297 | L: [email protected] |
82c4dfc7 | 2298 | S: Maintained |
679655da | 2299 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2300 | |
5411552c | 2301 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2302 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2303 | L: [email protected] |
5411552c | 2304 | S: Maintained |
679655da | 2305 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2306 | |
949be0f7 | 2307 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2308 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2309 | L: [email protected] |
2310 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2311 | S: Maintained |
679655da | 2312 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2313 | |
e2d1d6c0 | 2314 | CONFIGFS |
d6351db2 JB |
2315 | M: Joel Becker <[email protected]> |
2316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2317 | S: Supported |
679655da JP |
2318 | F: fs/configfs/ |
2319 | F: include/linux/configfs.h | |
e2d1d6c0 | 2320 | |
acb9c1b2 | 2321 | CONNECTOR |
8b58be88 | 2322 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2323 | L: [email protected] |
2324 | S: Maintained | |
2325 | F: drivers/connector/ | |
2326 | ||
fb3a0fb6 | 2327 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2328 | M: Tejun Heo <[email protected]> |
ad50c159 | 2329 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2330 | L: [email protected] |
12340313 | 2331 | L: [email protected] |
860ca0e6 | 2332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2333 | S: Maintained |
679655da JP |
2334 | F: include/linux/cgroup* |
2335 | F: kernel/cgroup* | |
8ca739e3 | 2336 | F: mm/*cgroup* |
fb3a0fb6 | 2337 | |
bebe4678 | 2338 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2339 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2340 | L: [email protected] |
2341 | S: Maintained | |
679655da JP |
2342 | F: Documentation/hwmon/coretemp |
2343 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2344 | |
1da177e4 | 2345 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2346 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2347 | W: http://www.fi.muni.cz/~kas/cosa/ |
2348 | S: Maintained | |
679655da | 2349 | F: drivers/net/wan/cosa* |
1da177e4 | 2350 | |
4371ee35 | 2351 | CPMAC ETHERNET DRIVER |
8b58be88 | 2352 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2353 | L: [email protected] |
2354 | S: Maintained | |
b544dbac | 2355 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2356 | |
1da177e4 | 2357 | CPU FREQUENCY DRIVERS |
49db1903 | 2358 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2359 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2360 | L: [email protected] |
a6c072c7 | 2361 | L: [email protected] |
1da177e4 | 2362 | S: Maintained |
27209d91 VK |
2363 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2364 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2365 | F: drivers/cpufreq/ |
2366 | F: include/linux/cpufreq.h | |
1da177e4 | 2367 | |
8a67f0ef VK |
2368 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2369 | M: Viresh Kumar <[email protected]> | |
2370 | M: Sudeep KarkadaNagesha <[email protected]> | |
2371 | L: [email protected] | |
2372 | L: [email protected] | |
2373 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2374 | S: Maintained | |
2375 | F: drivers/cpufreq/arm_big_little.h | |
2376 | F: drivers/cpufreq/arm_big_little.c | |
2377 | F: drivers/cpufreq/arm_big_little_dt.c | |
2378 | ||
14d2c34c LP |
2379 | CPUIDLE DRIVER - ARM BIG LITTLE |
2380 | M: Lorenzo Pieralisi <[email protected]> | |
2381 | M: Daniel Lezcano <[email protected]> | |
2382 | L: [email protected] | |
2383 | L: [email protected] | |
2384 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2385 | S: Maintained | |
2386 | F: drivers/cpuidle/cpuidle-big_little.c | |
2387 | ||
a8e39c35 | 2388 | CPUIDLE DRIVERS |
49db1903 | 2389 | M: Rafael J. Wysocki <[email protected]> |
a8e39c35 DL |
2390 | M: Daniel Lezcano <[email protected]> |
2391 | L: [email protected] | |
2392 | S: Maintained | |
2393 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2394 | F: drivers/cpuidle/* | |
2395 | F: include/linux/cpuidle.h | |
2396 | ||
1da177e4 | 2397 | CPUID/MSR DRIVER |
8b58be88 | 2398 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2399 | S: Maintained |
679655da JP |
2400 | F: arch/x86/kernel/cpuid.c |
2401 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2402 | |
7fe2f639 DB |
2403 | CPU POWER MONITORING SUBSYSTEM |
2404 | M: Dominik Brodowski <[email protected]> | |
2405 | M: Thomas Renninger <[email protected]> | |
2406 | S: Maintained | |
14430813 | 2407 | F: tools/power/cpupower/ |
7fe2f639 | 2408 | |
ed90fb4a | 2409 | CPUSETS |
f47b89c7 | 2410 | M: Li Zefan <[email protected]> |
ed90fb4a | 2411 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2412 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2413 | S: Maintained |
679655da JP |
2414 | F: Documentation/cgroups/cpusets.txt |
2415 | F: include/linux/cpuset.h | |
2416 | F: kernel/cpuset.c | |
ed90fb4a | 2417 | |
1da177e4 | 2418 | CRAMFS FILESYSTEM |
ce00f85c | 2419 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2420 | S: Orphan / Obsolete |
679655da JP |
2421 | F: Documentation/filesystems/cramfs.txt |
2422 | F: fs/cramfs/ | |
1da177e4 LT |
2423 | |
2424 | CRIS PORT | |
8b58be88 JP |
2425 | M: Mikael Starvik <[email protected]> |
2426 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2427 | L: [email protected] |
1da177e4 LT |
2428 | W: http://developer.axis.com |
2429 | S: Maintained | |
679655da | 2430 | F: arch/cris/ |
df621252 | 2431 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2432 | |
2433 | CRYPTO API | |
8b58be88 JP |
2434 | M: Herbert Xu <[email protected]> |
2435 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2436 | L: [email protected] |
54e5881d | 2437 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2438 | S: Maintained |
679655da JP |
2439 | F: Documentation/crypto/ |
2440 | F: arch/*/crypto/ | |
2441 | F: crypto/ | |
2442 | F: drivers/crypto/ | |
2443 | F: include/crypto/ | |
1da177e4 | 2444 | |
5b07bd57 | 2445 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2446 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2447 | L: [email protected] |
2448 | S: Maintained | |
51a2228a JP |
2449 | F: crypto/ansi_cprng.c |
2450 | F: crypto/rng.c | |
5b07bd57 | 2451 | |
9b4ffa48 | 2452 | CS5535 Audio ALSA driver |
8b58be88 | 2453 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2454 | S: Maintained |
679655da | 2455 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2456 | |
a910e4a9 SP |
2457 | CW1200 WLAN driver |
2458 | M: Solomon Peachy <[email protected]> | |
2459 | S: Maintained | |
2460 | F: drivers/net/wireless/cw1200/ | |
2461 | ||
6d8425b1 | 2462 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2463 | M: Andy Walls <[email protected]> |
c4240509 | 2464 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2465 | L: [email protected] |
275ffde4 | 2466 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2467 | W: http://linuxtv.org |
30e10993 | 2468 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2469 | S: Maintained |
679655da | 2470 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2471 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2472 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2473 | |
3f101d91 HV |
2474 | CX2341X MPEG ENCODER HELPER MODULE |
2475 | M: Hans Verkuil <[email protected]> | |
2476 | L: [email protected] | |
2477 | T: git git://linuxtv.org/media_tree.git | |
2478 | W: http://linuxtv.org | |
2479 | S: Maintained | |
c368360b | 2480 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2481 | F: include/media/cx2341x* |
2482 | ||
20357578 | 2483 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2484 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2485 | L: [email protected] |
2486 | W: http://linuxtv.org | |
2487 | T: git git://linuxtv.org/media_tree.git | |
2488 | S: Odd fixes | |
2489 | F: Documentation/video4linux/cx88/ | |
2490 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2491 | |
91952bc0 AP |
2492 | CXD2820R MEDIA DRIVER |
2493 | M: Antti Palosaari <[email protected]> | |
2494 | L: [email protected] | |
2495 | W: http://linuxtv.org/ | |
2496 | W: http://palosaari.fi/linux/ | |
2497 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2498 | T: git git://linuxtv.org/anttip/media_tree.git | |
2499 | S: Maintained | |
2500 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2501 | |
e5ec3789 | 2502 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2503 | M: Santosh Raspatur <[email protected]> |
e5ec3789 SW |
2504 | L: [email protected] |
2505 | W: http://www.chelsio.com | |
2506 | S: Supported | |
f7917c00 | 2507 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2508 | |
2509 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2510 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2511 | L: [email protected] |
e5ec3789 SW |
2512 | W: http://www.openfabrics.org |
2513 | S: Supported | |
679655da | 2514 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2515 | |
be4c9bad RD |
2516 | CXGB4 ETHERNET DRIVER (CXGB4) |
2517 | M: Dimitris Michailidis <[email protected]> | |
2518 | L: [email protected] | |
2519 | W: http://www.chelsio.com | |
2520 | S: Supported | |
f7917c00 | 2521 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2522 | |
2523 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2524 | M: Steve Wise <[email protected]> | |
2525 | L: [email protected] | |
2526 | W: http://www.openfabrics.org | |
2527 | S: Supported | |
2528 | F: drivers/infiniband/hw/cxgb4/ | |
2529 | ||
5c20a5c7 CL |
2530 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2531 | M: Casey Leedom <[email protected]> | |
2532 | L: [email protected] | |
2533 | W: http://www.chelsio.com | |
2534 | S: Supported | |
f7917c00 | 2535 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2536 | |
b52b97a3 GC |
2537 | STMMAC ETHERNET DRIVER |
2538 | M: Giuseppe Cavallaro <[email protected]> | |
2539 | L: [email protected] | |
2540 | W: http://www.stlinux.com | |
2541 | S: Supported | |
7ac6653a | 2542 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2543 | |
1da177e4 | 2544 | CYBERPRO FB DRIVER |
8b58be88 | 2545 | M: Russell King <[email protected]> |
efc03ecb | 2546 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2547 | W: http://www.arm.linux.org.uk/ |
2548 | S: Maintained | |
679655da | 2549 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2550 | |
1da177e4 | 2551 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2552 | W: http://www.cyclades.com/ |
d459883e | 2553 | S: Orphan |
c897401b | 2554 | F: drivers/tty/cyclades.c |
679655da | 2555 | F: include/linux/cyclades.h |
c117ab84 | 2556 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2557 | |
2558 | CYCLADES PC300 DRIVER | |
1da177e4 | 2559 | W: http://www.cyclades.com/ |
d459883e | 2560 | S: Orphan |
679655da | 2561 | F: drivers/net/wan/pc300* |
1da177e4 | 2562 | |
402f6ae4 AP |
2563 | CYPRESS_FIRMWARE MEDIA DRIVER |
2564 | M: Antti Palosaari <[email protected]> | |
2565 | L: [email protected] | |
2566 | W: http://linuxtv.org/ | |
2567 | W: http://palosaari.fi/linux/ | |
2568 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2569 | T: git git://linuxtv.org/anttip/media_tree.git | |
2570 | S: Maintained | |
2571 | F: drivers/media/common/cypress_firmware* | |
2572 | ||
e3ae3525 | 2573 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2574 | M: Ferruh Yigit <[email protected]> |
6305902c | 2575 | L: [email protected] |
be9a6f40 | 2576 | S: Supported |
6305902c JP |
2577 | F: drivers/input/touchscreen/cyttsp* |
2578 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2579 | |
1da177e4 | 2580 | DAMA SLAVE for AX.25 |
8b58be88 | 2581 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2582 | W: http://yaina.de/jreuter/ |
2583 | W: http://www.qsl.net/dl1bke/ | |
2584 | L: [email protected] | |
2585 | S: Maintained | |
679655da JP |
2586 | F: net/ax25/af_ax25.c |
2587 | F: net/ax25/ax25_dev.c | |
2588 | F: net/ax25/ax25_ds_* | |
2589 | F: net/ax25/ax25_in.c | |
2590 | F: net/ax25/ax25_out.c | |
2591 | F: net/ax25/ax25_timer.c | |
2592 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2593 | |
e2d1d6c0 | 2594 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2595 | L: [email protected] |
5ff77428 | 2596 | S: Orphan |
679655da | 2597 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2598 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2599 | |
2600 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2601 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2602 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2603 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2604 | S: Maintained |
679655da | 2605 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2606 | |
1da177e4 | 2607 | DC395x SCSI driver |
61eee9a7 | 2608 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2609 | M: Ali Akcaagac <[email protected]> |
2610 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2611 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2612 | L: [email protected] |
1da177e4 LT |
2613 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2614 | S: Maintained | |
679655da JP |
2615 | F: Documentation/scsi/dc395x.txt |
2616 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2617 | |
eb8edb08 | 2618 | DCCP PROTOCOL |
a89d030e | 2619 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2620 | L: [email protected] |
c996d8b9 | 2621 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2622 | S: Maintained |
679655da | 2623 | F: include/linux/dccp.h |
c117ab84 | 2624 | F: include/uapi/linux/dccp.h |
679655da JP |
2625 | F: include/linux/tfrc.h |
2626 | F: net/dccp/ | |
eb8edb08 | 2627 | |
1da177e4 | 2628 | DECnet NETWORK LAYER |
1da177e4 LT |
2629 | W: http://linux-decnet.sourceforge.net |
2630 | L: [email protected] | |
f546444d | 2631 | S: Orphan |
679655da JP |
2632 | F: Documentation/networking/decnet.txt |
2633 | F: net/decnet/ | |
1da177e4 LT |
2634 | |
2635 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2636 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2637 | S: Maintained |
33f810b2 | 2638 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2639 | |
ad8f07cc | 2640 | DELL LAPTOP DRIVER |
8b58be88 | 2641 | M: Matthew Garrett <[email protected]> |
d0944853 | 2642 | L: [email protected] |
ad8f07cc | 2643 | S: Maintained |
679655da | 2644 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2645 | |
1da177e4 | 2646 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2647 | M: Guenter Roeck <[email protected]> |
679655da | 2648 | F: drivers/char/i8k.c |
c117ab84 | 2649 | F: include/uapi/linux/i8k.h |
1da177e4 | 2650 | |
90563ec4 | 2651 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2652 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2653 | S: Maintained |
679655da JP |
2654 | F: Documentation/dcdbas.txt |
2655 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2656 | |
0b3f6109 | 2657 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2658 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2659 | S: Maintained |
36b3a96f | 2660 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2661 | |
5efc75e3 PZ |
2662 | DESIGNWARE USB2 DRD IP DRIVER |
2663 | M: Paul Zimmerman <[email protected]> | |
2664 | L: [email protected] | |
2665 | S: Maintained | |
197ba5f4 | 2666 | F: drivers/usb/dwc2/ |
5efc75e3 | 2667 | |
94ab23dd FB |
2668 | DESIGNWARE USB3 DRD IP DRIVER |
2669 | M: Felipe Balbi <[email protected]> | |
2670 | L: [email protected] | |
2671 | L: [email protected] | |
2672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2673 | S: Maintained | |
2674 | F: drivers/usb/dwc3/ | |
2675 | ||
89d07767 KP |
2676 | DEVICE FREQUENCY (DEVFREQ) |
2677 | M: MyungJoo Ham <[email protected]> | |
2678 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2679 | L: [email protected] |
89d07767 KP |
2680 | S: Maintained |
2681 | F: drivers/devfreq/ | |
2682 | ||
1da177e4 | 2683 | DEVICE NUMBER REGISTRY |
8b58be88 | 2684 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2685 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2686 | S: Maintained |
2687 | ||
e2d1d6c0 | 2688 | DEVICE-MAPPER (LVM) |
854ecaad | 2689 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2690 | M: Mike Snitzer <[email protected]> |
854ecaad | 2691 | M: [email protected] |
e2d1d6c0 RD |
2692 | L: [email protected] |
2693 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2694 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2695 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2696 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2697 | S: Maintained |
679655da JP |
2698 | F: Documentation/device-mapper/ |
2699 | F: drivers/md/dm* | |
854ecaad | 2700 | F: drivers/md/persistent-data/ |
679655da JP |
2701 | F: include/linux/device-mapper.h |
2702 | F: include/linux/dm-*.h | |
8504eed3 | 2703 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2704 | |
599aa697 LL |
2705 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2706 | M: Lidza Louina <[email protected]> | |
2707 | L: [email protected] | |
2708 | S: Maintained | |
2709 | F: drivers/staging/dgnc/ | |
2710 | ||
2711 | DIGI EPCA PCI PRODUCTS | |
2712 | M: Lidza Louina <[email protected]> | |
2713 | L: [email protected] | |
2714 | S: Maintained | |
2715 | F: drivers/staging/dgap/ | |
2716 | ||
335d7c58 | 2717 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2718 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2719 | L: [email protected] |
2720 | S: Maintained | |
2721 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2722 | ||
e7839f25 | 2723 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2724 | M: Eric Paris <[email protected]> |
3c5119c0 | 2725 | S: Maintained |
679655da JP |
2726 | F: Documentation/filesystems/dnotify.txt |
2727 | F: fs/notify/dnotify/ | |
2728 | F: include/linux/dnotify.h | |
1da177e4 LT |
2729 | |
2730 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2731 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2732 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2733 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2734 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2735 | S: Maintained | |
2736 | ||
4480f15b | 2737 | DISKQUOTA |
8b58be88 | 2738 | M: Jan Kara <[email protected]> |
1da177e4 | 2739 | S: Maintained |
679655da JP |
2740 | F: Documentation/filesystems/quota.txt |
2741 | F: fs/quota/ | |
2742 | F: include/linux/quota*.h | |
c117ab84 | 2743 | F: include/uapi/linux/quota*.h |
1da177e4 | 2744 | |
702686ad BT |
2745 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2746 | M: Bernie Thompson <[email protected]> | |
2747 | L: [email protected] | |
2748 | S: Maintained | |
2749 | W: http://plugable.com/category/projects/udlfb/ | |
2750 | F: drivers/video/udlfb.c | |
2751 | F: include/video/udlfb.h | |
2752 | F: Documentation/fb/udlfb.txt | |
2753 | ||
e7839f25 | 2754 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2755 | M: Christine Caulfield <[email protected]> |
2756 | M: David Teigland <[email protected]> | |
a4644184 | 2757 | L: [email protected] |
5be7b50f | 2758 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2760 | S: Supported |
679655da | 2761 | F: fs/dlm/ |
5be7b50f | 2762 | |
53b6b3e0 SS |
2763 | DMA BUFFER SHARING FRAMEWORK |
2764 | M: Sumit Semwal <[email protected]> | |
2765 | S: Maintained | |
2766 | L: [email protected] | |
2767 | L: [email protected] | |
2768 | L: [email protected] | |
2769 | F: drivers/base/dma-buf* | |
2770 | F: include/linux/dma-buf* | |
2771 | F: Documentation/dma-buf-sharing.txt | |
2772 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2773 | ||
b3e5f263 | 2774 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2775 | M: Vinod Koul <[email protected]> |
ab5f8c6e | 2776 | M: Dan Williams <[email protected]> |
17b59560 VK |
2777 | L: [email protected] |
2778 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2779 | S: Supported |
679655da JP |
2780 | F: drivers/dma/ |
2781 | F: include/linux/dma* | |
5dbd05d4 VK |
2782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2783 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2784 | |
b825037d | 2785 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2786 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2787 | L: [email protected] |
2788 | S: Maintained | |
679655da JP |
2789 | F: Documentation/hwmon/dme1737 |
2790 | F: drivers/hwmon/dme1737.c | |
b825037d | 2791 | |
5b9c9bf6 | 2792 | DOCKING STATION DRIVER |
8b58be88 | 2793 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2794 | L: [email protected] |
8b59a454 | 2795 | S: Supported |
679655da | 2796 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2797 | |
7d2c86b5 | 2798 | DOCUMENTATION |
5191d566 | 2799 | M: Rob Landley <[email protected]> |
795fb7e7 | 2800 | L: [email protected] |
5191d566 | 2801 | T: TBD |
795fb7e7 | 2802 | S: Maintained |
679655da | 2803 | F: Documentation/ |
abbaeff3 | 2804 | |
1da177e4 | 2805 | DOUBLETALK DRIVER |
8b58be88 | 2806 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2807 | L: [email protected] |
2808 | S: Maintained | |
679655da JP |
2809 | F: drivers/char/dtlk.c |
2810 | F: include/linux/dtlk.h | |
1da177e4 | 2811 | |
e2d1d6c0 | 2812 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2813 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2814 | L: [email protected] |
2815 | W: http://www.adaptec.com/ | |
2816 | S: Maintained | |
679655da JP |
2817 | F: drivers/scsi/dpt* |
2818 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2819 | |
b411b363 | 2820 | DRBD DRIVER |
28b8e8d4 JP |
2821 | P: Philipp Reisner |
2822 | P: Lars Ellenberg | |
2823 | M: [email protected] | |
2824 | L: [email protected] | |
2825 | W: http://www.drbd.org | |
2826 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2827 | T: git git://git.drbd.org/drbd-8.3.git | |
2828 | S: Supported | |
2829 | F: drivers/block/drbd/ | |
2830 | F: lib/lru_cache.c | |
2831 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2832 | |
87544653 | 2833 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2834 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2835 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2836 | S: Supported |
679655da | 2837 | F: Documentation/kobject.txt |
7cfc51b9 | 2838 | F: drivers/base/ |
679655da | 2839 | F: fs/sysfs/ |
87544653 | 2840 | F: fs/debugfs/ |
679655da | 2841 | F: include/linux/kobj* |
87544653 | 2842 | F: include/linux/debugfs.h |
679655da | 2843 | F: lib/kobj* |
1da177e4 LT |
2844 | |
2845 | DRM DRIVERS | |
8b58be88 | 2846 | M: David Airlie <[email protected]> |
4c6a3999 | 2847 | L: [email protected] |
54e5881d | 2848 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2849 | S: Maintained |
679655da | 2850 | F: drivers/gpu/drm/ |
850e9411 | 2851 | F: include/drm/ |
c117ab84 | 2852 | F: include/uapi/drm/ |
1da177e4 | 2853 | |
8daf7473 | 2854 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2855 | M: Daniel Vetter <[email protected]> |
47f95647 | 2856 | M: Jani Nikula <[email protected]> |
362132d2 | 2857 | L: [email protected] |
8daf7473 | 2858 | L: [email protected] |
47f95647 | 2859 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
38e490fe | 2860 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 | 2861 | S: Supported |
14430813 | 2862 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2863 | F: include/drm/i915* |
c117ab84 | 2864 | F: include/uapi/drm/i915* |
8daf7473 | 2865 | |
398a6d4a KP |
2866 | DRM DRIVERS FOR EXYNOS |
2867 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2868 | M: Joonyoung Shim <[email protected]> |
2869 | M: Seung-Woo Kim <[email protected]> | |
2870 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2871 | L: [email protected] |
25a58030 | 2872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2873 | S: Supported |
14430813 | 2874 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2875 | F: include/drm/exynos* |
c117ab84 | 2876 | F: include/uapi/drm/exynos* |
398a6d4a | 2877 | |
bd3b49f2 | 2878 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2879 | M: Thierry Reding <[email protected]> |
2880 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2881 | L: [email protected] |
2882 | L: [email protected] | |
a5ad7a63 | 2883 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 2884 | S: Supported |
dee8268f | 2885 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 2886 | F: drivers/gpu/host1x/ |
e1e90644 | 2887 | F: include/linux/host1x.h |
a5ad7a63 | 2888 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
2889 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2890 | ||
598df1ac AK |
2891 | DSBR100 USB FM RADIO DRIVER |
2892 | M: Alexey Klimov <[email protected]> | |
2893 | L: [email protected] | |
2894 | T: git git://linuxtv.org/media_tree.git | |
2895 | S: Maintained | |
2896 | F: drivers/media/radio/dsbr100.c | |
2897 | ||
1da177e4 | 2898 | DSCC4 DRIVER |
8b58be88 | 2899 | M: Francois Romieu <[email protected]> |
01f20734 | 2900 | L: [email protected] |
1da177e4 | 2901 | S: Maintained |
679655da | 2902 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2903 | |
91952bc0 AP |
2904 | DVB_USB_AF9015 MEDIA DRIVER |
2905 | M: Antti Palosaari <[email protected]> | |
2906 | L: [email protected] | |
2907 | W: http://linuxtv.org/ | |
2908 | W: http://palosaari.fi/linux/ | |
2909 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2910 | T: git git://linuxtv.org/anttip/media_tree.git | |
2911 | S: Maintained | |
2912 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2913 | ||
2914 | DVB_USB_AF9035 MEDIA DRIVER | |
2915 | M: Antti Palosaari <[email protected]> | |
2916 | L: [email protected] | |
2917 | W: http://linuxtv.org/ | |
2918 | W: http://palosaari.fi/linux/ | |
2919 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2920 | T: git git://linuxtv.org/anttip/media_tree.git | |
2921 | S: Maintained | |
2922 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2923 | ||
2924 | DVB_USB_ANYSEE MEDIA DRIVER | |
2925 | M: Antti Palosaari <[email protected]> | |
2926 | L: [email protected] | |
2927 | W: http://linuxtv.org/ | |
2928 | W: http://palosaari.fi/linux/ | |
2929 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2930 | T: git git://linuxtv.org/anttip/media_tree.git | |
2931 | S: Maintained | |
2932 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2933 | ||
2934 | DVB_USB_AU6610 MEDIA DRIVER | |
2935 | M: Antti Palosaari <[email protected]> | |
2936 | L: [email protected] | |
2937 | W: http://linuxtv.org/ | |
2938 | W: http://palosaari.fi/linux/ | |
2939 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2940 | T: git git://linuxtv.org/anttip/media_tree.git | |
2941 | S: Maintained | |
2942 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2943 | ||
2944 | DVB_USB_CE6230 MEDIA DRIVER | |
2945 | M: Antti Palosaari <[email protected]> | |
2946 | L: [email protected] | |
2947 | W: http://linuxtv.org/ | |
2948 | W: http://palosaari.fi/linux/ | |
2949 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2950 | T: git git://linuxtv.org/anttip/media_tree.git | |
2951 | S: Maintained | |
2952 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2953 | ||
d099dea2 MK |
2954 | DVB_USB_CXUSB MEDIA DRIVER |
2955 | M: Michael Krufky <[email protected]> | |
2956 | L: [email protected] | |
2957 | W: http://linuxtv.org/ | |
2958 | W: http://github.com/mkrufky | |
2959 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2960 | T: git git://linuxtv.org/media_tree.git | |
2961 | S: Maintained | |
9819da66 | 2962 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2963 | |
91952bc0 | 2964 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2965 | M: Antti Palosaari <[email protected]> |
2966 | L: [email protected] | |
2967 | W: http://linuxtv.org/ | |
2968 | W: http://palosaari.fi/linux/ | |
2969 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2970 | T: git git://linuxtv.org/anttip/media_tree.git | |
2971 | S: Maintained | |
91952bc0 | 2972 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2973 | |
5560983b | 2974 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2975 | M: Antti Palosaari <[email protected]> |
2976 | L: [email protected] | |
2977 | W: http://linuxtv.org/ | |
91952bc0 AP |
2978 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2979 | T: git git://linuxtv.org/anttip/media_tree.git | |
2980 | S: Maintained | |
5560983b | 2981 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2982 | |
8856f5f2 MK |
2983 | DVB_USB_MXL111SF MEDIA DRIVER |
2984 | M: Michael Krufky <[email protected]> | |
2985 | L: [email protected] | |
2986 | W: http://linuxtv.org/ | |
2987 | W: http://github.com/mkrufky | |
2988 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2989 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2990 | S: Maintained | |
2991 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2992 | ||
91952bc0 AP |
2993 | DVB_USB_RTL28XXU MEDIA DRIVER |
2994 | M: Antti Palosaari <[email protected]> | |
2995 | L: [email protected] | |
2996 | W: http://linuxtv.org/ | |
2997 | W: http://palosaari.fi/linux/ | |
2998 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2999 | T: git git://linuxtv.org/anttip/media_tree.git | |
3000 | S: Maintained | |
3001 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3002 | ||
3003 | DVB_USB_V2 MEDIA DRIVER | |
3004 | M: Antti Palosaari <[email protected]> | |
3005 | L: [email protected] | |
3006 | W: http://linuxtv.org/ | |
3007 | W: http://palosaari.fi/linux/ | |
3008 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3009 | T: git git://linuxtv.org/anttip/media_tree.git | |
3010 | S: Maintained | |
3011 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3012 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3013 | ||
ac0ac38f | 3014 | DYNAMIC DEBUG |
5c4a97d1 | 3015 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
3016 | S: Maintained |
3017 | F: lib/dynamic_debug.c | |
3018 | F: include/linux/dynamic_debug.h | |
3019 | ||
789c7048 | 3020 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3021 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 3022 | S: Maintained |
df621252 | 3023 | F: drivers/tty/serial/dz.* |
789c7048 | 3024 | |
91952bc0 AP |
3025 | E4000 MEDIA DRIVER |
3026 | M: Antti Palosaari <[email protected]> | |
3027 | L: [email protected] | |
3028 | W: http://linuxtv.org/ | |
3029 | W: http://palosaari.fi/linux/ | |
3030 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3031 | T: git git://linuxtv.org/anttip/media_tree.git | |
3032 | S: Maintained | |
3033 | F: drivers/media/tuners/e4000* | |
3034 | ||
1da177e4 | 3035 | EATA-DMA SCSI DRIVER |
8b58be88 | 3036 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3037 | L: [email protected] |
3038 | L: [email protected] | |
1da177e4 | 3039 | S: Maintained |
679655da | 3040 | F: drivers/scsi/eata* |
1da177e4 LT |
3041 | |
3042 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 3043 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
3044 | L: [email protected] |
3045 | S: Maintained | |
679655da | 3046 | F: drivers/scsi/eata.c |
1da177e4 LT |
3047 | |
3048 | EATA-PIO SCSI DRIVER | |
8b58be88 | 3049 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3050 | L: [email protected] |
3051 | L: [email protected] | |
1da177e4 | 3052 | S: Maintained |
679655da | 3053 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
3054 | |
3055 | EBTABLES | |
8b58be88 | 3056 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 3057 | L: [email protected] |
1da177e4 LT |
3058 | W: http://ebtables.sourceforge.net/ |
3059 | S: Maintained | |
679655da | 3060 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 3061 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 3062 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 3063 | |
91952bc0 AP |
3064 | EC100 MEDIA DRIVER |
3065 | M: Antti Palosaari <[email protected]> | |
3066 | L: [email protected] | |
3067 | W: http://linuxtv.org/ | |
3068 | W: http://palosaari.fi/linux/ | |
3069 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3070 | T: git git://linuxtv.org/anttip/media_tree.git | |
3071 | S: Maintained | |
3072 | F: drivers/media/dvb-frontends/ec100* | |
3073 | ||
237fead6 | 3074 | ECRYPT FILE SYSTEM |
0de9adf2 | 3075 | M: Tyler Hicks <[email protected]> |
a058bfbb | 3076 | L: [email protected] |
24a923e4 | 3077 | W: http://ecryptfs.org |
6dc7516e | 3078 | W: https://launchpad.net/ecryptfs |
237fead6 | 3079 | S: Supported |
679655da JP |
3080 | F: Documentation/filesystems/ecryptfs.txt |
3081 | F: fs/ecryptfs/ | |
237fead6 | 3082 | |
da9bb1d2 | 3083 | EDAC-CORE |
8b58be88 | 3084 | M: Doug Thompson <[email protected]> |
91445c72 | 3085 | L: [email protected] |
0e438e3f | 3086 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3087 | S: Supported |
679655da | 3088 | F: Documentation/edac.txt |
91445c72 | 3089 | F: drivers/edac/ |
679655da | 3090 | F: include/linux/edac.h |
0e438e3f | 3091 | |
c476c23b | 3092 | EDAC-AMD64 |
8b58be88 | 3093 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3094 | M: Borislav Petkov <[email protected]> |
91445c72 | 3095 | L: [email protected] |
c476c23b | 3096 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3097 | S: Maintained |
c476c23b BP |
3098 | F: drivers/edac/amd64_edac* |
3099 | ||
836dae5d RR |
3100 | EDAC-CALXEDA |
3101 | M: Doug Thompson <[email protected]> | |
3102 | M: Robert Richter <[email protected]> | |
3103 | L: [email protected] | |
3104 | W: bluesmoke.sourceforge.net | |
3105 | S: Maintained | |
3106 | F: drivers/edac/highbank* | |
3107 | ||
f65aad41 RB |
3108 | EDAC-CAVIUM |
3109 | M: Ralf Baechle <[email protected]> | |
3110 | M: David Daney <[email protected]> | |
3111 | L: [email protected] | |
3112 | L: [email protected] | |
3113 | W: bluesmoke.sourceforge.net | |
3114 | S: Supported | |
3115 | F: drivers/edac/octeon_edac* | |
3116 | ||
0e438e3f | 3117 | EDAC-E752X |
8b58be88 JP |
3118 | M: Mark Gross <[email protected]> |
3119 | M: Doug Thompson <[email protected]> | |
91445c72 | 3120 | L: [email protected] |
0e438e3f DP |
3121 | W: bluesmoke.sourceforge.net |
3122 | S: Maintained | |
679655da | 3123 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3124 | |
3125 | EDAC-E7XXX | |
8b58be88 | 3126 | M: Doug Thompson <[email protected]> |
91445c72 | 3127 | L: [email protected] |
0e438e3f DP |
3128 | W: bluesmoke.sourceforge.net |
3129 | S: Maintained | |
679655da | 3130 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3131 | |
77c5f5d2 | 3132 | EDAC-GHES |
1b2c14b4 | 3133 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3134 | L: [email protected] |
3135 | W: bluesmoke.sourceforge.net | |
3136 | S: Maintained | |
2caa67a6 | 3137 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3138 | |
6bc78404 | 3139 | EDAC-I82443BXGX |
8b58be88 | 3140 | M: Tim Small <[email protected]> |
91445c72 | 3141 | L: [email protected] |
6bc78404 DT |
3142 | W: bluesmoke.sourceforge.net |
3143 | S: Maintained | |
679655da | 3144 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3145 | |
3146 | EDAC-I3000 | |
8b58be88 | 3147 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3148 | L: [email protected] |
6bc78404 DT |
3149 | W: bluesmoke.sourceforge.net |
3150 | S: Maintained | |
679655da | 3151 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3152 | |
3153 | EDAC-I5000 | |
8b58be88 | 3154 | M: Doug Thompson <[email protected]> |
91445c72 | 3155 | L: [email protected] |
ba9a5918 DT |
3156 | W: bluesmoke.sourceforge.net |
3157 | S: Maintained | |
679655da | 3158 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3159 | |
44c12cb2 | 3160 | EDAC-I5400 |
1b2c14b4 | 3161 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3162 | L: [email protected] |
44c12cb2 MCC |
3163 | W: bluesmoke.sourceforge.net |
3164 | S: Maintained | |
679655da | 3165 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3166 | |
3c9c92b6 | 3167 | EDAC-I7300 |
1b2c14b4 | 3168 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3169 | L: [email protected] |
3170 | W: bluesmoke.sourceforge.net | |
3171 | S: Maintained | |
3172 | F: drivers/edac/i7300_edac.c | |
3173 | ||
67c89316 | 3174 | EDAC-I7CORE |
1b2c14b4 | 3175 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3176 | L: [email protected] |
3177 | W: bluesmoke.sourceforge.net | |
3178 | S: Maintained | |
70aff0ce | 3179 | F: drivers/edac/i7core_edac.c |
67c89316 | 3180 | |
ba9a5918 | 3181 | EDAC-I82975X |
8b58be88 | 3182 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3183 | M: "Arvind R." <[email protected]> |
91445c72 | 3184 | L: [email protected] |
ba9a5918 DT |
3185 | W: bluesmoke.sourceforge.net |
3186 | S: Maintained | |
679655da | 3187 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3188 | |
ccdfb979 JT |
3189 | EDAC-MPC85XX |
3190 | M: Johannes Thumshirn <[email protected]> | |
3191 | L: [email protected] | |
3192 | W: bluesmoke.sourceforge.net | |
3193 | S: Maintained | |
3194 | F: drivers/edac/mpc85xx_edac.[ch] | |
3195 | ||
ba9a5918 | 3196 | EDAC-PASEMI |
8b58be88 | 3197 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3198 | L: [email protected] |
6bc78404 DT |
3199 | W: bluesmoke.sourceforge.net |
3200 | S: Maintained | |
679655da | 3201 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3202 | |
0e438e3f | 3203 | EDAC-R82600 |
8b58be88 | 3204 | M: Tim Small <[email protected]> |
91445c72 | 3205 | L: [email protected] |
0e438e3f DP |
3206 | W: bluesmoke.sourceforge.net |
3207 | S: Maintained | |
679655da | 3208 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3209 | |
4d096ca7 | 3210 | EDAC-SBRIDGE |
1b2c14b4 | 3211 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3212 | L: [email protected] |
3213 | W: bluesmoke.sourceforge.net | |
3214 | S: Maintained | |
3215 | F: drivers/edac/sb_edac.c | |
3216 | ||
af39917d CL |
3217 | EDIROL UA-101/UA-1000 DRIVER |
3218 | M: Clemens Ladisch <[email protected]> | |
3219 | L: [email protected] (moderated for non-subscribers) | |
3220 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3221 | S: Maintained | |
3222 | F: sound/usb/misc/ua101.c | |
3223 | ||
1f7df953 MF |
3224 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3225 | M: Matt Fleming <[email protected]> | |
3226 | L: [email protected] | |
78bef24e | 3227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3228 | S: Maintained |
3229 | F: Documentation/x86/efi-stub.txt | |
3230 | F: arch/ia64/kernel/efi.c | |
3231 | F: arch/x86/boot/compressed/eboot.[ch] | |
3232 | F: arch/x86/include/asm/efi.h | |
3233 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3234 | F: drivers/firmware/efi/* |
1f7df953 MF |
3235 | F: include/linux/efi*.h |
3236 | ||
d68772b7 MF |
3237 | EFI VARIABLE FILESYSTEM |
3238 | M: Matthew Garrett <[email protected]> | |
3239 | M: Jeremy Kerr <[email protected]> | |
3240 | M: Matt Fleming <[email protected]> | |
3241 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3242 | L: [email protected] | |
3243 | S: Maintained | |
3244 | F: fs/efivarfs/ | |
3245 | ||
85a00d9b PJ |
3246 | EFIFB FRAMEBUFFER DRIVER |
3247 | L: [email protected] | |
3248 | M: Peter Jones <[email protected]> | |
3249 | S: Maintained | |
3250 | F: drivers/video/efifb.c | |
3251 | ||
0bee8d28 JT |
3252 | EFS FILESYSTEM |
3253 | W: http://aeschi.ch.eu.org/efs/ | |
3254 | S: Orphan | |
679655da | 3255 | F: fs/efs/ |
0bee8d28 | 3256 | |
4480f15b | 3257 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3258 | M: Hoang-Nam Nguyen <[email protected]> |
3259 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3260 | L: [email protected] |
fab97220 | 3261 | S: Supported |
679655da | 3262 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3263 | |
aa8a9e25 | 3264 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3265 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3266 | L: [email protected] |
3267 | S: Maintained | |
9aa32835 | 3268 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3269 | |
f0319efe | 3270 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3271 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3272 | L: [email protected] |
3273 | W: http://linuxtv.org | |
3274 | T: git git://linuxtv.org/media_tree.git | |
3275 | S: Maintained | |
3276 | F: drivers/media/usb/em28xx/ | |
3277 | ||
3e3a7d66 | 3278 | EMBEDDED LINUX |
8b58be88 JP |
3279 | M: Paul Gortmaker <[email protected]> |
3280 | M: Matt Mackall <[email protected]> | |
3281 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3282 | L: [email protected] |
3283 | S: Maintained | |
3284 | ||
3a1c1d44 | 3285 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3286 | M: James Smart <[email protected]> |
ce00f85c JC |
3287 | L: [email protected] |
3288 | W: http://sourceforge.net/projects/lpfcxxxx | |
3289 | S: Supported | |
679655da | 3290 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3291 | |
5f5bac82 | 3292 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3293 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3294 | S: Maintained |
3295 | F: drivers/misc/cb710/ | |
3296 | F: drivers/mmc/host/cb710-mmc.* | |
3297 | F: include/linux/cb710.h | |
3298 | ||
931e39a1 ML |
3299 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3300 | M: Maxim Levitsky <[email protected]> | |
3301 | S: Maintained | |
2a837449 | 3302 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3303 | |
ec207dcc GS |
3304 | ENHANCED ERROR HANDLING (EEH) |
3305 | M: Gavin Shan <[email protected]> | |
3306 | L: [email protected] | |
3307 | S: Supported | |
3308 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3309 | F: arch/powerpc/kernel/eeh*.c | |
3310 | ||
d5ca9006 | 3311 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3312 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3313 | S: Maintained |
084bad91 | 3314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3315 | F: drivers/video/s1d13xxxfb.c |
3316 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3317 | |
1da177e4 | 3318 | ETHERNET BRIDGE |
adbbf69d | 3319 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3320 | L: [email protected] |
4c325313 | 3321 | L: [email protected] |
c996d8b9 | 3322 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3323 | S: Maintained |
679655da JP |
3324 | F: include/linux/netfilter_bridge/ |
3325 | F: net/bridge/ | |
1da177e4 | 3326 | |
1da177e4 | 3327 | EXT2 FILE SYSTEM |
01971952 | 3328 | M: Jan Kara <[email protected]> |
72be2ccf | 3329 | L: [email protected] |
1da177e4 | 3330 | S: Maintained |
679655da JP |
3331 | F: Documentation/filesystems/ext2.txt |
3332 | F: fs/ext2/ | |
3333 | F: include/linux/ext2* | |
1da177e4 LT |
3334 | |
3335 | EXT3 FILE SYSTEM | |
01971952 | 3336 | M: Jan Kara <[email protected]> |
8b58be88 | 3337 | M: Andrew Morton <[email protected]> |
3c373a5f | 3338 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3339 | L: [email protected] |
3340 | S: Maintained | |
679655da JP |
3341 | F: Documentation/filesystems/ext3.txt |
3342 | F: fs/ext3/ | |
72be2ccf EM |
3343 | |
3344 | EXT4 FILE SYSTEM | |
8b58be88 | 3345 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3346 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3347 | L: [email protected] |
08a225f1 | 3348 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3349 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3350 | S: Maintained |
679655da JP |
3351 | F: Documentation/filesystems/ext4.txt |
3352 | F: fs/ext4/ | |
1da177e4 | 3353 | |
c5532b09 MZ |
3354 | Extended Verification Module (EVM) |
3355 | M: Mimi Zohar <[email protected]> | |
3356 | S: Supported | |
3357 | F: security/integrity/evm/ | |
3358 | ||
df6b3cfe MH |
3359 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3360 | M: MyungJoo Ham <[email protected]> | |
3361 | M: Chanwoo Choi <[email protected]> | |
3362 | L: [email protected] | |
81df63a9 | 3363 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3364 | S: Maintained |
3365 | F: drivers/extcon/ | |
3366 | F: Documentation/extcon/ | |
3367 | ||
0a79951a JH |
3368 | EXYNOS DP DRIVER |
3369 | M: Jingoo Han <[email protected]> | |
3370 | L: [email protected] | |
3371 | S: Maintained | |
3372 | F: drivers/video/exynos/exynos_dp* | |
3373 | ||
33ad3912 DL |
3374 | EXYNOS MIPI DISPLAY DRIVERS |
3375 | M: Inki Dae <[email protected]> | |
3376 | M: Donghwa Lee <[email protected]> | |
3377 | M: Kyungmin Park <[email protected]> | |
3378 | L: [email protected] | |
3379 | S: Maintained | |
3380 | F: drivers/video/exynos/exynos_mipi* | |
3381 | F: include/video/exynos_mipi* | |
3382 | ||
e53004e2 | 3383 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3384 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3385 | L: [email protected] |
3386 | S: Maintained | |
679655da JP |
3387 | F: Documentation/hwmon/f71805f |
3388 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3389 | |
eea977ed MB |
3390 | FC0011 TUNER DRIVER |
3391 | M: Michael Buesch <[email protected]> | |
3392 | L: [email protected] | |
3393 | S: Maintained | |
ccae7af2 MCC |
3394 | F: drivers/media/tuners/fc0011.h |
3395 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3396 | |
91952bc0 AP |
3397 | FC2580 MEDIA DRIVER |
3398 | M: Antti Palosaari <[email protected]> | |
3399 | L: [email protected] | |
3400 | W: http://linuxtv.org/ | |
3401 | W: http://palosaari.fi/linux/ | |
3402 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3403 | T: git git://linuxtv.org/anttip/media_tree.git | |
3404 | S: Maintained | |
3405 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3406 | |
88b2dbdb EP |
3407 | FANOTIFY |
3408 | M: Eric Paris <[email protected]> | |
3409 | S: Maintained | |
3410 | F: fs/notify/fanotify/ | |
3411 | F: include/linux/fanotify.h | |
c117ab84 | 3412 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3413 | |
1da177e4 | 3414 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3415 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3416 | W: http://www.farsite.co.uk/ |
3417 | S: Supported | |
679655da | 3418 | F: drivers/net/wan/farsync.* |
1da177e4 | 3419 | |
c5408b88 | 3420 | FAULT INJECTION SUPPORT |
8b58be88 | 3421 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3422 | S: Supported |
679655da JP |
3423 | F: Documentation/fault-injection/ |
3424 | F: lib/fault-inject.c | |
c5408b88 | 3425 | |
cae727db RL |
3426 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3427 | M: Robert Love <[email protected]> | |
f4aaea6d | 3428 | L: [email protected] |
cae727db RL |
3429 | W: www.Open-FCoE.org |
3430 | S: Supported | |
3431 | F: drivers/scsi/libfc/ | |
3432 | F: drivers/scsi/fcoe/ | |
3433 | F: include/scsi/fc/ | |
3434 | F: include/scsi/libfc.h | |
3435 | F: include/scsi/libfcoe.h | |
c117ab84 | 3436 | F: include/uapi/scsi/fc/ |
cae727db | 3437 | |
e2d1d6c0 | 3438 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3439 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3440 | L: [email protected] |
1da177e4 | 3441 | S: Maintained |
679655da JP |
3442 | F: include/linux/fcntl.h |
3443 | F: include/linux/fs.h | |
c117ab84 CEB |
3444 | F: include/uapi/linux/fcntl.h |
3445 | F: include/uapi/linux/fs.h | |
679655da JP |
3446 | F: fs/fcntl.c |
3447 | F: fs/locks.c | |
1da177e4 | 3448 | |
e2d1d6c0 | 3449 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3450 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3451 | L: [email protected] |
173acc7c | 3452 | S: Maintained |
679655da | 3453 | F: fs/* |
173acc7c | 3454 | |
b26e0ed4 | 3455 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3456 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3457 | L: [email protected] |
3458 | S: Maintained | |
d5ca6918 JP |
3459 | F: drivers/hwmon/f75375s.c |
3460 | F: include/linux/f75375s.h | |
b26e0ed4 | 3461 | |
a331b0c3 CL |
3462 | FIREWIRE AUDIO DRIVERS |
3463 | M: Clemens Ladisch <[email protected]> | |
3464 | L: [email protected] (moderated for non-subscribers) | |
3465 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3466 | S: Maintained | |
3467 | F: sound/firewire/ | |
3468 | ||
eb86ec51 SR |
3469 | FIREWIRE MEDIA DRIVERS (firedtv) |
3470 | M: Stefan Richter <[email protected]> | |
3471 | L: [email protected] | |
3472 | L: [email protected] | |
3473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3474 | S: Maintained | |
3475 | F: drivers/media/firewire/ | |
3476 | ||
a511ce33 CB |
3477 | FIREWIRE SBP-2 TARGET |
3478 | M: Chris Boot <[email protected]> | |
3479 | L: [email protected] | |
3480 | L: [email protected] | |
3481 | L: [email protected] | |
3482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3483 | S: Maintained | |
3484 | F: drivers/target/sbp/ | |
3485 | ||
7d2c86b5 | 3486 | FIREWIRE SUBSYSTEM |
8b58be88 | 3487 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3488 | L: [email protected] |
958a29cb | 3489 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3490 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3491 | S: Maintained |
679655da | 3492 | F: drivers/firewire/ |
8f06ce3b SR |
3493 | F: include/linux/firewire.h |
3494 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3495 | F: tools/firewire/ |
e2d1d6c0 RD |
3496 | |
3497 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3498 | M: Ming Lei <[email protected]> |
3499 | L: [email protected] | |
3500 | S: Maintained | |
679655da JP |
3501 | F: Documentation/firmware_class/ |
3502 | F: drivers/base/firmware*.c | |
3503 | F: include/linux/firmware.h | |
e2d1d6c0 | 3504 | |
f730e3dc | 3505 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3506 | M: Joshua Morris <[email protected]> |
3507 | M: Philip Kelleher <[email protected]> | |
3508 | S: Maintained | |
3509 | F: drivers/block/rsxx/ | |
3510 | ||
8206f664 JK |
3511 | FLOPPY DRIVER |
3512 | M: Jiri Kosina <[email protected]> | |
3513 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3514 | S: Odd fixes | |
3515 | F: drivers/block/floppy.c | |
3516 | ||
9c9f32ed AR |
3517 | FMC SUBSYSTEM |
3518 | M: Alessandro Rubini <[email protected]> | |
3519 | W: http://www.ohwr.org/projects/fmc-bus | |
3520 | S: Supported | |
3521 | F: drivers/fmc/ | |
3522 | F: include/linux/fmc*.h | |
3523 | F: include/linux/ipmi-fru.h | |
3524 | K: fmc_d.*register | |
3525 | ||
e2d1d6c0 | 3526 | FPU EMULATOR |
8b58be88 | 3527 | M: Bill Metzenthen <[email protected]> |
e769980f | 3528 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3529 | S: Maintained |
679655da | 3530 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3531 | |
3532 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3533 | L: [email protected] |
c173bfac | 3534 | S: Orphan |
679655da JP |
3535 | F: drivers/net/wan/dlci.c |
3536 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3537 | |
3538 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3539 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3540 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3541 | L: [email protected] |
e2d1d6c0 | 3542 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3543 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3545 | S: Maintained |
679655da | 3546 | F: Documentation/fb/ |
d958c62c | 3547 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3548 | F: drivers/video/ |
3549 | F: include/video/ | |
679655da | 3550 | F: include/linux/fb.h |
c117ab84 CEB |
3551 | F: include/uapi/video/ |
3552 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3553 | |
a57c188e | 3554 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3555 | M: Timur Tabi <[email protected]> |
a57c188e | 3556 | L: [email protected] |
c4ef9bc4 | 3557 | S: Maintained |
a57c188e TT |
3558 | F: drivers/video/fsl-diu-fb.* |
3559 | ||
e2d1d6c0 | 3560 | FREESCALE DMA DRIVER |
8b58be88 JP |
3561 | M: Li Yang <[email protected]> |
3562 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3563 | L: [email protected] |
e2d1d6c0 | 3564 | S: Maintained |
679655da | 3565 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3566 | |
3567 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3568 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3569 | L: [email protected] |
846557d3 | 3570 | L: [email protected] |
0d2b405a | 3571 | S: Maintained |
679655da | 3572 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3573 | |
60e8c5ab | 3574 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3575 | M: Sascha Hauer <[email protected]> |
c69f677c | 3576 | L: [email protected] |
efc03ecb | 3577 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3578 | S: Maintained |
bad985a1 | 3579 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3580 | F: drivers/video/imxfb.c |
60e8c5ab | 3581 | |
4689a6b1 | 3582 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3583 | M: Pantelis Antoniou <[email protected]> |
3584 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3585 | L: [email protected] |
4689a6b1 PA |
3586 | L: [email protected] |
3587 | S: Maintained | |
ec21e2ec | 3588 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3589 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3590 | |
d9e9d82c | 3591 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3592 | L: [email protected] |
c4ef9bc4 | 3593 | S: Orphan |
679655da JP |
3594 | F: arch/powerpc/sysdev/qe_lib/ |
3595 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3596 | |
b55ef929 | 3597 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3598 | M: Li Yang <[email protected]> |
6372594a | 3599 | L: [email protected] |
a4724ed6 | 3600 | L: [email protected] |
a7205b30 | 3601 | S: Maintained |
5429c731 | 3602 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3603 | |
beaf53bf | 3604 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3605 | M: Li Yang <[email protected]> |
beaf53bf | 3606 | L: [email protected] |
a4724ed6 | 3607 | L: [email protected] |
beaf53bf | 3608 | S: Maintained |
ec21e2ec | 3609 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3610 | |
d9e9d82c | 3611 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3612 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3613 | L: [email protected] |
c4ef9bc4 | 3614 | S: Maintained |
df621252 | 3615 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3616 | |
3617 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3618 | M: Timur Tabi <[email protected]> |
93711660 | 3619 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3620 | L: [email protected] |
c4ef9bc4 | 3621 | S: Maintained |
69aefcea JP |
3622 | F: sound/soc/fsl/fsl* |
3623 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3624 | |
1da177e4 | 3625 | FREEVXFS FILESYSTEM |
8b58be88 | 3626 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3627 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3628 | S: Maintained | |
679655da | 3629 | F: fs/freevxfs/ |
1da177e4 | 3630 | |
71038f52 | 3631 | FREEZER |
8b58be88 | 3632 | M: Pavel Machek <[email protected]> |
49db1903 | 3633 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 3634 | L: [email protected] |
71038f52 | 3635 | S: Supported |
679655da JP |
3636 | F: Documentation/power/freezing-of-tasks.txt |
3637 | F: include/linux/freezer.h | |
3638 | F: kernel/freezer.c | |
71038f52 | 3639 | |
839a1f79 KRW |
3640 | FRONTSWAP API |
3641 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3642 | L: [email protected] | |
3643 | S: Maintained | |
3644 | F: mm/frontswap.c | |
3645 | F: include/linux/frontswap.h | |
3646 | ||
a5432f5a | 3647 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3648 | M: David Howells <[email protected]> |
a5432f5a DH |
3649 | L: [email protected] |
3650 | S: Supported | |
3651 | F: Documentation/filesystems/caching/ | |
3652 | F: fs/fscache/ | |
3653 | F: include/linux/fscache*.h | |
3654 | ||
f58ad8f5 JK |
3655 | F2FS FILE SYSTEM |
3656 | M: Jaegeuk Kim <[email protected]> | |
3657 | L: [email protected] | |
3658 | W: http://en.wikipedia.org/wiki/F2FS | |
3659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3660 | S: Maintained | |
3661 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3662 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3663 | F: fs/f2fs/ |
3664 | F: include/linux/f2fs_fs.h | |
3665 | ||
5ab7ffea | 3666 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3667 | M: David Howells <[email protected]> |
1da177e4 | 3668 | S: Maintained |
679655da | 3669 | F: arch/frv/ |
1da177e4 | 3670 | |
20b93734 | 3671 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3672 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3673 | L: [email protected] |
20b93734 | 3674 | S: Maintained |
679655da | 3675 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3676 | |
4da621b6 HK |
3677 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3678 | M: Kyungmin Park <[email protected]> | |
3679 | M: Heungjun Kim <[email protected]> | |
3680 | L: [email protected] | |
3681 | S: Maintained | |
90d72ac6 | 3682 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3683 | F: include/media/m5mols.h |
3684 | ||
2d24c490 RG |
3685 | FUJITSU TABLET EXTRAS |
3686 | M: Robert Gerlach <[email protected]> | |
3687 | L: [email protected] | |
3688 | S: Maintained | |
3689 | F: drivers/platform/x86/fujitsu-tablet.c | |
3690 | ||
04578f17 | 3691 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3692 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3693 | L: [email protected] |
3694 | W: http://fuse.sourceforge.net/ | |
3695 | S: Maintained | |
679655da | 3696 | F: fs/fuse/ |
c117ab84 | 3697 | F: include/uapi/linux/fuse.h |
04578f17 | 3698 | |
1da177e4 | 3699 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3700 | M: Rik Faith <[email protected]> |
1da177e4 | 3701 | L: [email protected] |
baaea1dc | 3702 | S: Odd Fixes (e.g., new signatures) |
679655da | 3703 | F: drivers/scsi/fdomain.* |
1da177e4 | 3704 | |
d8e2162c PO |
3705 | GCOV BASED KERNEL PROFILING |
3706 | M: Peter Oberparleiter <[email protected]> | |
3707 | S: Maintained | |
3708 | F: kernel/gcov/ | |
3709 | F: Documentation/gcov.txt | |
3710 | ||
1da177e4 | 3711 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3712 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3713 | L: [email protected] |
3714 | W: http://www.icp-vortex.com/ | |
3715 | S: Supported | |
679655da | 3716 | F: drivers/scsi/gdt* |
1da177e4 | 3717 | |
3169a1c7 HV |
3718 | GEMTEK FM RADIO RECEIVER DRIVER |
3719 | M: Hans Verkuil <[email protected]> | |
3720 | L: [email protected] | |
3721 | T: git git://linuxtv.org/media_tree.git | |
3722 | W: http://linuxtv.org | |
3723 | S: Maintained | |
3724 | F: drivers/media/radio/radio-gemtek* | |
3725 | ||
1c23af90 | 3726 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3727 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3728 | S: Supported |
679655da JP |
3729 | F: drivers/i2c/busses/i2c-gpio.c |
3730 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3731 | |
92ed1a76 PK |
3732 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3733 | M: Peter Korsgaard <[email protected]> | |
3734 | L: [email protected] | |
3735 | S: Supported | |
e7065e20 JD |
3736 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3737 | F: include/linux/i2c-mux-gpio.h | |
3738 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3739 | |
9251ce95 | 3740 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3741 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3742 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3743 | S: Maintained | |
679655da JP |
3744 | F: drivers/net/wan/c101.c |
3745 | F: drivers/net/wan/hd6457* | |
3746 | F: drivers/net/wan/hdlc* | |
3747 | F: drivers/net/wan/n2.c | |
3748 | F: drivers/net/wan/pc300too.c | |
3749 | F: drivers/net/wan/pci200syn.c | |
3750 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3751 | |
1527aab6 | 3752 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3753 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3754 | L: [email protected] |
3755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3756 | S: Maintained | |
14430813 JP |
3757 | F: include/asm-generic/ |
3758 | F: include/uapi/asm-generic/ | |
1527aab6 | 3759 | |
ff764963 KVA |
3760 | GENERIC PHY FRAMEWORK |
3761 | M: Kishon Vijay Abraham I <[email protected]> | |
3762 | L: [email protected] | |
3763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
3764 | S: Supported | |
3765 | F: drivers/phy/ | |
3766 | F: include/linux/phy/ | |
3767 | ||
ccb86a69 | 3768 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3769 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3770 | L: [email protected] |
ccb86a69 MT |
3771 | S: Supported |
3772 | F: drivers/uio/uio_pci_generic.c | |
3773 | ||
5be7b50f | 3774 | GFS2 FILE SYSTEM |
8b58be88 | 3775 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3776 | L: [email protected] |
5be7b50f | 3777 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3780 | S: Supported |
679655da JP |
3781 | F: Documentation/filesystems/gfs2*.txt |
3782 | F: fs/gfs2/ | |
c117ab84 | 3783 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3784 | |
0a34eb8f | 3785 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3786 | M: Hansjoerg Lipp <[email protected]> |
3787 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3788 | L: [email protected] |
3789 | W: http://gigaset307x.sourceforge.net/ | |
3790 | S: Maintained | |
679655da JP |
3791 | F: Documentation/isdn/README.gigaset |
3792 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3793 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3794 | |
a0dc00b4 | 3795 | GPIO SUBSYSTEM |
e4651a9f | 3796 | M: Linus Walleij <[email protected]> |
f2fa75cd | 3797 | M: Alexandre Courbot <[email protected]> |
d15b7179 | 3798 | L: [email protected] |
f2fa75cd LW |
3799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
3800 | S: Maintained | |
3801 | F: Documentation/gpio/ | |
a0dc00b4 GL |
3802 | F: drivers/gpio/ |
3803 | F: include/linux/gpio* | |
9b692346 | 3804 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3805 | |
71a6d0af HW |
3806 | GRE DEMULTIPLEXER DRIVER |
3807 | M: Dmitry Kozlov <[email protected]> | |
3808 | L: [email protected] | |
3809 | S: Maintained | |
11c26770 JP |
3810 | F: net/ipv4/gre_demux.c |
3811 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3812 | F: include/net/gre.h |
3813 | ||
d4c41139 KG |
3814 | GRETH 10/100/1G Ethernet MAC device driver |
3815 | M: Kristoffer Glembo <[email protected]> | |
3816 | L: [email protected] | |
3817 | S: Maintained | |
a31a96ad | 3818 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3819 | |
e8deeae2 | 3820 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3821 | M: Frank Zago <[email protected]> |
661263b5 | 3822 | L: [email protected] |
275ffde4 | 3823 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3824 | S: Maintained |
0c0d06ca | 3825 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3826 | |
4b3fa3c4 OL |
3827 | GSPCA GL860 SUBDRIVER |
3828 | M: Olivier Lorin <[email protected]> | |
3829 | L: [email protected] | |
275ffde4 | 3830 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3831 | S: Maintained |
0c0d06ca | 3832 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3833 | |
e8deeae2 | 3834 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3835 | M: Erik Andren <[email protected]> |
661263b5 | 3836 | L: [email protected] |
275ffde4 | 3837 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3838 | S: Maintained |
0c0d06ca | 3839 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3840 | |
3841 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3842 | M: Hans de Goede <[email protected]> |
661263b5 | 3843 | L: [email protected] |
275ffde4 | 3844 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3845 | S: Maintained |
0c0d06ca | 3846 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3847 | |
261982f1 | 3848 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3849 | M: Brian Johnson <[email protected]> |
261982f1 | 3850 | L: [email protected] |
275ffde4 | 3851 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3852 | S: Maintained |
0c0d06ca | 3853 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3854 | |
e8deeae2 | 3855 | GSPCA T613 SUBDRIVER |
8b58be88 | 3856 | M: Leandro Costantino <[email protected]> |
661263b5 | 3857 | L: [email protected] |
275ffde4 | 3858 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3859 | S: Maintained |
0c0d06ca | 3860 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3861 | |
3862 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3863 | M: Hans de Goede <[email protected]> |
661263b5 | 3864 | L: [email protected] |
275ffde4 | 3865 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3866 | S: Maintained |
0c0d06ca | 3867 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3868 | |
584ec979 DB |
3869 | GUID PARTITION TABLE (GPT) |
3870 | M: Davidlohr Bueso <[email protected]> | |
3871 | L: [email protected] | |
3872 | S: Maintained | |
3873 | F: block/partitions/efi.* | |
3874 | ||
aa3c598b EG |
3875 | STK1160 USB VIDEO CAPTURE DRIVER |
3876 | M: Ezequiel Garcia <[email protected]> | |
3877 | L: [email protected] | |
275ffde4 | 3878 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3879 | S: Maintained |
3880 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3881 | |
71a6d0af HW |
3882 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3883 | M: Frank Seidel <[email protected]> | |
3884 | L: [email protected] | |
3885 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3886 | S: Maintained | |
3887 | F: drivers/platform/x86/hdaps.c | |
3888 | ||
48fc9e26 HV |
3889 | HDPVR USB VIDEO ENCODER DRIVER |
3890 | M: Hans Verkuil <[email protected]> | |
3891 | L: [email protected] | |
3892 | T: git git://linuxtv.org/media_tree.git | |
3893 | W: http://linuxtv.org | |
3894 | S: Odd Fixes | |
14430813 | 3895 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 3896 | |
71a6d0af HW |
3897 | HWPOISON MEMORY FAILURE HANDLING |
3898 | M: Andi Kleen <[email protected]> | |
3899 | L: [email protected] | |
3900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3901 | S: Maintained | |
3902 | F: mm/memory-failure.c | |
3903 | F: mm/hwpoison-inject.c | |
3904 | ||
3905 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3906 | L: [email protected] | |
3907 | S: Odd Fixes | |
3908 | F: drivers/tty/hvc/ | |
3909 | ||
5b543965 | 3910 | HARDWARE MONITORING |
7c81c60f | 3911 | M: Jean Delvare <[email protected]> |
ca462085 | 3912 | M: Guenter Roeck <[email protected]> |
5b543965 | 3913 | L: [email protected] |
595142e0 | 3914 | W: http://www.lm-sensors.org/ |
9e012c1a | 3915 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3917 | S: Maintained |
047f4ec2 | 3918 | F: Documentation/hwmon/ |
679655da | 3919 | F: drivers/hwmon/ |
047f4ec2 | 3920 | F: include/linux/hwmon*.h |
5b543965 | 3921 | |
844dd05f | 3922 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3923 | M: Matt Mackall <[email protected]> |
3924 | M: Herbert Xu <[email protected]> | |
3925 | S: Odd fixes | |
679655da JP |
3926 | F: Documentation/hw_random.txt |
3927 | F: drivers/char/hw_random/ | |
3928 | F: include/linux/hw_random.h | |
844dd05f | 3929 | |
8b37fcfc OBC |
3930 | HARDWARE SPINLOCK CORE |
3931 | M: Ohad Ben-Cohen <[email protected]> | |
3932 | S: Maintained | |
3933 | F: Documentation/hwspinlock.txt | |
3934 | F: drivers/hwspinlock/hwspinlock_* | |
3935 | F: include/linux/hwspinlock.h | |
3936 | ||
1da177e4 | 3937 | HARMONY SOUND DRIVER |
ac6aecbf | 3938 | L: [email protected] |
1da177e4 | 3939 | S: Maintained |
679655da | 3940 | F: sound/parisc/harmony.* |
1da177e4 | 3941 | |
91952bc0 AP |
3942 | HD29L2 MEDIA DRIVER |
3943 | M: Antti Palosaari <[email protected]> | |
3944 | L: [email protected] | |
3945 | W: http://linuxtv.org/ | |
3946 | W: http://palosaari.fi/linux/ | |
3947 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3948 | T: git git://linuxtv.org/anttip/media_tree.git | |
3949 | S: Maintained | |
3950 | F: drivers/media/dvb-frontends/hd29l2* | |
3951 | ||
e2d1d6c0 | 3952 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3953 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3954 | L: [email protected] |
3955 | S: Maintained | |
679655da JP |
3956 | F: Documentation/blockdev/cpqarray.txt |
3957 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3958 | |
9257aa49 | 3959 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3960 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3961 | L: [email protected] |
3962 | S: Supported | |
3963 | F: Documentation/scsi/hpsa.txt | |
3964 | F: drivers/scsi/hpsa*.[ch] | |
3965 | F: include/linux/cciss*.h | |
c117ab84 | 3966 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3967 | |
e2d1d6c0 | 3968 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3969 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3970 | L: [email protected] |
3971 | S: Supported | |
679655da JP |
3972 | F: Documentation/blockdev/cciss.txt |
3973 | F: drivers/block/cciss* | |
3974 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3975 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3976 | |
1da177e4 | 3977 | HFS FILESYSTEM |
6cf515e1 GU |
3978 | L: [email protected] |
3979 | S: Orphan | |
679655da JP |
3980 | F: Documentation/filesystems/hfs.txt |
3981 | F: fs/hfs/ | |
1da177e4 | 3982 | |
ef575f47 GU |
3983 | HFSPLUS FILESYSTEM |
3984 | L: [email protected] | |
3985 | S: Orphan | |
3986 | F: Documentation/filesystems/hfsplus.txt | |
3987 | F: fs/hfsplus/ | |
3988 | ||
1da177e4 | 3989 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 3990 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3991 | L: [email protected] |
3992 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3993 | S: Maintained | |
679655da | 3994 | F: drivers/video/hgafb.c |
1da177e4 | 3995 | |
4480f15b | 3996 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 | 3997 | M: Pavel Machek <[email protected]> |
49db1903 | 3998 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 3999 | L: [email protected] |
e2d1d6c0 | 4000 | S: Supported |
679655da JP |
4001 | F: arch/x86/power/ |
4002 | F: drivers/base/power/ | |
4003 | F: kernel/power/ | |
4004 | F: include/linux/suspend.h | |
4005 | F: include/linux/freezer.h | |
4006 | F: include/linux/pm.h | |
679655da | 4007 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4008 | |
4ef4caad | 4009 | HID CORE LAYER |
8b58be88 | 4010 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 4011 | L: [email protected] |
54e5881d | 4012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4013 | S: Maintained |
679655da JP |
4014 | F: drivers/hid/ |
4015 | F: include/linux/hid* | |
c117ab84 | 4016 | F: include/uapi/linux/hid* |
4ef4caad | 4017 | |
38bed542 | 4018 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4019 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 4020 | L: [email protected] |
75fc2d37 | 4021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4022 | S: Maintained |
679655da JP |
4023 | F: Documentation/timers/ |
4024 | F: kernel/hrtimer.c | |
88606e80 TG |
4025 | F: kernel/time/clockevents.c |
4026 | F: kernel/time/tick*.* | |
4027 | F: kernel/time/timer_*.c | |
05ed8490 | 4028 | F: include/linux/clockchips.h |
679655da | 4029 | F: include/linux/hrtimer.h |
38bed542 | 4030 | |
1da177e4 | 4031 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4032 | L: [email protected] |
8b64f2a0 | 4033 | S: Orphan |
679655da JP |
4034 | F: drivers/net/hamradio/dmascc.c |
4035 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4036 | |
ede1e6f8 | 4037 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4038 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
4039 | W: http://www.highpoint-tech.com |
4040 | S: Supported | |
679655da JP |
4041 | F: Documentation/scsi/hptiop.txt |
4042 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4043 | |
1da177e4 | 4044 | HIPPI |
8b58be88 | 4045 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
4046 | L: [email protected] |
4047 | S: Maintained | |
679655da | 4048 | F: include/linux/hippidevice.h |
c117ab84 | 4049 | F: include/uapi/linux/if_hippi.h |
679655da | 4050 | F: net/802/hippi.c |
ff5a3b50 | 4051 | F: drivers/net/hippi/ |
1da177e4 | 4052 | |
ff1d2767 | 4053 | HOST AP DRIVER |
8b58be88 | 4054 | M: Jouni Malinen <[email protected]> |
85d32e7b | 4055 | L: [email protected] (subscribers-only) |
724c6b35 | 4056 | L: [email protected] |
ff1d2767 JM |
4057 | W: http://hostap.epitest.fi/ |
4058 | S: Maintained | |
679655da | 4059 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4060 | |
dd8cd779 | 4061 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4062 | L: [email protected] |
95c70215 | 4063 | S: Orphan |
679655da | 4064 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4065 | |
e2d1d6c0 | 4066 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4067 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4068 | S: Maintained |
7e25d724 | 4069 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4070 | |
7d2c86b5 | 4071 | HPET: High Precision Event Timers driver |
8b58be88 | 4072 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 4073 | S: Maintained |
679655da JP |
4074 | F: Documentation/timers/hpet.txt |
4075 | F: drivers/char/hpet.c | |
4076 | F: include/linux/hpet.h | |
c117ab84 | 4077 | F: include/uapi/linux/hpet.h |
b9b0332f | 4078 | |
e07b5d79 | 4079 | HPET: x86 |
9c5fb19a | 4080 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 4081 | S: Maintained |
679655da JP |
4082 | F: arch/x86/kernel/hpet.c |
4083 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4084 | |
1da177e4 | 4085 | HPFS FILESYSTEM |
8b58be88 | 4086 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
4087 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4088 | S: Maintained | |
679655da | 4089 | F: fs/hpfs/ |
1da177e4 | 4090 | |
3441cded SR |
4091 | HSI SUBSYSTEM |
4092 | M: Sebastian Reichel <[email protected]> | |
4093 | S: Maintained | |
4094 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
4095 | F: drivers/hsi/ | |
4096 | F: include/linux/hsi/ | |
4097 | F: include/uapi/linux/hsi/ | |
4098 | ||
7d2c86b5 | 4099 | HSO 3G MODEM DRIVER |
8b58be88 | 4100 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
4101 | W: http://www.pharscape.org |
4102 | S: Maintained | |
679655da | 4103 | F: drivers/net/usb/hso.c |
11cd29b0 | 4104 | |
19990e29 AB |
4105 | HSR NETWORK PROTOCOL |
4106 | M: Arvid Brodin <[email protected]> | |
4107 | L: [email protected] | |
4108 | S: Maintained | |
4109 | F: net/hsr/ | |
4110 | ||
5a18c343 | 4111 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4112 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
4113 | L: [email protected] |
4114 | S: Maintained | |
679655da | 4115 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4116 | |
1da177e4 | 4117 | HUGETLB FILESYSTEM |
6d49e352 | 4118 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 4119 | S: Maintained |
679655da | 4120 | F: fs/hugetlbfs/ |
1da177e4 | 4121 | |
05183189 S |
4122 | Hyper-V CORE AND DRIVERS |
4123 | M: K. Y. Srinivasan <[email protected]> | |
4124 | M: Haiyang Zhang <[email protected]> | |
4125 | L: [email protected] | |
4126 | S: Maintained | |
a4162747 HZ |
4127 | F: arch/x86/include/asm/mshyperv.h |
4128 | F: arch/x86/include/uapi/asm/hyperv.h | |
4129 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4130 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4131 | F: drivers/hv/ |
f92ca80b | 4132 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4133 | F: drivers/net/hyperv/ |
a4162747 HZ |
4134 | F: drivers/scsi/storvsc_drv.c |
4135 | F: drivers/video/hyperv_fb.c | |
4136 | F: include/linux/hyperv.h | |
4137 | F: tools/hv/ | |
05183189 | 4138 | |
d85c8a6a | 4139 | I2C OVER PARALLEL PORT |
7c81c60f | 4140 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4141 | L: [email protected] |
4142 | S: Maintained | |
4143 | F: Documentation/i2c/busses/i2c-parport | |
4144 | F: Documentation/i2c/busses/i2c-parport-light | |
4145 | F: drivers/i2c/busses/i2c-parport.c | |
4146 | F: drivers/i2c/busses/i2c-parport-light.c | |
4147 | ||
4148 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4149 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4150 | L: [email protected] |
4151 | S: Maintained | |
4152 | F: Documentation/i2c/busses/i2c-ali1535 | |
4153 | F: Documentation/i2c/busses/i2c-ali1563 | |
4154 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4155 | F: Documentation/i2c/busses/i2c-amd756 | |
4156 | F: Documentation/i2c/busses/i2c-amd8111 | |
4157 | F: Documentation/i2c/busses/i2c-i801 | |
4158 | F: Documentation/i2c/busses/i2c-nforce2 | |
4159 | F: Documentation/i2c/busses/i2c-piix4 | |
4160 | F: Documentation/i2c/busses/i2c-sis5595 | |
4161 | F: Documentation/i2c/busses/i2c-sis630 | |
4162 | F: Documentation/i2c/busses/i2c-sis96x | |
4163 | F: Documentation/i2c/busses/i2c-via | |
4164 | F: Documentation/i2c/busses/i2c-viapro | |
4165 | F: drivers/i2c/busses/i2c-ali1535.c | |
4166 | F: drivers/i2c/busses/i2c-ali1563.c | |
4167 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4168 | F: drivers/i2c/busses/i2c-amd756.c | |
4169 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4170 | F: drivers/i2c/busses/i2c-amd8111.c | |
4171 | F: drivers/i2c/busses/i2c-i801.c | |
4172 | F: drivers/i2c/busses/i2c-isch.c | |
4173 | F: drivers/i2c/busses/i2c-nforce2.c | |
4174 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4175 | F: drivers/i2c/busses/i2c-piix4.c | |
4176 | F: drivers/i2c/busses/i2c-sis5595.c | |
4177 | F: drivers/i2c/busses/i2c-sis630.c | |
4178 | F: drivers/i2c/busses/i2c-sis96x.c | |
4179 | F: drivers/i2c/busses/i2c-via.c | |
4180 | F: drivers/i2c/busses/i2c-viapro.c | |
4181 | ||
cb7f07a4 NH |
4182 | I2C/SMBUS ISMT DRIVER |
4183 | M: Seth Heasley <[email protected]> | |
4184 | M: Neil Horman <[email protected]> | |
4185 | L: [email protected] | |
4186 | F: drivers/i2c/busses/i2c-ismt.c | |
4187 | F: Documentation/i2c/busses/i2c-ismt | |
4188 | ||
6ea884db | 4189 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4190 | M: Jean Delvare <[email protected]> |
846557d3 | 4191 | L: [email protected] |
6ea884db | 4192 | S: Maintained |
8547a5bc | 4193 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4194 | |
5b543965 | 4195 | I2C SUBSYSTEM |
14d77c4d | 4196 | M: Wolfram Sang <[email protected]> |
846557d3 | 4197 | L: [email protected] |
a01064a9 | 4198 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4200 | S: Maintained |
679655da JP |
4201 | F: Documentation/i2c/ |
4202 | F: drivers/i2c/ | |
4203 | F: include/linux/i2c.h | |
03b70d62 | 4204 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4205 | F: include/uapi/linux/i2c.h |
4206 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4207 | |
d85c8a6a | 4208 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4209 | M: Jean Delvare <[email protected]> |
d85c8a6a JD |
4210 | L: [email protected] |
4211 | S: Maintained | |
4212 | F: Documentation/i2c/busses/i2c-taos-evm | |
4213 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4214 | ||
e8c76eed | 4215 | I2C-TINY-USB DRIVER |
8b58be88 | 4216 | M: Till Harbaum <[email protected]> |
846557d3 | 4217 | L: [email protected] |
932d1872 | 4218 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4219 | S: Maintained |
679655da | 4220 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4221 | |
1da177e4 | 4222 | i386 BOOT CODE |
8b58be88 | 4223 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4224 | S: Maintained |
679655da | 4225 | F: arch/x86/boot/ |
1da177e4 LT |
4226 | |
4227 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4228 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4230 | S: Maintained |
4231 | ||
1da177e4 | 4232 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4233 | M: Tony Luck <[email protected]> |
4234 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4235 | L: [email protected] |
6b1c70b1 | 4236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4237 | S: Maintained |
679655da | 4238 | F: arch/ia64/ |
1da177e4 | 4239 | |
956c203c | 4240 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4241 | M: Marcelo Henrique Cerri <[email protected]> |
4242 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4243 | L: [email protected] |
4244 | S: Supported | |
4245 | F: drivers/crypto/nx/ | |
4246 | ||
0e16aafb SJ |
4247 | IBM Power 842 compression accelerator |
4248 | M: Robert Jennings <[email protected]> | |
4249 | S: Supported | |
4250 | F: drivers/crypto/nx/nx-842.c | |
4251 | F: include/linux/nx842.h | |
4252 | ||
1da177e4 | 4253 | IBM Power Linux RAID adapter |
8b58be88 | 4254 | M: Brian King <[email protected]> |
1da177e4 | 4255 | S: Supported |
679655da | 4256 | F: drivers/scsi/ipr.* |
1da177e4 | 4257 | |
9d348af4 SL |
4258 | IBM Power Virtual Ethernet Device Driver |
4259 | M: Santiago Leon <[email protected]> | |
4260 | L: [email protected] | |
4261 | S: Supported | |
9aa32835 | 4262 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4263 | |
4b7652cc RJ |
4264 | IBM Power Virtual SCSI/FC Device Drivers |
4265 | M: Robert Jennings <[email protected]> | |
4266 | L: [email protected] | |
4267 | S: Supported | |
4268 | F: drivers/scsi/ibmvscsi/ | |
4269 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4270 | ||
1da177e4 LT |
4271 | IBM ServeRAID RAID DRIVER |
4272 | P: Jack Hammer | |
8b58be88 | 4273 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4274 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4275 | S: Supported |
679655da | 4276 | F: drivers/scsi/ips.* |
1da177e4 | 4277 | |
6ed9f9c4 PT |
4278 | ICH LPC AND GPIO DRIVER |
4279 | M: Peter Tyser <[email protected]> | |
4280 | S: Maintained | |
4281 | F: drivers/mfd/lpc_ich.c | |
4282 | F: drivers/gpio/gpio-ich.c | |
4283 | ||
1e7106fc | 4284 | IDE SUBSYSTEM |
8b58be88 | 4285 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4286 | L: [email protected] |
8a6e2535 | 4287 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4289 | S: Maintained |
679655da JP |
4290 | F: Documentation/ide/ |
4291 | F: drivers/ide/ | |
4292 | F: include/linux/ide.h | |
1da177e4 | 4293 | |
6cb8c13d IP |
4294 | IDEAPAD LAPTOP EXTRAS DRIVER |
4295 | M: Ike Panhc <[email protected]> | |
4296 | L: [email protected] | |
4297 | W: http://launchpad.net/ideapad-laptop | |
4298 | S: Maintained | |
4299 | F: drivers/platform/x86/ideapad-laptop.c | |
4300 | ||
1ea4c161 AM |
4301 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4302 | M: Andrey Moiseev <[email protected]> | |
4303 | L: [email protected] | |
4304 | W: https://github.com/o2genum/ideapad-slidebar | |
4305 | S: Maintained | |
4306 | F: drivers/input/misc/ideapad_slidebar.c | |
4307 | ||
0f861e8c | 4308 | IDE/ATAPI DRIVERS |
487ba8e8 | 4309 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4310 | L: [email protected] |
c404c199 | 4311 | S: Maintained |
679655da JP |
4312 | F: Documentation/cdrom/ide-cd |
4313 | F: drivers/ide/ide-cd* | |
1da177e4 | 4314 | |
27471fdb | 4315 | IDLE-I7300 |
8b58be88 | 4316 | M: Andy Henroid <[email protected]> |
bf1c138e | 4317 | L: [email protected] |
27471fdb | 4318 | S: Supported |
679655da | 4319 | F: drivers/idle/i7300_idle.c |
27471fdb | 4320 | |
02cf2286 | 4321 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4322 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4323 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4324 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4325 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4326 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4327 | S: Maintained |
4328 | F: net/ieee802154/ | |
68653359 | 4329 | F: net/mac802154/ |
251741b1 | 4330 | F: drivers/net/ieee802154/ |
02cf2286 | 4331 | |
40ad4a30 SY |
4332 | IGUANAWORKS USB IR TRANSCEIVER |
4333 | M: Sean Young <[email protected]> | |
4334 | L: [email protected] | |
4335 | S: Maintained | |
4336 | F: drivers/media/rc/iguanair.c | |
4337 | ||
9545f86e | 4338 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4339 | M: Jonathan Cameron <[email protected]> |
9545f86e AP |
4340 | L: [email protected] |
4341 | S: Maintained | |
03e7c251 | 4342 | F: drivers/iio/ |
9545f86e AP |
4343 | F: drivers/staging/iio/ |
4344 | ||
65519263 SG |
4345 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4346 | M: Matthieu Castet <[email protected]> | |
4347 | M: Stanislaw Gruszka <[email protected]> | |
4348 | S: Maintained | |
4349 | F: drivers/usb/atm/ueagle-atm.c | |
4350 | ||
e89ab51f GR |
4351 | INA209 HARDWARE MONITOR DRIVER |
4352 | M: Guenter Roeck <[email protected]> | |
4353 | L: [email protected] | |
4354 | S: Maintained | |
4355 | F: Documentation/hwmon/ina209 | |
4356 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4357 | F: drivers/hwmon/ina209.c | |
4358 | ||
4359 | INA2XX HARDWARE MONITOR DRIVER | |
4360 | M: Guenter Roeck <[email protected]> | |
4361 | L: [email protected] | |
4362 | S: Maintained | |
4363 | F: Documentation/hwmon/ina2xx | |
4364 | F: drivers/hwmon/ina2xx.c | |
4365 | F: include/linux/platform_data/ina2xx.h | |
4366 | ||
14dc124f SIG |
4367 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4368 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4369 | M: Jens Taprogge <[email protected]> | |
4370 | M: Greg Kroah-Hartman <[email protected]> | |
4371 | L: [email protected] | |
4372 | W: http://industrypack.sourceforge.net | |
4373 | S: Maintained | |
4374 | F: drivers/ipack/ | |
4375 | ||
aa7168f4 | 4376 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4377 | M: Mimi Zohar <[email protected]> |
8912176c | 4378 | M: Dmitry Kasatkin <[email protected]> |
aa7168f4 | 4379 | S: Supported |
679655da | 4380 | F: security/integrity/ima/ |
aa7168f4 | 4381 | |
1da177e4 | 4382 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4383 | L: [email protected] |
843393d3 | 4384 | S: Orphan |
679655da | 4385 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4386 | |
4387 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4388 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4389 | M: Sean Hefty <[email protected]> |
4390 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4391 | L: [email protected] |
605841f5 | 4392 | W: http://www.openfabrics.org/ |
8a6e2535 | 4393 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4395 | S: Supported |
679655da JP |
4396 | F: Documentation/infiniband/ |
4397 | F: drivers/infiniband/ | |
c117ab84 | 4398 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4399 | |
c9f04f58 | 4400 | INOTIFY |
8b58be88 JP |
4401 | M: John McCutchan <[email protected]> |
4402 | M: Robert Love <[email protected]> | |
4403 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4404 | S: Maintained |
679655da JP |
4405 | F: Documentation/filesystems/inotify.txt |
4406 | F: fs/notify/inotify/ | |
4407 | F: include/linux/inotify.h | |
c117ab84 | 4408 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4409 | |
e2d1d6c0 | 4410 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4411 | M: Dmitry Torokhov <[email protected]> |
4412 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4413 | L: [email protected] |
8a6e2535 | 4414 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4416 | S: Maintained |
679655da | 4417 | F: drivers/input/ |
f4eea7e2 | 4418 | F: include/linux/input.h |
c117ab84 | 4419 | F: include/uapi/linux/input.h |
f4eea7e2 | 4420 | F: include/linux/input/ |
e2d1d6c0 | 4421 | |
3267a87f HR |
4422 | INPUT MULTITOUCH (MT) PROTOCOL |
4423 | M: Henrik Rydberg <[email protected]> | |
4424 | L: [email protected] | |
7f9c2454 | 4425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4426 | S: Maintained |
4427 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4428 | F: drivers/input/input-mt.c |
3267a87f HR |
4429 | K: \b(ABS|SYN)_MT_ |
4430 | ||
4ac13e17 DJ |
4431 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4432 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4433 | M: Lukasz Dorau <[email protected]> |
4434 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4435 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4436 | L: [email protected] |
7106891a DJ |
4437 | T: git git://git.code.sf.net/p/intel-sas/isci |
4438 | S: Supported | |
4ac13e17 | 4439 | F: drivers/scsi/isci/ |
4ac13e17 | 4440 | |
26717172 LB |
4441 | INTEL IDLE DRIVER |
4442 | M: Len Brown <[email protected]> | |
bf1c138e | 4443 | L: [email protected] |
08deed1e | 4444 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4445 | S: Supported |
4446 | F: drivers/idle/intel_idle.c | |
4447 | ||
9eb8ef74 | 4448 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4449 | M: Maik Broemme <[email protected]> |
c69f677c | 4450 | L: [email protected] |
ce00f85c | 4451 | S: Maintained |
679655da JP |
4452 | F: Documentation/fb/intelfb.txt |
4453 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4454 | |
1da177e4 | 4455 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4456 | M: Antonino Daplas <[email protected]> |
c69f677c | 4457 | L: [email protected] |
ce00f85c | 4458 | S: Maintained |
679655da | 4459 | F: drivers/video/i810/ |
1da177e4 | 4460 | |
f4a9bc4c | 4461 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4462 | M: Sujith Thomas <[email protected]> |
d0944853 | 4463 | L: [email protected] |
5ca92bd9 | 4464 | W: https://01.org/linux-acpi |
f4a9bc4c | 4465 | S: Supported |
679655da | 4466 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4467 | |
1da177e4 | 4468 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4469 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4470 | S: Maintained |
679655da JP |
4471 | F: arch/x86/kernel/microcode_core.c |
4472 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4473 | |
248a9dc3 | 4474 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4475 | M: Dan Williams <[email protected]> |
18ebd564 DJ |
4476 | M: Dave Jiang <[email protected]> |
4477 | L: [email protected] | |
4478 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4479 | S: Supported | |
679655da | 4480 | F: drivers/dma/ioat* |
248a9dc3 | 4481 | |
6c8909b4 | 4482 | INTEL IOMMU (VT-d) |
8b58be88 | 4483 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4484 | L: [email protected] |
54e5881d | 4485 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4486 | S: Supported |
3fb39615 | 4487 | F: drivers/iommu/intel-iommu.c |
679655da | 4488 | F: include/linux/intel-iommu.h |
6c8909b4 | 4489 | |
b3e5f263 | 4490 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4491 | M: Dan Williams <[email protected]> |
1dd8372d | 4492 | S: Odd fixes |
679655da | 4493 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4494 | |
9251ce95 | 4495 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4496 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4497 | S: Maintained |
679655da JP |
4498 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4499 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4500 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4501 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4502 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4503 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4504 | |
844dd05f | 4505 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4506 | M: Deepak Saxena <[email protected]> |
844dd05f | 4507 | S: Maintained |
679655da | 4508 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4509 | |
105bf2fe | 4510 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4511 | M: Jeff Kirsher <[email protected]> |
4512 | M: Jesse Brandeburg <[email protected]> | |
4513 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4514 | M: Carolyn Wyborny <[email protected]> |
4515 | M: Don Skidmore <[email protected]> | |
4516 | M: Greg Rose <[email protected]> | |
0d164401 | 4517 | M: Alex Duyck <[email protected]> |
8b58be88 | 4518 | M: John Ronciak <[email protected]> |
105bf2fe | 4519 | M: Mitch Williams <[email protected]> |
dcd01faf | 4520 | L: [email protected] |
f6fde11a | 4521 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4522 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4524 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4525 | S: Supported |
0d164401 JK |
4526 | F: Documentation/networking/e100.txt |
4527 | F: Documentation/networking/e1000.txt | |
4528 | F: Documentation/networking/e1000e.txt | |
4529 | F: Documentation/networking/igb.txt | |
4530 | F: Documentation/networking/igbvf.txt | |
4531 | F: Documentation/networking/ixgb.txt | |
4532 | F: Documentation/networking/ixgbe.txt | |
4533 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4534 | F: Documentation/networking/i40e.txt |
105bf2fe | 4535 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4536 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4537 | |
0963d59b LW |
4538 | INTEL-MID GPIO DRIVER |
4539 | M: David Cohen <[email protected]> | |
4540 | L: [email protected] | |
4541 | S: Maintained | |
4542 | F: drivers/gpio/gpio-intel-mid.c | |
4543 | ||
ca907a90 SY |
4544 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4545 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4546 | L: [email protected] |
ca907a90 | 4547 | S: Maintained |
679655da | 4548 | F: Documentation/networking/README.ipw2100 |
679655da | 4549 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4550 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4551 | |
4bd96a7a | 4552 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4553 | M: Richard L Maliszewski <[email protected]> |
4554 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4555 | M: Shane Wang <[email protected]> |
4556 | L: [email protected] | |
4557 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4558 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4559 | S: Supported |
4560 | F: Documentation/intel_txt.txt | |
4561 | F: include/linux/tboot.h | |
4562 | F: arch/x86/kernel/tboot.c | |
4563 | ||
8a70da82 | 4564 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4565 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4566 | M: [email protected] |
4567 | L: [email protected] | |
4568 | S: Supported | |
4569 | W: http://linuxwimax.org | |
679655da JP |
4570 | F: Documentation/wimax/README.i2400m |
4571 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4572 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4573 | |
1c0ce89c SG |
4574 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4575 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4576 | L: [email protected] |
1c0ce89c | 4577 | S: Supported |
efa3144e WYG |
4578 | F: drivers/net/wireless/iwlegacy/ |
4579 | ||
b481de9c | 4580 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4581 | M: Johannes Berg <[email protected]> |
6161b02b | 4582 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 4583 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4584 | L: [email protected] |
b481de9c | 4585 | W: http://intellinuxwireless.org |
b62ff718 | 4586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4587 | S: Supported |
679655da | 4588 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4589 | |
de8fe023 TW |
4590 | INTEL MANAGEMENT ENGINE (mei) |
4591 | M: Tomas Winkler <[email protected]> | |
4592 | L: [email protected] | |
4593 | S: Supported | |
c117ab84 | 4594 | F: include/uapi/linux/mei.h |
de8fe023 | 4595 | F: drivers/misc/mei/* |
e07950a1 | 4596 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4597 | |
cb109a0e | 4598 | IOC3 ETHERNET DRIVER |
8b58be88 | 4599 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4600 | L: [email protected] |
4601 | S: Maintained | |
8862bf1e | 4602 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4603 | |
cb109a0e | 4604 | IOC3 SERIAL DRIVER |
8b58be88 | 4605 | M: Pat Gefre <[email protected]> |
d39e0721 | 4606 | L: [email protected] |
cb109a0e | 4607 | S: Maintained |
df621252 | 4608 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4609 | |
0b6e8569 SW |
4610 | IOMMU DRIVERS |
4611 | M: Joerg Roedel <[email protected]> | |
4612 | L: [email protected] | |
4613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4614 | S: Maintained | |
4615 | F: drivers/iommu/ | |
4616 | ||
4480f15b | 4617 | IP MASQUERADING |
8b58be88 | 4618 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4619 | S: Maintained |
679655da | 4620 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4621 | |
1202d6ff | 4622 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4623 | M: Francois Romieu <[email protected]> |
4624 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4625 | L: [email protected] |
4626 | S: Maintained | |
7443713a | 4627 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4628 | |
4480f15b | 4629 | IPATH DRIVER |
8473c603 | 4630 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4631 | L: [email protected] |
52a09a04 | 4632 | S: Maintained |
679655da | 4633 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4634 | |
4409ebe9 | 4635 | IPMI SUBSYSTEM |
8b58be88 | 4636 | M: Corey Minyard <[email protected]> |
b0c90653 | 4637 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4638 | W: http://openipmi.sourceforge.net/ |
4639 | S: Supported | |
679655da JP |
4640 | F: Documentation/IPMI.txt |
4641 | F: drivers/char/ipmi/ | |
4642 | F: include/linux/ipmi* | |
c117ab84 | 4643 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4644 | |
e2d1d6c0 | 4645 | IPS SCSI RAID DRIVER |
8b58be88 | 4646 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4647 | L: [email protected] |
4648 | W: http://www.adaptec.com/ | |
4649 | S: Maintained | |
679655da | 4650 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4651 | |
4652 | IPVS | |
8b58be88 JP |
4653 | M: Wensong Zhang <[email protected]> |
4654 | M: Simon Horman <[email protected]> | |
4655 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4656 | L: [email protected] |
e2d1d6c0 | 4657 | L: [email protected] |
1da177e4 | 4658 | S: Maintained |
679655da | 4659 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4660 | F: include/net/ip_vs.h |
c117ab84 | 4661 | F: include/uapi/linux/ip_vs.h |
679655da | 4662 | F: net/netfilter/ipvs/ |
1da177e4 | 4663 | |
e7839f25 | 4664 | IPWIRELESS DRIVER |
8b58be88 JP |
4665 | M: Jiri Kosina <[email protected]> |
4666 | M: David Sterba <[email protected]> | |
92094aa0 | 4667 | S: Odd Fixes |
282361a0 | 4668 | F: drivers/tty/ipwireless/ |
099dc4fb | 4669 | |
e2d1d6c0 | 4670 | IPX NETWORK LAYER |
8b58be88 | 4671 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4672 | L: [email protected] |
4673 | S: Maintained | |
679655da | 4674 | F: include/net/ipx.h |
c117ab84 | 4675 | F: include/uapi/linux/ipx.h |
679655da | 4676 | F: net/ipx/ |
e2d1d6c0 | 4677 | |
1da177e4 | 4678 | IRDA SUBSYSTEM |
8b58be88 | 4679 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4680 | L: [email protected] (subscribers-only) |
ced649ea | 4681 | L: [email protected] |
1da177e4 | 4682 | W: http://irda.sourceforge.net/ |
f353976d | 4683 | S: Maintained |
e0057975 | 4684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4685 | F: Documentation/networking/irda.txt |
4686 | F: drivers/net/irda/ | |
4687 | F: include/net/irda/ | |
4688 | F: net/irda/ | |
1da177e4 | 4689 | |
a800c7cc TG |
4690 | IRQ SUBSYSTEM |
4691 | M: Thomas Gleixner <[email protected]> | |
981c3a4f | 4692 | L: [email protected] |
a800c7cc | 4693 | S: Maintained |
75fc2d37 | 4694 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4695 | F: kernel/irq/ |
edd96900 | 4696 | F: drivers/irqchip/ |
a800c7cc | 4697 | |
7ab3a837 GL |
4698 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4699 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4700 | S: Maintained |
4701 | F: Documentation/IRQ-domain.txt | |
4702 | F: include/linux/irqdomain.h | |
4703 | F: kernel/irq/irqdomain.c | |
4704 | ||
e2d1d6c0 | 4705 | ISAPNP |
8b58be88 | 4706 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4707 | S: Maintained |
679655da JP |
4708 | F: Documentation/isapnp.txt |
4709 | F: drivers/pnp/isapnp/ | |
4710 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4711 | |
d39b8420 HV |
4712 | ISA RADIO MODULE |
4713 | M: Hans Verkuil <[email protected]> | |
4714 | L: [email protected] | |
4715 | T: git git://linuxtv.org/media_tree.git | |
4716 | W: http://linuxtv.org | |
4717 | S: Maintained | |
4718 | F: drivers/media/radio/radio-isa* | |
4719 | ||
71a6d0af HW |
4720 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4721 | M: Peter Jones <[email protected]> | |
4722 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4723 | S: Maintained | |
4724 | F: drivers/firmware/iscsi_ibft* | |
4725 | ||
14816b1e | 4726 | ISCSI |
8b58be88 | 4727 | M: Mike Christie <[email protected]> |
14816b1e MC |
4728 | L: [email protected] |
4729 | W: www.open-iscsi.org | |
54e5881d | 4730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4731 | S: Maintained |
679655da JP |
4732 | F: drivers/scsi/*iscsi* |
4733 | F: include/scsi/*iscsi* | |
14816b1e | 4734 | |
1e65eb42 OG |
4735 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4736 | M: Or Gerlitz <[email protected]> | |
4737 | M: Roi Dayan <[email protected]> | |
4738 | L: [email protected] | |
4739 | S: Supported | |
4740 | W: http://www.openfabrics.org | |
4741 | W: www.open-iscsi.org | |
4742 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4743 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4744 | |
1da177e4 | 4745 | ISDN SUBSYSTEM |
8b58be88 | 4746 | M: Karsten Keil <[email protected]> |
d5d52273 | 4747 | L: [email protected] (subscribers-only) |
3da0ae62 | 4748 | L: [email protected] |
1da177e4 | 4749 | W: http://www.isdn4linux.de |
54e5881d | 4750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4751 | S: Maintained |
679655da JP |
4752 | F: Documentation/isdn/ |
4753 | F: drivers/isdn/ | |
4754 | F: include/linux/isdn.h | |
4755 | F: include/linux/isdn/ | |
c117ab84 CEB |
4756 | F: include/uapi/linux/isdn.h |
4757 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4758 | |
4759 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4760 | M: Armin Schindler <[email protected]> |
d5d52273 | 4761 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4762 | W: http://www.melware.de |
4763 | S: Maintained | |
679655da | 4764 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4765 | |
d624870f | 4766 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 4767 | M: Jean Delvare <[email protected]> |
d624870f JD |
4768 | L: [email protected] |
4769 | S: Maintained | |
4770 | F: Documentation/hwmon/it87 | |
4771 | F: drivers/hwmon/it87.c | |
4772 | ||
68620bdd MP |
4773 | IT913X MEDIA DRIVER |
4774 | M: Malcolm Priestley <[email protected]> | |
4775 | L: [email protected] | |
4776 | W: http://linuxtv.org/ | |
4777 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4778 | S: Maintained | |
4779 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4780 | ||
4781 | IT913X FE MEDIA DRIVER | |
4782 | M: Malcolm Priestley <[email protected]> | |
4783 | L: [email protected] | |
4784 | W: http://linuxtv.org/ | |
4785 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4786 | S: Maintained | |
4787 | F: drivers/media/dvb-frontends/it913x-fe* | |
4788 | ||
d7104bff AP |
4789 | IT913X MEDIA DRIVER |
4790 | M: Antti Palosaari <[email protected]> | |
4791 | L: [email protected] | |
4792 | W: http://linuxtv.org/ | |
4793 | W: http://palosaari.fi/linux/ | |
4794 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4795 | T: git git://linuxtv.org/anttip/media_tree.git | |
4796 | S: Maintained | |
9d9fb744 | 4797 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4798 | |
91821ff3 | 4799 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4800 | M: Andy Walls <[email protected]> |
c4240509 | 4801 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4802 | L: [email protected] |
275ffde4 | 4803 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4804 | W: http://www.ivtvdriver.org |
4805 | S: Maintained | |
679655da | 4806 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4807 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4808 | F: include/uapi/linux/ivtv* |
91821ff3 | 4809 | |
68620bdd MP |
4810 | IX2505V MEDIA DRIVER |
4811 | M: Malcolm Priestley <[email protected]> | |
4812 | L: [email protected] | |
4813 | W: http://linuxtv.org/ | |
4814 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4815 | S: Maintained | |
4816 | F: drivers/media/dvb-frontends/ix2505v* | |
4817 | ||
4453d736 GR |
4818 | JC42.4 TEMPERATURE SENSOR DRIVER |
4819 | M: Guenter Roeck <[email protected]> | |
4820 | L: [email protected] | |
4821 | S: Maintained | |
4822 | F: drivers/hwmon/jc42.c | |
4823 | F: Documentation/hwmon/jc42 | |
4824 | ||
e2d1d6c0 | 4825 | JFS FILESYSTEM |
3256f80f | 4826 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4827 | L: [email protected] |
4828 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4830 | S: Maintained |
679655da JP |
4831 | F: Documentation/filesystems/jfs.txt |
4832 | F: fs/jfs/ | |
e2d1d6c0 | 4833 | |
95252236 | 4834 | JME NETWORK DRIVER |
8b58be88 | 4835 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4836 | L: [email protected] |
4837 | S: Maintained | |
63d24a0e | 4838 | F: drivers/net/ethernet/jme.* |
95252236 | 4839 | |
1da177e4 | 4840 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4841 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4842 | L: [email protected] |
4843 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4844 | S: Maintained |
679655da | 4845 | F: fs/jffs2/ |
c117ab84 | 4846 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4847 | |
de456d37 | 4848 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4849 | M: Andrew Morton <[email protected]> |
19003c18 | 4850 | M: Jan Kara <[email protected]> |
72be2ccf | 4851 | L: [email protected] |
ae0718f8 | 4852 | S: Maintained |
d183e11a | 4853 | F: fs/jbd/ |
d183e11a TT |
4854 | F: include/linux/jbd.h |
4855 | ||
4856 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4857 | M: "Theodore Ts'o" <[email protected]> | |
4858 | L: [email protected] | |
4859 | S: Maintained | |
4860 | F: fs/jbd2/ | |
4861 | F: include/linux/jbd2.h | |
ae0718f8 | 4862 | |
fd8b6cb4 | 4863 | JSM Neo PCI based serial card |
9d141cb9 | 4864 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4865 | L: [email protected] |
4866 | S: Maintained | |
df621252 | 4867 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4868 | |
af39917d CL |
4869 | K10TEMP HARDWARE MONITORING DRIVER |
4870 | M: Clemens Ladisch <[email protected]> | |
4871 | L: [email protected] | |
4872 | S: Maintained | |
4873 | F: Documentation/hwmon/k10temp | |
4874 | F: drivers/hwmon/k10temp.c | |
4875 | ||
4660cb35 | 4876 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4877 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4878 | L: [email protected] |
ae0718f8 | 4879 | S: Maintained |
679655da JP |
4880 | F: Documentation/hwmon/k8temp |
4881 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4882 | |
c63a1642 | 4883 | KTAP |
687b63a3 | 4884 | M: Jovi Zhangwei <[email protected]> |
c63a1642 JZ |
4885 | W: http://www.ktap.org |
4886 | L: [email protected] | |
4887 | S: Maintained | |
4888 | F: drivers/staging/ktap/ | |
4889 | ||
1da177e4 | 4890 | KCONFIG |
5eb1f99e | 4891 | M: "Yann E. MORIN" <[email protected]> |
347d12d7 | 4892 | L: [email protected] |
5eb1f99e MM |
4893 | T: git://gitorious.org/linux-kconfig/linux-kconfig |
4894 | S: Maintained | |
679655da JP |
4895 | F: Documentation/kbuild/kconfig-language.txt |
4896 | F: scripts/kconfig/ | |
1da177e4 | 4897 | |
ea6c2089 | 4898 | KDUMP |
8b58be88 JP |
4899 | M: Vivek Goyal <[email protected]> |
4900 | M: Haren Myneni <[email protected]> | |
34633993 | 4901 | L: [email protected] |
ea6c2089 VG |
4902 | W: http://lse.sourceforge.net/kdump/ |
4903 | S: Maintained | |
80811493 | 4904 | F: Documentation/kdump/ |
ea6c2089 | 4905 | |
f41bf02f HV |
4906 | KEENE FM RADIO TRANSMITTER DRIVER |
4907 | M: Hans Verkuil <[email protected]> | |
4908 | L: [email protected] | |
4909 | T: git git://linuxtv.org/media_tree.git | |
4910 | W: http://linuxtv.org | |
4911 | S: Maintained | |
4912 | F: drivers/media/radio/radio-keene* | |
4913 | ||
1da177e4 | 4914 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4915 | M: Ian Kent <[email protected]> |
f694fc97 | 4916 | L: [email protected] |
1da177e4 | 4917 | S: Maintained |
679655da | 4918 | F: fs/autofs4/ |
1da177e4 | 4919 | |
70fb7ba6 | 4920 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4921 | M: Michal Marek <[email protected]> |
08deed1e JP |
4922 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4923 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4924 | L: [email protected] |
5ce45962 | 4925 | S: Maintained |
679655da JP |
4926 | F: Documentation/kbuild/ |
4927 | F: Makefile | |
4928 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4929 | F: scripts/basic/ |
4930 | F: scripts/mk* | |
4931 | F: scripts/package/ | |
1da177e4 LT |
4932 | |
4933 | KERNEL JANITORS | |
c3000e03 | 4934 | L: [email protected] |
10466f5a | 4935 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4936 | S: Odd Fixes |
1da177e4 | 4937 | |
e8b43555 | 4938 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4939 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4940 | L: [email protected] |
1da177e4 | 4941 | W: http://nfs.sourceforge.net/ |
98fac23f | 4942 | S: Supported |
679655da JP |
4943 | F: fs/nfsd/ |
4944 | F: include/linux/nfsd/ | |
c117ab84 | 4945 | F: include/uapi/linux/nfsd/ |
679655da JP |
4946 | F: fs/lockd/ |
4947 | F: fs/nfs_common/ | |
4948 | F: net/sunrpc/ | |
4949 | F: include/linux/lockd/ | |
4950 | F: include/linux/sunrpc/ | |
c117ab84 | 4951 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4952 | |
426d62e2 | 4953 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 4954 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4955 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4956 | L: [email protected] |
e3e58478 | 4957 | W: http://www.linux-kvm.org |
a94b40a6 | 4958 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 4959 | S: Supported |
c93a64fe PB |
4960 | F: Documentation/*/kvm*.txt |
4961 | F: Documentation/virtual/kvm/ | |
679655da JP |
4962 | F: arch/*/kvm/ |
4963 | F: arch/*/include/asm/kvm* | |
4964 | F: include/linux/kvm* | |
c117ab84 | 4965 | F: include/uapi/linux/kvm* |
679655da | 4966 | F: virt/kvm/ |
426d62e2 | 4967 | |
ad8003d3 | 4968 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4969 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4970 | L: [email protected] |
4971 | W: http://kvm.qumranet.com | |
7de609c8 | 4972 | S: Maintained |
679655da | 4973 | F: arch/x86/include/asm/svm.h |
679655da | 4974 | F: arch/x86/kvm/svm.c |
426d62e2 | 4975 | |
513014b7 | 4976 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4977 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4978 | L: [email protected] |
4979 | W: http://kvm.qumranet.com | |
6a7f972d | 4980 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4981 | S: Supported |
679655da JP |
4982 | F: arch/powerpc/include/asm/kvm* |
4983 | F: arch/powerpc/kvm/ | |
513014b7 | 4984 | |
1fc9d2bf | 4985 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4986 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4987 | L: [email protected] |
4988 | W: http://kvm.qumranet.com | |
920ed9f1 | 4989 | S: Supported |
679655da JP |
4990 | F: Documentation/ia64/kvm.txt |
4991 | F: arch/ia64/include/asm/kvm* | |
4992 | F: arch/ia64/kvm/ | |
920ed9f1 | 4993 | |
85f8fffe | 4994 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4995 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4996 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4997 | M: [email protected] |
4998 | L: [email protected] | |
4999 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5000 | S: Supported | |
679655da JP |
5001 | F: Documentation/s390/kvm.txt |
5002 | F: arch/s390/include/asm/kvm* | |
80811493 | 5003 | F: arch/s390/kvm/ |
a968cd3e | 5004 | F: drivers/s390/kvm/ |
85f8fffe | 5005 | |
a749474d | 5006 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5007 | M: Christoffer Dall <[email protected]> |
a749474d CD |
5008 | L: [email protected] |
5009 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5010 | S: Supported |
a749474d CD |
5011 | F: arch/arm/include/uapi/asm/kvm* |
5012 | F: arch/arm/include/asm/kvm* | |
5013 | F: arch/arm/kvm/ | |
5014 | ||
6394a3ec MZ |
5015 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5016 | M: Marc Zyngier <[email protected]> | |
5017 | L: [email protected] (moderated for non-subscribers) | |
5018 | L: [email protected] | |
5019 | S: Maintained | |
5020 | F: arch/arm64/include/uapi/asm/kvm* | |
5021 | F: arch/arm64/include/asm/kvm* | |
5022 | F: arch/arm64/kvm/ | |
5023 | ||
dc009d92 | 5024 | KEXEC |
8b58be88 | 5025 | M: Eric Biederman <[email protected]> |
2f327dad | 5026 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5027 | L: [email protected] |
dc009d92 | 5028 | S: Maintained |
679655da | 5029 | F: include/linux/kexec.h |
c117ab84 | 5030 | F: include/uapi/linux/kexec.h |
679655da | 5031 | F: kernel/kexec.c |
dc009d92 | 5032 | |
e971461f DH |
5033 | KEYS/KEYRINGS: |
5034 | M: David Howells <[email protected]> | |
5035 | L: [email protected] | |
5036 | S: Maintained | |
d410fa4e | 5037 | F: Documentation/security/keys.txt |
e971461f DH |
5038 | F: include/linux/key.h |
5039 | F: include/linux/key-type.h | |
5040 | F: include/keys/ | |
5041 | F: security/keys/ | |
5042 | ||
7f3c68be MZ |
5043 | KEYS-TRUSTED |
5044 | M: David Safford <[email protected]> | |
5045 | M: Mimi Zohar <[email protected]> | |
5046 | L: [email protected] | |
5047 | L: [email protected] | |
5048 | S: Supported | |
d410fa4e | 5049 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5050 | F: include/keys/trusted-type.h |
5051 | F: security/keys/trusted.c | |
5052 | F: security/keys/trusted.h | |
5053 | ||
5054 | KEYS-ENCRYPTED | |
5055 | M: Mimi Zohar <[email protected]> | |
5056 | M: David Safford <[email protected]> | |
5057 | L: [email protected] | |
5058 | L: [email protected] | |
5059 | S: Supported | |
d410fa4e | 5060 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5061 | F: include/keys/encrypted-type.h |
19c90aa6 | 5062 | F: security/keys/encrypted-keys/ |
7f3c68be | 5063 | |
5b778dad | 5064 | KGDB / KDB /debug_core |
8b58be88 | 5065 | M: Jason Wessel <[email protected]> |
4063eb5f | 5066 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5067 | L: [email protected] |
5068 | S: Maintained | |
679655da JP |
5069 | F: Documentation/DocBook/kgdb.tmpl |
5070 | F: drivers/misc/kgdbts.c | |
df621252 | 5071 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5072 | F: include/linux/kdb.h |
679655da | 5073 | F: include/linux/kgdb.h |
4063eb5f | 5074 | F: kernel/debug/ |
e3e2aaf7 | 5075 | |
456db8cc | 5076 | KMEMCHECK |
8b58be88 | 5077 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 5078 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 5079 | S: Maintained |
410d7a97 JP |
5080 | F: Documentation/kmemcheck.txt |
5081 | F: arch/x86/include/asm/kmemcheck.h | |
5082 | F: arch/x86/mm/kmemcheck/ | |
5083 | F: include/linux/kmemcheck.h | |
5084 | F: mm/kmemcheck.c | |
b9ce08c0 | 5085 | |
c3bb4d24 | 5086 | KMEMLEAK |
8b58be88 | 5087 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
5088 | S: Maintained |
5089 | F: Documentation/kmemleak.txt | |
5090 | F: include/linux/kmemleak.h | |
5091 | F: mm/kmemleak.c | |
5092 | F: mm/kmemleak-test.c | |
5093 | ||
89559a61 | 5094 | KPROBES |
8b58be88 JP |
5095 | M: Ananth N Mavinakayanahalli <[email protected]> |
5096 | M: Anil S Keshavamurthy <[email protected]> | |
5097 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 5098 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 5099 | S: Maintained |
679655da JP |
5100 | F: Documentation/kprobes.txt |
5101 | F: include/linux/kprobes.h | |
5102 | F: kernel/kprobes.c | |
89559a61 | 5103 | |
70e84049 | 5104 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5105 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
5106 | W: http://miguelojeda.es/auxdisplay.htm |
5107 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5108 | S: Maintained |
679655da JP |
5109 | F: Documentation/auxdisplay/ks0108 |
5110 | F: drivers/auxdisplay/ks0108.c | |
5111 | F: include/linux/ks0108.h | |
70e84049 | 5112 | |
1da177e4 | 5113 | LAPB module |
1da177e4 | 5114 | L: [email protected] |
bf9915cc | 5115 | S: Orphan |
679655da JP |
5116 | F: Documentation/networking/lapb-module.txt |
5117 | F: include/*/lapb.h | |
5118 | F: net/lapb/ | |
1da177e4 LT |
5119 | |
5120 | LASI 53c700 driver for PARISC | |
8b58be88 | 5121 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5122 | L: [email protected] |
5123 | S: Maintained | |
679655da JP |
5124 | F: Documentation/scsi/53c700.txt |
5125 | F: drivers/scsi/53c700* | |
1da177e4 | 5126 | |
263de9b5 | 5127 | LED SUBSYSTEM |
c772fc26 | 5128 | M: Bryan Wu <[email protected]> |
8b58be88 | 5129 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
5130 | L: [email protected] |
5131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5132 | S: Maintained |
679655da JP |
5133 | F: drivers/leds/ |
5134 | F: include/linux/leds.h | |
263de9b5 | 5135 | |
b0461a44 | 5136 | LEGACY EEPROM DRIVER |
7c81c60f | 5137 | M: Jean Delvare <[email protected]> |
b0461a44 JD |
5138 | S: Maintained |
5139 | F: Documentation/misc-devices/eeprom | |
5140 | F: drivers/misc/eeprom/eeprom.c | |
5141 | ||
1da177e4 | 5142 | LEGO USB Tower driver |
8b58be88 | 5143 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
5144 | L: [email protected] |
5145 | W: http://legousb.sourceforge.net/ | |
5146 | S: Maintained | |
679655da | 5147 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5148 | |
055616a8 MK |
5149 | LG2160 MEDIA DRIVER |
5150 | M: Michael Krufky <[email protected]> | |
5151 | L: [email protected] | |
5152 | W: http://linuxtv.org/ | |
5153 | W: http://github.com/mkrufky | |
5154 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5155 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5156 | S: Maintained | |
5157 | F: drivers/media/dvb-frontends/lg2160.* | |
5158 | ||
6f0e7725 MK |
5159 | LGDT3305 MEDIA DRIVER |
5160 | M: Michael Krufky <[email protected]> | |
5161 | L: [email protected] | |
5162 | W: http://linuxtv.org/ | |
5163 | W: http://github.com/mkrufky | |
5164 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5165 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5166 | S: Maintained | |
5167 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5168 | ||
568a17ff | 5169 | LGUEST |
8b58be88 | 5170 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5171 | L: [email protected] |
568a17ff | 5172 | W: http://lguest.ozlabs.org/ |
72e91863 | 5173 | S: Odd Fixes |
070f420b | 5174 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5175 | F: arch/x86/lguest/ |
5176 | F: drivers/lguest/ | |
5177 | F: include/linux/lguest*.h | |
070f420b | 5178 | F: tools/lguest/ |
568a17ff | 5179 | |
1acd437c SL |
5180 | LIBLOCKDEP |
5181 | M: Sasha Levin <[email protected]> | |
5182 | S: Maintained | |
5183 | F: tools/lib/lockdep/ | |
5184 | ||
1da177e4 | 5185 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5186 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5187 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5188 | S: Supported | |
11c34c7d | 5189 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5190 | |
852bb9f5 | 5191 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5192 | M: Benjamin Herrenschmidt <[email protected]> |
5193 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 5194 | W: http://www.penguinppc.org/ |
a4724ed6 | 5195 | L: [email protected] |
8a6e2535 | 5196 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5198 | S: Supported |
11c34c7d JP |
5199 | F: Documentation/powerpc/ |
5200 | F: arch/powerpc/ | |
1da177e4 LT |
5201 | |
5202 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5203 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5204 | W: http://www.penguinppc.org/ |
a4724ed6 | 5205 | L: [email protected] |
1da177e4 | 5206 | S: Maintained |
11c34c7d JP |
5207 | F: arch/powerpc/platforms/powermac/ |
5208 | F: drivers/macintosh/ | |
1da177e4 | 5209 | |
77a76369 | 5210 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5211 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5212 | L: [email protected] |
a149507b | 5213 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5214 | S: Maintained |
11c34c7d JP |
5215 | F: arch/powerpc/platforms/512x/ |
5216 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5217 | |
5218 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 5219 | M: Josh Boyer <[email protected]> |
8b58be88 | 5220 | M: Matt Porter <[email protected]> |
1da177e4 | 5221 | W: http://www.penguinppc.org/ |
a4724ed6 | 5222 | L: [email protected] |
645609c0 | 5223 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 5224 | S: Maintained |
11c34c7d JP |
5225 | F: arch/powerpc/platforms/40x/ |
5226 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5227 | |
260c02a9 | 5228 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5229 | L: [email protected] |
cdeb8994 | 5230 | S: Orphan |
11c34c7d JP |
5231 | F: arch/powerpc/*/*virtex* |
5232 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5233 | |
e93adf1e | 5234 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5235 | M: Vitaly Bordug <[email protected]> |
5236 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5237 | W: http://www.penguinppc.org/ |
a4724ed6 | 5238 | L: [email protected] |
e93adf1e | 5239 | S: Maintained |
a2b1f7c8 | 5240 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5241 | |
1da177e4 | 5242 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5243 | M: Kumar Gala <[email protected]> |
ce00f85c | 5244 | W: http://www.penguinppc.org/ |
a4724ed6 | 5245 | L: [email protected] |
ce00f85c | 5246 | S: Maintained |
11c34c7d | 5247 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5248 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5249 | |
ab06ff3a | 5250 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5251 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5252 | L: [email protected] |
92e19709 | 5253 | S: Maintained |
11c34c7d JP |
5254 | F: arch/powerpc/platforms/pasemi/ |
5255 | F: drivers/*/*pasemi* | |
5256 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5257 | |
1da177e4 | 5258 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5259 | M: Chris Wright <[email protected]> |
1a4520be | 5260 | L: [email protected] |
1da177e4 LT |
5261 | S: Supported |
5262 | ||
a23ce6da HW |
5263 | LIS3LV02D ACCELEROMETER DRIVER |
5264 | M: Eric Piel <[email protected]> | |
5265 | S: Maintained | |
ff606677 JD |
5266 | F: Documentation/misc-devices/lis3lv02d |
5267 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5268 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5269 | |
e2d1d6c0 | 5270 | LLC (802.2) |
8b58be88 | 5271 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5272 | S: Maintained |
679655da | 5273 | F: include/linux/llc.h |
c117ab84 | 5274 | F: include/uapi/linux/llc.h |
679655da JP |
5275 | F: include/net/llc* |
5276 | F: net/llc/ | |
e2d1d6c0 | 5277 | |
4e233cbe AD |
5278 | LM73 HARDWARE MONITOR DRIVER |
5279 | M: Guillaume Ligneul <[email protected]> | |
5280 | L: [email protected] | |
5281 | S: Maintained | |
5282 | F: drivers/hwmon/lm73.c | |
5283 | ||
156e2d1a | 5284 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5285 | M: Jean Delvare <[email protected]> |
156e2d1a JD |
5286 | L: [email protected] |
5287 | S: Maintained | |
5288 | F: Documentation/hwmon/lm78 | |
5289 | F: drivers/hwmon/lm78.c | |
5290 | ||
1da177e4 | 5291 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5292 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5293 | L: [email protected] |
1da177e4 | 5294 | S: Maintained |
679655da JP |
5295 | F: Documentation/hwmon/lm83 |
5296 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5297 | |
5298 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5299 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5300 | L: [email protected] |
1da177e4 | 5301 | S: Maintained |
679655da | 5302 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5303 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5304 | F: drivers/hwmon/lm90.c |
1da177e4 | 5305 | |
917cc4e6 GR |
5306 | LM95234 HARDWARE MONITOR DRIVER |
5307 | M: Guenter Roeck <[email protected]> | |
5308 | L: [email protected] | |
5309 | S: Maintained | |
5310 | F: Documentation/hwmon/lm95234 | |
5311 | F: drivers/hwmon/lm95234.c | |
5312 | ||
68620bdd MP |
5313 | LME2510 MEDIA DRIVER |
5314 | M: Malcolm Priestley <[email protected]> | |
5315 | L: [email protected] | |
5316 | W: http://linuxtv.org/ | |
5317 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5318 | S: Maintained | |
5319 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5320 | ||
512e67f9 | 5321 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5322 | M: Peter Zijlstra <[email protected]> |
5323 | M: Ingo Molnar <[email protected]> | |
981c3a4f | 5324 | L: [email protected] |
75fc2d37 | 5325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5326 | S: Maintained |
679655da JP |
5327 | F: Documentation/lockdep*.txt |
5328 | F: Documentation/lockstat.txt | |
5329 | F: include/linux/lockdep.h | |
7486d6da | 5330 | F: kernel/locking/ |
512e67f9 | 5331 | |
dde33348 | 5332 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5333 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5334 | L: [email protected] |
5335 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5336 | S: Maintained |
679655da | 5337 | F: Documentation/ldm.txt |
20d16fef | 5338 | F: block/partitions/ldm.* |
1da177e4 | 5339 | |
ef6ada3d JE |
5340 | LogFS |
5341 | M: Joern Engel <[email protected]> | |
756ccb3c | 5342 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5343 | L: [email protected] |
5344 | W: logfs.org | |
5345 | S: Maintained | |
5346 | F: fs/logfs/ | |
5347 | ||
b62d7946 RS |
5348 | LPC32XX MACHINE SUPPORT |
5349 | M: Roland Stigge <[email protected]> | |
5350 | L: [email protected] (moderated for non-subscribers) | |
5351 | S: Maintained | |
5352 | F: arch/arm/mach-lpc32xx/ | |
5353 | ||
c87e34ef | 5354 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5355 | M: Nagalakshmi Nandigama <[email protected]> |
5356 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5357 | M: [email protected] |
cec744fb | 5358 | L: [email protected] |
c87e34ef MED |
5359 | L: [email protected] |
5360 | W: http://www.lsilogic.com/support | |
5361 | S: Supported | |
679655da | 5362 | F: drivers/message/fusion/ |
500c152a | 5363 | F: drivers/scsi/mpt2sas/ |
5364 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5365 | |
1da177e4 | 5366 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5367 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5368 | L: [email protected] |
5369 | S: Maintained | |
679655da | 5370 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5371 | |
e5f5c99a GR |
5372 | LTC4261 HARDWARE MONITOR DRIVER |
5373 | M: Guenter Roeck <[email protected]> | |
5374 | L: [email protected] | |
5375 | S: Maintained | |
5376 | F: Documentation/hwmon/ltc4261 | |
5377 | F: drivers/hwmon/ltc4261.c | |
5378 | ||
81365c31 | 5379 | LTP (Linux Test Project) |
7d1ae8a8 | 5380 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5381 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5382 | M: Cyril Hrubis <[email protected]> |
5383 | M: Caspar Zhang <[email protected]> | |
5384 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5385 | L: [email protected] (subscribers-only) |
5386 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5387 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5388 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5389 | S: Maintained |
5390 | ||
c12a54b3 | 5391 | M32R ARCHITECTURE |
8b58be88 | 5392 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5393 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5394 | L: [email protected] (in Japanese) |
5395 | W: http://www.linux-m32r.org/ | |
5396 | S: Maintained | |
679655da | 5397 | F: arch/m32r/ |
c12a54b3 | 5398 | |
1da177e4 | 5399 | M68K ARCHITECTURE |
8b58be88 | 5400 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5401 | L: [email protected] |
5402 | W: http://www.linux-m68k.org/ | |
54e5881d | 5403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5404 | S: Maintained |
679655da | 5405 | F: arch/m68k/ |
9db35182 | 5406 | F: drivers/zorro/ |
1da177e4 LT |
5407 | |
5408 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5409 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5410 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5411 | L: [email protected] |
1da177e4 | 5412 | S: Maintained |
9db35182 | 5413 | F: arch/m68k/mac/ |
1da177e4 LT |
5414 | |
5415 | M68K ON HP9000/300 | |
8b58be88 | 5416 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5417 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5418 | S: Maintained | |
679655da | 5419 | F: arch/m68k/hp300/ |
1da177e4 | 5420 | |
74425546 AP |
5421 | M88DS3103 MEDIA DRIVER |
5422 | M: Antti Palosaari <[email protected]> | |
5423 | L: [email protected] | |
5424 | W: http://linuxtv.org/ | |
5425 | W: http://palosaari.fi/linux/ | |
5426 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5427 | T: git git://linuxtv.org/anttip/media_tree.git | |
5428 | S: Maintained | |
5429 | F: drivers/media/dvb-frontends/m88ds3103* | |
5430 | ||
68620bdd MP |
5431 | M88RS2000 MEDIA DRIVER |
5432 | M: Malcolm Priestley <[email protected]> | |
5433 | L: [email protected] | |
5434 | W: http://linuxtv.org/ | |
5435 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5436 | S: Maintained | |
5437 | F: drivers/media/dvb-frontends/m88rs2000* | |
5438 | ||
0d62f800 AP |
5439 | M88TS2022 MEDIA DRIVER |
5440 | M: Antti Palosaari <[email protected]> | |
5441 | L: [email protected] | |
5442 | W: http://linuxtv.org/ | |
5443 | W: http://palosaari.fi/linux/ | |
5444 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5445 | T: git git://linuxtv.org/anttip/media_tree.git | |
5446 | S: Maintained | |
5447 | F: drivers/media/tuners/m88ts2022* | |
5448 | ||
07a092fa AK |
5449 | MA901 MASTERKIT USB FM RADIO DRIVER |
5450 | M: Alexey Klimov <[email protected]> | |
5451 | L: [email protected] | |
5452 | T: git git://linuxtv.org/media_tree.git | |
5453 | S: Maintained | |
5454 | F: drivers/media/radio/radio-ma901.c | |
5455 | ||
64a327a7 | 5456 | MAC80211 |
8b58be88 | 5457 | M: Johannes Berg <[email protected]> |
64a327a7 | 5458 | L: [email protected] |
491b26b4 | 5459 | W: http://wireless.kernel.org/ |
ce466579 JB |
5460 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5462 | S: Maintained |
679655da JP |
5463 | F: Documentation/networking/mac80211-injection.txt |
5464 | F: include/net/mac80211.h | |
5465 | F: net/mac80211/ | |
64a327a7 | 5466 | |
1036d864 | 5467 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5468 | M: Stefano Brivio <[email protected]> |
5469 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5470 | L: [email protected] |
491b26b4 | 5471 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5474 | S: Maintained |
679655da | 5475 | F: net/mac80211/rc80211_pid* |
1036d864 | 5476 | |
b863ceb7 | 5477 | MACVLAN DRIVER |
8b58be88 | 5478 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5479 | L: [email protected] |
5480 | S: Maintained | |
679655da JP |
5481 | F: drivers/net/macvlan.c |
5482 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5483 | |
faf1668c | 5484 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5485 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5486 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5487 | L: [email protected] |
1b53dc74 | 5488 | S: Maintained |
faf1668c | 5489 | |
44c14c1d | 5490 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5491 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5492 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5493 | L: [email protected] |
5494 | S: Maintained | |
5495 | F: drivers/net/ethernet/marvell/sk* | |
5496 | ||
74cda169 | 5497 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5498 | L: [email protected] |
8ac3e99e | 5499 | S: Orphan |
679655da | 5500 | F: drivers/net/wireless/libertas/ |
74cda169 | 5501 | |
b60d6975 | 5502 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5503 | M: Sebastian Hesselbarth <[email protected]> |
979b6c13 | 5504 | L: [email protected] |
f5ca8502 | 5505 | S: Maintained |
527a6266 | 5506 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5507 | F: include/linux/mv643xx.h |
1da177e4 | 5508 | |
370b8ed9 TP |
5509 | MARVELL MVNETA ETHERNET DRIVER |
5510 | M: Thomas Petazzoni <[email protected]> | |
5511 | L: [email protected] | |
5512 | S: Maintained | |
5513 | F: drivers/net/ethernet/marvell/mvneta.* | |
5514 | ||
fcad584d BZ |
5515 | MARVELL MWIFIEX WIRELESS DRIVER |
5516 | M: Bing Zhao <[email protected]> | |
5517 | L: [email protected] | |
5518 | S: Maintained | |
5519 | F: drivers/net/wireless/mwifiex/ | |
5520 | ||
a2c3f656 | 5521 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5522 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5523 | L: [email protected] |
16345910 | 5524 | S: Odd Fixes |
a2c3f656 LB |
5525 | F: drivers/net/wireless/mwl8k.c |
5526 | ||
2a69567b | 5527 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5528 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5529 | S: Odd Fixes |
1fa7e547 | 5530 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5531 | |
1da177e4 | 5532 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5533 | L: [email protected] |
52653199 | 5534 | S: Orphan |
679655da | 5535 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5536 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5537 | |
ca462085 GR |
5538 | MAX16065 HARDWARE MONITOR DRIVER |
5539 | M: Guenter Roeck <[email protected]> | |
5540 | L: [email protected] | |
5541 | S: Maintained | |
5542 | F: Documentation/hwmon/max16065 | |
5543 | F: drivers/hwmon/max16065.c | |
5544 | ||
d20620de | 5545 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5546 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5547 | L: [email protected] |
5548 | S: Maintained | |
679655da JP |
5549 | F: Documentation/hwmon/max6650 |
5550 | F: drivers/hwmon/max6650.c | |
d20620de | 5551 | |
e89ab51f GR |
5552 | MAX6697 HARDWARE MONITOR DRIVER |
5553 | M: Guenter Roeck <[email protected]> | |
5554 | L: [email protected] | |
5555 | S: Maintained | |
5556 | F: Documentation/hwmon/max6697 | |
5557 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5558 | F: drivers/hwmon/max6697.c | |
5559 | F: include/linux/platform_data/max6697.h | |
5560 | ||
9be3c9a5 HV |
5561 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5562 | M: Hans Verkuil <[email protected]> | |
5563 | L: [email protected] | |
5564 | T: git git://linuxtv.org/media_tree.git | |
5565 | W: http://linuxtv.org | |
5566 | S: Maintained | |
5567 | F: drivers/media/radio/radio-maxiradio* | |
5568 | ||
127c49ae | 5569 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5570 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5571 | P: LinuxTV.org Project |
5572 | L: [email protected] | |
5573 | W: http://linuxtv.org | |
8a6e2535 | 5574 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5575 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5576 | S: Maintained |
5577 | F: Documentation/dvb/ | |
5578 | F: Documentation/video4linux/ | |
ffe06198 | 5579 | F: Documentation/DocBook/media/ |
127c49ae | 5580 | F: drivers/media/ |
ffe06198 | 5581 | F: drivers/staging/media/ |
127c49ae | 5582 | F: include/media/ |
6c0f0359 MCC |
5583 | F: include/uapi/linux/dvb/ |
5584 | F: include/uapi/linux/videodev2.h | |
5585 | F: include/uapi/linux/media.h | |
5586 | F: include/uapi/linux/v4l2-* | |
5587 | F: include/uapi/linux/meye.h | |
5588 | F: include/uapi/linux/ivtv* | |
5589 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5590 | |
6149a936 HV |
5591 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5592 | M: Hans Verkuil <[email protected]> | |
5593 | L: [email protected] | |
5594 | T: git git://linuxtv.org/media_tree.git | |
5595 | W: http://linuxtv.org | |
5596 | S: Odd Fixes | |
5597 | F: drivers/media/parport/pms* | |
5598 | ||
757e0108 | 5599 | MEGARAID SCSI DRIVERS |
8b58be88 | 5600 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5601 | L: [email protected] |
ce00f85c JC |
5602 | W: http://megaraid.lsilogic.com |
5603 | S: Maintained | |
679655da JP |
5604 | F: Documentation/scsi/megaraid.txt |
5605 | F: drivers/scsi/megaraid.* | |
5606 | F: drivers/scsi/megaraid/ | |
757e0108 | 5607 | |
2c46c9d5 AV |
5608 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5609 | M: Amir Vadai <[email protected]> | |
5610 | L: [email protected] | |
5611 | S: Supported | |
5612 | W: http://www.mellanox.com | |
5613 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5614 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5615 | ||
70ea91f1 SR |
5616 | MEMORY MANAGEMENT |
5617 | L: [email protected] | |
70ea91f1 SR |
5618 | W: http://www.linux-mm.org |
5619 | S: Maintained | |
679655da | 5620 | F: include/linux/mm.h |
551450bb CS |
5621 | F: include/linux/gfp.h |
5622 | F: include/linux/mmzone.h | |
5623 | F: include/linux/memory_hotplug.h | |
5624 | F: include/linux/vmalloc.h | |
679655da | 5625 | F: mm/ |
70ea91f1 | 5626 | |
938a9204 | 5627 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5628 | M: Johannes Weiner <[email protected]> |
5629 | M: Michal Hocko <[email protected]> | |
185e595f | 5630 | M: Balbir Singh <[email protected]> |
8b58be88 | 5631 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5632 | L: [email protected] |
938a9204 | 5633 | L: [email protected] |
938a9204 | 5634 | S: Maintained |
679655da | 5635 | F: mm/memcontrol.c |
4e4c941c | 5636 | F: mm/page_cgroup.c |
938a9204 | 5637 | |
f4e9ce66 | 5638 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5639 | M: David Woodhouse <[email protected]> |
242c325e | 5640 | M: Brian Norris <[email protected]> |
1da177e4 | 5641 | L: [email protected] |
8a6e2535 JP |
5642 | W: http://www.linux-mtd.infradead.org/ |
5643 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5644 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5645 | S: Maintained |
679655da JP |
5646 | F: drivers/mtd/ |
5647 | F: include/linux/mtd/ | |
c117ab84 | 5648 | F: include/uapi/mtd/ |
1da177e4 | 5649 | |
26c57ef1 JT |
5650 | MEN A21 WATCHDOG DRIVER |
5651 | M: Johannes Thumshirn <[email protected]> | |
5652 | L: [email protected] | |
5653 | S: Supported | |
5654 | F: drivers/watchdog/mena21_wdt.c | |
5655 | ||
12285945 JH |
5656 | METAG ARCHITECTURE |
5657 | M: James Hogan <[email protected]> | |
d668d9ed | 5658 | L: [email protected] |
12285945 JH |
5659 | S: Supported |
5660 | F: arch/metag/ | |
5661 | F: Documentation/metag/ | |
5662 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5663 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5664 | F: drivers/irqchip/irq-metag.c |
5665 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5666 | F: drivers/tty/metag_da.c |
5667 | F: fs/imgdafs/ | |
12285945 | 5668 | |
c6375b0a | 5669 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5670 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5671 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5672 | W: http://www.monstr.eu/fdt/ |
5673 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5674 | S: Supported | |
0a8c7914 | 5675 | F: arch/microblaze/ |
1da177e4 LT |
5676 | |
5677 | MICROTEK X6 SCANNER | |
61eee9a7 | 5678 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5679 | S: Maintained |
679655da | 5680 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5681 | |
5682 | MIPS | |
8b58be88 | 5683 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5684 | L: [email protected] |
6097050d | 5685 | W: http://www.linux-mips.org/ |
b05e988e | 5686 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5687 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5688 | S: Supported |
679655da JP |
5689 | F: Documentation/mips/ |
5690 | F: arch/mips/ | |
1da177e4 | 5691 | |
08b7620a HV |
5692 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5693 | M: Hans Verkuil <[email protected]> | |
5694 | L: [email protected] | |
5695 | T: git git://linuxtv.org/media_tree.git | |
5696 | W: http://linuxtv.org | |
5697 | S: Odd Fixes | |
5698 | F: drivers/media/radio/radio-miropcm20* | |
5699 | ||
e126ba97 EC |
5700 | Mellanox MLX5 core VPI driver |
5701 | M: Eli Cohen <[email protected]> | |
5702 | L: [email protected] | |
5703 | L: [email protected] | |
5704 | W: http://www.mellanox.com | |
5705 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5706 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5707 | T: git://openfabrics.org/~eli/connect-ib.git | |
5708 | S: Supported | |
5709 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5710 | F: include/linux/mlx5/ | |
5711 | ||
5712 | Mellanox MLX5 IB driver | |
5713 | M: Eli Cohen <[email protected]> | |
5714 | L: [email protected] | |
5715 | W: http://www.mellanox.com | |
5716 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5717 | T: git://openfabrics.org/~eli/connect-ib.git | |
5718 | S: Supported | |
5719 | F: include/linux/mlx5/ | |
5720 | F: drivers/infiniband/hw/mlx5/ | |
5721 | ||
1da177e4 | 5722 | MODULE SUPPORT |
8b58be88 | 5723 | M: Rusty Russell <[email protected]> |
1da177e4 | 5724 | S: Maintained |
679655da JP |
5725 | F: include/linux/module.h |
5726 | F: kernel/module.c | |
1da177e4 LT |
5727 | |
5728 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5729 | W: http://popies.net/meye/ |
b7788e13 | 5730 | S: Orphan |
679655da | 5731 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5732 | F: drivers/media/pci/meye/ |
6c0f0359 | 5733 | F: include/uapi/linux/meye.h |
1da177e4 | 5734 | |
b9705b60 | 5735 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5736 | M: Jiri Slaby <[email protected]> |
d735410a | 5737 | S: Maintained |
679655da | 5738 | F: Documentation/serial/moxa-smartio |
c897401b | 5739 | F: drivers/tty/mxser.* |
d735410a | 5740 | |
889b2f87 AK |
5741 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5742 | M: Alexey Klimov <[email protected]> | |
5743 | L: [email protected] | |
5744 | T: git git://linuxtv.org/media_tree.git | |
5745 | S: Maintained | |
5746 | F: drivers/media/radio/radio-mr800.c | |
5747 | ||
8c4c731a | 5748 | MSI LAPTOP SUPPORT |
182ae55c | 5749 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5750 | L: [email protected] |
8c4c731a | 5751 | S: Maintained |
679655da | 5752 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5753 | |
0f1006b1 AA |
5754 | MSI WMI SUPPORT |
5755 | M: Anisse Astier <[email protected]> | |
d0944853 | 5756 | L: [email protected] |
0f1006b1 AA |
5757 | S: Supported |
5758 | F: drivers/platform/x86/msi-wmi.c | |
5759 | ||
62a37dc7 | 5760 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5761 | M: Laurent Pinchart <[email protected]> |
5762 | L: [email protected] | |
5763 | T: git git://linuxtv.org/media_tree.git | |
5764 | S: Maintained | |
5765 | F: drivers/media/i2c/mt9m032.c | |
5766 | F: include/media/mt9m032.h | |
5767 | ||
62a37dc7 | 5768 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5769 | M: Laurent Pinchart <[email protected]> |
5770 | L: [email protected] | |
5771 | T: git git://linuxtv.org/media_tree.git | |
5772 | S: Maintained | |
5773 | F: drivers/media/i2c/mt9p031.c | |
5774 | F: include/media/mt9p031.h | |
5775 | ||
62a37dc7 | 5776 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5777 | M: Laurent Pinchart <[email protected]> |
5778 | L: [email protected] | |
5779 | T: git git://linuxtv.org/media_tree.git | |
5780 | S: Maintained | |
5781 | F: drivers/media/i2c/mt9t001.c | |
5782 | F: include/media/mt9t001.h | |
5783 | ||
62a37dc7 | 5784 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5785 | M: Laurent Pinchart <[email protected]> |
5786 | L: [email protected] | |
5787 | T: git git://linuxtv.org/media_tree.git | |
5788 | S: Maintained | |
5789 | F: drivers/media/i2c/mt9v032.c | |
5790 | F: include/media/mt9v032.h | |
5791 | ||
4e0d13cb | 5792 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5793 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5794 | M: Lee Jones <[email protected]> |
5795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5796 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5797 | S: Supported |
679655da | 5798 | F: drivers/mfd/ |
55b5940d | 5799 | F: include/linux/mfd/ |
4e0d13cb | 5800 | |
5c4e6f13 | 5801 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 5802 | M: Chris Ball <[email protected]> |
b2503a94 | 5803 | L: [email protected] |
245feaa6 CB |
5804 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5805 | S: Maintained | |
679655da JP |
5806 | F: drivers/mmc/ |
5807 | F: include/linux/mmc/ | |
c117ab84 | 5808 | F: include/uapi/linux/mmc/ |
baca2da4 | 5809 | |
15a0580c | 5810 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5811 | S: Orphan |
679655da JP |
5812 | F: drivers/mmc/host/mmc_spi.c |
5813 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5814 | |
1da177e4 | 5815 | MULTISOUND SOUND DRIVER |
8b58be88 | 5816 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5817 | S: Maintained |
679655da JP |
5818 | F: Documentation/sound/oss/MultiSound |
5819 | F: sound/oss/msnd* | |
1da177e4 | 5820 | |
d735410a | 5821 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5822 | S: Orphan |
c897401b | 5823 | F: drivers/tty/isicom.c |
679655da | 5824 | F: include/linux/isicom.h |
d735410a | 5825 | |
550a7375 | 5826 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5827 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5828 | L: [email protected] |
43b416e5 | 5829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5830 | S: Maintained |
679655da | 5831 | F: drivers/usb/musb/ |
550a7375 | 5832 | |
ea0af5f6 MK |
5833 | MXL5007T MEDIA DRIVER |
5834 | M: Michael Krufky <[email protected]> | |
5835 | L: [email protected] | |
5836 | W: http://linuxtv.org/ | |
5837 | W: http://github.com/mkrufky | |
5838 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5839 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5840 | S: Maintained | |
5841 | F: drivers/media/tuners/mxl5007t.* | |
5842 | ||
2d3cf588 | 5843 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5844 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 5845 | L: [email protected] |
205057ae | 5846 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5847 | S: Supported |
93f7848b | 5848 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5849 | |
1da177e4 | 5850 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5851 | S: Orphan |
d9fb9f38 | 5852 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5853 | |
23dc05a3 DM |
5854 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5855 | M: Daniel Mack <[email protected]> | |
5856 | S: Maintained | |
5857 | L: [email protected] | |
5858 | W: http://www.native-instruments.com | |
5859 | F: sound/usb/caiaq/ | |
5860 | ||
1da177e4 | 5861 | NCP FILESYSTEM |
52653199 PV |
5862 | M: Petr Vandrovec <[email protected]> |
5863 | S: Odd Fixes | |
679655da | 5864 | F: fs/ncpfs/ |
1da177e4 LT |
5865 | |
5866 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5867 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5868 | L: [email protected] |
5869 | S: Maintained | |
679655da | 5870 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5871 | |
4aa3eb4c GR |
5872 | NCT6775 HARDWARE MONITOR DRIVER |
5873 | M: Guenter Roeck <[email protected]> | |
5874 | L: [email protected] | |
5875 | S: Maintained | |
5876 | F: Documentation/hwmon/nct6775 | |
5877 | F: drivers/hwmon/nct6775.c | |
5878 | ||
3c2d774c | 5879 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5880 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5881 | L: [email protected] |
e3d33cb1 | 5882 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5883 | S: Supported |
5884 | F: drivers/infiniband/hw/nes/ | |
5885 | ||
be2f2e84 | 5886 | NETEM NETWORK EMULATOR |
adbbf69d | 5887 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5888 | L: [email protected] |
be2f2e84 | 5889 | S: Maintained |
679655da | 5890 | F: net/sched/sch_netem.c |
be2f2e84 | 5891 | |
b2f5a051 | 5892 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5893 | M: Jon Mason <[email protected]> |
4a58448b | 5894 | L: [email protected] |
4a58448b | 5895 | S: Supported |
679655da | 5896 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5897 | F: Documentation/networking/vxge.txt |
86387e1a | 5898 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5899 | |
42010ed0 | 5900 | NETFILTER/IPTABLES |
0e05e192 | 5901 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5902 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5903 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5904 | L: [email protected] |
5905 | L: [email protected] | |
82b98543 | 5906 | L: [email protected] |
1da177e4 LT |
5907 | W: http://www.netfilter.org/ |
5908 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5909 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5910 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5912 | S: Supported |
679655da JP |
5913 | F: include/linux/netfilter* |
5914 | F: include/linux/netfilter/ | |
5915 | F: include/net/netfilter/ | |
c117ab84 CEB |
5916 | F: include/uapi/linux/netfilter* |
5917 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5918 | F: net/*/netfilter.c |
5919 | F: net/*/netfilter/ | |
5920 | F: net/netfilter/ | |
1da177e4 | 5921 | |
4cc67735 | 5922 | NETLABEL |
87a0874c | 5923 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5924 | W: http://netlabel.sf.net |
5925 | L: [email protected] | |
87a0874c | 5926 | S: Maintained |
80811493 | 5927 | F: Documentation/netlabel/ |
679655da JP |
5928 | F: include/net/netlabel.h |
5929 | F: net/netlabel/ | |
4cc67735 | 5930 | |
1da177e4 | 5931 | NETROM NETWORK LAYER |
8b58be88 | 5932 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5933 | L: [email protected] |
d34cb28a | 5934 | W: http://www.linux-ax25.org/ |
1da177e4 | 5935 | S: Maintained |
679655da | 5936 | F: include/net/netrom.h |
c117ab84 | 5937 | F: include/uapi/linux/netrom.h |
679655da | 5938 | F: net/netrom/ |
1da177e4 | 5939 | |
5ddb88c0 | 5940 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5941 | M: Paul Clements <[email protected]> |
1da177e4 | 5942 | S: Maintained |
5e4b269b | 5943 | L: [email protected] |
679655da JP |
5944 | F: Documentation/blockdev/nbd.txt |
5945 | F: drivers/block/nbd.c | |
5946 | F: include/linux/nbd.h | |
c117ab84 | 5947 | F: include/uapi/linux/nbd.h |
1da177e4 | 5948 | |
6e43650c NH |
5949 | NETWORK DROP MONITOR |
5950 | M: Neil Horman <[email protected]> | |
5951 | L: [email protected] | |
5952 | S: Maintained | |
5953 | W: https://fedorahosted.org/dropwatch/ | |
5954 | F: net/core/drop_monitor.c | |
5955 | ||
1da177e4 | 5956 | NETWORKING [GENERAL] |
8b58be88 | 5957 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5958 | L: [email protected] |
b1e8fd54 | 5959 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5960 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5961 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5962 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5963 | S: Maintained |
679655da JP |
5964 | F: net/ |
5965 | F: include/net/ | |
018d21ed JP |
5966 | F: include/linux/in.h |
5967 | F: include/linux/net.h | |
5968 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5969 | F: include/uapi/linux/in.h |
5970 | F: include/uapi/linux/net.h | |
5971 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5972 | |
5973 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5974 | M: "David S. Miller" <[email protected]> |
5975 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5976 | M: James Morris <[email protected]> |
5977 | M: Hideaki YOSHIFUJI <[email protected]> | |
5978 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5979 | L: [email protected] |
08deed1e | 5980 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5981 | S: Maintained |
679655da JP |
5982 | F: net/ipv4/ |
5983 | F: net/ipv6/ | |
5984 | F: include/net/ip* | |
0a14842f | 5985 | F: arch/x86/net/* |
1da177e4 | 5986 | |
73b7656c DM |
5987 | NETWORKING [IPSEC] |
5988 | M: Steffen Klassert <[email protected]> | |
5989 | M: Herbert Xu <[email protected]> | |
5990 | M: "David S. Miller" <[email protected]> | |
5991 | L: [email protected] | |
d1fc5024 SK |
5992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
5993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c DM |
5994 | S: Maintained |
5995 | F: net/xfrm/ | |
5996 | F: net/key/ | |
5997 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
5998 | F: net/ipv4/esp4.c |
5999 | F: net/ipv4/ah4.c | |
6000 | F: net/ipv4/ipcomp.c | |
6001 | F: net/ipv4/ip_vti.c | |
73b7656c | 6002 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6003 | F: net/ipv6/esp6.c |
6004 | F: net/ipv6/ah6.c | |
6005 | F: net/ipv6/ipcomp6.c | |
6006 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6007 | F: include/uapi/linux/xfrm.h |
6008 | F: include/net/xfrm.h | |
6009 | ||
10e2ff1c | 6010 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6011 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
6012 | L: [email protected] |
6013 | S: Maintained | |
6014 | ||
29f8f632 | 6015 | NETWORKING [WIRELESS] |
8b58be88 | 6016 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 6017 | L: [email protected] |
8a6e2535 | 6018 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6019 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6020 | S: Maintained |
34b921cf JP |
6021 | F: net/mac80211/ |
6022 | F: net/rfkill/ | |
679655da JP |
6023 | F: net/wireless/ |
6024 | F: include/net/ieee80211* | |
cc8b4a2b | 6025 | F: include/linux/wireless.h |
c117ab84 | 6026 | F: include/uapi/linux/wireless.h |
c984e24d | 6027 | F: include/net/iw_handler.h |
34b921cf | 6028 | F: drivers/net/wireless/ |
29f8f632 | 6029 | |
788873ac JP |
6030 | NETWORKING DRIVERS |
6031 | L: [email protected] | |
6032 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6033 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6036 | S: Odd Fixes |
6037 | F: drivers/net/ | |
018d21ed | 6038 | F: include/linux/if_* |
0b63bf1f JD |
6039 | F: include/linux/netdevice.h |
6040 | F: include/linux/arcdevice.h | |
6041 | F: include/linux/etherdevice.h | |
6042 | F: include/linux/fcdevice.h | |
6043 | F: include/linux/fddidevice.h | |
6044 | F: include/linux/hippidevice.h | |
6045 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6046 | F: include/uapi/linux/if_* |
6047 | F: include/uapi/linux/netdevice.h | |
788873ac | 6048 | |
3d396eb1 | 6049 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6050 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
6051 | M: Sony Chacko <[email protected]> |
6052 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 6053 | L: [email protected] |
9c2b5bde | 6054 | W: http://www.qlogic.com |
3d396eb1 | 6055 | S: Supported |
aa43c215 | 6056 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6057 | |
6423d30f AAJ |
6058 | NFC SUBSYSTEM |
6059 | M: Lauro Ramos Venancio <[email protected]> | |
6060 | M: Aloisio Almeida Jr <[email protected]> | |
6061 | M: Samuel Ortiz <[email protected]> | |
6062 | L: [email protected] | |
5adf54de | 6063 | L: [email protected] (moderated for non-subscribers) |
0293ba20 | 6064 | S: Supported |
6423d30f | 6065 | F: net/nfc/ |
55eb94f9 | 6066 | F: include/net/nfc/ |
c117ab84 | 6067 | F: include/uapi/linux/nfc.h |
6423d30f | 6068 | F: drivers/nfc/ |
08eaa1e0 | 6069 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 6070 | |
e8b43555 | 6071 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6072 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
6073 | L: [email protected] |
6074 | W: http://client.linux-nfs.org | |
cd7b996a | 6075 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6076 | S: Maintained |
679655da JP |
6077 | F: fs/lockd/ |
6078 | F: fs/nfs/ | |
6079 | F: fs/nfs_common/ | |
6080 | F: net/sunrpc/ | |
6081 | F: include/linux/lockd/ | |
6082 | F: include/linux/nfs* | |
6083 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6084 | F: include/uapi/linux/nfs* |
6085 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6086 | |
85ef9cea | 6087 | NILFS2 FILESYSTEM |
8b58be88 | 6088 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 6089 | L: [email protected] |
85ef9cea | 6090 | W: http://www.nilfs.org/en/ |
af1761f2 | 6091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 6092 | S: Supported |
679655da JP |
6093 | F: Documentation/filesystems/nilfs2.txt |
6094 | F: fs/nilfs2/ | |
6095 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6096 | |
1da177e4 | 6097 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6098 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
6099 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6100 | S: Maintained | |
679655da JP |
6101 | F: Documentation/scsi/NinjaSCSI.txt |
6102 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6103 | |
6104 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6105 | M: GOTO Masanori <[email protected]> |
6106 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
6107 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6108 | S: Maintained | |
679655da JP |
6109 | F: Documentation/scsi/NinjaSCSI.txt |
6110 | F: drivers/scsi/nsp32* | |
1da177e4 | 6111 | |
fce8a7bb JM |
6112 | NTB DRIVER |
6113 | M: Jon Mason <[email protected]> | |
6114 | S: Supported | |
2984411f JM |
6115 | W: https://github.com/jonmason/ntb/wiki |
6116 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6117 | F: drivers/ntb/ |
548c237c | 6118 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6119 | F: include/linux/ntb.h |
6120 | ||
1da177e4 | 6121 | NTFS FILESYSTEM |
2818ef50 | 6122 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 6123 | L: [email protected] |
2818ef50 | 6124 | W: http://www.tuxera.com/ |
e6f4dee7 | 6125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6126 | S: Supported |
679655da JP |
6127 | F: Documentation/filesystems/ntfs.txt |
6128 | F: fs/ntfs/ | |
1da177e4 | 6129 | |
9eb8ef74 | 6130 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6131 | M: Antonino Daplas <[email protected]> |
c69f677c | 6132 | L: [email protected] |
ce00f85c | 6133 | S: Maintained |
679655da JP |
6134 | F: drivers/video/riva/ |
6135 | F: drivers/video/nvidia/ | |
1da177e4 | 6136 | |
79461681 MW |
6137 | NVM EXPRESS DRIVER |
6138 | M: Matthew Wilcox <[email protected]> | |
6139 | L: [email protected] | |
6140 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6141 | S: Supported | |
5be37bf9 | 6142 | F: drivers/block/nvme* |
79461681 MW |
6143 | F: include/linux/nvme.h |
6144 | ||
f5525786 | 6145 | OMAP SUPPORT |
0e24bdd4 | 6146 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
6147 | L: [email protected] |
6148 | W: http://www.muru.com/linux/omap/ | |
6149 | W: http://linux.omap.com/ | |
8a6e2535 | 6150 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6151 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6152 | S: Maintained |
4e04d5a3 | 6153 | F: arch/arm/*omap*/ |
046d0a37 JD |
6154 | F: drivers/i2c/busses/i2c-omap.c |
6155 | F: include/linux/i2c-omap.h | |
f5525786 | 6156 | |
50f29fbd | 6157 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6158 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
6159 | M: Tony Lindgren <[email protected]> |
6160 | L: [email protected] | |
d0fb18c5 | 6161 | L: [email protected] |
50f29fbd TL |
6162 | S: Maintained |
6163 | F: arch/arm/boot/dts/*omap* | |
6164 | F: arch/arm/boot/dts/*am3* | |
6165 | ||
f5525786 | 6166 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6167 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
6168 | L: [email protected] |
6169 | S: Maintained | |
6170 | F: arch/arm/*omap*/*clock* | |
6171 | ||
6172 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6173 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
6174 | L: [email protected] |
6175 | S: Maintained | |
6176 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6177 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6178 | |
d21db568 | 6179 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6180 | M: Rajendra Nayak <[email protected]> |
6181 | M: Paul Walmsley <[email protected]> | |
6182 | L: [email protected] | |
6183 | S: Maintained | |
d21db568 | 6184 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6185 | |
f5525786 | 6186 | OMAP AUDIO SUPPORT |
6c284903 | 6187 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 6188 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
6189 | L: [email protected] (subscribers-only) |
6190 | L: [email protected] | |
6191 | S: Maintained | |
6192 | F: sound/soc/omap/ | |
6193 | ||
6194 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6195 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 6196 | L: [email protected] |
f5525786 TL |
6197 | L: [email protected] |
6198 | S: Maintained | |
6199 | F: drivers/video/omap/ | |
6200 | ||
676eec0d | 6201 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6202 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 6203 | L: [email protected] |
676eec0d | 6204 | L: [email protected] |
178ff4c9 | 6205 | S: Maintained |
676eec0d | 6206 | F: drivers/video/omap2/ |
178ff4c9 TV |
6207 | F: Documentation/arm/OMAP/DSS |
6208 | ||
8b37fcfc OBC |
6209 | OMAP HARDWARE SPINLOCK SUPPORT |
6210 | M: Ohad Ben-Cohen <[email protected]> | |
6211 | L: [email protected] | |
6212 | S: Maintained | |
6213 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6214 | F: arch/arm/mach-omap2/hwspinlock.c | |
6215 | ||
f5525786 | 6216 | OMAP MMC SUPPORT |
8b58be88 | 6217 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
6218 | L: [email protected] |
6219 | S: Maintained | |
653f41b5 MC |
6220 | F: drivers/mmc/host/omap.c |
6221 | ||
6222 | OMAP HS MMC SUPPORT | |
14006bfb | 6223 | M: Balaji T K <[email protected]> |
0a4585c6 | 6224 | L: [email protected] |
653f41b5 | 6225 | L: [email protected] |
0a4585c6 | 6226 | S: Maintained |
653f41b5 | 6227 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6228 | |
6229 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6230 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
6231 | S: Maintained |
6232 | F: drivers/char/hw_random/omap-rng.c | |
6233 | ||
f400c82e | 6234 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6235 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6236 | M: Paul Walmsley <[email protected]> |
6237 | L: [email protected] | |
6238 | S: Maintained | |
8fc8b12b | 6239 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6240 | |
6241 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6242 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6243 | L: [email protected] |
6244 | S: Maintained | |
6245 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6246 | ||
7e8970e1 LP |
6247 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6248 | M: Laurent Pinchart <[email protected]> | |
6249 | L: [email protected] | |
6250 | S: Maintained | |
90d72ac6 | 6251 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6252 | |
f5525786 | 6253 | OMAP USB SUPPORT |
f299470a | 6254 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
6255 | L: [email protected] |
6256 | L: [email protected] | |
43b416e5 | 6257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6258 | S: Maintained |
a16fbd65 JP |
6259 | F: drivers/usb/*/*omap* |
6260 | F: arch/arm/*omap*/usb* | |
f5525786 | 6261 | |
6d994710 KH |
6262 | OMAP GPIO DRIVER |
6263 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 6264 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
6265 | L: [email protected] |
6266 | S: Maintained | |
6267 | F: drivers/gpio/gpio-omap.c | |
6268 | ||
c351e290 MJ |
6269 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6270 | M: Mark Jackson <[email protected]> | |
6271 | L: [email protected] | |
6272 | S: Maintained | |
6273 | F: arch/arm/boot/dts/am335x-nano.dts | |
6274 | ||
0ad122d9 | 6275 | OMFS FILESYSTEM |
8b58be88 | 6276 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6277 | L: [email protected] |
6278 | S: Maintained | |
679655da JP |
6279 | F: Documentation/filesystems/omfs.txt |
6280 | F: fs/omfs/ | |
0ad122d9 | 6281 | |
c1986ee9 | 6282 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6283 | M: Harald Welte <[email protected]> |
c1986ee9 | 6284 | S: Maintained |
679655da JP |
6285 | F: drivers/char/pcmcia/cm4000_cs.c |
6286 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6287 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6288 | |
77c44ab1 | 6289 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6290 | M: Harald Welte <[email protected]> |
77c44ab1 | 6291 | S: Maintained |
679655da | 6292 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6293 | |
77d5140f | 6294 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6295 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6296 | L: [email protected] |
275ffde4 | 6297 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6298 | S: Maintained |
90d72ac6 | 6299 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6300 | |
431bca73 | 6301 | ONENAND FLASH DRIVER |
8b58be88 | 6302 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6303 | L: [email protected] |
6304 | S: Maintained | |
679655da JP |
6305 | F: drivers/mtd/onenand/ |
6306 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6307 | |
1da177e4 | 6308 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6309 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6310 | L: [email protected] |
6311 | L: [email protected] | |
6312 | S: Maintained | |
f7269cfc JD |
6313 | F: Documentation/scsi/osst.txt |
6314 | F: drivers/scsi/osst.* | |
6315 | F: drivers/scsi/osst_*.h | |
6316 | F: drivers/scsi/st.h | |
1da177e4 | 6317 | |
e2d1d6c0 | 6318 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6319 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6320 | L: [email protected] |
e2d1d6c0 | 6321 | S: Maintained |
679655da JP |
6322 | F: Documentation/i2c/busses/i2c-ocores |
6323 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6324 | |
860c44c1 | 6325 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6326 | M: Grant Likely <[email protected]> |
5d3ad8a6 | 6327 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6328 | L: [email protected] |
860c44c1 | 6329 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6330 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6331 | S: Maintained |
f8828205 | 6332 | F: drivers/of/ |
860c44c1 | 6333 | F: include/linux/of*.h |
f8828205 | 6334 | F: scripts/dtc/ |
860c44c1 | 6335 | K: of_get_property |
d945fa0d | 6336 | K: of_match_table |
860c44c1 | 6337 | |
f8828205 | 6338 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6339 | M: Rob Herring <[email protected]> |
f8828205 GL |
6340 | M: Pawel Moll <[email protected]> |
6341 | M: Mark Rutland <[email protected]> | |
de80963e | 6342 | M: Ian Campbell <[email protected]> |
bdbff6ba | 6343 | M: Kumar Gala <[email protected]> |
f8828205 GL |
6344 | L: [email protected] |
6345 | S: Maintained | |
6346 | F: Documentation/devicetree/ | |
6347 | F: arch/*/boot/dts/ | |
6348 | F: include/dt-bindings/ | |
6349 | ||
19f9d392 JB |
6350 | OPENRISC ARCHITECTURE |
6351 | M: Jonas Bonn <[email protected]> | |
6352 | W: http://openrisc.net | |
eab7c1c0 | 6353 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6354 | S: Maintained |
6355 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6356 | F: arch/openrisc/ |
19f9d392 | 6357 | |
ccb1352e JG |
6358 | OPENVSWITCH |
6359 | M: Jesse Gross <[email protected]> | |
6360 | L: [email protected] | |
6361 | W: http://openvswitch.org | |
6362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6363 | S: Maintained | |
6364 | F: net/openvswitch/ | |
6365 | ||
af39917d CL |
6366 | OPL4 DRIVER |
6367 | M: Clemens Ladisch <[email protected]> | |
6368 | L: [email protected] (moderated for non-subscribers) | |
6369 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6370 | S: Maintained | |
6371 | F: sound/drivers/opl4/ | |
6372 | ||
1da177e4 | 6373 | OPROFILE |
4cf7e718 | 6374 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6375 | L: [email protected] |
6376 | S: Maintained | |
81c4a8a6 | 6377 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6378 | F: arch/*/oprofile/ |
6379 | F: drivers/oprofile/ | |
6380 | F: include/linux/oprofile.h | |
1da177e4 | 6381 | |
e2d1d6c0 | 6382 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6383 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6384 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6385 | L: [email protected] (moderated for non-subscribers) |
6386 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6388 | S: Supported |
679655da JP |
6389 | F: Documentation/filesystems/ocfs2.txt |
6390 | F: Documentation/filesystems/dlmfs.txt | |
6391 | F: fs/ocfs2/ | |
e2d1d6c0 | 6392 | |
1da177e4 | 6393 | ORINOCO DRIVER |
724c6b35 | 6394 | L: [email protected] |
491b26b4 | 6395 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6396 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6397 | S: Orphan |
679655da | 6398 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6399 | |
42c55aa8 | 6400 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6401 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6402 | M: Benny Halevy <[email protected]> |
68274794 BH |
6403 | L: [email protected] |
6404 | W: http://open-osd.org | |
54e5881d | 6405 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6406 | S: Maintained |
42c55aa8 | 6407 | F: drivers/scsi/osd/ |
6b6f0b6c | 6408 | F: include/scsi/osd_* |
42c55aa8 | 6409 | F: fs/exofs/ |
68274794 | 6410 | |
e2d1d6c0 | 6411 | P54 WIRELESS DRIVER |
084cb0fe | 6412 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6413 | L: [email protected] |
084cb0fe | 6414 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6415 | S: Maintained |
679655da | 6416 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6417 | |
f5cd7872 | 6418 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6419 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6420 | L: [email protected] |
6421 | S: Maintained | |
ded19add | 6422 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6423 | |
beb58aa3 | 6424 | PA SEMI SMBUS DRIVER |
8b58be88 | 6425 | M: Olof Johansson <[email protected]> |
846557d3 | 6426 | L: [email protected] |
beb58aa3 | 6427 | S: Maintained |
679655da | 6428 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6429 | |
48fc267e SK |
6430 | PADATA PARALLEL EXECUTION MECHANISM |
6431 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6432 | L: [email protected] |
6433 | S: Maintained | |
6434 | F: kernel/padata.c | |
6435 | F: include/linux/padata.h | |
6436 | F: Documentation/padata.txt | |
6437 | ||
709ee531 | 6438 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6439 | M: Harald Welte <[email protected]> |
d0944853 | 6440 | L: [email protected] |
709ee531 | 6441 | S: Maintained |
679655da | 6442 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6443 | |
368dd5ac | 6444 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6445 | M: David Howells <[email protected]> |
6446 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6447 | L: [email protected] (moderated for non-subscribers) |
6448 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6449 | S: Maintained | |
679655da JP |
6450 | F: Documentation/mn10300/ |
6451 | F: arch/mn10300/ | |
4fa97181 | 6452 | |
1da177e4 | 6453 | PARALLEL PORT SUPPORT |
3dd1a329 | 6454 | L: [email protected] (subscribers-only) |
5fdc2abe | 6455 | S: Orphan |
679655da JP |
6456 | F: drivers/parport/ |
6457 | F: include/linux/parport*.h | |
6458 | F: drivers/char/ppdev.c | |
c117ab84 | 6459 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6460 | |
4cdf6bc2 | 6461 | PARAVIRT_OPS INTERFACE |
d633180c | 6462 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6463 | M: Chris Wright <[email protected]> |
6464 | M: Alok Kataria <[email protected]> | |
6465 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6466 | L: [email protected] |
4cdf6bc2 | 6467 | S: Supported |
679655da JP |
6468 | F: Documentation/ia64/paravirt_ops.txt |
6469 | F: arch/*/kernel/paravirt* | |
6470 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6471 | |
e2d1d6c0 | 6472 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6473 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6474 | L: [email protected] (subscribers-only) |
6475 | W: http://www.torque.net/linux-pp.html | |
6476 | S: Maintained | |
679655da JP |
6477 | F: Documentation/blockdev/paride.txt |
6478 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6479 | |
6480 | PARISC ARCHITECTURE | |
b8828770 | 6481 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6482 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6483 | L: [email protected] |
6484 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6485 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6486 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6487 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6488 | S: Maintained |
679655da | 6489 | F: arch/parisc/ |
2b6bac9e | 6490 | F: Documentation/parisc/ |
679655da | 6491 | F: drivers/parisc/ |
2b6bac9e HD |
6492 | F: drivers/char/agp/parisc-agp.c |
6493 | F: drivers/input/serio/gscps2.c | |
6494 | F: drivers/parport/parport_gsc.* | |
6495 | F: drivers/tty/serial/8250/8250_gsc.c | |
6496 | F: drivers/video/sti* | |
6497 | F: drivers/video/console/sti* | |
6498 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6499 | |
1662d32c | 6500 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6501 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6502 | L: [email protected] |
6503 | S: Maintained | |
679655da JP |
6504 | F: Documentation/hwmon/pc87360 |
6505 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6506 | |
6507 | PC8736x GPIO DRIVER | |
8b58be88 | 6508 | M: Jim Cromie <[email protected]> |
1662d32c | 6509 | S: Maintained |
679655da | 6510 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6511 | |
1ad107fd | 6512 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6513 | M: Jean Delvare <[email protected]> |
1ad107fd JD |
6514 | L: [email protected] |
6515 | S: Maintained | |
6516 | F: Documentation/hwmon/pc87427 | |
6517 | F: drivers/hwmon/pc87427.c | |
6518 | ||
b26e0ed4 | 6519 | PCA9532 LED DRIVER |
8b58be88 | 6520 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6521 | S: Maintained |
d5ca6918 JP |
6522 | F: drivers/leds/leds-pca9532.c |
6523 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6524 | |
5ce914a8 | 6525 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6526 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6527 | L: [email protected] |
6528 | S: Maintained | |
b4f0b74e | 6529 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6530 | |
3971dae5 | 6531 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6532 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6533 | S: Maintained |
6534 | F: drivers/firmware/pcdp.* | |
6535 | ||
065c6359 | 6536 | PCI ERROR RECOVERY |
6305902c | 6537 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6538 | L: [email protected] |
065c6359 | 6539 | S: Supported |
679655da | 6540 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6541 | |
1da177e4 | 6542 | PCI SUBSYSTEM |
5ac3a6d2 | 6543 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6544 | L: [email protected] |
99662dd1 | 6545 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6546 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6547 | S: Supported |
679655da JP |
6548 | F: Documentation/PCI/ |
6549 | F: drivers/pci/ | |
6550 | F: include/linux/pci* | |
6b49ee49 | 6551 | F: arch/x86/pci/ |
1da177e4 | 6552 | |
f0b75693 BH |
6553 | PCI DRIVER FOR IMX6 |
6554 | M: Richard Zhu <[email protected]> | |
6555 | M: Shawn Guo <[email protected]> | |
6556 | L: [email protected] | |
6557 | L: [email protected] (moderated for non-subscribers) | |
6558 | S: Maintained | |
6559 | F: drivers/pci/host/*imx6* | |
6560 | ||
6561 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6562 | M: Thomas Petazzoni <[email protected]> | |
6563 | M: Jason Cooper <[email protected]> | |
6564 | L: [email protected] | |
6565 | L: [email protected] (moderated for non-subscribers) | |
6566 | S: Maintained | |
6567 | F: drivers/pci/host/*mvebu* | |
6568 | ||
0447cfd7 TR |
6569 | PCI DRIVER FOR NVIDIA TEGRA |
6570 | M: Thierry Reding <[email protected]> | |
6571 | L: [email protected] | |
f0b75693 | 6572 | L: [email protected] |
0447cfd7 TR |
6573 | S: Supported |
6574 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6575 | F: drivers/pci/host/pci-tegra.c | |
6576 | ||
f0b75693 BH |
6577 | PCI DRIVER FOR RENESAS R-CAR |
6578 | M: Simon Horman <[email protected]> | |
6579 | L: [email protected] | |
6580 | L: [email protected] | |
6581 | S: Maintained | |
6582 | F: drivers/pci/host/*rcar* | |
6583 | ||
4af82255 JH |
6584 | PCI DRIVER FOR SAMSUNG EXYNOS |
6585 | M: Jingoo Han <[email protected]> | |
6586 | L: [email protected] | |
f0b75693 BH |
6587 | L: [email protected] (moderated for non-subscribers) |
6588 | L: [email protected] (moderated for non-subscribers) | |
4af82255 JH |
6589 | S: Maintained |
6590 | F: drivers/pci/host/pci-exynos.c | |
6591 | ||
f0b75693 BH |
6592 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6593 | M: Mohit Kumar <[email protected]> | |
6594 | M: Jingoo Han <[email protected]> | |
6595 | L: [email protected] | |
6596 | S: Maintained | |
6597 | F: drivers/pci/host/*designware* | |
6598 | ||
1da177e4 | 6599 | PCMCIA SUBSYSTEM |
4230dfc9 | 6600 | P: Linux PCMCIA Team |
f5df5881 | 6601 | L: [email protected] |
6650e0a5 | 6602 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6604 | S: Maintained |
679655da JP |
6605 | F: Documentation/pcmcia/ |
6606 | F: drivers/pcmcia/ | |
6607 | F: include/pcmcia/ | |
1da177e4 LT |
6608 | |
6609 | PCNET32 NETWORK DRIVER | |
227fb925 | 6610 | M: Don Fry <[email protected]> |
979b6c13 | 6611 | L: [email protected] |
1da177e4 | 6612 | S: Maintained |
b955f6ca | 6613 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6614 | |
48fc267e SK |
6615 | PCRYPT PARALLEL CRYPTO ENGINE |
6616 | M: Steffen Klassert <[email protected]> | |
6617 | L: [email protected] | |
6618 | S: Maintained | |
6619 | F: crypto/pcrypt.c | |
6620 | F: include/crypto/pcrypt.h | |
6621 | ||
e72df0b8 TH |
6622 | PER-CPU MEMORY ALLOCATOR |
6623 | M: Tejun Heo <[email protected]> | |
6624 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6626 | S: Maintained | |
6627 | F: include/linux/percpu*.h | |
6628 | F: mm/percpu*.c | |
6629 | F: arch/*/include/asm/percpu.h | |
6630 | ||
ad4ecbcb | 6631 | PER-TASK DELAY ACCOUNTING |
185e595f | 6632 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6633 | S: Maintained |
679655da JP |
6634 | F: include/linux/delayacct.h |
6635 | F: kernel/delayacct.c | |
ad4ecbcb | 6636 | |
57c0c15b | 6637 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6638 | M: Peter Zijlstra <[email protected]> |
6639 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6640 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6641 | M: Arnaldo Carvalho de Melo <[email protected]> |
981c3a4f | 6642 | L: [email protected] |
75fc2d37 | 6643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6644 | S: Supported |
d53e8365 | 6645 | F: kernel/events/* |
a003236c | 6646 | F: include/linux/perf_event.h |
c117ab84 | 6647 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6648 | F: arch/*/kernel/perf_event*.c |
6649 | F: arch/*/kernel/*/perf_event*.c | |
6650 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6651 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6652 | F: arch/*/kernel/perf_callchain.c |
6653 | F: tools/perf/ | |
6c0b3244 | 6654 | |
dd49d0f5 | 6655 | PERSONALITY HANDLING |
8b58be88 | 6656 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6657 | L: [email protected] |
6658 | S: Maintained | |
679655da | 6659 | F: include/linux/personality.h |
c117ab84 | 6660 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6661 | |
838e7a03 | 6662 | PHONET PROTOCOL |
2a06b40f | 6663 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6664 | S: Supported |
6665 | F: Documentation/networking/phonet.txt | |
6666 | F: include/linux/phonet.h | |
6667 | F: include/net/phonet/ | |
c117ab84 | 6668 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6669 | F: net/phonet/ |
6670 | ||
1da177e4 | 6671 | PHRAM MTD DRIVER |
8b58be88 | 6672 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6673 | L: [email protected] |
6674 | S: Maintained | |
679655da | 6675 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6676 | |
efdbb10e BP |
6677 | PICOLCD HID DRIVER |
6678 | M: Bruno Prémont <[email protected]> | |
6679 | L: [email protected] | |
6680 | S: Maintained | |
6681 | F: drivers/hid/hid-picolcd* | |
6682 | ||
a53bfa07 JI |
6683 | PICOXCELL SUPPORT |
6684 | M: Jamie Iles <[email protected]> | |
6685 | L: [email protected] (moderated for non-subscribers) | |
6686 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6687 | S: Supported | |
14430813 | 6688 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6689 | F: drivers/*/picoxcell* |
6690 | F: drivers/*/*/picoxcell* | |
6691 | ||
2744e8af LW |
6692 | PIN CONTROL SUBSYSTEM |
6693 | M: Linus Walleij <[email protected]> | |
6694 | S: Maintained | |
07f29ba6 | 6695 | F: drivers/pinctrl/ |
8e406fe4 | 6696 | F: include/linux/pinctrl/ |
2744e8af | 6697 | |
2201bbb8 JCPV |
6698 | PIN CONTROLLER - ATMEL AT91 |
6699 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6700 | L: [email protected] (moderated for non-subscribers) | |
6701 | S: Maintained | |
6702 | F: drivers/pinctrl/pinctrl-at91.c | |
6703 | ||
b75e60d6 DA |
6704 | PIN CONTROLLER - SAMSUNG |
6705 | M: Tomasz Figa <[email protected]> | |
6706 | M: Thomas Abraham <[email protected]> | |
6707 | L: [email protected] (moderated for non-subscribers) | |
6708 | L: [email protected] (moderated for non-subscribers) | |
6709 | S: Maintained | |
6710 | F: drivers/pinctrl/pinctrl-exynos.* | |
6711 | F: drivers/pinctrl/pinctrl-s3c* | |
6712 | F: drivers/pinctrl/pinctrl-samsung.* | |
6713 | ||
deda8287 | 6714 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6715 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6716 | L: [email protected] |
6717 | L: [email protected] (moderated for non-subscribers) | |
6718 | W: http://www.st.com/spear | |
6719 | S: Maintained | |
8e406fe4 | 6720 | F: drivers/pinctrl/spear/ |
deda8287 | 6721 | |
249a6771 | 6722 | PKTCDVD DRIVER |
dbd47133 | 6723 | M: Jiri Kosina <[email protected]> |
249a6771 | 6724 | S: Maintained |
679655da JP |
6725 | F: drivers/block/pktcdvd.c |
6726 | F: include/linux/pktcdvd.h | |
c117ab84 | 6727 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6728 | |
b31d8273 G |
6729 | PKUNITY SOC DRIVERS |
6730 | M: Guan Xuetao <[email protected]> | |
6731 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6732 | S: Maintained | |
6733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6734 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6735 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6736 | F: drivers/video/fb-puv3.c |
2809e80b | 6737 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6738 | |
9d2ecfb7 | 6739 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6740 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6741 | L: [email protected] |
6742 | W: http://www.lm-sensors.org/ | |
6743 | W: http://www.roeck-us.net/linux/drivers/ | |
6744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6745 | S: Maintained | |
6746 | F: Documentation/hwmon/pmbus | |
6747 | F: drivers/hwmon/pmbus/ | |
6748 | F: include/linux/i2c/pmbus.h | |
6749 | ||
89a36810 | 6750 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6751 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6752 | L: [email protected] |
6753 | W: http://www.pmc-sierra.com/ | |
6754 | S: Supported | |
6755 | F: drivers/scsi/pmcraid.* | |
6756 | ||
dbf9bfe6 | 6757 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6758 | M: [email protected] |
dbf9bfe6 | 6759 | M: [email protected] |
6760 | L: [email protected] | |
6761 | S: Supported | |
6762 | F: drivers/scsi/pm8001/ | |
6763 | ||
1da177e4 | 6764 | POSIX CLOCKS and TIMERS |
8b58be88 | 6765 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 6766 | L: [email protected] |
75fc2d37 | 6767 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6768 | S: Supported |
679655da JP |
6769 | F: fs/timerfd.c |
6770 | F: include/linux/timer* | |
6771 | F: kernel/*timer* | |
1da177e4 | 6772 | |
3be86148 | 6773 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
57318935 | 6774 | M: Dmitry Eremin-Solenikov <[email protected]> |
8b58be88 | 6775 | M: David Woodhouse <[email protected]> |
54e5881d | 6776 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6777 | S: Maintained |
679655da | 6778 | F: include/linux/power_supply.h |
8cd725a1 | 6779 | F: drivers/power/ |
3be86148 | 6780 | |
1da177e4 | 6781 | PNP SUPPORT |
46a1f21a | 6782 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6783 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6784 | S: Maintained |
679655da | 6785 | F: drivers/pnp/ |
1da177e4 | 6786 | |
999445d4 | 6787 | PNXxxxx I2C DRIVER |
8b58be88 | 6788 | M: Vitaly Wool <[email protected]> |
846557d3 | 6789 | L: [email protected] |
999445d4 | 6790 | S: Maintained |
679655da | 6791 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6792 | |
1da177e4 | 6793 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6794 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6795 | L: [email protected] |
6796 | S: Maintained | |
224cf5ad | 6797 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6798 | |
6799 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6800 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6801 | S: Maintained |
679655da | 6802 | F: net/atm/pppoatm.c |
c117ab84 | 6803 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6804 | |
6805 | PPP OVER ETHERNET | |
8b58be88 | 6806 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6807 | S: Maintained |
224cf5ad JK |
6808 | F: drivers/net/ppp/pppoe.c |
6809 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6810 | |
a6d2370b | 6811 | PPP OVER L2TP |
8b58be88 | 6812 | M: James Chapman <[email protected]> |
a6d2370b | 6813 | S: Maintained |
90ca28d1 | 6814 | F: net/l2tp/l2tp_ppp.c |
679655da | 6815 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6816 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6817 | |
eae9d2ba | 6818 | PPS SUPPORT |
8b58be88 | 6819 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6820 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6821 | L: [email protected] (subscribers-only) | |
6822 | S: Maintained | |
cabaaf41 JP |
6823 | F: Documentation/pps/ |
6824 | F: drivers/pps/ | |
6825 | F: include/linux/pps*.h | |
eae9d2ba | 6826 | |
71a6d0af HW |
6827 | PPTP DRIVER |
6828 | M: Dmitry Kozlov <[email protected]> | |
6829 | L: [email protected] | |
6830 | S: Maintained | |
224cf5ad | 6831 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6832 | W: http://sourceforge.net/projects/accel-pptp |
6833 | ||
1da177e4 | 6834 | PREEMPTIBLE KERNEL |
8b58be88 | 6835 | M: Robert Love <[email protected]> |
1da177e4 LT |
6836 | L: [email protected] |
6837 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6838 | S: Supported | |
679655da JP |
6839 | F: Documentation/preempt-locking.txt |
6840 | F: include/linux/preempt.h | |
1da177e4 LT |
6841 | |
6842 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6843 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6844 | L: [email protected] |
9ef80804 | 6845 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6846 | S: Obsolete |
679655da | 6847 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6848 | |
b3277dfa | 6849 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 6850 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6851 | L: [email protected] |
6852 | S: Maintained | |
679655da | 6853 | F: drivers/ata/sata_promise.* |
b3277dfa | 6854 | |
02c18891 | 6855 | PS3 NETWORK SUPPORT |
b809b9ca | 6856 | M: Geoff Levand <[email protected]> |
02c18891 | 6857 | L: [email protected] |
a4724ed6 | 6858 | L: [email protected] |
b809b9ca | 6859 | S: Maintained |
8df158ac | 6860 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6861 | |
f58a9d17 | 6862 | PS3 PLATFORM SUPPORT |
b809b9ca | 6863 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6864 | L: [email protected] |
6865 | L: [email protected] | |
b809b9ca | 6866 | S: Maintained |
679655da JP |
6867 | F: arch/powerpc/boot/ps3* |
6868 | F: arch/powerpc/include/asm/lv1call.h | |
6869 | F: arch/powerpc/include/asm/ps3*.h | |
6870 | F: arch/powerpc/platforms/ps3/ | |
6871 | F: drivers/*/ps3* | |
6872 | F: drivers/ps3/ | |
fec629b8 | 6873 | F: drivers/rtc/rtc-ps3.c |
679655da | 6874 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6875 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6876 | |
cffb4add | 6877 | PS3VRAM DRIVER |
8b58be88 | 6878 | M: Jim Paris <[email protected]> |
a4724ed6 | 6879 | L: [email protected] |
cffb4add | 6880 | S: Maintained |
8a3977cb | 6881 | F: drivers/block/ps3vram.c |
cffb4add | 6882 | |
8defe599 | 6883 | PSTORE FILESYSTEM |
9d5e2a02 | 6884 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6885 | M: Colin Cross <[email protected]> |
6886 | M: Kees Cook <[email protected]> | |
6887 | M: Tony Luck <[email protected]> | |
6888 | S: Maintained | |
6889 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6890 | F: fs/pstore/ | |
6891 | F: include/linux/pstore* | |
04851772 | 6892 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6893 | F: drivers/acpi/apei/erst.c |
6894 | ||
7fbc415d RC |
6895 | PTP HARDWARE CLOCK SUPPORT |
6896 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6897 | L: [email protected] |
7fbc415d RC |
6898 | S: Maintained |
6899 | W: http://linuxptp.sourceforge.net/ | |
6900 | F: Documentation/ABI/testing/sysfs-ptp | |
6901 | F: Documentation/ptp/* | |
0ecb3cdd | 6902 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6903 | F: drivers/net/phy/dp83640* |
6904 | F: drivers/ptp/* | |
6905 | F: include/linux/ptp_cl* | |
6906 | ||
cf94a4d1 | 6907 | PTRACE SUPPORT |
8b58be88 JP |
6908 | M: Roland McGrath <[email protected]> |
6909 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6910 | S: Maintained |
6911 | F: include/asm-generic/syscall.h | |
6912 | F: include/linux/ptrace.h | |
6913 | F: include/linux/regset.h | |
6914 | F: include/linux/tracehook.h | |
c117ab84 | 6915 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6916 | F: kernel/ptrace.c |
6917 | ||
8320204a | 6918 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6919 | M: Mike Isely <[email protected]> |
16e9495d | 6920 | L: [email protected] (subscribers-only) |
661263b5 | 6921 | L: [email protected] |
8320204a | 6922 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6923 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6924 | S: Maintained |
679655da | 6925 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6926 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6927 | |
39532e6c HG |
6928 | PWC WEBCAM DRIVER |
6929 | M: Hans de Goede <[email protected]> | |
6930 | L: [email protected] | |
6931 | T: git git://linuxtv.org/media_tree.git | |
6932 | S: Maintained | |
6933 | F: drivers/media/usb/pwc/* | |
6934 | ||
200efedd | 6935 | PWM SUBSYSTEM |
aa3495f7 TR |
6936 | M: Thierry Reding <[email protected]> |
6937 | L: [email protected] | |
0c2498f1 | 6938 | S: Maintained |
006e854f | 6939 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
6940 | F: Documentation/pwm.txt |
6941 | F: Documentation/devicetree/bindings/pwm/ | |
6942 | F: include/linux/pwm.h | |
0c2498f1 | 6943 | F: drivers/pwm/ |
a140b98d TR |
6944 | F: drivers/video/backlight/pwm_bl.c |
6945 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6946 | |
30ec261e | 6947 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6948 | M: Eric Miao <[email protected]> |
6949 | M: Russell King <[email protected]> | |
a323f664 | 6950 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6951 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6952 | T: git git://github.com/hzhuang1/linux.git |
6953 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6954 | S: Maintained |
679655da JP |
6955 | F: arch/arm/mach-pxa/ |
6956 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6957 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6958 | F: drivers/usb/gadget/pxa2* |
6959 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 6960 | F: sound/arm/pxa* |
14430813 | 6961 | F: sound/soc/pxa/ |
1da177e4 | 6962 | |
ec64d3bf EG |
6963 | PXA3xx NAND FLASH DRIVER |
6964 | M: Ezequiel Garcia <[email protected]> | |
6965 | L: [email protected] | |
6966 | S: Maintained | |
6967 | F: drivers/mtd/nand/pxa3xx-nand.c | |
6968 | ||
3f640c61 | 6969 | MMP SUPPORT |
8b58be88 | 6970 | M: Eric Miao <[email protected]> |
a323f664 | 6971 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6972 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6973 | T: git git://github.com/hzhuang1/linux.git |
6974 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6975 | S: Maintained |
3f640c61 | 6976 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6977 | |
272f133a PO |
6978 | PXA MMCI DRIVER |
6979 | S: Orphan | |
6980 | ||
57f63bc8 | 6981 | PXA RTC DRIVER |
8b58be88 | 6982 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6983 | L: [email protected] |
6984 | S: Maintained | |
6985 | ||
52a09a04 | 6986 | QIB DRIVER |
8473c603 | 6987 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6988 | L: [email protected] |
6989 | S: Supported | |
6990 | F: drivers/infiniband/hw/qib/ | |
6991 | ||
5e9772b9 JS |
6992 | QLOGIC QLA1280 SCSI DRIVER |
6993 | M: Michael Reed <[email protected]> | |
6994 | L: [email protected] | |
6995 | S: Maintained | |
6996 | F: drivers/scsi/qla1280.[ch] | |
6997 | ||
1da177e4 | 6998 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 6999 | M: [email protected] |
1da177e4 LT |
7000 | L: [email protected] |
7001 | S: Supported | |
679655da JP |
7002 | F: Documentation/scsi/LICENSE.qla2xxx |
7003 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7004 | |
883c98fe | 7005 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7006 | M: Vikas Chaudhary <[email protected]> |
7007 | M: [email protected] | |
7008 | L: [email protected] | |
7009 | S: Supported | |
bacfb81b | 7010 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7011 | F: drivers/scsi/qla4xxx/ |
7012 | ||
5a4faa87 | 7013 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7014 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7015 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
7016 | M: [email protected] |
7017 | L: [email protected] | |
7018 | S: Supported | |
679655da | 7019 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7020 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7021 | |
0ec00f03 | 7022 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 7023 | M: Himanshu Madhani <[email protected]> |
195ca382 SC |
7024 | M: Rajesh Borundia <[email protected]> |
7025 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 7026 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 7027 | M: Sony Chacko <[email protected]> |
7ad031ee | 7028 | M: Sucheta Chakraborty <[email protected]> |
0ec00f03 AKS |
7029 | M: [email protected] |
7030 | L: [email protected] | |
7031 | S: Supported | |
aa43c215 | 7032 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7033 | |
c4e84bde | 7034 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 7035 | M: Shahed Shaikh <[email protected]> |
b997d79a | 7036 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 7037 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 7038 | M: [email protected] |
c4e84bde RM |
7039 | L: [email protected] |
7040 | S: Supported | |
aa43c215 | 7041 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7042 | |
1da177e4 | 7043 | QNX4 FILESYSTEM |
8b58be88 | 7044 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
7045 | W: http://www.alarsen.net/linux/qnx4fs/ |
7046 | S: Maintained | |
80811493 | 7047 | F: fs/qnx4/ |
c117ab84 CEB |
7048 | F: include/uapi/linux/qnx4_fs.h |
7049 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7050 | |
91952bc0 AP |
7051 | QT1010 MEDIA DRIVER |
7052 | M: Antti Palosaari <[email protected]> | |
7053 | L: [email protected] | |
7054 | W: http://linuxtv.org/ | |
7055 | W: http://palosaari.fi/linux/ | |
7056 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7057 | T: git git://linuxtv.org/anttip/media_tree.git | |
7058 | S: Maintained | |
7059 | F: drivers/media/tuners/qt1010* | |
7060 | ||
966fb5ec SM |
7061 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7062 | M: QCA ath9k Development <[email protected]> | |
7063 | L: [email protected] | |
7064 | L: [email protected] | |
7065 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7066 | S: Supported | |
7067 | F: drivers/net/wireless/ath/ath9k/ | |
7068 | ||
2ea0ffcb KV |
7069 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7070 | M: Kalle Valo <[email protected]> | |
7071 | L: [email protected] | |
7072 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7073 | T: git git://github.com/kvalo/ath.git | |
7074 | S: Supported | |
7075 | F: drivers/net/wireless/ath/ath10k/ | |
7076 | ||
4f4567cf RK |
7077 | QUALCOMM HEXAGON ARCHITECTURE |
7078 | M: Richard Kuo <[email protected]> | |
7079 | L: [email protected] | |
7080 | S: Supported | |
7081 | F: arch/hexagon/ | |
7082 | ||
8e84c258 EK |
7083 | QUALCOMM WCN36XX WIRELESS DRIVER |
7084 | M: Eugene Krasnikov <[email protected]> | |
7085 | L: [email protected] | |
7086 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7087 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7088 | S: Supported | |
7089 | F: drivers/net/wireless/ath/wcn36xx/ | |
7090 | ||
35e3540b HV |
7091 | QUICKCAM PARALLEL PORT WEBCAMS |
7092 | M: Hans Verkuil <[email protected]> | |
7093 | L: [email protected] | |
7094 | T: git git://linuxtv.org/media_tree.git | |
7095 | W: http://linuxtv.org | |
7096 | S: Odd Fixes | |
7097 | F: drivers/media/parport/*-qcam* | |
7098 | ||
602adf40 | 7099 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7100 | M: Yehuda Sadeh <[email protected]> |
7101 | M: Sage Weil <[email protected]> | |
527a88b9 | 7102 | M: Alex Elder <[email protected]> |
602adf40 | 7103 | M: [email protected] |
09d90327 SW |
7104 | W: http://ceph.com/ |
7105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7106 | S: Supported |
7107 | F: drivers/block/rbd.c | |
7108 | F: drivers/block/rbd_types.h | |
7109 | ||
1da177e4 | 7110 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7111 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 7112 | L: [email protected] |
1da177e4 | 7113 | S: Maintained |
679655da | 7114 | F: drivers/video/aty/radeon* |
c117ab84 | 7115 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7116 | |
c6c9b34c HG |
7117 | RADIOSHARK RADIO DRIVER |
7118 | M: Hans de Goede <[email protected]> | |
7119 | L: [email protected] | |
7120 | T: git git://linuxtv.org/media_tree.git | |
7121 | S: Maintained | |
7122 | F: drivers/media/radio/radio-shark.c | |
7123 | ||
7124 | RADIOSHARK2 RADIO DRIVER | |
7125 | M: Hans de Goede <[email protected]> | |
7126 | L: [email protected] | |
7127 | T: git git://linuxtv.org/media_tree.git | |
7128 | S: Maintained | |
7129 | F: drivers/media/radio/radio-shark2.c | |
7130 | F: drivers/media/radio/radio-tea5777.c | |
7131 | ||
1da177e4 | 7132 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7133 | M: Paul Mackerras <[email protected]> |
c69f677c | 7134 | L: [email protected] |
1da177e4 | 7135 | S: Maintained |
679655da | 7136 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 7137 | |
e7839f25 | 7138 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7139 | P: rt2x00 project |
e1a6542f | 7140 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 7141 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 7142 | M: Helmut Schaa <[email protected]> |
95ea3627 | 7143 | L: [email protected] |
83fc9c89 | 7144 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
7145 | W: http://rt2x00.serialmonkey.com/ |
7146 | S: Maintained | |
54e5881d | 7147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7148 | F: drivers/net/wireless/rt2x00/ |
7149 | ||
9db5579b | 7150 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7151 | M: Nick Piggin <[email protected]> |
9db5579b | 7152 | S: Maintained |
679655da JP |
7153 | F: Documentation/blockdev/ramdisk.txt |
7154 | F: drivers/block/brd.c | |
9db5579b | 7155 | |
9e95ce27 | 7156 | RANDOM NUMBER DRIVER |
330e0a01 | 7157 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 7158 | S: Maintained |
679655da | 7159 | F: drivers/char/random.c |
9e95ce27 | 7160 | |
394b701c | 7161 | RAPIDIO SUBSYSTEM |
8b58be88 | 7162 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 7163 | M: Alexandre Bounine <[email protected]> |
394b701c | 7164 | S: Maintained |
679655da | 7165 | F: drivers/rapidio/ |
394b701c | 7166 | |
e2d1d6c0 | 7167 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7168 | L: [email protected] |
f52a5490 | 7169 | S: Orphan |
679655da | 7170 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7171 | |
7172 | RCUTORTURE MODULE | |
8b58be88 JP |
7173 | M: Josh Triplett <[email protected]> |
7174 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7175 | L: [email protected] |
f9094d8e | 7176 | S: Supported |
08deed1e | 7177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7178 | F: Documentation/RCU/torture.txt |
4102adab | 7179 | F: kernel/rcu/torture.c |
e2d1d6c0 | 7180 | |
c87b9c60 PM |
7181 | RCUTORTURE TEST FRAMEWORK |
7182 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7183 | L: [email protected] |
c87b9c60 PM |
7184 | S: Supported |
7185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7186 | F: tools/testing/selftests/rcutorture | |
7187 | ||
c1f766b5 | 7188 | RDC R-321X SoC |
8b58be88 | 7189 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
7190 | S: Maintained |
7191 | ||
db17f395 | 7192 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7193 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
7194 | L: [email protected] |
7195 | S: Maintained | |
58565a35 | 7196 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7197 | |
a09ed661 | 7198 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 7199 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 7200 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 7201 | S: Supported |
679655da | 7202 | F: net/rds/ |
a09ed661 | 7203 | |
595182bc | 7204 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
7205 | M: Dipankar Sarma <[email protected]> |
7206 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7207 | L: [email protected] |
9fab9787 | 7208 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7209 | S: Supported |
08deed1e | 7210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7211 | F: Documentation/RCU/ |
9fab9787 | 7212 | X: Documentation/RCU/torture.txt |
f9094d8e | 7213 | F: include/linux/rcu* |
4102adab PM |
7214 | X: include/linux/srcu.h |
7215 | F: kernel/rcu/ | |
7216 | X: kernel/rcu/torture.c | |
595182bc | 7217 | |
0c86edc0 | 7218 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7219 | M: Alessandro Zummo <[email protected]> |
76465493 | 7220 | L: [email protected] |
8a6e2535 | 7221 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7222 | S: Maintained |
679655da JP |
7223 | F: Documentation/rtc.txt |
7224 | F: drivers/rtc/ | |
7225 | F: include/linux/rtc.h | |
c117ab84 | 7226 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7227 | |
1da177e4 | 7228 | REISERFS FILE SYSTEM |
76c4e5ea | 7229 | L: [email protected] |
1da177e4 | 7230 | S: Supported |
679655da | 7231 | F: fs/reiserfs/ |
1da177e4 | 7232 | |
b83a313b | 7233 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7234 | M: Mark Brown <[email protected]> |
b83a313b MB |
7235 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7236 | S: Supported | |
7237 | F: drivers/base/regmap/ | |
7238 | F: include/linux/regmap.h | |
7239 | ||
400e64df OBC |
7240 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7241 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 7242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7243 | S: Maintained |
7244 | F: drivers/remoteproc/ | |
7245 | F: Documentation/remoteproc.txt | |
6fc26488 | 7246 | F: include/linux/remoteproc.h |
400e64df | 7247 | |
d8115db5 OBC |
7248 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7249 | M: Ohad Ben-Cohen <[email protected]> | |
7250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7251 | S: Maintained | |
7252 | F: drivers/rpmsg/ | |
7253 | F: Documentation/rpmsg.txt | |
7254 | F: include/linux/rpmsg.h | |
7255 | ||
e0897645 | 7256 | RFKILL |
8b58be88 | 7257 | M: Johannes Berg <[email protected]> |
19d337df | 7258 | L: [email protected] |
ce466579 JB |
7259 | W: http://wireless.kernel.org/ |
7260 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7262 | S: Maintained |
505c9247 | 7263 | F: Documentation/rfkill.txt |
80811493 | 7264 | F: net/rfkill/ |
e0897645 | 7265 | |
67e054e9 ML |
7266 | RICOH SMARTMEDIA/XD DRIVER |
7267 | M: Maxim Levitsky <[email protected]> | |
7268 | S: Maintained | |
21c26f50 JP |
7269 | F: drivers/mtd/nand/r852.c |
7270 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7271 | |
92634125 ML |
7272 | RICOH R5C592 MEMORYSTICK DRIVER |
7273 | M: Maxim Levitsky <[email protected]> | |
7274 | S: Maintained | |
7275 | F: drivers/memstick/host/r592.* | |
7276 | ||
27f1d2f9 SA |
7277 | ROCCAT DRIVERS |
7278 | M: Stefan Achatz <[email protected]> | |
7279 | W: http://sourceforge.net/projects/roccat/ | |
7280 | S: Maintained | |
7281 | F: drivers/hid/hid-roccat* | |
7282 | F: include/linux/hid-roccat* | |
7283 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7284 | ||
1da177e4 LT |
7285 | ROCKETPORT DRIVER |
7286 | P: Comtrol Corp. | |
1da177e4 LT |
7287 | W: http://www.comtrol.com |
7288 | S: Maintained | |
679655da | 7289 | F: Documentation/serial/rocket.txt |
c897401b | 7290 | F: drivers/tty/rocket* |
1da177e4 LT |
7291 | |
7292 | ROSE NETWORK LAYER | |
8b58be88 | 7293 | M: Ralf Baechle <[email protected]> |
1da177e4 | 7294 | L: [email protected] |
d34cb28a | 7295 | W: http://www.linux-ax25.org/ |
1da177e4 | 7296 | S: Maintained |
679655da | 7297 | F: include/net/rose.h |
c117ab84 | 7298 | F: include/uapi/linux/rose.h |
679655da | 7299 | F: net/rose/ |
1da177e4 | 7300 | |
91952bc0 AP |
7301 | RTL2830 MEDIA DRIVER |
7302 | M: Antti Palosaari <[email protected]> | |
7303 | L: [email protected] | |
7304 | W: http://linuxtv.org/ | |
7305 | W: http://palosaari.fi/linux/ | |
7306 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7307 | T: git git://linuxtv.org/anttip/media_tree.git | |
7308 | S: Maintained | |
7309 | F: drivers/media/dvb-frontends/rtl2830* | |
7310 | ||
27a0aacf AP |
7311 | RTL2832 MEDIA DRIVER |
7312 | M: Antti Palosaari <[email protected]> | |
7313 | L: [email protected] | |
7314 | W: http://linuxtv.org/ | |
7315 | W: http://palosaari.fi/linux/ | |
7316 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7317 | T: git git://linuxtv.org/anttip/media_tree.git | |
7318 | S: Maintained | |
7319 | F: drivers/media/dvb-frontends/rtl2832* | |
7320 | ||
59840488 | 7321 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7322 | M: "John W. Linville" <[email protected]> |
605bebe2 | 7323 | L: [email protected] |
491b26b4 | 7324 | W: http://wireless.kernel.org/ |
54e5881d | 7325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7326 | S: Maintained |
3cfeb0c3 | 7327 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7328 | |
59840488 | 7329 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7330 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
7331 | M: Hin-Tak Leung <[email protected]> |
7332 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 7333 | L: [email protected] |
491b26b4 | 7334 | W: http://wireless.kernel.org/ |
54e5881d | 7335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7336 | S: Maintained |
3cfeb0c3 | 7337 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7338 | |
3cf0c8ad LF |
7339 | RTL8192CE WIRELESS DRIVER |
7340 | M: Larry Finger <[email protected]> | |
7341 | M: Chaoming Li <[email protected]> | |
7342 | L: [email protected] | |
491b26b4 | 7343 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7345 | S: Maintained | |
7346 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7347 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7348 | |
9eb8ef74 | 7349 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7350 | M: Antonino Daplas <[email protected]> |
c69f677c | 7351 | L: [email protected] |
ce00f85c | 7352 | S: Maintained |
679655da | 7353 | F: drivers/video/savage/ |
9eb8ef74 | 7354 | |
1da177e4 | 7355 | S390 |
8b58be88 JP |
7356 | M: Martin Schwidefsky <[email protected]> |
7357 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 7358 | M: [email protected] |
d58140cc | 7359 | L: [email protected] |
5238da45 HC |
7360 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7361 | S: Supported | |
679655da | 7362 | F: arch/s390/ |
a968cd3e | 7363 | F: drivers/s390/ |
20d16fef | 7364 | F: block/partitions/ibm.c |
3bfe6858 JN |
7365 | F: Documentation/s390/ |
7366 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7367 | |
7368 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7369 | M: Ursula Braun <[email protected]> |
7370 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7371 | M: [email protected] |
d58140cc | 7372 | L: [email protected] |
5238da45 HC |
7373 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7374 | S: Supported | |
679655da | 7375 | F: drivers/s390/net/ |
5238da45 | 7376 | |
feed9b62 | 7377 | S390 ZCRYPT DRIVER |
5c8d0983 | 7378 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7379 | M: [email protected] |
7380 | L: [email protected] | |
a968cd3e | 7381 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7382 | S: Supported |
d5ca6918 | 7383 | F: drivers/s390/crypto/ |
feed9b62 | 7384 | |
5238da45 | 7385 | S390 ZFCP DRIVER |
d38e19d0 | 7386 | M: Steffen Maier <[email protected]> |
5238da45 | 7387 | M: [email protected] |
d58140cc | 7388 | L: [email protected] |
5238da45 | 7389 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7390 | S: Supported |
679655da | 7391 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7392 | |
dd96df2c | 7393 | S390 IUCV NETWORK LAYER |
8b58be88 | 7394 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7395 | M: [email protected] |
7396 | L: [email protected] | |
7397 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7398 | S: Supported | |
679655da JP |
7399 | F: drivers/s390/net/*iucv* |
7400 | F: include/net/iucv/ | |
7401 | F: net/iucv/ | |
dd96df2c | 7402 | |
4dde7f75 | 7403 | S3C24XX SD/MMC Driver |
8b58be88 | 7404 | M: Ben Dooks <[email protected]> |
efc03ecb | 7405 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7406 | S: Supported |
679655da | 7407 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7408 | |
1f15a229 HV |
7409 | SAA6588 RDS RECEIVER DRIVER |
7410 | M: Hans Verkuil <[email protected]> | |
7411 | L: [email protected] | |
7412 | T: git git://linuxtv.org/media_tree.git | |
7413 | W: http://linuxtv.org | |
7414 | S: Odd Fixes | |
7415 | F: drivers/media/i2c/saa6588* | |
7416 | ||
98ed12e6 | 7417 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7418 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7419 | L: [email protected] |
7420 | W: http://linuxtv.org | |
7421 | T: git git://linuxtv.org/media_tree.git | |
7422 | S: Odd fixes | |
e42bf501 | 7423 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7424 | F: drivers/media/pci/saa7134/ |
7425 | ||
1da177e4 | 7426 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7427 | M: Hans Verkuil <[email protected]> |
661263b5 | 7428 | L: [email protected] |
275ffde4 | 7429 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7430 | S: Maintained |
90d72ac6 MCC |
7431 | F: drivers/media/common/saa7146/ |
7432 | F: drivers/media/pci/saa7146/ | |
7433 | F: include/media/saa7146* | |
1da177e4 | 7434 | |
92304a40 | 7435 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7436 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7437 | L: [email protected] |
7438 | S: Maintained | |
7439 | F: drivers/platform/x86/samsung-laptop.c | |
7440 | ||
4a109cc0 | 7441 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7442 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7443 | L: [email protected] (moderated for non-subscribers) |
7444 | S: Supported | |
14430813 | 7445 | F: sound/soc/samsung/ |
4a109cc0 | 7446 | |
0d89a28b JH |
7447 | SAMSUNG FRAMEBUFFER DRIVER |
7448 | M: Jingoo Han <[email protected]> | |
7449 | L: [email protected] | |
7450 | S: Maintained | |
7451 | F: drivers/video/s3c-fb.c | |
7452 | ||
f69d3a17 SK |
7453 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7454 | M: Sangbeom Kim <[email protected]> | |
7455 | L: [email protected] | |
7456 | S: Supported | |
7457 | F: drivers/mfd/sec*.c | |
7458 | F: drivers/regulator/s2m*.c | |
7459 | F: drivers/regulator/s5m*.c | |
7460 | F: drivers/rtc/rtc-sec.c | |
7461 | F: include/linux/mfd/samsung/ | |
7462 | ||
038f5c4b SN |
7463 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7464 | M: Kyungmin Park <[email protected]> | |
7465 | M: Sylwester Nawrocki <[email protected]> | |
7466 | L: [email protected] | |
7467 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7468 | S: Supported | |
7469 | F: drivers/media/platform/exynos4-is/ | |
7470 | F: include/media/s5p_fimc.h | |
7471 | ||
6fd86ab2 SN |
7472 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7473 | M: Sylwester Nawrocki <[email protected]> | |
7474 | L: [email protected] | |
7475 | L: [email protected] (moderated for non-subscribers) | |
7476 | S: Maintained | |
7477 | F: drivers/media/platform/s3c-camif/ | |
7478 | F: include/media/s3c_camif.h | |
7479 | ||
b84ef24e AH |
7480 | SAMSUNG S5C73M3 CAMERA DRIVER |
7481 | M: Kyungmin Park <[email protected]> | |
7482 | M: Andrzej Hajda <[email protected]> | |
7483 | L: [email protected] | |
7484 | S: Supported | |
7485 | F: drivers/media/i2c/s5c73m3/* | |
7486 | ||
7d459937 AH |
7487 | SAMSUNG S5K5BAF CAMERA DRIVER |
7488 | M: Kyungmin Park <[email protected]> | |
7489 | M: Andrzej Hajda <[email protected]> | |
7490 | L: [email protected] | |
7491 | S: Supported | |
7492 | F: drivers/media/i2c/s5k5baf.c | |
7493 | ||
310e39c9 TF |
7494 | SAMSUNG SOC CLOCK DRIVERS |
7495 | M: Tomasz Figa <[email protected]> | |
7496 | S: Supported | |
7497 | L: [email protected] (moderated for non-subscribers) | |
7498 | F: drivers/clk/samsung/ | |
7499 | ||
ca749e2a | 7500 | SERIAL DRIVERS |
5e30bbb7 | 7501 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7502 | L: [email protected] |
5e30bbb7 | 7503 | S: Maintained |
14430813 | 7504 | F: drivers/tty/serial/ |
ca749e2a | 7505 | |
aecb7b64 | 7506 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7507 | M: Viresh Kumar <[email protected]> |
337ae47c | 7508 | M: Andy Shevchenko <[email protected]> |
aecb7b64 VK |
7509 | S: Maintained |
7510 | F: include/linux/dw_dmac.h | |
61a76496 | 7511 | F: drivers/dma/dw/ |
aecb7b64 | 7512 | |
f9e37137 SJ |
7513 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7514 | M: Seungwon Jeon <[email protected]> | |
7515 | M: Jaehoon Chung <[email protected]> | |
7516 | L: [email protected] | |
7517 | S: Maintained | |
7518 | F: include/linux/mmc/dw_mmc.h | |
7519 | F: drivers/mmc/host/dw_mmc* | |
7520 | ||
9222d247 | 7521 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7522 | M: John Stultz <[email protected]> |
88606e80 | 7523 | M: Thomas Gleixner <[email protected]> |
981c3a4f | 7524 | L: [email protected] |
75fc2d37 | 7525 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7526 | S: Supported |
7527 | F: include/linux/clocksource.h | |
7528 | F: include/linux/time.h | |
7529 | F: include/linux/timex.h | |
c117ab84 CEB |
7530 | F: include/uapi/linux/time.h |
7531 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7532 | F: kernel/time/clocksource.c |
7533 | F: kernel/time/time*.c | |
7534 | F: kernel/time/ntp.c | |
7535 | ||
5b3f03f0 | 7536 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7537 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7538 | M: Hans Verkuil <[email protected]> |
7539 | S: Odd Fixes | |
14430813 | 7540 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7541 | |
1da177e4 | 7542 | SC1200 WDT DRIVER |
b300645a | 7543 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7544 | S: Maintained |
679655da | 7545 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7546 | |
7547 | SCHEDULER | |
dd9b238c | 7548 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7549 | M: Peter Zijlstra <[email protected]> |
981c3a4f | 7550 | L: [email protected] |
75fc2d37 | 7551 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7552 | S: Maintained |
95c0d71d | 7553 | F: kernel/sched/ |
679655da | 7554 | F: include/linux/sched.h |
c117ab84 | 7555 | F: include/uapi/linux/sched.h |
c2eb505b | 7556 | F: include/linux/wait.h |
1da177e4 | 7557 | |
6bcf6737 | 7558 | SCORE ARCHITECTURE |
ed38665e | 7559 | M: Chen Liqin <[email protected]> |
a2681a75 | 7560 | M: Lennox Wu <[email protected]> |
ed38665e | 7561 | W: http://www.sunplus.com |
6bcf6737 | 7562 | S: Supported |
a2681a75 | 7563 | F: arch/score/ |
6bcf6737 | 7564 | |
1da177e4 | 7565 | SCSI CDROM DRIVER |
8b58be88 | 7566 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7567 | L: [email protected] |
7568 | W: http://www.kernel.dk | |
7569 | S: Maintained | |
679655da | 7570 | F: drivers/scsi/sr* |
1da177e4 | 7571 | |
fb50a83d | 7572 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 7573 | M: Bart Van Assche <[email protected]> |
fb50a83d RD |
7574 | L: [email protected] |
7575 | S: Supported | |
7576 | W: http://www.openfabrics.org | |
7577 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7579 | F: drivers/infiniband/ulp/srp/ | |
7580 | F: include/scsi/srp.h | |
7581 | ||
1da177e4 | 7582 | SCSI SG DRIVER |
8b58be88 | 7583 | M: Doug Gilbert <[email protected]> |
1da177e4 | 7584 | L: [email protected] |
59ab3c93 | 7585 | W: http://sg.danny.cz/sg |
1da177e4 | 7586 | S: Maintained |
59ab3c93 | 7587 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
7588 | F: drivers/scsi/sg.c |
7589 | F: include/scsi/sg.h | |
1da177e4 LT |
7590 | |
7591 | SCSI SUBSYSTEM | |
c95286d8 | 7592 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7593 | L: [email protected] |
54e5881d JP |
7594 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7597 | S: Maintained |
679655da JP |
7598 | F: drivers/scsi/ |
7599 | F: include/scsi/ | |
1da177e4 LT |
7600 | |
7601 | SCSI TAPE DRIVER | |
8b58be88 | 7602 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7603 | L: [email protected] |
7604 | S: Maintained | |
679655da | 7605 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7606 | F: drivers/scsi/st.* |
7607 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7608 | |
7609 | SCTP PROTOCOL | |
8b6efb75 | 7610 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7611 | M: Neil Horman <[email protected]> |
1a418796 | 7612 | L: [email protected] |
5f85813c | 7613 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7614 | S: Maintained |
679655da JP |
7615 | F: Documentation/networking/sctp.txt |
7616 | F: include/linux/sctp.h | |
4d58c025 | 7617 | F: include/uapi/linux/sctp.h |
679655da JP |
7618 | F: include/net/sctp/ |
7619 | F: net/sctp/ | |
1da177e4 LT |
7620 | |
7621 | SCx200 CPU SUPPORT | |
8b58be88 | 7622 | M: Jim Cromie <[email protected]> |
1662d32c | 7623 | S: Odd Fixes |
679655da | 7624 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7625 | F: arch/x86/platform/scx200/ |
679655da JP |
7626 | F: drivers/watchdog/scx200_wdt.c |
7627 | F: drivers/i2c/busses/scx200* | |
7628 | F: drivers/mtd/maps/scx200_docflash.c | |
7629 | F: include/linux/scx200.h | |
1662d32c JC |
7630 | |
7631 | SCx200 GPIO DRIVER | |
8b58be88 | 7632 | M: Jim Cromie <[email protected]> |
1662d32c | 7633 | S: Maintained |
679655da JP |
7634 | F: drivers/char/scx200_gpio.c |
7635 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7636 | |
7637 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7638 | M: Jim Cromie <[email protected]> |
1662d32c | 7639 | S: Maintained |
679655da | 7640 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7641 | |
6a36913a | 7642 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7643 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7644 | L: [email protected] (subscribers-only) |
7645 | S: Maintained | |
679655da | 7646 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7647 | |
e7839f25 | 7648 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 7649 | M: Chris Ball <[email protected]> |
7a241d6e | 7650 | L: [email protected] |
245feaa6 CB |
7651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7652 | S: Maintained | |
7a241d6e | 7653 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7654 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7655 | |
3085e9c1 | 7656 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7657 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7658 | L: [email protected] |
7a241d6e | 7659 | L: [email protected] |
e2d1d6c0 | 7660 | S: Maintained |
d4a45787 | 7661 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7662 | |
0d1bb41a | 7663 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7664 | M: Ben Dooks <[email protected]> |
7a241d6e | 7665 | L: [email protected] |
0d1bb41a BD |
7666 | S: Maintained |
7667 | F: drivers/mmc/host/sdhci-s3c.c | |
7668 | ||
c63b3cba | 7669 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7670 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7671 | L: [email protected] |
c63b3cba VK |
7672 | L: [email protected] |
7673 | S: Maintained | |
7674 | F: drivers/mmc/host/sdhci-spear.c | |
7675 | ||
8711cca2 | 7676 | SECURITY SUBSYSTEM |
9b45c0d2 | 7677 | M: James Morris <[email protected]> |
8711cca2 | 7678 | L: [email protected] (suggested Cc:) |
89879a7e | 7679 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7680 | W: http://kernsec.org/ |
8711cca2 | 7681 | S: Supported |
7d2c86b5 | 7682 | F: security/ |
8711cca2 | 7683 | |
1da177e4 | 7684 | SECURITY CONTACT |
8b58be88 | 7685 | M: Security Officers <[email protected]> |
1da177e4 LT |
7686 | S: Supported |
7687 | ||
7688 | SELINUX SECURITY MODULE | |
8b58be88 | 7689 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7690 | M: James Morris <[email protected]> |
8b58be88 | 7691 | M: Eric Paris <[email protected]> |
5a5f2acf | 7692 | M: Paul Moore <[email protected]> |
7d2c86b5 | 7693 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7694 | W: http://selinuxproject.org |
5a5f2acf | 7695 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7696 | S: Supported |
679655da JP |
7697 | F: include/linux/selinux* |
7698 | F: security/selinux/ | |
6bde95ce | 7699 | F: scripts/selinux/ |
1da177e4 | 7700 | |
c1c124e9 JJ |
7701 | APPARMOR SECURITY MODULE |
7702 | M: John Johansen <[email protected]> | |
7703 | L: [email protected] (subscribers-only, general discussion) | |
7704 | W: apparmor.wiki.kernel.org | |
7705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7706 | S: Supported | |
7707 | F: security/apparmor/ | |
7708 | ||
cef2cf07 | 7709 | SENSABLE PHANTOM |
8b58be88 | 7710 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7711 | S: Maintained |
679655da | 7712 | F: drivers/misc/phantom.c |
c117ab84 | 7713 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7714 | |
4480f15b | 7715 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7716 | M: Tejun Heo <[email protected]> |
1da177e4 | 7717 | L: [email protected] |
3d9b9350 | 7718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7719 | S: Supported |
d5ca6918 JP |
7720 | F: drivers/ata/ |
7721 | F: include/linux/ata.h | |
7722 | F: include/linux/libata.h | |
1da177e4 | 7723 | |
6733b39a | 7724 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7725 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7726 | L: [email protected] |
0ca43cc0 | 7727 | W: http://www.emulex.com |
3387f656 JP |
7728 | S: Supported |
7729 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7730 | |
6b7c5b94 | 7731 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7732 | M: Sathya Perla <[email protected]> |
7733 | M: Subbu Seetharaman <[email protected]> | |
7734 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7735 | L: [email protected] |
fea3af67 | 7736 | W: http://www.emulex.com |
7d2c86b5 | 7737 | S: Supported |
9aebddd1 | 7738 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7739 | |
8ceee660 | 7740 | SFC NETWORK DRIVER |
c06f51ea | 7741 | M: Solarflare linux maintainers <[email protected]> |
8533ccf3 | 7742 | M: Shradha Shah <[email protected]> |
c06f51ea | 7743 | L: [email protected] |
8ceee660 | 7744 | S: Supported |
874aeea5 | 7745 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7746 | |
e2d1d6c0 | 7747 | SGI GRU DRIVER |
cc883afc | 7748 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 7749 | S: Maintained |
679655da | 7750 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7751 | |
7752 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7753 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7754 | L: [email protected] |
7755 | S: Supported | |
679655da | 7756 | F: Documentation/ia64/serial.txt |
df621252 | 7757 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7758 | F: include/linux/ioc?.h |
e2d1d6c0 | 7759 | |
1da177e4 | 7760 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7761 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7762 | L: [email protected] |
7763 | W: http://linux-visws.sf.net | |
7764 | S: Maintained for 2.6. | |
679655da | 7765 | F: Documentation/sgi-visws.txt |
1da177e4 | 7766 | |
75312619 | 7767 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7768 | M: Cliff Whickman <[email protected]> |
7769 | M: Robin Holt <[email protected]> | |
75312619 | 7770 | S: Maintained |
679655da | 7771 | F: drivers/misc/sgi-xp/ |
75312619 | 7772 | |
49cc629d HV |
7773 | SI470X FM RADIO RECEIVER I2C DRIVER |
7774 | M: Hans Verkuil <[email protected]> | |
7775 | L: [email protected] | |
7776 | T: git git://linuxtv.org/media_tree.git | |
7777 | W: http://linuxtv.org | |
7778 | S: Odd Fixes | |
7779 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7780 | ||
7781 | SI470X FM RADIO RECEIVER USB DRIVER | |
7782 | M: Hans Verkuil <[email protected]> | |
7783 | L: [email protected] | |
7784 | T: git git://linuxtv.org/media_tree.git | |
7785 | W: http://linuxtv.org | |
7786 | S: Maintained | |
7787 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7788 | F: drivers/media/radio/si470x/radio-si470x.h | |
7789 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7790 | ||
c937ca03 EV |
7791 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7792 | M: Eduardo Valentin <[email protected]> | |
7793 | L: [email protected] | |
7794 | T: git git://linuxtv.org/media_tree.git | |
7795 | W: http://linuxtv.org | |
7796 | S: Odd Fixes | |
99995ded | 7797 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
7798 | |
7799 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7800 | M: Eduardo Valentin <[email protected]> | |
7801 | L: [email protected] | |
7802 | T: git git://linuxtv.org/media_tree.git | |
7803 | W: http://linuxtv.org | |
7804 | S: Odd Fixes | |
99995ded DR |
7805 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
7806 | ||
7807 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
7808 | M: Hans Verkuil <[email protected]> | |
7809 | L: [email protected] | |
7810 | T: git git://linuxtv.org/media_tree.git | |
7811 | W: http://linuxtv.org | |
7812 | S: Maintained | |
7813 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 7814 | |
beb91d46 | 7815 | SIANO DVB DRIVER |
1b2c14b4 | 7816 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7817 | L: [email protected] |
7818 | W: http://linuxtv.org | |
7819 | T: git git://linuxtv.org/media_tree.git | |
7820 | S: Odd fixes | |
7821 | F: drivers/media/common/siano/ | |
beb91d46 | 7822 | F: drivers/media/usb/siano/ |
beb91d46 | 7823 | F: drivers/media/usb/siano/ |
14430813 | 7824 | F: drivers/media/mmc/siano/ |
beb91d46 | 7825 | |
b618b69c GL |
7826 | SH_VEU V4L2 MEM2MEM DRIVER |
7827 | M: Guennadi Liakhovetski <[email protected]> | |
7828 | L: [email protected] | |
7829 | S: Maintained | |
7830 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7831 | |
7832 | SH_VOU V4L2 OUTPUT DRIVER | |
7833 | M: Guennadi Liakhovetski <[email protected]> | |
7834 | L: [email protected] | |
4290fd1a | 7835 | S: Odd Fixes |
b618b69c GL |
7836 | F: drivers/media/platform/sh_vou.c |
7837 | F: include/media/sh_vou.h | |
7838 | ||
6349d997 | 7839 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7840 | M: Len Brown <[email protected]> |
6349d997 LB |
7841 | L: [email protected] |
7842 | W: http://simplefirmware.org/ | |
7843 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7844 | S: Supported |
943fc810 | 7845 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7846 | F: drivers/sfi/ |
7847 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7848 | |
1da177e4 LT |
7849 | SIMTEC EB110ATX (Chalice CATS) |
7850 | P: Ben Dooks | |
b16957c6 BD |
7851 | P: Vincent Sanders <[email protected]> |
7852 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7853 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7854 | S: Supported | |
7855 | ||
7856 | SIMTEC EB2410ITX (BAST) | |
7857 | P: Ben Dooks | |
b16957c6 BD |
7858 | P: Vincent Sanders <[email protected]> |
7859 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7860 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7861 | S: Supported | |
15dba387 JP |
7862 | F: arch/arm/mach-s3c24xx/mach-bast.c |
7863 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
7864 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 7865 | |
4c5adde7 | 7866 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7867 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7868 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7869 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7870 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7871 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 7872 | S: Supported |
14430813 | 7873 | F: arch/arm/mach-davinci/ |
046d0a37 | 7874 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7875 | |
8d4b3f08 | 7876 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7877 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7878 | L: [email protected] |
7879 | L: [email protected] (moderated for non-subscribers) | |
7880 | W: http://linuxtv.org/ | |
7881 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7882 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7883 | S: Maintained |
8d4b3f08 LP |
7884 | F: drivers/media/platform/davinci/ |
7885 | F: include/media/davinci/ | |
7886 | ||
92aab3c0 | 7887 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7888 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7889 | L: [email protected] |
7890 | S: Maintained | |
8c7de408 | 7891 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7892 | |
1da177e4 | 7893 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7894 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7895 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7896 | L: [email protected] |
1da177e4 | 7897 | S: Maintained |
8c7de408 | 7898 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7899 | |
7900 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7901 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7902 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7903 | S: Maintained |
679655da JP |
7904 | F: Documentation/fb/sisfb.txt |
7905 | F: drivers/video/sis/ | |
7906 | F: include/video/sisfb.h | |
1da177e4 LT |
7907 | |
7908 | SIS USB2VGA DRIVER | |
8b58be88 | 7909 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7910 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7911 | S: Maintained | |
679655da | 7912 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7913 | |
415ad26d | 7914 | SLAB ALLOCATOR |
8b58be88 | 7915 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7916 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7917 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7918 | L: [email protected] |
7919 | S: Maintained | |
679655da JP |
7920 | F: include/linux/sl?b*.h |
7921 | F: mm/sl?b.c | |
415ad26d | 7922 | |
9fab9787 PM |
7923 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7924 | M: Lai Jiangshan <[email protected]> | |
7925 | M: "Paul E. McKenney" <[email protected]> | |
981c3a4f | 7926 | L: [email protected] |
9fab9787 PM |
7927 | W: http://www.rdrop.com/users/paulmck/RCU/ |
7928 | S: Supported | |
7929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
7930 | F: include/linux/srcu.h |
7931 | F: kernel/rcu/srcu.c | |
9fab9787 | 7932 | |
66372841 CS |
7933 | SMACK SECURITY MODULE |
7934 | M: Casey Schaufler <[email protected]> | |
7935 | L: [email protected] | |
7936 | W: http://schaufler-ca.com | |
7937 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7938 | S: Maintained | |
7939 | F: Documentation/security/Smack.txt | |
7940 | F: security/smack/ | |
7941 | ||
68ace3e1 KH |
7942 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
7943 | M: Kevin Hilman <[email protected]> | |
7944 | M: Nishanth Menon <[email protected]> | |
7945 | S: Maintained | |
7946 | F: drivers/power/avs/smartreflex.c | |
7947 | F: include/linux/power/smartreflex.h | |
7948 | L: [email protected] | |
7949 | ||
1da177e4 | 7950 | SMC91x ETHERNET DRIVER |
2f82af08 | 7951 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7952 | S: Odd Fixes |
ae150435 | 7953 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7954 | |
e8e31622 SA |
7955 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7956 | M: Sakari Ailus <[email protected]> | |
7957 | L: [email protected] | |
7958 | S: Maintained | |
14430813 | 7959 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
7960 | F: include/media/smiapp.h |
7961 | F: drivers/media/i2c/smiapp-pll.c | |
7962 | F: drivers/media/i2c/smiapp-pll.h | |
7963 | ||
920fa1ff GR |
7964 | SMM665 HARDWARE MONITOR DRIVER |
7965 | M: Guenter Roeck <[email protected]> | |
7966 | L: [email protected] | |
7967 | S: Maintained | |
7968 | F: Documentation/hwmon/smm665 | |
7969 | F: drivers/hwmon/smm665.c | |
7970 | ||
9df7305b | 7971 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7972 | M: Steve Glendinning <[email protected]> |
9df7305b | 7973 | L: [email protected] |
90b24cfb | 7974 | S: Maintained |
9df7305b SG |
7975 | F: Documentation/hwmon/emc2103 |
7976 | F: drivers/hwmon/emc2103.c | |
7977 | ||
a98d506c HG |
7978 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7979 | M: Hans de Goede <[email protected]> | |
7980 | L: [email protected] | |
7981 | S: Supported | |
7982 | F: Documentation/hwmon/sch5627 | |
7983 | F: drivers/hwmon/sch5627.c | |
7984 | ||
6ea884db | 7985 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 7986 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7987 | L: [email protected] |
7988 | S: Maintained | |
679655da JP |
7989 | F: Documentation/hwmon/smsc47b397 |
7990 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7991 | |
fd9abb3d | 7992 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7993 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7994 | L: [email protected] |
90b24cfb | 7995 | S: Maintained |
679655da | 7996 | F: include/linux/smsc911x.h |
ae150435 | 7997 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7998 | |
7999 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8000 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 8001 | L: [email protected] |
90b24cfb | 8002 | S: Maintained |
ae150435 | 8003 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8004 | |
3c8a63e2 | 8005 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8006 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 8007 | L: [email protected] |
90b24cfb | 8008 | S: Maintained |
3c8a63e2 SG |
8009 | F: drivers/video/smscufx.c |
8010 | ||
668acf32 | 8011 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8012 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 8013 | L: [email protected] |
275ffde4 | 8014 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8015 | S: Maintained |
90d72ac6 MCC |
8016 | F: include/media/soc* |
8017 | F: drivers/media/i2c/soc_camera/ | |
8018 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8019 | |
e2d1d6c0 | 8020 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8021 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 8022 | S: Maintained |
679655da | 8023 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8024 | |
1da177e4 | 8025 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8026 | M: Neil Brown <[email protected]> |
1da177e4 | 8027 | L: [email protected] |
524418bb | 8028 | S: Supported |
679655da JP |
8029 | F: drivers/md/ |
8030 | F: include/linux/raid/ | |
c117ab84 | 8031 | F: include/uapi/linux/raid/ |
1da177e4 | 8032 | |
1da177e4 | 8033 | SONIC NETWORK DRIVER |
8b58be88 | 8034 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 8035 | L: [email protected] |
1da177e4 | 8036 | S: Maintained |
d9fb9f38 | 8037 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8038 | |
61e115a5 | 8039 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8040 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
8041 | L: [email protected] |
8042 | S: Maintained | |
679655da JP |
8043 | F: drivers/ssb/ |
8044 | F: include/linux/ssb/ | |
61e115a5 | 8045 | |
1da177e4 | 8046 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8047 | M: Mattia Dongili <[email protected]> |
d0944853 | 8048 | L: [email protected] |
5b18167d | 8049 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8050 | S: Maintained |
679655da JP |
8051 | F: Documentation/laptops/sony-laptop.txt |
8052 | F: drivers/char/sonypi.c | |
8053 | F: drivers/platform/x86/sony-laptop.c | |
8054 | F: include/linux/sony-laptop.h | |
1da177e4 | 8055 | |
baf8532a | 8056 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8057 | M: Alex Dubov <[email protected]> |
baf8532a AD |
8058 | W: http://tifmxx.berlios.de/ |
8059 | S: Maintained | |
679655da | 8060 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8061 | |
0ab30494 ML |
8062 | SONY MEMORYSTICK STANDARD SUPPORT |
8063 | M: Maxim Levitsky <[email protected]> | |
8064 | S: Maintained | |
8065 | F: drivers/memstick/core/ms_block.* | |
8066 | ||
1da177e4 | 8067 | SOUND |
8b58be88 JP |
8068 | M: Jaroslav Kysela <[email protected]> |
8069 | M: Takashi Iwai <[email protected]> | |
93711660 | 8070 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 8071 | W: http://www.alsa-project.org/ |
dde7ad8d | 8072 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8073 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 8074 | S: Maintained |
3126a179 JP |
8075 | F: Documentation/sound/ |
8076 | F: include/sound/ | |
c117ab84 | 8077 | F: include/uapi/sound/ |
679655da | 8078 | F: sound/ |
1da177e4 | 8079 | |
33bbe149 MB |
8080 | SOUND - COMPRESSED AUDIO |
8081 | M: Vinod Koul <[email protected]> | |
8082 | L: [email protected] (moderated for non-subscribers) | |
8083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8084 | S: Supported | |
f672f31a | 8085 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8086 | F: include/sound/compress_driver.h |
f672f31a | 8087 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8088 | F: sound/core/compress_offload.c |
8089 | F: sound/soc/soc-compress.c | |
8090 | ||
bd903bde | 8091 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8092 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 8093 | M: Mark Brown <[email protected]> |
86f14df8 | 8094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8095 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 8096 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8097 | S: Supported |
2820f615 | 8098 | F: Documentation/sound/alsa/soc/ |
679655da | 8099 | F: sound/soc/ |
e6e55122 | 8100 | F: include/sound/soc* |
eb1a6af3 | 8101 | |
d7f8761b MB |
8102 | SOUND - DMAENGINE HELPERS |
8103 | M: Lars-Peter Clausen <[email protected]> | |
8104 | S: Supported | |
8105 | F: include/sound/dmaengine_pcm.h | |
8106 | F: sound/core/pcm_dmaengine.c | |
8107 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8108 | ||
473321fc | 8109 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8110 | M: "David S. Miller" <[email protected]> |
1da177e4 | 8111 | L: [email protected] |
8a6e2535 | 8112 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8113 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8114 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8115 | S: Maintained |
679655da | 8116 | F: arch/sparc/ |
7765b8bb | 8117 | F: drivers/sbus/ |
1da177e4 | 8118 | |
6404fcca DM |
8119 | SPARC SERIAL DRIVERS |
8120 | M: "David S. Miller" <[email protected]> | |
8121 | L: [email protected] | |
08deed1e JP |
8122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8123 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8124 | S: Maintained |
6816383a | 8125 | F: include/linux/sunserialcore.h |
df621252 | 8126 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8127 | F: drivers/tty/serial/sunhv.c |
8128 | F: drivers/tty/serial/sunsab.c | |
8129 | F: drivers/tty/serial/sunsab.h | |
8130 | F: drivers/tty/serial/sunsu.c | |
8131 | F: drivers/tty/serial/sunzilog.c | |
8132 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8133 | |
389325b4 CL |
8134 | SPARSE CHECKER |
8135 | M: "Christopher Li" <[email protected]> | |
8136 | L: [email protected] | |
8137 | W: https://sparse.wiki.kernel.org/ | |
8138 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8139 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8140 | S: Maintained | |
8141 | F: include/linux/compiler.h | |
8142 | ||
fc0c195a | 8143 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8144 | M: Viresh Kumar <[email protected]> |
71e09a9e | 8145 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
8146 | L: [email protected] |
8147 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8148 | W: http://www.st.com/spear |
8149 | S: Maintained | |
281e192f | 8150 | F: arch/arm/mach-spear/ |
fc0c195a VK |
8151 | |
8152 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8153 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
8154 | L: [email protected] |
8155 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
8156 | W: http://www.st.com/spear |
8157 | S: Maintained | |
5df33a62 | 8158 | F: drivers/clk/spear/ |
fc0c195a | 8159 | |
e2d1d6c0 | 8160 | SPI SUBSYSTEM |
b02e48f2 | 8161 | M: Mark Brown <[email protected]> |
dfbe403c | 8162 | L: [email protected] |
e7e4e13c | 8163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8164 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8165 | S: Maintained |
679655da JP |
8166 | F: Documentation/spi/ |
8167 | F: drivers/spi/ | |
8168 | F: include/linux/spi/ | |
c117ab84 | 8169 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8170 | |
2752e401 | 8171 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8172 | M: Ishizaki Kou <[email protected]> |
8173 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
8174 | L: [email protected] |
8175 | S: Supported | |
679655da | 8176 | F: Documentation/networking/spider_net.txt |
8df158ac | 8177 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8178 | |
e2d1d6c0 | 8179 | SPU FILE SYSTEM |
8b58be88 | 8180 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
8181 | L: [email protected] |
8182 | L: [email protected] | |
e2d1d6c0 RD |
8183 | W: http://www.ibm.com/developerworks/power/cell/ |
8184 | S: Supported | |
679655da JP |
8185 | F: Documentation/filesystems/spufs.txt |
8186 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8187 | |
fc555841 | 8188 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8189 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
8190 | L: [email protected] (subscribers-only) |
8191 | W: http://squashfs.org.uk | |
8192 | S: Maintained | |
679655da JP |
8193 | F: Documentation/filesystems/squashfs.txt |
8194 | F: fs/squashfs/ | |
fc555841 | 8195 | |
1da177e4 | 8196 | SRM (Alpha) environment access |
8b58be88 | 8197 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 8198 | S: Maintained |
679655da | 8199 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8200 | |
26e9a397 | 8201 | STABLE BRANCH |
879a5a00 | 8202 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 8203 | L: [email protected] |
879a5a00 | 8204 | S: Supported |
7b175c46 | 8205 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8206 | |
26e9a397 | 8207 | STAGING SUBSYSTEM |
879a5a00 | 8208 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 8209 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8210 | L: [email protected] |
879a5a00 | 8211 | S: Supported |
679655da | 8212 | F: drivers/staging/ |
dbc6c2cc | 8213 | |
c8c8b105 JP |
8214 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
8215 | M: Henk de Groot <[email protected]> | |
8216 | S: Odd Fixes | |
8217 | F: drivers/staging/wlags49_h2/ | |
8218 | F: drivers/staging/wlags49_h25/ | |
8219 | ||
c9555159 JP |
8220 | STAGING - ASUS OLED |
8221 | M: Jakub Schmidtke <[email protected]> | |
8222 | S: Odd Fixes | |
8223 | F: drivers/staging/asus_oled/ | |
8224 | ||
ebd3d010 JP |
8225 | STAGING - COMEDI |
8226 | M: Ian Abbott <[email protected]> | |
81b884c9 | 8227 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
8228 | S: Odd Fixes |
8229 | F: drivers/staging/comedi/ | |
8230 | ||
8ca572c9 JP |
8231 | STAGING - CRYSTAL HD VIDEO DECODER |
8232 | M: Naren Sankar <[email protected]> | |
8233 | M: Jarod Wilson <[email protected]> | |
8234 | M: Scott Davilla <[email protected]> | |
8235 | M: Manu Abraham <[email protected]> | |
8236 | S: Odd Fixes | |
8237 | F: drivers/staging/crystalhd/ | |
8238 | ||
0f16ffc4 JP |
8239 | STAGING - ECHO CANCELLER |
8240 | M: Steve Underwood <[email protected]> | |
8241 | M: David Rowe <[email protected]> | |
8242 | S: Odd Fixes | |
8243 | F: drivers/staging/echo/ | |
8244 | ||
8dc2bbe7 ME |
8245 | STAGING - ET131X NETWORK DRIVER |
8246 | M: Mark Einon <[email protected]> | |
8247 | S: Odd Fixes | |
8248 | F: drivers/staging/et131x/ | |
8249 | ||
a0138163 JP |
8250 | STAGING - FLARION FT1000 DRIVERS |
8251 | M: Marek Belisko <[email protected]> | |
8252 | S: Odd Fixes | |
8253 | F: drivers/staging/ft1000/ | |
8254 | ||
ec3fab92 JP |
8255 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
8256 | M: David Täht <[email protected]> | |
8257 | S: Odd Fixes | |
8258 | F: drivers/staging/frontier/ | |
8259 | ||
98ded590 HV |
8260 | STAGING - GO7007 MPEG CODEC |
8261 | M: Hans Verkuil <[email protected]> | |
8262 | S: Maintained | |
8263 | F: drivers/staging/media/go7007/ | |
8264 | ||
6c1bb424 | 8265 | STAGING - INDUSTRIAL IO |
030a13d7 | 8266 | M: Jonathan Cameron <[email protected]> |
a0138163 | 8267 | L: [email protected] |
6c1bb424 JP |
8268 | S: Odd Fixes |
8269 | F: drivers/staging/iio/ | |
8270 | ||
a0138163 JP |
8271 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8272 | M: Jarod Wilson <[email protected]> | |
8273 | W: http://www.lirc.org/ | |
8274 | S: Odd Fixes | |
b2b0186d | 8275 | F: drivers/staging/media/lirc/ |
a0138163 | 8276 | |
7c6b6c71 | 8277 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8278 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
8279 | M: Marc Dietrich <[email protected]> |
8280 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 8281 | L: [email protected] |
7c6b6c71 MD |
8282 | S: Maintained |
8283 | F: drivers/staging/nvec/ | |
8284 | ||
a0138163 | 8285 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8286 | M: Jens Frederich <[email protected]> |
8287 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
8288 | M: Jon Nettleton <[email protected]> |
8289 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8290 | S: Maintained |
a0138163 JP |
8291 | F: drivers/staging/olpc_dcon/ |
8292 | ||
94cfdd15 | 8293 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 8294 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
8295 | S: Maintained |
8296 | F: drivers/staging/ozwpan/ | |
8297 | ||
a0138163 | 8298 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8299 | M: Willy Tarreau <[email protected]> |
8300 | S: Odd Fixes | |
8301 | F: drivers/staging/panel/ | |
8302 | ||
a0138163 JP |
8303 | STAGING - REALTEK RTL8712U DRIVERS |
8304 | M: Larry Finger <[email protected]> | |
8305 | M: Florian Schilhabel <[email protected]>. | |
8306 | S: Odd Fixes | |
8307 | F: drivers/staging/rtl8712/ | |
8308 | ||
9629fa86 JP |
8309 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8310 | M: Teddy Wang <[email protected]> | |
8311 | S: Odd Fixes | |
9df0a245 | 8312 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8313 | |
a0138163 | 8314 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8315 | M: Ismael Luceno <[email protected]> |
8316 | S: Supported | |
b2b0186d | 8317 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8318 | |
8319 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8320 | M: William Hubbs <[email protected]> | |
8321 | M: Chris Brannon <[email protected]> | |
d33bce31 | 8322 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
8323 | M: Samuel Thibault <[email protected]> |
8324 | L: [email protected] | |
8325 | W: http://www.linux-speakup.org/ | |
8326 | S: Odd Fixes | |
8327 | F: drivers/staging/speakup/ | |
8328 | ||
8329 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8330 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
8331 | S: Odd Fixes |
8332 | F: drivers/staging/tidspbridge/ | |
8333 | ||
a0138163 JP |
8334 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8335 | M: Al Cho <[email protected]> | |
8336 | S: Odd Fixes | |
8337 | F: drivers/staging/keucr/ | |
8338 | ||
b3e871ce JP |
8339 | STAGING - VIA VT665X DRIVERS |
8340 | M: Forest Bond <[email protected]> | |
8341 | S: Odd Fixes | |
8342 | F: drivers/staging/vt665?/ | |
8343 | ||
81a9a526 JP |
8344 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8345 | M: Pavel Machek <[email protected]> | |
8346 | S: Odd Fixes | |
8347 | F: drivers/staging/winbond/ | |
8348 | ||
709bcb07 | 8349 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8350 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
8351 | S: Odd Fixes |
8352 | F: drivers/staging/xgifb/ | |
8353 | ||
1da177e4 | 8354 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8355 | M: Ion Badulescu <[email protected]> |
b4f90189 | 8356 | S: Odd Fixes |
9bba23b0 | 8357 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8358 | |
e2d1d6c0 | 8359 | SUN3/3X |
8b58be88 | 8360 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
8361 | W: http://sammy.net/sun3/ |
8362 | S: Maintained | |
679655da JP |
8363 | F: arch/m68k/kernel/*sun3* |
8364 | F: arch/m68k/sun3*/ | |
8365 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8366 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8367 | |
2bc9ff01 DK |
8368 | SUNDANCE NETWORK DRIVER |
8369 | M: Denis Kirjanov <[email protected]> | |
8370 | L: [email protected] | |
8371 | S: Maintained | |
8372 | F: drivers/net/ethernet/dlink/sundance.c | |
8373 | ||
2cbb12a4 | 8374 | SUPERH |
8b58be88 | 8375 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 8376 | L: [email protected] |
1da177e4 | 8377 | W: http://www.linux-sh.org |
8a6e2535 | 8378 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 8379 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 8380 | S: Supported |
066069e1 | 8381 | F: Documentation/sh/ |
679655da | 8382 | F: arch/sh/ |
066069e1 | 8383 | F: drivers/sh/ |
1da177e4 | 8384 | |
4480f15b | 8385 | SUSPEND TO RAM |
8b58be88 JP |
8386 | M: Len Brown <[email protected]> |
8387 | M: Pavel Machek <[email protected]> | |
49db1903 | 8388 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 8389 | L: [email protected] |
e2d1d6c0 | 8390 | S: Supported |
679655da JP |
8391 | F: Documentation/power/ |
8392 | F: arch/x86/kernel/acpi/ | |
8393 | F: drivers/base/power/ | |
8394 | F: kernel/power/ | |
8395 | F: include/linux/suspend.h | |
8396 | F: include/linux/freezer.h | |
8397 | F: include/linux/pm.h | |
1da177e4 LT |
8398 | |
8399 | SVGA HANDLING | |
8b58be88 | 8400 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8401 | L: [email protected] |
8402 | S: Maintained | |
679655da JP |
8403 | F: Documentation/svga.txt |
8404 | F: arch/x86/boot/video* | |
1da177e4 | 8405 | |
6e28b761 KRW |
8406 | SWIOTLB SUBSYSTEM |
8407 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8408 | L: [email protected] | |
8409 | S: Supported | |
8410 | F: lib/swiotlb.c | |
8411 | F: arch/*/kernel/pci-swiotlb.c | |
8412 | F: include/linux/swiotlb.h | |
8413 | ||
db8e35d5 VG |
8414 | SYNOPSYS ARC ARCHITECTURE |
8415 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8416 | S: Supported |
8417 | F: arch/arc/ | |
6659a20a | 8418 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8419 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8420 | |
1da177e4 | 8421 | SYSV FILESYSTEM |
8b58be88 | 8422 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8423 | S: Maintained |
679655da JP |
8424 | F: Documentation/filesystems/sysv-fs.txt |
8425 | F: fs/sysv/ | |
8426 | F: include/linux/sysv_fs.h | |
1da177e4 | 8427 | |
86cfa7fc NB |
8428 | TARGET SUBSYSTEM |
8429 | M: Nicholas A. Bellinger <[email protected]> | |
8430 | L: [email protected] | |
b9f5edc2 | 8431 | L: [email protected] |
86cfa7fc NB |
8432 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8433 | W: http://www.linux-iscsi.org | |
452cf324 | 8434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8435 | S: Supported |
8436 | F: drivers/target/ | |
8437 | F: include/target/ | |
8438 | F: Documentation/target/ | |
8439 | ||
4e68852d | 8440 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8441 | M: Balbir Singh <[email protected]> |
4e68852d | 8442 | S: Maintained |
679655da JP |
8443 | F: Documentation/accounting/taskstats* |
8444 | F: include/linux/taskstats* | |
8445 | F: kernel/taskstats.c | |
4e68852d | 8446 | |
781b456a | 8447 | TC CLASSIFIER |
f935f3f8 | 8448 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8449 | L: [email protected] |
8450 | S: Maintained | |
679655da | 8451 | F: include/net/pkt_cls.h |
c117ab84 | 8452 | F: include/uapi/linux/pkt_cls.h |
679655da | 8453 | F: net/sched/ |
781b456a | 8454 | |
5067f08a | 8455 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8456 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8457 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8458 | W: http://tcp-lp-mod.sourceforge.net/ |
8459 | S: Maintained | |
679655da | 8460 | F: net/ipv4/tcp_lp.c |
5067f08a | 8461 | |
91952bc0 AP |
8462 | TDA10071 MEDIA DRIVER |
8463 | M: Antti Palosaari <[email protected]> | |
8464 | L: [email protected] | |
8465 | W: http://linuxtv.org/ | |
8466 | W: http://palosaari.fi/linux/ | |
8467 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8468 | T: git git://linuxtv.org/anttip/media_tree.git | |
8469 | S: Maintained | |
8470 | F: drivers/media/dvb-frontends/tda10071* | |
8471 | ||
8472 | TDA18212 MEDIA DRIVER | |
8473 | M: Antti Palosaari <[email protected]> | |
8474 | L: [email protected] | |
8475 | W: http://linuxtv.org/ | |
8476 | W: http://palosaari.fi/linux/ | |
8477 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8478 | T: git git://linuxtv.org/anttip/media_tree.git | |
8479 | S: Maintained | |
8480 | F: drivers/media/tuners/tda18212* | |
8481 | ||
8482 | TDA18218 MEDIA DRIVER | |
8483 | M: Antti Palosaari <[email protected]> | |
8484 | L: [email protected] | |
8485 | W: http://linuxtv.org/ | |
8486 | W: http://palosaari.fi/linux/ | |
8487 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8488 | T: git git://linuxtv.org/anttip/media_tree.git | |
8489 | S: Maintained | |
8490 | F: drivers/media/tuners/tda18218* | |
8491 | ||
3b2f6aba MK |
8492 | TDA18271 MEDIA DRIVER |
8493 | M: Michael Krufky <[email protected]> | |
8494 | L: [email protected] | |
8495 | W: http://linuxtv.org/ | |
8496 | W: http://github.com/mkrufky | |
8497 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8498 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8499 | S: Maintained | |
8500 | F: drivers/media/tuners/tda18271* | |
8501 | ||
e48307a9 MK |
8502 | TDA827x MEDIA DRIVER |
8503 | M: Michael Krufky <[email protected]> | |
8504 | L: [email protected] | |
8505 | W: http://linuxtv.org/ | |
8506 | W: http://github.com/mkrufky | |
8507 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8508 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8509 | S: Maintained | |
8510 | F: drivers/media/tuners/tda8290.* | |
8511 | ||
66cf9212 MK |
8512 | TDA8290 MEDIA DRIVER |
8513 | M: Michael Krufky <[email protected]> | |
8514 | L: [email protected] | |
8515 | W: http://linuxtv.org/ | |
8516 | W: http://github.com/mkrufky | |
8517 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8518 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8519 | S: Maintained | |
8520 | F: drivers/media/tuners/tda8290.* | |
8521 | ||
4b9fba30 HV |
8522 | TDA9840 MEDIA DRIVER |
8523 | M: Hans Verkuil <[email protected]> | |
8524 | L: [email protected] | |
8525 | T: git git://linuxtv.org/media_tree.git | |
8526 | W: http://linuxtv.org | |
8527 | S: Maintained | |
8528 | F: drivers/media/i2c/tda9840* | |
8529 | ||
2cb654fd | 8530 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8531 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8532 | L: [email protected] |
8533 | W: http://linuxtv.org | |
8534 | T: git git://linuxtv.org/media_tree.git | |
8535 | S: Odd fixes | |
8536 | F: drivers/media/tuners/tea5761.* | |
8537 | ||
8538 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8539 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8540 | L: [email protected] |
8541 | W: http://linuxtv.org | |
8542 | T: git git://linuxtv.org/media_tree.git | |
8543 | S: Maintained | |
8544 | F: drivers/media/tuners/tea5767.* | |
8545 | ||
4b9fba30 HV |
8546 | TEA6415C MEDIA DRIVER |
8547 | M: Hans Verkuil <[email protected]> | |
8548 | L: [email protected] | |
8549 | T: git git://linuxtv.org/media_tree.git | |
8550 | W: http://linuxtv.org | |
8551 | S: Maintained | |
8552 | F: drivers/media/i2c/tea6415c* | |
8553 | ||
8554 | TEA6420 MEDIA DRIVER | |
8555 | M: Hans Verkuil <[email protected]> | |
8556 | L: [email protected] | |
8557 | T: git git://linuxtv.org/media_tree.git | |
8558 | W: http://linuxtv.org | |
8559 | S: Maintained | |
8560 | F: drivers/media/i2c/tea6420* | |
8561 | ||
3d249d4c | 8562 | TEAM DRIVER |
dca9ab92 | 8563 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8564 | L: [email protected] |
8565 | S: Supported | |
8566 | F: drivers/net/team/ | |
8567 | F: include/linux/if_team.h | |
c117ab84 | 8568 | F: include/uapi/linux/if_team.h |
3d249d4c | 8569 | |
7d029125 VD |
8570 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8571 | M: Savoir-faire Linux Inc. <[email protected]> | |
8572 | S: Maintained | |
8573 | F: arch/x86/platform/ts5500/ | |
8574 | ||
40ad4a30 SY |
8575 | TECHNOTREND USB IR RECEIVER |
8576 | M: Sean Young <[email protected]> | |
8577 | L: [email protected] | |
8578 | S: Maintained | |
8579 | F: drivers/media/rc/ttusbir.c | |
8580 | ||
adabdb0c | 8581 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8582 | M: Stephen Warren <[email protected]> |
adabdb0c | 8583 | M: Thierry Reding <[email protected]> |
84b9414b | 8584 | L: [email protected] |
fd117cd1 OJ |
8585 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8587 | S: Supported |
bbbe96ed | 8588 | N: [^a-z]tegra |
84b9414b | 8589 | |
adabdb0c SW |
8590 | TEGRA ASOC DRIVER |
8591 | M: Stephen Warren <[email protected]> | |
8592 | S: Supported | |
8593 | F: sound/soc/tegra/ | |
8594 | ||
8595 | TEGRA CLOCK DRIVER | |
8596 | M: Peter De Schrijver <[email protected]> | |
8597 | M: Prashant Gaikwad <[email protected]> | |
8598 | S: Supported | |
8599 | F: drivers/clk/tegra/ | |
8600 | ||
8601 | TEGRA DMA DRIVER | |
8602 | M: Laxman Dewangan <[email protected]> | |
8603 | S: Supported | |
8604 | F: drivers/dma/tegra20-apb-dma.c | |
8605 | ||
8606 | TEGRA GPIO DRIVER | |
8607 | M: Stephen Warren <[email protected]> | |
8608 | S: Supported | |
8609 | F: drivers/gpio/gpio-tegra.c | |
8610 | ||
8611 | TEGRA I2C DRIVER | |
8612 | M: Laxman Dewangan <[email protected]> | |
8613 | S: Supported | |
8614 | F: drivers/i2c/busses/i2c-tegra.c | |
8615 | ||
8616 | TEGRA IOMMU DRIVERS | |
8617 | M: Hiroshi Doyu <[email protected]> | |
8618 | S: Supported | |
8619 | F: drivers/iommu/tegra* | |
8620 | ||
8621 | TEGRA KBC DRIVER | |
8622 | M: Rakesh Iyer <[email protected]> | |
8623 | M: Laxman Dewangan <[email protected]> | |
8624 | S: Supported | |
8625 | F: drivers/input/keyboard/tegra-kbc.c | |
8626 | ||
8627 | TEGRA PINCTRL DRIVER | |
8628 | M: Stephen Warren <[email protected]> | |
8629 | S: Supported | |
8630 | F: drivers/pinctrl/pinctrl-tegra* | |
8631 | ||
8632 | TEGRA PWM DRIVER | |
8633 | M: Thierry Reding <[email protected]> | |
8634 | S: Supported | |
8635 | F: drivers/pwm/pwm-tegra.c | |
8636 | ||
8637 | TEGRA SERIAL DRIVER | |
8638 | M: Laxman Dewangan <[email protected]> | |
8639 | S: Supported | |
8640 | F: drivers/tty/serial/serial-tegra.c | |
8641 | ||
8642 | TEGRA SPI DRIVER | |
8643 | M: Laxman Dewangan <[email protected]> | |
8644 | S: Supported | |
8645 | F: drivers/spi/spi-tegra* | |
8646 | ||
1a348ccc | 8647 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8648 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8649 | L: [email protected] |
8650 | S: Supported | |
ef7f5429 | 8651 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8652 | |
4e68852d | 8653 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8654 | M: Mark Gross <[email protected]> |
4e68852d | 8655 | S: Supported |
679655da | 8656 | F: drivers/char/tlclk.c |
4e68852d | 8657 | |
4480f15b | 8658 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8659 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8660 | M: Max Filippov <[email protected]> |
8661 | L: [email protected] | |
4e68852d | 8662 | S: Maintained |
679655da | 8663 | F: arch/xtensa/ |
4e68852d | 8664 | |
5313ba66 HV |
8665 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
8666 | M: Hans Verkuil <[email protected]> | |
8667 | L: [email protected] | |
8668 | T: git git://linuxtv.org/media_tree.git | |
8669 | W: http://linuxtv.org | |
8670 | S: Maintained | |
8671 | F: drivers/media/radio/radio-raremono.c | |
8672 | ||
d3fb6955 ZR |
8673 | THERMAL |
8674 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8675 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8676 | L: [email protected] |
8677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8679 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8680 | S: Supported |
8681 | F: drivers/thermal/ | |
8682 | F: include/linux/thermal.h | |
cfaf7179 | 8683 | F: include/linux/cpu_cooling.h |
1beabfbe | 8684 | F: Documentation/devicetree/bindings/thermal/ |
d3fb6955 | 8685 | |
30ba2fbd VD |
8686 | THINGM BLINK(1) USB RGB LED DRIVER |
8687 | M: Vivien Didelot <[email protected]> | |
8688 | S: Maintained | |
8689 | F: drivers/hid/hid-thingm.c | |
8690 | ||
4e68852d | 8691 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8692 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8693 | L: [email protected] |
d0944853 | 8694 | L: [email protected] |
4e68852d AC |
8695 | W: http://ibm-acpi.sourceforge.net |
8696 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8697 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8698 | S: Maintained |
679655da | 8699 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8700 | |
1b46f2a2 EV |
8701 | TI BANDGAP AND THERMAL DRIVER |
8702 | M: Eduardo Valentin <[email protected]> | |
8703 | L: [email protected] | |
794b2e25 EV |
8704 | S: Supported |
8705 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8706 | |
4020f2d7 | 8707 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8708 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8709 | S: Maintained |
679655da JP |
8710 | F: drivers/misc/tifm* |
8711 | F: drivers/mmc/host/tifm_sd.c | |
8712 | F: include/linux/tifm.h | |
4020f2d7 | 8713 | |
152ad442 SR |
8714 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8715 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8716 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8717 | L: [email protected] (moderated for non-subscribers) |
8718 | S: Maintained | |
8719 | F: sound/soc/codecs/lm49453* | |
d392dead | 8720 | F: sound/soc/codecs/isabelle* |
152ad442 | 8721 | |
0edd807d KM |
8722 | TI LP855x BACKLIGHT DRIVER |
8723 | M: Milo Kim <[email protected]> | |
8724 | S: Maintained | |
8725 | F: Documentation/backlight/lp855x-driver.txt | |
8726 | F: drivers/video/backlight/lp855x_bl.c | |
8727 | F: include/linux/platform_data/lp855x.h | |
8728 | ||
faf13f6d KM |
8729 | TI LP8727 CHARGER DRIVER |
8730 | M: Milo Kim <[email protected]> | |
8731 | S: Maintained | |
8732 | F: drivers/power/lp8727_charger.c | |
8733 | F: include/linux/platform_data/lp8727.h | |
8734 | ||
22f1229f KM |
8735 | TI LP8788 MFD DRIVER |
8736 | M: Milo Kim <[email protected]> | |
8737 | S: Maintained | |
8738 | F: drivers/iio/adc/lp8788_adc.c | |
8739 | F: drivers/leds/leds-lp8788.c | |
8740 | F: drivers/mfd/lp8788*.c | |
8741 | F: drivers/power/lp8788-charger.c | |
8742 | F: drivers/regulator/lp8788-*.c | |
8743 | F: include/linux/mfd/lp8788*.h | |
8744 | ||
dd5e8e6b | 8745 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8746 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8747 | L: [email protected] (moderated for non-subscribers) |
8748 | S: Maintained | |
8749 | F: sound/soc/codecs/twl4030* | |
8750 | ||
90921014 | 8751 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
8752 | L: [email protected] |
8753 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8754 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 8756 | S: Orphan |
90921014 LC |
8757 | F: drivers/net/wireless/ti/ |
8758 | F: include/linux/wl12xx.h | |
8759 | ||
e86eaa3a | 8760 | TIPC NETWORK LAYER |
8b58be88 JP |
8761 | M: Jon Maloy <[email protected]> |
8762 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8763 | L: [email protected] (core kernel code) |
8764 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8765 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8766 | S: Maintained |
c117ab84 | 8767 | F: include/uapi/linux/tipc*.h |
679655da | 8768 | F: net/tipc/ |
e86eaa3a | 8769 | |
867e359b CM |
8770 | TILE ARCHITECTURE |
8771 | M: Chris Metcalf <[email protected]> | |
8772 | W: http://www.tilera.com/scm/ | |
8773 | S: Supported | |
8774 | F: arch/tile/ | |
6b940606 | 8775 | F: drivers/char/tile-srom.c |
5c770755 | 8776 | F: drivers/edac/tile_edac.c |
6b940606 CM |
8777 | F: drivers/net/ethernet/tile/ |
8778 | F: drivers/rtc/rtc-tile.c | |
8779 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 8780 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
8781 | F: drivers/usb/host/*-tilegx.c |
8782 | F: include/linux/usb/tilegx.h | |
867e359b | 8783 | |
1da177e4 | 8784 | TLAN NETWORK DRIVER |
8b58be88 | 8785 | M: Samuel Chessman <[email protected]> |
88c07dde | 8786 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8787 | W: http://sourceforge.net/projects/tlan/ |
8788 | S: Maintained | |
679655da | 8789 | F: Documentation/networking/tlan.txt |
b544dbac | 8790 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8791 | |
d74db3b2 | 8792 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8793 | M: Kentaro Takeda <[email protected]> |
8794 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8795 | L: [email protected] (subscribers-only, for developers in English) |
8796 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8797 | L: [email protected] (subscribers-only, for developers in Japanese) |
8798 | L: [email protected] (subscribers-only, for users in Japanese) | |
8799 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8800 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8801 | S: Maintained |
679655da | 8802 | F: security/tomoyo/ |
d74db3b2 | 8803 | |
9caeb532 | 8804 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8805 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8806 | L: [email protected] |
9caeb532 HRK |
8807 | S: Maintained |
8808 | F: drivers/platform/x86/topstar-laptop.c | |
8809 | ||
1da177e4 | 8810 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8811 | L: [email protected] |
15065531 | 8812 | S: Orphan |
679655da | 8813 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8814 | |
8815 | TOSHIBA SMM DRIVER | |
8b58be88 | 8816 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8817 | L: [email protected] |
8818 | W: http://www.buzzard.org.uk/toshiba/ | |
8819 | S: Maintained | |
679655da JP |
8820 | F: drivers/char/toshiba.c |
8821 | F: include/linux/toshiba.h | |
c117ab84 | 8822 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8823 | |
d719f900 | 8824 | TMIO MMC DRIVER |
8b58be88 | 8825 | M: Ian Molton <[email protected]> |
d1057c40 | 8826 | L: [email protected] |
d719f900 | 8827 | S: Maintained |
d1057c40 GL |
8828 | F: drivers/mmc/host/tmio_mmc* |
8829 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8830 | F: include/linux/mmc/tmio.h | |
8831 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8832 | |
917cc4e6 GR |
8833 | TMP401 HARDWARE MONITOR DRIVER |
8834 | M: Guenter Roeck <[email protected]> | |
8835 | L: [email protected] | |
8836 | S: Maintained | |
8837 | F: Documentation/hwmon/tmp401 | |
8838 | F: drivers/hwmon/tmp401.c | |
8839 | ||
98f32602 | 8840 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8841 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8842 | L: [email protected] |
8843 | S: Maintained | |
8844 | F: include/linux/shmem_fs.h | |
8845 | F: mm/shmem.c | |
8846 | ||
45f95b53 | 8847 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8848 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8849 | L: [email protected] |
8850 | W: http://linuxtv.org | |
8851 | T: git git://linuxtv.org/media_tree.git | |
8852 | S: Odd fixes | |
8853 | F: drivers/media/usb/tm6000/ | |
8854 | ||
4e68852d | 8855 | TPM DEVICE DRIVER |
901486b8 | 8856 | M: Peter Huewe <[email protected]> |
383dec1f | 8857 | M: Ashley Lai <[email protected]> |
cbb2d5e4 | 8858 | M: Marcel Selhorst <[email protected]> |
383dec1f | 8859 | W: http://tpmdd.sourceforge.net |
63a10dfd | 8860 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8861 | S: Maintained |
679655da | 8862 | F: drivers/char/tpm/ |
4e68852d | 8863 | |
d6f005a1 JP |
8864 | TRACING |
8865 | M: Steven Rostedt <[email protected]> | |
8866 | M: Frederic Weisbecker <[email protected]> | |
8867 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8869 | S: Maintained |
8870 | F: Documentation/trace/ftrace.txt | |
8871 | F: arch/*/*/*/ftrace.h | |
8872 | F: arch/*/kernel/ftrace.c | |
8873 | F: include/*/ftrace.h | |
8874 | F: include/linux/trace*.h | |
8875 | F: include/trace/ | |
8876 | F: kernel/trace/ | |
8877 | ||
1da177e4 | 8878 | TRIVIAL PATCHES |
8b58be88 | 8879 | M: Jiri Kosina <[email protected]> |
54e5881d | 8880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8881 | S: Maintained |
86ef925f | 8882 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8883 | |
4e68852d | 8884 | TTY LAYER |
879a5a00 | 8885 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8886 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8887 | S: Supported |
08deed1e | 8888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8889 | F: drivers/tty/ |
df621252 | 8890 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8891 | F: include/linux/serial_core.h |
8892 | F: include/linux/serial.h | |
8893 | F: include/linux/tty.h | |
c117ab84 CEB |
8894 | F: include/uapi/linux/serial_core.h |
8895 | F: include/uapi/linux/serial.h | |
8896 | F: include/uapi/linux/tty.h | |
4e68852d | 8897 | |
91952bc0 AP |
8898 | TUA9001 MEDIA DRIVER |
8899 | M: Antti Palosaari <[email protected]> | |
8900 | L: [email protected] | |
8901 | W: http://linuxtv.org/ | |
8902 | W: http://palosaari.fi/linux/ | |
8903 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8904 | T: git git://linuxtv.org/anttip/media_tree.git | |
8905 | S: Maintained | |
8906 | F: drivers/media/tuners/tua9001* | |
8907 | ||
740db6d7 | 8908 | TULIP NETWORK DRIVERS |
8b58be88 | 8909 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8910 | L: [email protected] |
8911 | S: Maintained | |
0f04e2aa | 8912 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8913 | |
8914 | TUN/TAP driver | |
ba57b6f2 | 8915 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8916 | W: http://vtun.sourceforge.net/tun |
8917 | S: Maintained | |
679655da JP |
8918 | F: Documentation/networking/tuntap.txt |
8919 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8920 | |
b454cc66 | 8921 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8922 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8923 | S: Maintained |
679655da JP |
8924 | F: drivers/tc/ |
8925 | F: include/linux/tc.h | |
b454cc66 | 8926 | |
1da177e4 | 8927 | U14-34F SCSI DRIVER |
8b58be88 | 8928 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8929 | L: [email protected] |
8930 | S: Maintained | |
679655da | 8931 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8932 | |
e2d1d6c0 | 8933 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8934 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8935 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8936 | L: [email protected] |
e2966cbe | 8937 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8938 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8939 | S: Maintained | |
679655da JP |
8940 | F: Documentation/filesystems/ubifs.txt |
8941 | F: fs/ubifs/ | |
e2d1d6c0 | 8942 | |
cc2020e6 | 8943 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8944 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8945 | W: http://www.uclinux.org/ |
8946 | L: [email protected] (subscribers-only) | |
8947 | S: Maintained | |
61bc02bb JP |
8948 | F: arch/m68k/*/*_no.* |
8949 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8950 | |
1da177e4 | 8951 | UDF FILESYSTEM |
8b58be88 | 8952 | M: Jan Kara <[email protected]> |
1da177e4 | 8953 | S: Maintained |
679655da JP |
8954 | F: Documentation/filesystems/udf.txt |
8955 | F: fs/udf/ | |
1da177e4 | 8956 | |
cc2020e6 | 8957 | UFS FILESYSTEM |
8b58be88 | 8958 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8959 | S: Maintained |
679655da JP |
8960 | F: Documentation/filesystems/ufs.txt |
8961 | F: fs/ufs/ | |
cc2020e6 | 8962 | |
0a09d3ab DR |
8963 | UHID USERSPACE HID IO DRIVER: |
8964 | M: David Herrmann <[email protected]> | |
8965 | L: [email protected] | |
8966 | S: Maintained | |
8967 | F: drivers/hid/uhid.c | |
c117ab84 | 8968 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8969 | |
18332a80 | 8970 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8971 | L: [email protected] |
10c6c9c9 | 8972 | S: Orphan |
355ffe69 | 8973 | F: drivers/uwb/ |
679655da JP |
8974 | F: include/linux/uwb.h |
8975 | F: include/linux/uwb/ | |
18332a80 | 8976 | |
b31d8273 G |
8977 | UNICORE32 ARCHITECTURE: |
8978 | M: Guan Xuetao <[email protected]> | |
8979 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8980 | S: Maintained | |
8981 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8982 | F: arch/unicore32/ | |
8983 | ||
d8379ab1 TF |
8984 | UNIFDEF |
8985 | M: Tony Finch <[email protected]> | |
8986 | W: http://dotat.at/prog/unifdef | |
8987 | S: Maintained | |
8988 | F: scripts/unifdef.c | |
8989 | ||
1da177e4 | 8990 | UNIFORM CDROM DRIVER |
8b58be88 | 8991 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8992 | W: http://www.kernel.dk |
8993 | S: Maintained | |
679655da JP |
8994 | F: Documentation/cdrom/ |
8995 | F: drivers/cdrom/cdrom.c | |
8996 | F: include/linux/cdrom.h | |
c117ab84 | 8997 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8998 | |
9941fa6e VH |
8999 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9000 | M: Vinayak Holikatti <[email protected]> | |
9001 | M: Santosh Y <[email protected]> | |
9002 | L: [email protected] | |
9003 | S: Supported | |
9004 | F: Documentation/scsi/ufs.txt | |
9005 | F: drivers/scsi/ufs/ | |
9006 | ||
e2d1d6c0 | 9007 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9008 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
9009 | W: http://www.linux-mtd.infradead.org/ |
9010 | L: [email protected] | |
b6b44e0a | 9011 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9012 | S: Maintained |
80811493 | 9013 | F: drivers/mtd/ubi/ |
679655da | 9014 | F: include/linux/mtd/ubi.h |
c117ab84 | 9015 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9016 | |
76ac66e4 RW |
9017 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9018 | M: Richard Weinberger <[email protected]> | |
9019 | L: [email protected] | |
9020 | S: Maintained | |
9021 | F: drivers/mtd/ubi/fastmap.c | |
9022 | ||
1da177e4 | 9023 | USB ACM DRIVER |
61eee9a7 | 9024 | M: Oliver Neukum <[email protected]> |
6372594a | 9025 | L: [email protected] |
1da177e4 | 9026 | S: Maintained |
679655da JP |
9027 | F: Documentation/usb/acm.txt |
9028 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9029 | |
b7d572e1 PF |
9030 | USB AR5523 WIRELESS DRIVER |
9031 | M: Pontus Fuchs <[email protected]> | |
9032 | L: [email protected] | |
9033 | S: Maintained | |
9034 | F: drivers/net/wireless/ath/ar5523/ | |
9035 | ||
115bb1ff MW |
9036 | USB ATTACHED SCSI |
9037 | M: Matthew Wilcox <[email protected]> | |
9038 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 9039 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
9040 | L: [email protected] |
9041 | L: [email protected] | |
8eae0fb7 | 9042 | S: Maintained |
115bb1ff MW |
9043 | F: drivers/usb/storage/uas.c |
9044 | ||
1da177e4 | 9045 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9046 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 9047 | L: [email protected] |
1da177e4 | 9048 | S: Maintained |
679655da | 9049 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9050 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9051 | |
b02b371e | 9052 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9053 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
9054 | L: [email protected] |
9055 | S: Maintained | |
679655da | 9056 | F: drivers/usb/c67x00/ |
b02b371e | 9057 | |
d0374f4f | 9058 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9059 | M: Peter Korsgaard <[email protected]> |
043600a6 | 9060 | L: [email protected] |
d0374f4f PK |
9061 | W: http://www.linux-usb.org/usbnet |
9062 | S: Maintained | |
679655da | 9063 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9064 | |
cc2020e6 | 9065 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9066 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
9067 | L: [email protected] |
9068 | W: http://rio500.sourceforge.net | |
9069 | S: Maintained | |
679655da | 9070 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9071 | |
1da177e4 | 9072 | USB EHCI DRIVER |
578333ab | 9073 | M: Alan Stern <[email protected]> |
795fb7e7 | 9074 | L: [email protected] |
578333ab | 9075 | S: Maintained |
679655da JP |
9076 | F: Documentation/usb/ehci.txt |
9077 | F: drivers/usb/host/ehci* | |
1da177e4 | 9078 | |
69ae9e3e | 9079 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9080 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 9081 | L: [email protected] |
69ae9e3e | 9082 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9084 | S: Maintained | |
679655da JP |
9085 | F: drivers/usb/gadget/ |
9086 | F: include/linux/usb/gadget* | |
69ae9e3e | 9087 | |
2dea64b4 | 9088 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9089 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 9090 | L: [email protected] |
54e5881d | 9091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9092 | S: Maintained |
c2f01971 | 9093 | F: Documentation/hid/hiddev.txt |
679655da | 9094 | F: drivers/hid/usbhid/ |
1da177e4 | 9095 | |
857aab34 | 9096 | USB/IP DRIVERS |
857aab34 | 9097 | L: [email protected] |
3ff4afe8 | 9098 | S: Orphan |
857aab34 | 9099 | F: drivers/staging/usbip/ |
9100 | ||
959eea21 | 9101 | USB ISP116X DRIVER |
8b58be88 | 9102 | M: Olav Kongas <[email protected]> |
795fb7e7 | 9103 | L: [email protected] |
959eea21 | 9104 | S: Maintained |
679655da JP |
9105 | F: drivers/usb/host/isp116x* |
9106 | F: include/linux/usb/isp116x.h | |
959eea21 | 9107 | |
1da177e4 | 9108 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 9109 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 9110 | L: [email protected] |
1da177e4 | 9111 | S: Maintained |
679655da | 9112 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
9113 | |
9114 | USB MASS STORAGE DRIVER | |
8b58be88 | 9115 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 9116 | L: [email protected] |
8836aeb8 | 9117 | L: [email protected] |
1da177e4 LT |
9118 | S: Maintained |
9119 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9120 | F: drivers/usb/storage/ |
1da177e4 | 9121 | |
af39917d CL |
9122 | USB MIDI DRIVER |
9123 | M: Clemens Ladisch <[email protected]> | |
9124 | L: [email protected] (moderated for non-subscribers) | |
9125 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9126 | S: Maintained | |
9127 | F: sound/usb/midi.* | |
9128 | ||
444ce9d4 JP |
9129 | USB NETWORKING DRIVERS |
9130 | L: [email protected] | |
9131 | S: Odd Fixes | |
9132 | F: drivers/net/usb/ | |
9133 | ||
1da177e4 | 9134 | USB OHCI DRIVER |
578333ab | 9135 | M: Alan Stern <[email protected]> |
795fb7e7 | 9136 | L: [email protected] |
578333ab | 9137 | S: Maintained |
679655da JP |
9138 | F: Documentation/usb/ohci.txt |
9139 | F: drivers/usb/host/ohci* | |
1da177e4 | 9140 | |
ba460e48 | 9141 | USB OPTION-CARD DRIVER |
8b58be88 | 9142 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 9143 | L: [email protected] |
ba460e48 | 9144 | S: Maintained |
679655da | 9145 | F: drivers/usb/serial/option.c |
ba460e48 | 9146 | |
1da177e4 | 9147 | USB PEGASUS DRIVER |
a16b945c | 9148 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9149 | L: [email protected] |
043600a6 | 9150 | L: [email protected] |
052e3128 PM |
9151 | T: git git://github.com/petkan/pegasus.git |
9152 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9153 | S: Maintained |
679655da | 9154 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9155 | |
d3ad558f FB |
9156 | USB PHY LAYER |
9157 | M: Felipe Balbi <[email protected]> | |
9158 | L: [email protected] | |
9159 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9160 | S: Maintained | |
9161 | F: drivers/usb/phy/ | |
d3ad558f | 9162 | |
73e4fb3f | 9163 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9164 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 9165 | L: [email protected] |
73e4fb3f | 9166 | S: Supported |
679655da | 9167 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9168 | |
9169 | USB RTL8150 DRIVER | |
a16b945c | 9170 | M: Petko Manolov <[email protected]> |
795fb7e7 | 9171 | L: [email protected] |
043600a6 | 9172 | L: [email protected] |
052e3128 PM |
9173 | T: git git://github.com/petkan/rtl8150.git |
9174 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9175 | S: Maintained |
679655da | 9176 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9177 | |
f896b796 GK |
9178 | USB SERIAL SUBSYSTEM |
9179 | M: Johan Hovold <[email protected]> | |
795fb7e7 | 9180 | L: [email protected] |
4e68852d | 9181 | S: Maintained |
679655da | 9182 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9183 | F: drivers/usb/serial/ |
679655da | 9184 | F: include/linux/usb/serial.h |
1da177e4 | 9185 | |
b3f0db1c SG |
9186 | USB SMSC75XX ETHERNET DRIVER |
9187 | M: Steve Glendinning <[email protected]> | |
9188 | L: [email protected] | |
9189 | S: Maintained | |
9190 | F: drivers/net/usb/smsc75xx.* | |
9191 | ||
2f7ca802 | 9192 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9193 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 9194 | L: [email protected] |
90b24cfb | 9195 | S: Maintained |
679655da | 9196 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9197 | |
f423b9a8 | 9198 | USB SN9C1xx DRIVER |
8b58be88 | 9199 | M: Luca Risolia <[email protected]> |
795fb7e7 | 9200 | L: [email protected] |
661263b5 | 9201 | L: [email protected] |
275ffde4 | 9202 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
9203 | W: http://www.linux-projects.org |
9204 | S: Maintained | |
b8da9d3a | 9205 | F: drivers/staging/media/sn9c102/ |
1da177e4 LT |
9206 | |
9207 | USB SUBSYSTEM | |
879a5a00 | 9208 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 9209 | L: [email protected] |
1da177e4 | 9210 | W: http://www.linux-usb.org |
08deed1e | 9211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9212 | S: Supported |
679655da | 9213 | F: Documentation/usb/ |
679655da JP |
9214 | F: drivers/usb/ |
9215 | F: include/linux/usb.h | |
9216 | F: include/linux/usb/ | |
1da177e4 LT |
9217 | |
9218 | USB UHCI DRIVER | |
8b58be88 | 9219 | M: Alan Stern <[email protected]> |
795fb7e7 | 9220 | L: [email protected] |
1da177e4 | 9221 | S: Maintained |
679655da | 9222 | F: drivers/usb/host/uhci* |
1da177e4 | 9223 | |
69ae9e3e | 9224 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9225 | M: Oliver Neukum <[email protected]> |
043600a6 | 9226 | L: [email protected] |
69ae9e3e | 9227 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9228 | S: Maintained |
679655da JP |
9229 | F: drivers/net/usb/usbnet.c |
9230 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9231 | |
c0efd232 | 9232 | USB VIDEO CLASS |
c53ac071 | 9233 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 9234 | L: [email protected] (subscribers-only) |
661263b5 | 9235 | L: [email protected] |
275ffde4 | 9236 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9237 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9238 | S: Maintained |
0c0d06ca | 9239 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9240 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9241 | |
b60b9c45 HV |
9242 | USB VISION DRIVER |
9243 | M: Hans Verkuil <[email protected]> | |
9244 | L: [email protected] | |
9245 | T: git git://linuxtv.org/media_tree.git | |
9246 | W: http://linuxtv.org | |
9247 | S: Odd Fixes | |
9248 | F: drivers/media/usb/usbvision/ | |
9249 | ||
8282da47 LP |
9250 | USB WEBCAM GADGET |
9251 | M: Laurent Pinchart <[email protected]> | |
9252 | L: [email protected] | |
9253 | S: Maintained | |
9254 | F: drivers/usb/gadget/*uvc*.c | |
9255 | F: drivers/usb/gadget/webcam.c | |
9256 | ||
bf164cc0 | 9257 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9258 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
9259 | L: [email protected] |
9260 | S: Maintained | |
679655da | 9261 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9262 | |
eb6bab13 | 9263 | USB XHCI DRIVER |
36d0344c | 9264 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
9265 | L: [email protected] |
9266 | S: Supported | |
36d0344c SS |
9267 | F: drivers/usb/host/xhci* |
9268 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9269 | |
1da177e4 | 9270 | USB ZD1201 DRIVER |
4086b9ca | 9271 | L: [email protected] |
1da177e4 | 9272 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9273 | S: Orphan |
679655da | 9274 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9275 | |
b7eee616 | 9276 | USB ZR364XX DRIVER |
8b58be88 | 9277 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 9278 | L: [email protected] |
661263b5 | 9279 | L: [email protected] |
275ffde4 | 9280 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9281 | W: http://royale.zerezo.com/zr364xx/ |
9282 | S: Maintained | |
679655da | 9283 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9284 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9285 | |
e7839f25 | 9286 | USER-MODE LINUX (UML) |
8b58be88 | 9287 | M: Jeff Dike <[email protected]> |
b15194b7 | 9288 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
9289 | L: [email protected] |
9290 | L: [email protected] | |
9291 | W: http://user-mode-linux.sourceforge.net | |
9292 | S: Maintained | |
61516587 | 9293 | F: Documentation/virtual/uml/ |
679655da | 9294 | F: arch/um/ |
b070989a | 9295 | F: arch/x86/um/ |
679655da JP |
9296 | F: fs/hostfs/ |
9297 | F: fs/hppfs/ | |
b7eee616 | 9298 | |
e5f114e9 | 9299 | USERSPACE I/O (UIO) |
6a534c9d | 9300 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 9301 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 9302 | S: Maintained |
679655da JP |
9303 | F: Documentation/DocBook/uio-howto.tmpl |
9304 | F: drivers/uio/ | |
9305 | F: include/linux/uio*.h | |
e5f114e9 | 9306 | |
256cccbe | 9307 | UTIL-LINUX PACKAGE |
8b58be88 | 9308 | M: Karel Zak <[email protected]> |
256cccbe KZ |
9309 | L: [email protected] |
9310 | W: http://en.wikipedia.org/wiki/Util-linux | |
9311 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9312 | S: Maintained |
9313 | ||
c1fd1c07 | 9314 | UVESAFB DRIVER |
8b58be88 | 9315 | M: Michal Januszewski <[email protected]> |
c69f677c | 9316 | L: [email protected] |
c1fd1c07 MJ |
9317 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9318 | S: Maintained | |
679655da JP |
9319 | F: Documentation/fb/uvesafb.txt |
9320 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9321 | |
4480f15b | 9322 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9323 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 9324 | S: Maintained |
679655da JP |
9325 | F: Documentation/filesystems/vfat.txt |
9326 | F: fs/fat/ | |
1da177e4 | 9327 | |
cba3345c AW |
9328 | VFIO DRIVER |
9329 | M: Alex Williamson <[email protected]> | |
9330 | L: [email protected] | |
9331 | S: Maintained | |
9332 | F: Documentation/vfio.txt | |
9333 | F: drivers/vfio/ | |
9334 | F: include/linux/vfio.h | |
c117ab84 | 9335 | F: include/uapi/linux/vfio.h |
cba3345c | 9336 | |
9e6f3438 PO |
9337 | VIDEOBUF2 FRAMEWORK |
9338 | M: Pawel Osciak <[email protected]> | |
9339 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 9340 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
9341 | L: [email protected] |
9342 | S: Maintained | |
90d72ac6 | 9343 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9344 | F: include/media/videobuf2-* |
9345 | ||
9a82446b AS |
9346 | VIRTIO CONSOLE DRIVER |
9347 | M: Amit Shah <[email protected]> | |
a02bbb1c | 9348 | L: [email protected] |
9a82446b AS |
9349 | L: [email protected] |
9350 | S: Maintained | |
9351 | F: drivers/char/virtio_console.c | |
9352 | F: include/linux/virtio_console.h | |
c117ab84 | 9353 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9354 | |
2426ec8f MT |
9355 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9356 | M: Rusty Russell <[email protected]> | |
9357 | M: "Michael S. Tsirkin" <[email protected]> | |
a02bbb1c | 9358 | L: [email protected] |
2426ec8f MT |
9359 | L: [email protected] |
9360 | S: Maintained | |
9361 | F: drivers/virtio/ | |
c893c8d7 | 9362 | F: tools/virtio/ |
2426ec8f MT |
9363 | F: drivers/net/virtio_net.c |
9364 | F: drivers/block/virtio_blk.c | |
9365 | F: include/linux/virtio_*.h | |
916cdabc | 9366 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9367 | |
3a4d5c94 MT |
9368 | VIRTIO HOST (VHOST) |
9369 | M: "Michael S. Tsirkin" <[email protected]> | |
9370 | L: [email protected] | |
a02bbb1c | 9371 | L: [email protected] |
c996d8b9 | 9372 | L: [email protected] |
3a4d5c94 MT |
9373 | L: [email protected] |
9374 | S: Maintained | |
9375 | F: drivers/vhost/ | |
c117ab84 | 9376 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9377 | |
1da177e4 | 9378 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9379 | M: Roger Luethi <[email protected]> |
1da177e4 | 9380 | S: Maintained |
f2148a47 | 9381 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9382 | |
f0bf7f61 | 9383 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9384 | M: Bruce Chang <[email protected]> |
8b58be88 | 9385 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
9386 | S: Maintained |
9387 | F: drivers/mmc/host/via-sdmmc.c | |
9388 | ||
69e4a7c2 | 9389 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9390 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 9391 | L: [email protected] |
69e4a7c2 | 9392 | S: Maintained |
c7babebd FTS |
9393 | F: include/linux/via-core.h |
9394 | F: include/linux/via-gpio.h | |
9395 | F: include/linux/via_i2c.h | |
679655da | 9396 | F: drivers/video/via/ |
69e4a7c2 | 9397 | |
01f20734 | 9398 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9399 | M: Francois Romieu <[email protected]> |
01f20734 FR |
9400 | L: [email protected] |
9401 | S: Maintained | |
f2148a47 | 9402 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9403 | |
0b7bc1fa HV |
9404 | VIVI VIRTUAL VIDEO DRIVER |
9405 | M: Hans Verkuil <[email protected]> | |
9406 | L: [email protected] | |
9407 | T: git git://linuxtv.org/media_tree.git | |
9408 | W: http://linuxtv.org | |
9409 | S: Maintained | |
9410 | F: drivers/media/platform/vivi* | |
9411 | ||
be7f8273 | 9412 | VLAN (802.1Q) |
8b58be88 | 9413 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9414 | L: [email protected] |
9415 | S: Maintained | |
679655da JP |
9416 | F: drivers/net/macvlan.c |
9417 | F: include/linux/if_*vlan.h | |
9418 | F: net/8021q/ | |
be7f8273 | 9419 | |
55e331cf | 9420 | VLYNQ BUS |
8b58be88 | 9421 | M: Florian Fainelli <[email protected]> |
8578d7af | 9422 | L: [email protected] (subscribers-only) |
55e331cf FF |
9423 | S: Maintained |
9424 | F: drivers/vlynq/vlynq.c | |
9425 | F: include/linux/vlynq.h | |
9426 | ||
390beae4 MW |
9427 | VME SUBSYSTEM |
9428 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9429 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9430 | M: Greg Kroah-Hartman <[email protected]> |
9431 | L: [email protected] | |
9432 | S: Maintained | |
9433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9434 | F: Documentation/vme_api.txt | |
9435 | F: drivers/staging/vme/ | |
9436 | F: drivers/vme/ | |
9437 | F: include/linux/vme* | |
9438 | ||
4488e09b AK |
9439 | VMWARE HYPERVISOR INTERFACE |
9440 | M: Alok Kataria <[email protected]> | |
9441 | L: [email protected] | |
9442 | S: Supported | |
9443 | F: arch/x86/kernel/cpu/vmware.c | |
9444 | ||
d1a890fa | 9445 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9446 | M: Shreyas Bhatewara <[email protected]> |
9447 | M: "VMware, Inc." <[email protected]> | |
9448 | L: [email protected] | |
9449 | S: Maintained | |
9450 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9451 | |
851b1642 | 9452 | VMware PVSCSI driver |
f2d7e40e | 9453 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9454 | M: VMware PV-Drivers <[email protected]> |
9455 | L: [email protected] | |
9456 | S: Maintained | |
9457 | F: drivers/scsi/vmw_pvscsi.c | |
9458 | F: drivers/scsi/vmw_pvscsi.h | |
9459 | ||
e53e86c7 | 9460 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9461 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9462 | M: Mark Brown <[email protected]> |
e53e86c7 | 9463 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9464 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9466 | S: Supported |
679655da JP |
9467 | F: drivers/regulator/ |
9468 | F: include/linux/regulator/ | |
e53e86c7 | 9469 | |
ab41319e | 9470 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9471 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9472 | L: [email protected] |
9473 | S: Maintained | |
679655da JP |
9474 | F: Documentation/hwmon/vt1211 |
9475 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9476 | |
1de9e371 | 9477 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9478 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9479 | L: [email protected] |
9480 | S: Maintained | |
679655da | 9481 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9482 | |
88095e7b TO |
9483 | VUB300 USB to SDIO/SD/MMC bridge chip |
9484 | M: Tony Olech <[email protected]> | |
9485 | L: [email protected] | |
9486 | L: [email protected] | |
9487 | S: Supported | |
9488 | F: drivers/mmc/host/vub300.c | |
9489 | ||
1da177e4 | 9490 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9491 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9492 | S: Maintained |
679655da JP |
9493 | F: Documentation/w1/ |
9494 | F: drivers/w1/ | |
1da177e4 | 9495 | |
13927079 | 9496 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9497 | M: Marc Hulsman <[email protected]> |
13927079 | 9498 | L: [email protected] |
25845c22 | 9499 | S: Maintained |
679655da JP |
9500 | F: Documentation/hwmon/w83791d |
9501 | F: drivers/hwmon/w83791d.c | |
13927079 | 9502 | |
61db011d | 9503 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9504 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9505 | L: [email protected] |
9506 | S: Maintained | |
679655da JP |
9507 | F: Documentation/hwmon/w83793 |
9508 | F: drivers/hwmon/w83793.c | |
61db011d | 9509 | |
e3760b43 | 9510 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 9511 | M: Jean Delvare <[email protected]> |
e3760b43 JD |
9512 | L: [email protected] |
9513 | S: Maintained | |
9514 | F: drivers/hwmon/w83795.c | |
9515 | ||
1da177e4 | 9516 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9517 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9518 | S: Maintained |
679655da | 9519 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9520 | |
3527761c | 9521 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9522 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9523 | L: [email protected] |
9524 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9525 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9526 | S: Maintained |
679655da JP |
9527 | F: Documentation/watchdog/ |
9528 | F: drivers/watchdog/ | |
9529 | F: include/linux/watchdog.h | |
c117ab84 | 9530 | F: include/uapi/linux/watchdog.h |
3527761c | 9531 | |
1da177e4 | 9532 | WD7000 SCSI DRIVER |
8b58be88 | 9533 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9534 | L: [email protected] |
9535 | S: Maintained | |
679655da | 9536 | F: drivers/scsi/wd7000.c |
1da177e4 | 9537 | |
b22e00f3 DR |
9538 | WIIMOTE HID DRIVER |
9539 | M: David Herrmann <[email protected]> | |
9540 | L: [email protected] | |
9541 | S: Maintained | |
9542 | F: drivers/hid/hid-wiimote* | |
9543 | ||
e258b80e | 9544 | WINBOND CIR DRIVER |
364e9e18 | 9545 | M: David Härdeman <[email protected]> |
e258b80e | 9546 | S: Maintained |
116ab806 | 9547 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9548 | |
8a70da82 | 9549 | WIMAX STACK |
8b58be88 | 9550 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9551 | M: [email protected] |
9552 | L: [email protected] | |
9553 | S: Supported | |
9554 | W: http://linuxwimax.org | |
315987dc | 9555 | F: Documentation/wimax/README.wimax |
315987dc JP |
9556 | F: include/linux/wimax/debug.h |
9557 | F: include/net/wimax.h | |
c117ab84 | 9558 | F: include/uapi/linux/wimax.h |
315987dc | 9559 | F: net/wimax/ |
8a70da82 | 9560 | |
5fc14680 | 9561 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9562 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9563 | S: Maintained |
679655da | 9564 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9565 | |
1da177e4 | 9566 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9567 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9568 | L: [email protected] |
926554c4 | 9569 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9570 | S: Maintained |
679655da | 9571 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9572 | |
febf1dff | 9573 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9574 | M: Mark Brown <[email protected]> |
8b58be88 | 9575 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9576 | L: [email protected] |
9577 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9578 | W: http://opensource.wolfsonmicro.com/node/7 | |
9579 | S: Supported | |
679655da JP |
9580 | F: drivers/input/touchscreen/*wm97* |
9581 | F: include/linux/wm97xx.h | |
febf1dff | 9582 | |
055bcbcb | 9583 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9584 | L: [email protected] |
cf8eda3e | 9585 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9586 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9587 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9588 | S: Supported |
3768f0b1 | 9589 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9590 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9591 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9592 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9593 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9594 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9595 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9596 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9597 | F: drivers/input/misc/wm831x-on.c |
9598 | F: drivers/input/touchscreen/wm831x-ts.c | |
9599 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9600 | F: drivers/mfd/arizona* |
9601 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9602 | F: drivers/power/wm83*.c |
9603 | F: drivers/rtc/rtc-wm83*.c | |
9604 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9605 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9606 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9607 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9608 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9609 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9610 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9611 | F: include/linux/wm97xx.h |
055bcbcb | 9612 | F: include/sound/wm????.h |
9c309598 | 9613 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9614 | F: sound/soc/codecs/wm* |
b75ea16a | 9615 | |
3e6cd7a4 TH |
9616 | WORKQUEUE |
9617 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9618 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9619 | S: Maintained | |
9620 | F: include/linux/workqueue.h | |
9621 | F: kernel/workqueue.c | |
9622 | F: Documentation/workqueue.txt | |
9623 | ||
1da177e4 | 9624 | X.25 NETWORK LAYER |
8bf28059 | 9625 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9626 | L: [email protected] |
8bf28059 | 9627 | S: Odd Fixes |
679655da JP |
9628 | F: Documentation/networking/x25* |
9629 | F: include/net/x25* | |
9630 | F: net/x25/ | |
1da177e4 | 9631 | |
e2d1d6c0 | 9632 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9633 | M: Thomas Gleixner <[email protected]> |
9634 | M: Ingo Molnar <[email protected]> | |
9635 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9636 | M: [email protected] |
981c3a4f | 9637 | L: [email protected] |
75fc2d37 | 9638 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9639 | S: Maintained |
679655da JP |
9640 | F: Documentation/x86/ |
9641 | F: arch/x86/ | |
e2d1d6c0 | 9642 | |
d0944853 | 9643 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9644 | M: Matthew Garrett <[email protected]> |
d0944853 | 9645 | L: [email protected] |
28b8e8d4 | 9646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9647 | S: Maintained |
14430813 | 9648 | F: drivers/platform/x86/ |
d0944853 | 9649 | |
c1f5c54b IM |
9650 | X86 MCE INFRASTRUCTURE |
9651 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9652 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9653 | L: [email protected] |
9654 | S: Maintained | |
9655 | F: arch/x86/kernel/cpu/mcheck/* | |
9656 | ||
d6fad502 | 9657 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9658 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9659 | L: [email protected] |
9660 | W: http://linuxtv.org | |
9661 | T: git git://linuxtv.org/media_tree.git | |
9662 | S: Maintained | |
9663 | F: drivers/media/tuners/tuner-xc2028.* | |
9664 | ||
c4468085 | 9665 | XEN HYPERVISOR INTERFACE |
c4468085 | 9666 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
9667 | M: Boris Ostrovsky <[email protected]> |
9668 | M: David Vrabel <[email protected]> | |
11dbb52b | 9669 | L: [email protected] (moderated for non-subscribers) |
ea70ba3a | 9670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
9671 | S: Supported |
9672 | F: arch/x86/xen/ | |
9673 | F: drivers/*/xen-*front.c | |
9674 | F: drivers/xen/ | |
9675 | F: arch/x86/include/asm/xen/ | |
9676 | F: include/xen/ | |
c117ab84 | 9677 | F: include/uapi/xen/ |
c4468085 | 9678 | |
77bfb479 SS |
9679 | XEN HYPERVISOR ARM |
9680 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9681 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
9682 | S: Supported |
9683 | F: arch/arm/xen/ | |
9684 | F: arch/arm/include/asm/xen/ | |
9685 | ||
b475e83f SS |
9686 | XEN HYPERVISOR ARM64 |
9687 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9688 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
9689 | S: Supported |
9690 | F: arch/arm64/xen/ | |
9691 | F: arch/arm64/include/asm/xen/ | |
9692 | ||
9b57e1a7 IC |
9693 | XEN NETWORK BACKEND DRIVER |
9694 | M: Ian Campbell <[email protected]> | |
8386040b | 9695 | M: Wei Liu <[email protected]> |
11dbb52b | 9696 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
9697 | L: [email protected] |
9698 | S: Supported | |
9699 | F: drivers/net/xen-netback/* | |
9700 | ||
c5f8e29d KRW |
9701 | XEN PCI SUBSYSTEM |
9702 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9703 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9704 | S: Supported |
9705 | F: arch/x86/pci/*xen* | |
9706 | F: drivers/pci/*xen* | |
9707 | ||
9708 | XEN SWIOTLB SUBSYSTEM | |
9709 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9710 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9711 | S: Supported |
9712 | F: arch/x86/xen/*swiotlb* | |
9713 | F: drivers/xen/*swiotlb* | |
9714 | ||
1da177e4 LT |
9715 | XFS FILESYSTEM |
9716 | P: Silicon Graphics Inc | |
809625ca | 9717 | M: Dave Chinner <[email protected]> |
c8891329 | 9718 | M: Ben Myers <[email protected]> |
18caa67a | 9719 | M: [email protected] |
d7ede1aa | 9720 | L: [email protected] |
1da177e4 | 9721 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9722 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9723 | S: Supported |
679655da JP |
9724 | F: Documentation/filesystems/xfs.txt |
9725 | F: fs/xfs/ | |
1da177e4 | 9726 | |
8a3b7a25 | 9727 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9728 | M: Anirudha Sarangi <[email protected]> |
9729 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9730 | S: Maintained |
9731 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9732 | ||
c9d3d8ec | 9733 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9734 | S: Orphan |
679655da | 9735 | F: drivers/block/xsysace.c |
c9d3d8ec | 9736 | |
238b8721 | 9737 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9738 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9739 | L: [email protected] |
9740 | S: Maintained | |
df621252 | 9741 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9742 | |
1da177e4 | 9743 | YAM DRIVER FOR AX.25 |
8b58be88 | 9744 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9745 | L: [email protected] |
9746 | S: Maintained | |
679655da JP |
9747 | F: drivers/net/hamradio/yam* |
9748 | F: include/linux/yam.h | |
1da177e4 | 9749 | |
af64a5eb | 9750 | YEALINK PHONE DRIVER |
8b58be88 | 9751 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9752 | L: [email protected] |
9753 | S: Maintained | |
679655da JP |
9754 | F: Documentation/input/yealink.txt |
9755 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9756 | |
1da177e4 | 9757 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9758 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9759 | W: http://yaina.de/jreuter/ |
9760 | W: http://www.qsl.net/dl1bke/ | |
9761 | L: [email protected] | |
9762 | S: Maintained | |
679655da JP |
9763 | F: Documentation/networking/z8530drv.txt |
9764 | F: drivers/net/hamradio/*scc.c | |
9765 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9766 | |
0cf31ec1 SJ |
9767 | ZBUD COMPRESSED PAGE ALLOCATOR |
9768 | M: Seth Jennings <[email protected]> | |
9769 | L: [email protected] | |
9770 | S: Maintained | |
9771 | F: mm/zbud.c | |
9772 | F: include/linux/zbud.h | |
9773 | ||
7c0c3afb | 9774 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9775 | M: Daniel Drake <[email protected]> |
9776 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9777 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9778 | L: [email protected] |
7c0c3afb DD |
9779 | L: [email protected] (subscribers-only) |
9780 | S: Maintained | |
679655da | 9781 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9782 | |
1da177e4 | 9783 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9784 | L: [email protected] |
f63145e2 | 9785 | L: [email protected] |
1da177e4 | 9786 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9787 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9788 | S: Odd Fixes | |
90d72ac6 | 9789 | F: drivers/media/pci/zoran/ |
1da177e4 | 9790 | |
6920f2cc MK |
9791 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
9792 | M: Minchan Kim <[email protected]> | |
9793 | M: Nitin Gupta <[email protected]> | |
9794 | L: [email protected] | |
9795 | S: Maintained | |
9796 | F: drivers/block/zram/ | |
9797 | F: Documentation/blockdev/zram.txt | |
9798 | ||
8b4a4080 | 9799 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9800 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9801 | S: Maintained |
df621252 | 9802 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9803 | |
eae70d06 MK |
9804 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
9805 | M: Minchan Kim <[email protected]> | |
9806 | M: Nitin Gupta <[email protected]> | |
9807 | L: [email protected] | |
9808 | S: Maintained | |
9809 | F: mm/zsmalloc.c | |
9810 | F: include/linux/zsmalloc.h | |
9811 | ||
0cf31ec1 SJ |
9812 | ZSWAP COMPRESSED SWAP CACHING |
9813 | M: Seth Jennings <[email protected]> | |
9814 | L: [email protected] | |
9815 | S: Maintained | |
9816 | F: mm/zswap.c | |
9817 | ||
1da177e4 | 9818 | THE REST |
8b58be88 | 9819 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9820 | L: [email protected] |
8a6e2535 | 9821 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9823 | S: Buried alive in reporters |
34d03cc1 JP |
9824 | F: * |
9825 | F: */ |