]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
37 | (scripts/checkpatch.pl) to catch trival style violations. | |
38 | See Documentation/CodingStyle for guidance here. | |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's | |
56 | Certificate of Origin" (DCO) is listed in the file | |
57 | Documentation/SubmittingPatches. | |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: [email protected], especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
73 | L: Mailing list that is relevant to this area | |
74 | W: Web-page with status/info | |
8a6e2535 | 75 | Q: Patchwork web based patch tracking system site |
b153da60 | 76 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit. |
c7c4fb18 JP |
77 | S: Status, one of the following: |
78 | Supported: Someone is actually paid to look after this. | |
79 | Maintained: Someone actually looks after it. | |
80 | Odd Fixes: It has a maintainer but they don't have time to do | |
81 | much other than throw the odd patch in. See below.. | |
82 | Orphan: No current maintainer [but maybe you could take the | |
83 | role as you write your new code]. | |
84 | Obsolete: Old code. Something tagged obsolete generally means | |
85 | it has been replaced by a better system and you | |
86 | should be using that. | |
87 | F: Files and directories with wildcard patterns. | |
88 | A trailing slash includes all files and subdirectory files. | |
89 | F: drivers/net/ all files in and below drivers/net | |
90 | F: drivers/net/* all files in drivers/net, but not below | |
91 | F: */net/* all files in "any top level directory"/net | |
92 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
93 | N: Files and directories with regex patterns. |
94 | N: [^a-z]tegra all files whose path contains the word tegra | |
95 | One pattern per line. Multiple N: lines acceptable. | |
c7c4fb18 JP |
96 | X: Files and directories that are NOT maintained, same rules as F: |
97 | Files exclusions are tested before file matches. | |
98 | Can be useful for excluding a specific subdirectory, for instance: | |
99 | F: net/ | |
100 | X: net/ipv6/ | |
101 | matches all files in and below net excluding net/ipv6/ | |
102 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 103 | patch or file. For instance: |
c7c4fb18 | 104 | K: of_get_profile |
bbbe96ed | 105 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 106 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
107 | matches patches or files that contain one or more of the words |
108 | printk, pr_info or pr_err | |
c7c4fb18 | 109 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
110 | |
111 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
112 | order. If you could add yourselves to it in alphabetical order that would be | |
113 | so much easier [Ed] | |
114 | ||
c7c4fb18 | 115 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 116 | |
c7c4fb18 | 117 | ----------------------------------- |
679655da | 118 | |
a6d89915 | 119 | 3C59X NETWORK DRIVER |
8b58be88 | 120 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
121 | L: [email protected] |
122 | S: Maintained | |
679655da | 123 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 124 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 125 | |
1da177e4 | 126 | 3CR990 NETWORK DRIVER |
8b58be88 | 127 | M: David Dillow <[email protected]> |
979b6c13 | 128 | L: [email protected] |
1da177e4 | 129 | S: Maintained |
ca7a8e85 | 130 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 131 | |
c4de0ceb AR |
132 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
133 | M: Adam Radford <[email protected]> | |
1da177e4 | 134 | L: [email protected] |
c4de0ceb | 135 | W: http://www.lsi.com |
1da177e4 | 136 | S: Supported |
c4de0ceb | 137 | F: drivers/scsi/3w-* |
1da177e4 LT |
138 | |
139 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 140 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
141 | L: [email protected] |
142 | S: Maintained | |
679655da | 143 | F: drivers/scsi/53c700* |
1da177e4 LT |
144 | |
145 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 146 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
147 | L: [email protected] |
148 | S: Maintained | |
679655da | 149 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 150 | |
1da177e4 | 151 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 152 | M: Realtek linux nic maintainers <[email protected]> |
8b58be88 | 153 | M: Francois Romieu <[email protected]> |
979b6c13 | 154 | L: [email protected] |
1da177e4 | 155 | S: Maintained |
a8fe65b8 | 156 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
157 | |
158 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 159 | M: Greg Kroah-Hartman <[email protected]> |
1da177e4 LT |
160 | L: [email protected] |
161 | W: http://serial.sourceforge.net | |
8ee16a1b | 162 | S: Maintained |
08deed1e | 163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 164 | F: drivers/tty/serial/8250* |
679655da | 165 | F: include/linux/serial_8250.h |
1da177e4 LT |
166 | |
167 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 168 | L: [email protected] |
0cf445ce | 169 | S: Orphan / Obsolete |
644570b8 | 170 | F: drivers/net/ethernet/8390/ |
1da177e4 | 171 | |
67543e50 | 172 | 9P FILE SYSTEM |
8b58be88 JP |
173 | M: Eric Van Hensbergen <[email protected]> |
174 | M: Ron Minnich <[email protected]> | |
175 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 176 | L: [email protected] |
27a2a5ff | 177 | W: http://swik.net/v9fs |
8a6e2535 | 178 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 180 | S: Maintained |
679655da JP |
181 | F: Documentation/filesystems/9p.txt |
182 | F: fs/9p/ | |
2315cb14 RL |
183 | F: net/9p/ |
184 | F: include/net/9p/ | |
185 | F: include/uapi/linux/virtio_9p.h | |
186 | F: include/trace/events/9p.h | |
187 | ||
67543e50 | 188 | |
91952bc0 AP |
189 | A8293 MEDIA DRIVER |
190 | M: Antti Palosaari <[email protected]> | |
191 | L: [email protected] | |
192 | W: http://linuxtv.org/ | |
193 | W: http://palosaari.fi/linux/ | |
194 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
195 | T: git git://linuxtv.org/anttip/media_tree.git | |
196 | S: Maintained | |
197 | F: drivers/media/dvb-frontends/a8293* | |
198 | ||
e2d1d6c0 | 199 | AACRAID SCSI RAID DRIVER |
8b58be88 | 200 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
201 | L: [email protected] |
202 | W: http://www.adaptec.com/ | |
1da177e4 | 203 | S: Supported |
679655da JP |
204 | F: Documentation/scsi/aacraid.txt |
205 | F: drivers/scsi/aacraid/ | |
1da177e4 | 206 | |
249e3c85 | 207 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 208 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
209 | L: [email protected] |
210 | S: Maintained | |
679655da | 211 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 212 | |
249e3c85 | 213 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 214 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
215 | L: [email protected] |
216 | S: Maintained | |
679655da | 217 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 218 | |
1da177e4 | 219 | ACENIC DRIVER |
8b58be88 | 220 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
221 | L: [email protected] |
222 | S: Maintained | |
531c4f89 | 223 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 224 | |
e86435eb | 225 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 226 | M: Peter Feuerer <[email protected]> |
d0944853 | 227 | L: [email protected] |
4fc26e36 JP |
228 | W: http://piie.net/?section=acerhdf |
229 | S: Maintained | |
230 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 231 | |
745a5d21 | 232 | ACER WMI LAPTOP EXTRAS |
182ae55c | 233 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 234 | L: [email protected] |
745a5d21 | 235 | S: Maintained |
679655da | 236 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 237 | |
1da177e4 | 238 | ACPI |
8b58be88 | 239 | M: Len Brown <[email protected]> |
49db1903 | 240 | M: Rafael J. Wysocki <[email protected]> |
6968e50c | 241 | L: [email protected] |
360818b8 RW |
242 | W: https://01.org/linux-acpi |
243 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 245 | S: Supported |
679655da JP |
246 | F: drivers/acpi/ |
247 | F: drivers/pnp/pnpacpi/ | |
248 | F: include/linux/acpi.h | |
43368e74 | 249 | F: include/acpi/ |
994b942f | 250 | F: Documentation/acpi |
89ca78a0 | 251 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
252 | F: drivers/pci/*acpi* |
253 | F: drivers/pci/*/*acpi* | |
254 | F: drivers/pci/*/*/*acpi* | |
8b59a454 | 255 | |
3774929d RW |
256 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
257 | M: Robert Moore <[email protected]> | |
258 | M: Lv Zheng <[email protected]> | |
259 | M: Rafael J. Wysocki <[email protected]> | |
260 | L: [email protected] | |
261 | L: [email protected] | |
262 | W: https://acpica.org/ | |
263 | W: https://github.com/acpica/acpica/ | |
264 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
266 | S: Supported | |
267 | F: drivers/acpi/acpica/ | |
268 | F: include/acpi/ | |
269 | ||
8b59a454 | 270 | ACPI FAN DRIVER |
8b58be88 | 271 | M: Zhang Rui <[email protected]> |
8b59a454 | 272 | L: [email protected] |
5ca92bd9 | 273 | W: https://01.org/linux-acpi |
8b59a454 | 274 | S: Supported |
679655da | 275 | F: drivers/acpi/fan.c |
1da177e4 | 276 | |
8b59a454 | 277 | ACPI THERMAL 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/*thermal* |
998be20f | 283 | |
359acec8 | 284 | ACPI VIDEO 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/video.c |
998be20f | 290 | |
bff431e4 | 291 | ACPI WMI DRIVER |
d0944853 | 292 | L: [email protected] |
5b927259 | 293 | S: Orphan |
679655da | 294 | F: drivers/platform/x86/wmi.c |
bff431e4 | 295 | |
2f39d519 | 296 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 297 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
298 | W: http://wiki.parisc-linux.org/AD1889 |
299 | L: [email protected] | |
300 | S: Maintained | |
679655da | 301 | F: sound/pci/ad1889.* |
2f39d519 | 302 | |
527a1a83 MH |
303 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
304 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 305 | L: [email protected] |
a3f531ac | 306 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
307 | S: Supported |
308 | F: drivers/misc/ad525x_dpot.c | |
309 | ||
310 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
311 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 312 | L: [email protected] |
a3f531ac | 313 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/regulator/ad5398.c | |
316 | ||
317 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
318 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 319 | L: [email protected] |
a3f531ac | 320 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
321 | S: Supported |
322 | F: drivers/input/misc/ad714x.c | |
323 | ||
324 | AD7877 TOUCHSCREEN DRIVER | |
325 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 326 | L: [email protected] |
a3f531ac | 327 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
328 | S: Supported |
329 | F: drivers/input/touchscreen/ad7877.c | |
330 | ||
331 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
332 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 333 | L: [email protected] |
a3f531ac | 334 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
335 | S: Supported |
336 | F: drivers/input/touchscreen/ad7879.c | |
337 | ||
1330b0dc JK |
338 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
339 | M: Jiri Kosina <[email protected]> | |
340 | S: Maintained | |
341 | ||
1da177e4 | 342 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 343 | M: Jean Delvare <[email protected]> |
cc0b07ed | 344 | L: [email protected] |
1da177e4 | 345 | S: Maintained |
679655da JP |
346 | F: Documentation/hwmon/adm1025 |
347 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 348 | |
cae2caae | 349 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 350 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
351 | L: [email protected] |
352 | S: Maintained | |
679655da | 353 | F: drivers/hwmon/adm1029.c |
cae2caae | 354 | |
cc0b88cf | 355 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 356 | L: [email protected] |
491b26b4 | 357 | W: http://wireless.kernel.org/ |
e71bcbd0 | 358 | S: Orphan |
679655da | 359 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 360 | |
e8e31622 SA |
361 | ADP1653 FLASH CONTROLLER DRIVER |
362 | M: Sakari Ailus <[email protected]> | |
363 | L: [email protected] | |
364 | S: Maintained | |
365 | F: drivers/media/i2c/adp1653.c | |
366 | F: include/media/adp1653.h | |
367 | ||
527a1a83 MH |
368 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
369 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 370 | L: [email protected] |
a3f531ac | 371 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
372 | S: Supported |
373 | F: drivers/mfd/adp5520.c | |
374 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 375 | F: drivers/leds/leds-adp5520.c |
77278d50 | 376 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
377 | F: drivers/input/keyboard/adp5520-keys.c |
378 | ||
379 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
380 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 381 | L: [email protected] |
a3f531ac | 382 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
383 | S: Supported |
384 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 385 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
386 | |
387 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
388 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 389 | L: [email protected] |
a3f531ac | 390 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
391 | S: Supported |
392 | F: drivers/video/backlight/adp8860_bl.c | |
393 | ||
8c22a8f5 DE |
394 | ADS1015 HARDWARE MONITOR DRIVER |
395 | M: Dirk Eibach <[email protected]> | |
396 | L: [email protected] | |
397 | S: Maintained | |
398 | F: Documentation/hwmon/ads1015 | |
399 | F: drivers/hwmon/ads1015.c | |
400 | F: include/linux/i2c/ads1015.h | |
401 | ||
1da177e4 | 402 | ADT746X FAN DRIVER |
8b58be88 | 403 | M: Colin Leroy <[email protected]> |
1da177e4 | 404 | S: Maintained |
679655da | 405 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 406 | |
b058b859 JD |
407 | ADT7475 HARDWARE MONITOR DRIVER |
408 | M: Jean Delvare <[email protected]> | |
409 | L: [email protected] | |
410 | S: Maintained | |
411 | F: Documentation/hwmon/adt7475 | |
412 | F: drivers/hwmon/adt7475.c | |
413 | ||
527a1a83 MH |
414 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
415 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 416 | L: [email protected] |
a3f531ac | 417 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
418 | S: Supported |
419 | F: drivers/input/misc/adxl34x.c | |
420 | ||
8c6af9e1 | 421 | ADVANSYS SCSI DRIVER |
8b58be88 | 422 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
423 | L: [email protected] |
424 | S: Maintained | |
679655da JP |
425 | F: Documentation/scsi/advansys.txt |
426 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 427 | |
1da177e4 | 428 | AEDSP16 DRIVER |
8b58be88 | 429 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 430 | S: Maintained |
679655da | 431 | F: sound/oss/aedsp16.c |
1da177e4 | 432 | |
91952bc0 AP |
433 | AF9013 MEDIA DRIVER |
434 | M: Antti Palosaari <[email protected]> | |
435 | L: [email protected] | |
436 | W: http://linuxtv.org/ | |
437 | W: http://palosaari.fi/linux/ | |
438 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
439 | T: git git://linuxtv.org/anttip/media_tree.git | |
440 | S: Maintained | |
441 | F: drivers/media/dvb-frontends/af9013* | |
442 | ||
443 | AF9033 MEDIA DRIVER | |
444 | M: Antti Palosaari <[email protected]> | |
445 | L: [email protected] | |
446 | W: http://linuxtv.org/ | |
447 | W: http://palosaari.fi/linux/ | |
448 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
449 | T: git git://linuxtv.org/anttip/media_tree.git | |
450 | S: Maintained | |
451 | F: drivers/media/dvb-frontends/af9033* | |
452 | ||
1da177e4 | 453 | AFFS FILE SYSTEM |
6cf515e1 GU |
454 | L: [email protected] |
455 | S: Orphan | |
679655da JP |
456 | F: Documentation/filesystems/affs.txt |
457 | F: fs/affs/ | |
1da177e4 | 458 | |
e2d1d6c0 | 459 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 460 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
461 | L: [email protected] |
462 | S: Supported | |
679655da JP |
463 | F: fs/afs/ |
464 | F: include/net/af_rxrpc.h | |
465 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 466 | |
1da177e4 | 467 | AGPGART DRIVER |
8b58be88 | 468 | M: David Airlie <[email protected]> |
54e5881d | 469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 470 | S: Maintained |
679655da JP |
471 | F: drivers/char/agp/ |
472 | F: include/linux/agp* | |
c117ab84 | 473 | F: include/uapi/linux/agp* |
1da177e4 LT |
474 | |
475 | AHA152X SCSI DRIVER | |
8b58be88 | 476 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
477 | L: [email protected] |
478 | S: Maintained | |
679655da JP |
479 | F: drivers/scsi/aha152x* |
480 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 481 | |
64624d4f | 482 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 483 | M: Hannes Reinecke <[email protected]> |
64624d4f | 484 | L: [email protected] |
1da177e4 | 485 | S: Maintained |
679655da JP |
486 | F: drivers/scsi/aic7xxx/ |
487 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 488 | |
450500ad HV |
489 | AIMSLAB FM RADIO RECEIVER DRIVER |
490 | M: Hans Verkuil <[email protected]> | |
491 | L: [email protected] | |
492 | T: git git://linuxtv.org/media_tree.git | |
493 | W: http://linuxtv.org | |
494 | S: Maintained | |
495 | F: drivers/media/radio/radio-aimslab* | |
496 | ||
e2d1d6c0 | 497 | AIO |
8b58be88 | 498 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
499 | L: [email protected] |
500 | S: Supported | |
679655da JP |
501 | F: fs/aio.c |
502 | F: include/linux/*aio*.h | |
e2d1d6c0 | 503 | |
1da177e4 | 504 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 505 | M: Duncan Sands <[email protected]> |
6372594a | 506 | L: [email protected] |
1da177e4 LT |
507 | W: http://www.linux-usb.org/SpeedTouch/ |
508 | S: Maintained | |
679655da JP |
509 | F: drivers/usb/atm/speedtch.c |
510 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 511 | |
272f133a | 512 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 513 | M: Manuel Lauss <[email protected]> |
08fcb720 | 514 | S: Maintained |
679655da | 515 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 516 | |
4a4e5787 | 517 | ALI1563 I2C DRIVER |
8b58be88 | 518 | M: Rudolf Marek <[email protected]> |
846557d3 | 519 | L: [email protected] |
4a4e5787 | 520 | S: Maintained |
679655da JP |
521 | F: Documentation/i2c/busses/i2c-ali1563 |
522 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 523 | |
1da177e4 | 524 | ALPHA PORT |
8b58be88 | 525 | M: Richard Henderson <[email protected]> |
8b58be88 | 526 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 527 | M: Matt Turner <[email protected]> |
c89f4f9a | 528 | S: Odd Fixes |
a9406699 | 529 | L: [email protected] |
679655da | 530 | F: arch/alpha/ |
1da177e4 | 531 | |
adf9251f TK |
532 | ALTERA UART/JTAG UART SERIAL DRIVERS |
533 | M: Tobias Klauser <[email protected]> | |
534 | L: [email protected] | |
535 | L: [email protected] (moderated for non-subscribers) | |
536 | S: Maintained | |
537 | F: drivers/tty/serial/altera_uart.c | |
538 | F: drivers/tty/serial/altera_jtaguart.c | |
539 | F: include/linux/altera_uart.h | |
540 | F: include/linux/altera_jtaguart.h | |
541 | ||
512d1027 | 542 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 543 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
544 | L: [email protected] |
545 | S: Maintained | |
546 | F: Documentation/hwmon/fam15h_power | |
547 | F: drivers/hwmon/fam15h_power.c | |
548 | ||
167a675a | 549 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 550 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 551 | L: [email protected] (moderated for non-subscribers) |
167a675a | 552 | S: Supported |
679655da | 553 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 554 | |
f90b8116 | 555 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 556 | P: Andres Salomon <[email protected]> |
67d76710 | 557 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
558 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
559 | S: Supported | |
679655da JP |
560 | F: drivers/char/hw_random/geode-rng.c |
561 | F: drivers/crypto/geode* | |
562 | F: drivers/video/geode/ | |
563 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 564 | |
919ee7dd | 565 | AMD IOMMU (AMD-VI) |
e4110568 | 566 | M: Joerg Roedel <[email protected]> |
919ee7dd | 567 | L: [email protected] |
525b233c | 568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 569 | S: Maintained |
b2c16391 JP |
570 | F: drivers/iommu/amd_iommu*.[ch] |
571 | F: include/linux/amd-iommu.h | |
919ee7dd | 572 | |
e7f5b309 | 573 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 574 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 575 | L: [email protected] |
943482d0 | 576 | S: Maintained |
679655da | 577 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 578 | |
284f42b6 | 579 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 580 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 581 | S: Supported |
bd5f47ec | 582 | F: drivers/macintosh/ams/ |
284f42b6 | 583 | |
f94b533d | 584 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
585 | M: Tom Tucker <[email protected]> |
586 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 587 | L: [email protected] |
f94b533d | 588 | S: Maintained |
679655da | 589 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 590 | |
531fca16 HV |
591 | ANALOG DEVICES INC AD9389B DRIVER |
592 | M: Hans Verkuil <[email protected]> | |
593 | L: [email protected] | |
594 | S: Maintained | |
595 | F: drivers/media/i2c/ad9389b* | |
596 | ||
c40ddfa3 HV |
597 | ANALOG DEVICES INC ADV7511 DRIVER |
598 | M: Hans Verkuil <[email protected]> | |
599 | L: [email protected] | |
600 | S: Maintained | |
601 | F: drivers/media/i2c/adv7511* | |
602 | ||
531fca16 HV |
603 | ANALOG DEVICES INC ADV7604 DRIVER |
604 | M: Hans Verkuil <[email protected]> | |
605 | L: [email protected] | |
606 | S: Maintained | |
607 | F: drivers/media/i2c/adv7604* | |
608 | ||
c40ddfa3 HV |
609 | ANALOG DEVICES INC ADV7842 DRIVER |
610 | M: Hans Verkuil <[email protected]> | |
611 | L: [email protected] | |
612 | S: Maintained | |
613 | F: drivers/media/i2c/adv7842* | |
614 | ||
527a1a83 | 615 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 616 | M: Lars-Peter Clausen <[email protected]> |
f8bd42b8 | 617 | L: [email protected] |
4bdef3bd | 618 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 619 | W: http://wiki.analog.com/ |
4bdef3bd | 620 | S: Supported |
39c9d199 | 621 | F: sound/soc/codecs/adau* |
cc52688a | 622 | F: sound/soc/codecs/adav* |
4bdef3bd | 623 | F: sound/soc/codecs/ad1* |
ae48f5ef | 624 | F: sound/soc/codecs/ad7* |
4bdef3bd | 625 | F: sound/soc/codecs/ssm* |
40216ce7 | 626 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 627 | |
527a1a83 MH |
628 | ANALOG DEVICES INC ASOC DRIVERS |
629 | L: [email protected] | |
630 | L: [email protected] (moderated for non-subscribers) | |
631 | W: http://blackfin.uclinux.org/ | |
632 | S: Supported | |
633 | F: sound/soc/blackfin/* | |
634 | ||
42269063 | 635 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 636 | M: Johannes Berg <[email protected]> |
a4724ed6 | 637 | L: [email protected] |
93711660 | 638 | L: [email protected] (moderated for non-subscribers) |
42269063 | 639 | S: Maintained |
679655da | 640 | F: sound/aoa/ |
42269063 | 641 | |
1da177e4 | 642 | APM DRIVER |
81024fc4 JK |
643 | M: Jiri Kosina <[email protected]> |
644 | S: Odd fixes | |
679655da JP |
645 | F: arch/x86/kernel/apm_32.c |
646 | F: include/linux/apm_bios.h | |
c117ab84 | 647 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 648 | F: drivers/char/apm-emulation.c |
1da177e4 | 649 | |
bd7aa4b2 | 650 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 651 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
652 | L: [email protected] |
653 | S: Maintained | |
679655da | 654 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 655 | |
6f2fad74 | 656 | APPLE SMC DRIVER |
d618540f HR |
657 | M: Henrik Rydberg <[email protected]> |
658 | L: [email protected] | |
6f2fad74 | 659 | S: Maintained |
679655da | 660 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 661 | |
1da177e4 | 662 | APPLETALK NETWORK LAYER |
8b58be88 | 663 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 664 | S: Maintained |
679655da JP |
665 | F: drivers/net/appletalk/ |
666 | F: net/appletalk/ | |
1da177e4 | 667 | |
62a37dc7 LP |
668 | APTINA CAMERA SENSOR PLL |
669 | M: Laurent Pinchart <[email protected]> | |
670 | L: [email protected] | |
671 | S: Maintained | |
672 | F: drivers/media/i2c/aptina-pll.* | |
673 | ||
a480167b | 674 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 675 | M: Viresh Kumar <[email protected]> |
a480167b VK |
676 | L: [email protected] |
677 | S: Maintained | |
678 | F: include/linux/pata_arasan_cf_data.h | |
679 | F: drivers/ata/pata_arasan_cf.c | |
680 | ||
1154ea7d | 681 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 682 | M: Jaya Kumar <[email protected]> |
1154ea7d | 683 | S: Maintained |
679655da JP |
684 | F: drivers/video/arcfb.c |
685 | F: drivers/video/fb_defio.c | |
1154ea7d | 686 | |
1da177e4 | 687 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 688 | M: Ian Molton <[email protected]> |
1da177e4 | 689 | S: Maintained |
679655da JP |
690 | F: arch/arm/lib/floppydma.S |
691 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 692 | |
6f96521f WD |
693 | ARM PMU PROFILING AND DEBUGGING |
694 | M: Will Deacon <[email protected]> | |
695 | S: Maintained | |
696 | F: arch/arm/kernel/perf_event* | |
697 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
698 | F: arch/arm/include/asm/pmu.h |
699 | F: arch/arm/kernel/hw_breakpoint.c | |
700 | F: arch/arm/include/asm/hw_breakpoint.h | |
701 | ||
d4275354 | 702 | ARM PORT |
8b58be88 | 703 | M: Russell King <[email protected]> |
efc03ecb | 704 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
705 | W: http://www.arm.linux.org.uk/ |
706 | S: Maintained | |
707 | F: arch/arm/ | |
708 | ||
d323c243 SB |
709 | ARM SUB-ARCHITECTURES |
710 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 711 | S: Maintained |
d323c243 SB |
712 | F: arch/arm/mach-*/ |
713 | F: arch/arm/plat-*/ | |
714 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
715 | ||
cefbf4ea RK |
716 | ARM PRIMECELL AACI PL041 DRIVER |
717 | M: Russell King <[email protected]> | |
718 | S: Maintained | |
719 | F: sound/arm/aaci.* | |
720 | ||
721 | ARM PRIMECELL CLCD PL110 DRIVER | |
722 | M: Russell King <[email protected]> | |
723 | S: Maintained | |
724 | F: drivers/video/amba-clcd.* | |
725 | ||
726 | ARM PRIMECELL KMI PL050 DRIVER | |
727 | M: Russell King <[email protected]> | |
728 | S: Maintained | |
729 | F: drivers/input/serio/ambakmi.* | |
730 | F: include/linux/amba/kmi.h | |
731 | ||
2761f5c2 | 732 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
733 | M: Russell King <[email protected]> |
734 | S: Maintained | |
679655da | 735 | F: drivers/mmc/host/mmci.* |
2f748aaa | 736 | F: include/linux/amba/mmci.h |
2761f5c2 | 737 | |
1b4304e5 RK |
738 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
739 | M: Russell King <[email protected]> | |
740 | S: Maintained | |
741 | F: drivers/tty/serial/amba-pl01*.c | |
742 | F: include/linux/amba/serial.h | |
2761f5c2 | 743 | |
cefbf4ea RK |
744 | ARM PRIMECELL BUS SUPPORT |
745 | M: Russell King <[email protected]> | |
746 | S: Maintained | |
747 | F: drivers/amba/ | |
748 | F: include/linux/amba/bus.h | |
749 | ||
2b7a52a4 | 750 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 751 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 752 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
753 | S: Maintained |
754 | ||
9c784f95 | 755 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 756 | M: Sergey Lapin <[email protected]> |
efc03ecb | 757 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
758 | S: Maintained |
759 | ||
2b7a52a4 | 760 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 761 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 762 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
763 | S: Maintained |
764 | ||
1b106699 MR |
765 | ARM/Allwinner A1X SoC support |
766 | M: Maxime Ripard <[email protected]> | |
767 | L: [email protected] (moderated for non-subscribers) | |
768 | S: Maintained | |
769 | F: arch/arm/mach-sunxi/ | |
770 | ||
c1fc8675 | 771 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 772 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
773 | M: Nicolas Ferre <[email protected]> |
774 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 775 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 776 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
777 | W: http://www.linux4sam.org |
778 | S: Supported | |
779 | F: arch/arm/mach-at91/ | |
70e389cc MB |
780 | F: arch/arm/boot/dts/at91*.dts |
781 | F: arch/arm/boot/dts/at91*.dtsi | |
782 | F: arch/arm/boot/dts/sama*.dts | |
783 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 784 | |
986cf2e9 RH |
785 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
786 | M: Rob Herring <[email protected]> | |
787 | L: [email protected] (moderated for non-subscribers) | |
788 | S: Maintained | |
789 | F: arch/arm/mach-highbank/ | |
790 | ||
d94f944e | 791 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 792 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
793 | S: Maintained |
794 | F: arch/arm/mach-cns3xxx/ | |
795 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
796 | ||
386ab516 AS |
797 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
798 | M: Alexander Shiyan <[email protected]> | |
799 | L: [email protected] (moderated for non-subscribers) | |
800 | S: Odd Fixes | |
801 | F: arch/arm/mach-clps711x/ | |
802 | ||
2b7a52a4 | 803 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 804 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 805 | M: Ryan Mallon <[email protected]> |
efc03ecb | 806 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 807 | S: Maintained |
d19d3667 HS |
808 | F: arch/arm/mach-ep93xx/ |
809 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
810 | |
811 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 812 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 813 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
814 | S: Maintained |
815 | ||
d4275354 | 816 | ARM/CLKDEV SUPPORT |
8b58be88 | 817 | M: Russell King <[email protected]> |
efc03ecb | 818 | L: [email protected] (moderated for non-subscribers) |
37417046 | 819 | S: Maintained |
d4275354 | 820 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 821 | F: drivers/clk/clkdev.c |
d4275354 | 822 | |
d48134e7 | 823 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 824 | M: Mike Rapoport <[email protected]> |
efc03ecb | 825 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
826 | S: Maintained |
827 | ||
94150095 HF |
828 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
829 | M: Hubert Feurstein <[email protected]> | |
830 | S: Maintained | |
831 | F: arch/arm/mach-ep93xx/micro9.c | |
832 | ||
1da177e4 | 833 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 834 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
835 | S: Maintained |
836 | ||
881a95f9 | 837 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 838 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 839 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
840 | T: git git://git.berlios.de/gemini-board |
841 | S: Maintained | |
f49afbb5 | 842 | F: arch/arm/mach-gemini/ |
881a95f9 | 843 | |
a990cbd8 | 844 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 845 | M: Barry Song <[email protected]> |
a990cbd8 | 846 | L: [email protected] (moderated for non-subscribers) |
85529d14 | 847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
848 | S: Maintained |
849 | F: arch/arm/mach-prima2/ | |
05f30e8d BS |
850 | F: drivers/clk/clk-prima2.c |
851 | F: drivers/clocksource/timer-prima2.c | |
852 | F: drivers/clocksource/timer-marco.c | |
47ac3e44 BS |
853 | F: drivers/dma/sirf-dma.c |
854 | F: drivers/i2c/busses/i2c-sirf.c | |
05f30e8d BS |
855 | F: drivers/input/misc/sirfsoc-onkey.c |
856 | F: drivers/irqchip/irq-sirfsoc.c | |
b3b665b0 | 857 | F: drivers/mmc/host/sdhci-sirf.c |
6f73349d | 858 | F: drivers/pinctrl/sirf/ |
05f30e8d | 859 | F: drivers/rtc/rtc-sirfsoc.c |
47ac3e44 | 860 | F: drivers/spi/spi-sirf.c |
a990cbd8 | 861 | |
d4275354 | 862 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 863 | M: Russell King <[email protected]> |
efc03ecb | 864 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
865 | W: http://www.arm.linux.org.uk/ |
866 | S: Maintained | |
867 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 868 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 869 | |
a9da4f7e | 870 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
871 | M: Daniel Ribeiro <[email protected]> |
872 | M: Stefan Schmidt <[email protected]> | |
873 | M: Harald Welte <[email protected]> | |
d66f1886 | 874 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
875 | W: http://www.openezx.org/ |
876 | S: Maintained | |
cafc2265 SS |
877 | T: topgit git://git.openezx.org/openezx.git |
878 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 879 | |
6a915af9 | 880 | ARM/FARADAY FA526 PORT |
162500b3 | 881 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 882 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 883 | S: Maintained |
1fa7e547 | 884 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 885 | F: arch/arm/mm/*-fa* |
6a915af9 | 886 | |
d4275354 | 887 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 888 | M: Russell King <[email protected]> |
efc03ecb | 889 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
890 | W: http://www.arm.linux.org.uk/ |
891 | S: Maintained | |
892 | F: arch/arm/include/asm/hardware/dec21285.h | |
893 | F: arch/arm/mach-footbridge/ | |
894 | ||
86183a5f | 895 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 896 | M: Sascha Hauer <[email protected]> |
efc03ecb | 897 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 898 | S: Maintained |
1fa7e547 | 899 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 900 | F: arch/arm/mach-imx/ |
e5dafa22 | 901 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 902 | |
8bcb9765 SG |
903 | ARM/FREESCALE IMX6 |
904 | M: Shawn Guo <[email protected]> | |
905 | L: [email protected] (moderated for non-subscribers) | |
906 | S: Maintained | |
907 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
908 | F: arch/arm/mach-imx/*imx6* | |
909 | ||
a9866a09 SG |
910 | ARM/FREESCALE MXS ARM ARCHITECTURE |
911 | M: Shawn Guo <[email protected]> | |
912 | L: [email protected] (moderated for non-subscribers) | |
913 | S: Maintained | |
914 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
915 | F: arch/arm/mach-mxs/ | |
916 | ||
2b7a52a4 | 917 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 918 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 919 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
920 | S: Maintained |
921 | ||
90b8fc34 | 922 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 923 | M: Steve Sakoman <[email protected]> |
efc03ecb | 924 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
925 | S: Maintained |
926 | ||
ef47d5f0 | 927 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 928 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
929 | M: Paul Parsons <[email protected]> |
930 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
931 | S: Maintained |
932 | F: arch/arm/mach-pxa/hx4700.c | |
933 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 934 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 935 | |
21f37bc3 | 936 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 937 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
938 | W: www.jlime.com |
939 | S: Maintained | |
084bad91 KE |
940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
941 | F: arch/arm/mach-sa1100/jornada720.c | |
942 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 943 | |
5e767ab9 JMC |
944 | ARM/IGEP MACHINE SUPPORT |
945 | M: Enric Balletbo i Serra <[email protected]> | |
946 | M: Javier Martinez Canillas <[email protected]> | |
947 | L: [email protected] | |
948 | L: [email protected] (moderated for non-subscribers) | |
949 | S: Maintained | |
06ff74fd | 950 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 951 | |
403d2971 MV |
952 | ARM/INCOME PXA270 SUPPORT |
953 | M: Marek Vasut <[email protected]> | |
954 | L: [email protected] (moderated for non-subscribers) | |
955 | S: Maintained | |
ec154082 | 956 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 957 | |
2b7a52a4 | 958 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 959 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 960 | M: Dan Williams <[email protected]> |
efc03ecb | 961 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 962 | S: Maintained |
e2bdb176 DW |
963 | |
964 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 965 | M: Dan Williams <[email protected]> |
efc03ecb | 966 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 967 | S: Maintained |
2b7a52a4 LB |
968 | |
969 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 970 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 971 | M: Dan Williams <[email protected]> |
efc03ecb | 972 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 973 | S: Maintained |
2b7a52a4 LB |
974 | |
975 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 976 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 977 | M: Dan Williams <[email protected]> |
efc03ecb | 978 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 979 | S: Maintained |
2b7a52a4 | 980 | |
2b7a52a4 | 981 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 982 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 983 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
984 | S: Maintained |
985 | ||
dfdd8cc9 KH |
986 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
987 | M: Imre Kaloz <[email protected]> | |
988 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 989 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
990 | S: Maintained |
991 | F: arch/arm/mach-ixp4xx/ | |
992 | ||
838553c5 | 993 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
994 | M: Jonathan Cameron <[email protected]> |
995 | L: [email protected] (moderated for non-subscribers) | |
996 | S: Maintained | |
997 | F: arch/arm/mach-pxa/stargate2.c | |
998 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
999 | ||
2b7a52a4 | 1000 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1001 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 1002 | M: Dan Williams <[email protected]> |
efc03ecb | 1003 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 1004 | S: Maintained |
2b7a52a4 LB |
1005 | |
1006 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1007 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1008 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1009 | S: Maintained |
1010 | ||
1154f858 SS |
1011 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1012 | M: Santosh Shilimkar <[email protected]> | |
1013 | L: [email protected] (moderated for non-subscribers) | |
1014 | S: Maintained | |
1015 | F: arch/arm/mach-keystone/ | |
1016 | ||
2b7a52a4 | 1017 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1018 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1019 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1020 | S: Maintained |
1021 | ||
3b886171 | 1022 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1023 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1024 | S: Maintained |
1025 | ||
75f41273 TP |
1026 | ARM/Marvell Armada 370 and Armada XP SOC support |
1027 | M: Jason Cooper <[email protected]> | |
1028 | M: Andrew Lunn <[email protected]> | |
1029 | M: Gregory Clement <[email protected]> | |
dcb71503 | 1030 | M: Sebastian Hesselbarth <[email protected]> |
75f41273 TP |
1031 | L: [email protected] (moderated for non-subscribers) |
1032 | S: Maintained | |
1033 | F: arch/arm/mach-mvebu/ | |
1034 | ||
4f1312b0 NP |
1035 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1036 | M: Jason Cooper <[email protected]> | |
1037 | M: Andrew Lunn <[email protected]> | |
dcb71503 | 1038 | M: Sebastian Hesselbarth <[email protected]> |
efc03ecb | 1039 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1040 | S: Maintained |
1041 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1042 | F: arch/arm/mach-kirkwood/ |
1043 | F: arch/arm/mach-mv78xx0/ | |
1044 | F: arch/arm/mach-orion5x/ | |
1045 | F: arch/arm/plat-orion/ | |
3b886171 | 1046 | |
d69ac131 AC |
1047 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1048 | M: Alexander Clouter <[email protected]> | |
1049 | L: [email protected] (moderated for non-subscribers) | |
1050 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1051 | S: Maintained | |
1052 | F: arch/arm/mach-orion5x/ts78xx-* | |
1053 | ||
adcb079f AB |
1054 | ARM/MICREL KS8695 ARCHITECTURE |
1055 | M: Greg Ungerer <[email protected]> | |
1056 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1057 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1058 | S: Odd Fixes |
1059 | ||
d78ff0a5 | 1060 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1061 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1062 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1063 | F: arch/arm/mach-pxa/mioa701.c |
1064 | S: Maintained | |
1065 | ||
9624dfe6 | 1066 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1067 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1068 | S: Maintained |
1069 | ||
e0ee9851 | 1070 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1071 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1072 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1073 | L: [email protected] (moderated for non-subscribers) |
1074 | S: Maintained | |
1075 | F: arch/arm/mach-nomadik/ | |
87572880 | 1076 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1078 | |
9d76295a | 1079 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1080 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1081 | L: [email protected] (subscribers-only) |
1082 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1083 | S: Supported | |
1084 | ||
0c19d21e DW |
1085 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1086 | M: David Brown <[email protected]> | |
b4c9bfab | 1087 | M: Daniel Walker <[email protected]> |
0c19d21e | 1088 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1089 | L: [email protected] |
0c19d21e DW |
1090 | F: arch/arm/mach-msm/ |
1091 | F: drivers/video/msm/ | |
1092 | F: drivers/mmc/host/msm_sdcc.c | |
1093 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1094 | F: drivers/tty/serial/msm_serial.h |
1095 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1096 | F: drivers/*/pm8???-* |
31a12b31 | 1097 | F: drivers/mfd/ssbi/ |
ea91db52 | 1098 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1100 | S: Maintained |
1101 | ||
8459c159 | 1102 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1103 | M: Dmitry Eremin-Solenikov <[email protected]> |
1104 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1105 | S: Maintained |
1106 | ||
5d783a2d | 1107 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1108 | M: Marek Vasut <[email protected]> |
75280787 | 1109 | L: [email protected] |
b5e4ad57 MV |
1110 | W: http://hackndev.com |
1111 | S: Maintained | |
933d35f0 JP |
1112 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1113 | F: arch/arm/mach-pxa/palmtx.c | |
1114 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1115 | F: arch/arm/mach-pxa/palmt5.c | |
1116 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1117 | F: arch/arm/mach-pxa/palmld.c | |
1118 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1119 | F: arch/arm/mach-pxa/palmte2.c | |
1120 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1121 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1122 | |
b57fe924 | 1123 | ARM/PALM TREO SUPPORT |
8b58be88 | 1124 | M: Tomas Cech <[email protected]> |
75280787 | 1125 | L: [email protected] |
90af5811 TSC |
1126 | W: http://hackndev.com |
1127 | S: Maintained | |
b57fe924 JP |
1128 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1129 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1130 | |
c49e1e63 | 1131 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1132 | M: Sergey Lapin <[email protected]> |
75280787 | 1133 | L: [email protected] |
7d2c86b5 JP |
1134 | W: http://hackndev.com |
1135 | S: Maintained | |
933d35f0 JP |
1136 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1137 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1138 | |
1da177e4 | 1139 | ARM/PLEB SUPPORT |
8b58be88 | 1140 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1141 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1142 | S: Maintained | |
1143 | ||
1144 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1145 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1146 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1147 | W: http://www.arm.linux.org.uk/ |
1148 | S: Maintained | |
1149 | ||
2b7a52a4 | 1150 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1151 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1152 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1153 | S: Maintained |
1154 | ||
d4275354 | 1155 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1156 | M: Russell King <[email protected]> |
efc03ecb | 1157 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1158 | W: http://www.arm.linux.org.uk/ |
1159 | S: Maintained | |
d4275354 RK |
1160 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1161 | F: arch/arm/include/asm/hardware/ioc.h | |
1162 | F: arch/arm/include/asm/hardware/iomd.h | |
1163 | F: arch/arm/include/asm/hardware/memc.h | |
1164 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1165 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1166 | F: drivers/net/ethernet/i825xx/ether1* |
1167 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1168 | F: drivers/scsi/arm/ |
1169 | ||
08ddbb0a HS |
1170 | ARM/Rockchip SoC support |
1171 | M: Heiko Stuebner <[email protected]> | |
1172 | L: [email protected] (moderated for non-subscribers) | |
1173 | S: Maintained | |
1174 | F: arch/arm/mach-rockchip/ | |
1175 | F: drivers/*/*rockchip* | |
1176 | ||
b21477f9 | 1177 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1178 | M: Ben Dooks <[email protected]> |
482ce512 | 1179 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1180 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1181 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1182 | W: http://www.fluff.org/ben/linux/ |
1183 | S: Maintained | |
6f0589c8 MB |
1184 | F: arch/arm/boot/dts/s3c* |
1185 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1186 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1187 | F: arch/arm/mach-s3c24*/ |
1188 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1189 | F: drivers/*/*s3c2410* |
1190 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1191 | F: drivers/spi/spi-s3c* |
1192 | F: sound/soc/samsung/* | |
1da177e4 | 1193 | |
0dcecae2 | 1194 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1195 | M: Kukjin Kim <[email protected]> |
1196 | L: [email protected] (moderated for non-subscribers) | |
1197 | L: [email protected] (moderated for non-subscribers) | |
1198 | S: Maintained | |
1199 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1200 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1201 | N: exynos |
f556cb07 | 1202 | |
10ffa964 KP |
1203 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1204 | M: Kyungmin Park <[email protected]> | |
1205 | L: [email protected] (moderated for non-subscribers) | |
1206 | S: Maintained | |
1207 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1208 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1209 | |
3ce4ccb6 KD |
1210 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1211 | M: Kyungmin Park <[email protected]> | |
1212 | M: Kamil Debski <[email protected]> | |
1213 | L: [email protected] | |
1214 | L: [email protected] | |
1215 | S: Maintained | |
1216 | F: drivers/media/platform/s5p-g2d/ | |
1217 | ||
e6a476fd MS |
1218 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1219 | M: Kyungmin Park <[email protected]> | |
1220 | M: Kamil Debski <[email protected]> | |
6305902c | 1221 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1222 | L: [email protected] |
1223 | L: [email protected] | |
1224 | S: Maintained | |
934455d7 | 1225 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1226 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1227 | |
1228 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1229 | M: Kyungmin Park <[email protected]> | |
1230 | M: Tomasz Stanislawski <[email protected]> | |
1231 | L: [email protected] | |
1232 | L: [email protected] | |
1233 | S: Maintained | |
90d72ac6 | 1234 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1235 | |
d48d38e8 | 1236 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1237 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1238 | M: Magnus Damm <[email protected]> |
1239 | L: [email protected] | |
d48d38e8 | 1240 | W: http://oss.renesas.com |
bbff48f5 | 1241 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1243 | S: Supported |
1244 | F: arch/arm/mach-shmobile/ | |
1245 | F: drivers/sh/ | |
1246 | ||
66314223 DN |
1247 | ARM/SOCFPGA ARCHITECTURE |
1248 | M: Dinh Nguyen <[email protected]> | |
1249 | S: Maintained | |
1250 | F: arch/arm/mach-socfpga/ | |
1251 | ||
1252 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1253 | M: Dinh Nguyen <[email protected]> | |
1254 | S: Maintained | |
1255 | F: drivers/clk/socfpga/ | |
1256 | ||
65ebcc11 SK |
1257 | ARM/STI ARCHITECTURE |
1258 | M: Srinivas Kandagatla <[email protected]> | |
1259 | M: Stuart Menefy <[email protected]> | |
1260 | L: [email protected] (moderated for non-subscribers) | |
1261 | L: [email protected] | |
1262 | W: http://www.stlinux.com | |
1263 | S: Maintained | |
1264 | F: arch/arm/mach-sti/ | |
1265 | ||
2b7a52a4 | 1266 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1267 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1268 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1269 | S: Maintained |
1270 | ||
1bbd7089 | 1271 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1272 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1273 | L: [email protected] (moderated for non-subscribers) |
1274 | S: Maintained | |
1275 | ||
2b7a52a4 | 1276 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1277 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1278 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1279 | S: Maintained |
1280 | ||
98ad6e3b | 1281 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1282 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1283 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1284 | W: http://www.mcuos.com |
1285 | S: Maintained | |
4e89e8f6 | 1286 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1287 | F: drivers/input/keyboard/w90p910_keypad.c |
1288 | F: drivers/input/touchscreen/w90p910_ts.c | |
1289 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1290 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1291 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1292 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1293 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1294 | F: drivers/usb/host/ehci-w90x900.c |
1295 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1296 | |
54274d71 | 1297 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1298 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1299 | L: [email protected] (moderated for non-subscribers) |
1300 | S: Supported | |
1301 | F: arch/arm/mach-u300/ | |
1302 | F: drivers/i2c/busses/i2c-stu300.c | |
1303 | F: drivers/rtc/rtc-coh901331.c | |
1304 | F: drivers/watchdog/coh901327_wdt.c | |
1305 | F: drivers/dma/coh901318* | |
87572880 LW |
1306 | F: drivers/mfd/ab3100* |
1307 | F: drivers/rtc/rtc-ab3100.c | |
1308 | F: drivers/rtc/rtc-coh901331.c | |
1309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1310 | |
87572880 | 1311 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1312 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1313 | L: [email protected] (moderated for non-subscribers) |
1314 | S: Maintained | |
1315 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1316 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1317 | F: drivers/dma/ste_dma40* |
e4651a9f | 1318 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1319 | F: drivers/mfd/abx500* |
1320 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1321 | F: drivers/mfd/dbx500* |
1322 | F: drivers/mfd/db8500* | |
1323 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1324 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1325 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1326 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1327 | |
d4275354 | 1328 | ARM/VFP SUPPORT |
8b58be88 | 1329 | M: Russell King <[email protected]> |
efc03ecb | 1330 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1331 | W: http://www.arm.linux.org.uk/ |
1332 | S: Maintained | |
1333 | F: arch/arm/vfp/ | |
1334 | ||
e66b6d8e MV |
1335 | ARM/VOIPAC PXA270 SUPPORT |
1336 | M: Marek Vasut <[email protected]> | |
1337 | L: [email protected] (moderated for non-subscribers) | |
1338 | S: Maintained | |
1339 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1340 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1341 | |
04529fe2 TP |
1342 | ARM/VT8500 ARM ARCHITECTURE |
1343 | M: Tony Prisk <[email protected]> | |
1344 | L: [email protected] (moderated for non-subscribers) | |
1345 | S: Maintained | |
1346 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1347 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1348 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1349 | F: drivers/mmc/host/wmt-sdmmc.c |
1350 | F: drivers/pwm/pwm-vt8500.c | |
1351 | F: drivers/rtc/rtc-vt8500.c | |
1352 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1353 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1354 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1355 | F: drivers/video/vt8500lcdfb.* |
1356 | F: drivers/video/wm8505fb* | |
1357 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1358 | |
e66b6d8e MV |
1359 | ARM/ZIPIT Z2 SUPPORT |
1360 | M: Marek Vasut <[email protected]> | |
1361 | L: [email protected] (moderated for non-subscribers) | |
1362 | S: Maintained | |
1363 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1364 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1365 | |
51f29d44 MS |
1366 | ARM/ZYNQ ARCHITECTURE |
1367 | M: Michal Simek <[email protected]> | |
1368 | L: [email protected] (moderated for non-subscribers) | |
1369 | W: http://wiki.xilinx.com | |
1370 | T: git git://git.xilinx.com/linux-xlnx.git | |
1371 | S: Supported | |
1372 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1373 | F: drivers/cpuidle/cpuidle-zynq.c |
51f29d44 | 1374 | |
b8f9879e WD |
1375 | ARM SMMU DRIVER |
1376 | M: Will Deacon <[email protected]> | |
1377 | L: [email protected] (moderated for non-subscribers) | |
1378 | S: Maintained | |
1379 | F: drivers/iommu/arm-smmu.c | |
1380 | ||
38074229 CM |
1381 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1382 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1383 | M: Will Deacon <[email protected]> |
38074229 CM |
1384 | L: [email protected] (moderated for non-subscribers) |
1385 | S: Maintained | |
1386 | F: arch/arm64/ | |
d19766ec | 1387 | F: Documentation/arm64/ |
38074229 | 1388 | |
9d7005f9 LP |
1389 | AS3645A LED FLASH CONTROLLER DRIVER |
1390 | M: Laurent Pinchart <[email protected]> | |
1391 | L: [email protected] | |
1392 | T: git git://linuxtv.org/media_tree.git | |
1393 | S: Maintained | |
1394 | F: drivers/media/i2c/as3645a.c | |
1395 | F: include/media/as3645a.h | |
1396 | ||
d58de038 GJ |
1397 | ASC7621 HARDWARE MONITOR DRIVER |
1398 | M: George Joseph <[email protected]> | |
1399 | L: [email protected] | |
1400 | S: Maintained | |
1401 | F: Documentation/hwmon/asc7621 | |
1402 | F: drivers/hwmon/asc7621.c | |
1403 | ||
b229ece9 | 1404 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1405 | M: Corentin Chary <[email protected]> |
1da177e4 | 1406 | L: [email protected] |
d0944853 | 1407 | L: [email protected] |
76593d6f | 1408 | W: http://acpi4asus.sf.net |
85091b71 | 1409 | S: Maintained |
b229ece9 CC |
1410 | F: drivers/platform/x86/asus*.c |
1411 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1412 | |
953a6479 | 1413 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1414 | M: Dan Williams <[email protected]> |
b3e5f263 | 1415 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1416 | S: Maintained |
679655da JP |
1417 | F: Documentation/crypto/async-tx-api.txt |
1418 | F: crypto/async_tx/ | |
1419 | F: drivers/dma/ | |
1420 | F: include/linux/dmaengine.h | |
1421 | F: include/linux/async_tx.h | |
b3e5f263 | 1422 | |
a1867d36 | 1423 | AT24 EEPROM DRIVER |
14d77c4d | 1424 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1425 | L: [email protected] |
1426 | S: Maintained | |
1427 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1428 | F: include/linux/platform_data/at24.h |
a1867d36 | 1429 | |
e7839f25 | 1430 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1431 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1432 | W: http://support.coraid.com/support/linux |
1da177e4 | 1433 | S: Supported |
679655da JP |
1434 | F: Documentation/aoe/ |
1435 | F: drivers/block/aoe/ | |
1da177e4 | 1436 | |
9a10a870 | 1437 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1438 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1439 | L: [email protected] |
1440 | S: Supported | |
1441 | F: drivers/net/wireless/ath/* | |
1442 | ||
fa1c114f | 1443 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1444 | M: Jiri Slaby <[email protected]> |
1445 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1446 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1447 | L: [email protected] |
1448 | L: [email protected] | |
72c706b7 | 1449 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1450 | S: Maintained |
fa451753 | 1451 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1452 | |
12e62d6f KV |
1453 | ATHEROS ATH6KL WIRELESS DRIVER |
1454 | M: Kalle Valo <[email protected]> | |
1455 | L: [email protected] | |
1456 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1457 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1458 | S: Supported |
1459 | F: drivers/net/wireless/ath/ath6kl/ | |
1460 | ||
f078f209 | 1461 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1462 | M: "Luis R. Rodriguez" <[email protected]> |
1463 | M: Jouni Malinen <[email protected]> | |
1464 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1465 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1466 | L: [email protected] |
1467 | L: [email protected] | |
72c706b7 | 1468 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1469 | S: Supported |
fa451753 | 1470 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1471 | |
2be7d22f VK |
1472 | WILOCITY WIL6210 WIRELESS DRIVER |
1473 | M: Vladimir Kondratiev <[email protected]> | |
1474 | L: [email protected] | |
1475 | L: [email protected] | |
1476 | S: Supported | |
1477 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1478 | F: drivers/net/wireless/ath/wil6210/ | |
1479 | ||
1d7e1e6b CL |
1480 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1481 | M: Christian Lamparter <[email protected]> | |
1482 | L: [email protected] | |
1483 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1484 | S: Maintained | |
1485 | F: drivers/net/wireless/ath/carl9170/ | |
1486 | ||
2c2a6172 LT |
1487 | ATK0110 HWMON DRIVER |
1488 | M: Luca Tettamanti <[email protected]> | |
1489 | L: [email protected] | |
1490 | S: Maintained | |
1491 | F: drivers/hwmon/asus_atk0110.c | |
1492 | ||
6f69a6d7 | 1493 | ATI_REMOTE2 DRIVER |
8b58be88 | 1494 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1495 | S: Maintained |
679655da | 1496 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1497 | |
7ae115b4 | 1498 | ATLX ETHERNET DRIVERS |
8b58be88 | 1499 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1500 | M: Chris Snook <[email protected]> |
e443e383 | 1501 | L: [email protected] |
8d5ca6ec JC |
1502 | W: http://sourceforge.net/projects/atl1 |
1503 | W: http://atl1.sourceforge.net | |
1504 | S: Maintained | |
2b133ad6 | 1505 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1506 | |
1da177e4 | 1507 | ATM |
8b58be88 | 1508 | M: Chas Williams <[email protected]> |
476604de | 1509 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1510 | L: [email protected] |
1da177e4 LT |
1511 | W: http://linux-atm.sourceforge.net |
1512 | S: Maintained | |
679655da JP |
1513 | F: drivers/atm/ |
1514 | F: include/linux/atm* | |
c117ab84 | 1515 | F: include/uapi/linux/atm* |
1da177e4 | 1516 | |
04ac2f46 | 1517 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1518 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1519 | S: Maintained |
1520 | F: drivers/mmc/host/atmel-mci.c | |
1521 | F: drivers/mmc/host/atmel-mci-regs.h | |
1522 | ||
a1cfac48 | 1523 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1524 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1525 | S: Supported |
df621252 | 1526 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1527 | |
b414dc16 NF |
1528 | ATMEL DMA DRIVER |
1529 | M: Nicolas Ferre <[email protected]> | |
1530 | L: [email protected] (moderated for non-subscribers) | |
1531 | S: Supported | |
1532 | F: drivers/dma/at_hdmac.c | |
1533 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1534 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1535 | |
888f2804 LD |
1536 | ATMEL I2C DRIVER |
1537 | M: Ludovic Desroches <[email protected]> | |
1538 | L: [email protected] | |
1539 | S: Supported | |
1540 | F: drivers/i2c/busses/i2c-at91.c | |
1541 | ||
15515545 JW |
1542 | ATMEL ISI DRIVER |
1543 | M: Josh Wu <[email protected]> | |
1544 | L: [email protected] | |
1545 | S: Supported | |
f2294c2d | 1546 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1547 | F: include/media/atmel-isi.h |
1548 | ||
8f4c79ce | 1549 | ATMEL LCDFB DRIVER |
8b58be88 | 1550 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1551 | L: [email protected] |
8f4c79ce | 1552 | S: Maintained |
679655da JP |
1553 | F: drivers/video/atmel_lcdfb.c |
1554 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1555 | |
89e5785f | 1556 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1557 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1558 | S: Supported |
9f2f381f | 1559 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1560 | |
754ce4f2 | 1561 | ATMEL SPI DRIVER |
a02875a6 | 1562 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1563 | S: Supported |
9df92e6c | 1564 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1565 | |
e9cb1c5a NF |
1566 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1567 | M: Nicolas Ferre <[email protected]> | |
1568 | L: [email protected] (moderated for non-subscribers) | |
1569 | S: Supported | |
1570 | F: drivers/misc/atmel_tclib.c | |
1571 | F: drivers/clocksource/tcb_clksrc.c | |
1572 | ||
ff2675d6 JW |
1573 | ATMEL TSADCC DRIVER |
1574 | M: Josh Wu <[email protected]> | |
1575 | L: [email protected] | |
1576 | S: Supported | |
1577 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1578 | ||
914a3f3b | 1579 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1580 | M: Nicolas Ferre <[email protected]> |
1581 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1582 | S: Supported |
679655da | 1583 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1584 | |
1da177e4 | 1585 | ATMEL WIRELESS DRIVER |
8b58be88 | 1586 | M: Simon Kelley <[email protected]> |
724c6b35 | 1587 | L: [email protected] |
1da177e4 LT |
1588 | W: http://www.thekelleys.org.uk/atmel |
1589 | W: http://atmelwlandriver.sourceforge.net/ | |
1590 | S: Maintained | |
679655da | 1591 | F: drivers/net/wireless/atmel* |
1da177e4 | 1592 | |
26780d9e BG |
1593 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
1594 | M: Bradley Grove <[email protected]> | |
1595 | L: [email protected] | |
1596 | W: http://www.attotech.com | |
1597 | S: Supported | |
1598 | F: drivers/scsi/esas2r | |
1599 | ||
a92b7b80 | 1600 | AUDIT SUBSYSTEM |
8b58be88 JP |
1601 | M: Al Viro <[email protected]> |
1602 | M: Eric Paris <[email protected]> | |
b9a06207 | 1603 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1604 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1606 | S: Maintained |
679655da | 1607 | F: include/linux/audit.h |
c117ab84 | 1608 | F: include/uapi/linux/audit.h |
679655da | 1609 | F: kernel/audit* |
a92b7b80 | 1610 | |
70e84049 | 1611 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1612 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1613 | W: http://miguelojeda.es/auxdisplay.htm |
1614 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1615 | S: Maintained |
679655da JP |
1616 | F: drivers/auxdisplay/ |
1617 | F: include/linux/cfag12864b.h | |
70e84049 | 1618 | |
5f97f7f9 | 1619 | AVR32 ARCHITECTURE |
e336f61f HCE |
1620 | M: Haavard Skinnemoen <[email protected]> |
1621 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1622 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1623 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1624 | W: http://avrfreaks.net/ |
e336f61f | 1625 | S: Maintained |
679655da | 1626 | F: arch/avr32/ |
5f97f7f9 HS |
1627 | |
1628 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1629 | M: Haavard Skinnemoen <[email protected]> |
1630 | M: Hans-Christian Egtvedt <[email protected]> | |
1631 | S: Maintained | |
679655da | 1632 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1633 | |
1da177e4 | 1634 | AX.25 NETWORK LAYER |
8b58be88 | 1635 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1636 | L: [email protected] |
d34cb28a | 1637 | W: http://www.linux-ax25.org/ |
1da177e4 | 1638 | S: Maintained |
c117ab84 | 1639 | F: include/uapi/linux/ax25.h |
679655da JP |
1640 | F: include/net/ax25.h |
1641 | F: net/ax25/ | |
1da177e4 | 1642 | |
d5269395 | 1643 | AZ6007 DVB DRIVER |
1b2c14b4 | 1644 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1645 | L: [email protected] |
1646 | W: http://linuxtv.org | |
1647 | T: git git://linuxtv.org/media_tree.git | |
1648 | S: Maintained | |
1649 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1650 | ||
6777376e HV |
1651 | AZTECH FM RADIO RECEIVER DRIVER |
1652 | M: Hans Verkuil <[email protected]> | |
1653 | L: [email protected] | |
1654 | T: git git://linuxtv.org/media_tree.git | |
1655 | W: http://linuxtv.org | |
1656 | S: Maintained | |
1657 | F: drivers/media/radio/radio-aztech* | |
1658 | ||
e2d1d6c0 | 1659 | B43 WIRELESS DRIVER |
8b58be88 | 1660 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1661 | L: [email protected] |
ed072f9e | 1662 | L: [email protected] |
491b26b4 | 1663 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1664 | S: Maintained |
679655da | 1665 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1666 | |
1667 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1668 | M: Larry Finger <[email protected]> |
1669 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1670 | L: [email protected] |
ed072f9e | 1671 | L: [email protected] |
491b26b4 | 1672 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1673 | S: Maintained |
679655da | 1674 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1675 | |
300abeb5 | 1676 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1677 | M: Jingoo Han <[email protected]> |
300abeb5 | 1678 | S: Maintained |
679655da JP |
1679 | F: drivers/video/backlight/ |
1680 | F: include/linux/backlight.h | |
300abeb5 | 1681 | |
c6c8fea2 | 1682 | BATMAN ADVANCED |
207df49e | 1683 | M: Marek Lindner <[email protected]> |
c679ff8f | 1684 | M: Simon Wunderlich <[email protected]> |
207df49e | 1685 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1686 | L: [email protected] |
1687 | W: http://www.open-mesh.org/ | |
1688 | S: Maintained | |
1689 | F: net/batman-adv/ | |
1690 | ||
e2d1d6c0 | 1691 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1692 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1693 | L: [email protected] |
1694 | W: http://www.baycom.org/~tom/ham/ham.html | |
1695 | S: Maintained | |
679655da | 1696 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1697 | |
cafe5635 | 1698 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1699 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1700 | L: [email protected] |
1701 | W: http://bcache.evilpiepirate.org | |
1702 | S: Maintained: | |
1703 | F: drivers/md/bcache/ | |
1704 | ||
e2d1d6c0 | 1705 | BEFS FILE SYSTEM |
55817d3d | 1706 | S: Orphan |
679655da JP |
1707 | F: Documentation/filesystems/befs.txt |
1708 | F: fs/befs/ | |
e2d1d6c0 RD |
1709 | |
1710 | BFS FILE SYSTEM | |
8b58be88 | 1711 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1712 | S: Maintained |
679655da JP |
1713 | F: Documentation/filesystems/bfs.txt |
1714 | F: fs/bfs/ | |
c117ab84 | 1715 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1716 | |
1394f032 | 1717 | BLACKFIN ARCHITECTURE |
8b58be88 | 1718 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1719 | L: [email protected] |
e3b2d3f3 BW |
1720 | W: http://blackfin.uclinux.org |
1721 | S: Supported | |
679655da | 1722 | F: arch/blackfin/ |
566da5b2 | 1723 | |
e190d6b1 | 1724 | BLACKFIN EMAC DRIVER |
49afa609 | 1725 | L: [email protected] |
e190d6b1 BW |
1726 | W: http://blackfin.uclinux.org |
1727 | S: Supported | |
7b35f033 | 1728 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1729 | |
566da5b2 | 1730 | BLACKFIN RTC DRIVER |
8b58be88 | 1731 | M: Mike Frysinger <[email protected]> |
49afa609 | 1732 | L: [email protected] |
566da5b2 MF |
1733 | W: http://blackfin.uclinux.org |
1734 | S: Supported | |
679655da | 1735 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1736 | |
936ed49a | 1737 | BLACKFIN SDH DRIVER |
109ec8c3 | 1738 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1739 | L: [email protected] |
1740 | W: http://blackfin.uclinux.org | |
1741 | S: Supported | |
1742 | F: drivers/mmc/host/bfin_sdh.c | |
1743 | ||
1394f032 | 1744 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1745 | M: Sonic Zhang <[email protected]> |
49afa609 | 1746 | L: [email protected] |
e3b2d3f3 BW |
1747 | W: http://blackfin.uclinux.org |
1748 | S: Supported | |
8460241e | 1749 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1750 | |
1e6d320f | 1751 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1752 | M: Mike Frysinger <[email protected]> |
49afa609 | 1753 | L: [email protected] |
1e6d320f BW |
1754 | W: http://blackfin.uclinux.org |
1755 | S: Supported | |
679655da | 1756 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1757 | |
d24ecfcc | 1758 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1759 | M: Sonic Zhang <[email protected]> |
49afa609 | 1760 | L: [email protected] |
d24ecfcc BW |
1761 | W: http://blackfin.uclinux.org/ |
1762 | S: Supported | |
679655da | 1763 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1764 | |
1e204377 SJ |
1765 | BLACKFIN MEDIA DRIVER |
1766 | M: Scott Jiang <[email protected]> | |
1767 | L: [email protected] | |
1768 | W: http://blackfin.uclinux.org/ | |
1769 | S: Supported | |
1770 | F: drivers/media/platform/blackfin/ | |
1771 | F: drivers/media/i2c/adv7183* | |
1772 | F: drivers/media/i2c/vs6624* | |
1773 | ||
b54cf35a JSM |
1774 | BLINKM RGB LED DRIVER |
1775 | M: Jan-Simon Moeller <[email protected]> | |
1776 | S: Maintained | |
1777 | F: drivers/leds/leds-blinkm.c | |
1778 | ||
1da177e4 | 1779 | BLOCK LAYER |
8b58be88 | 1780 | M: Jens Axboe <[email protected]> |
08deed1e | 1781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1782 | S: Maintained |
679655da | 1783 | F: block/ |
1da177e4 | 1784 | |
2b54aaef | 1785 | BLOCK2MTD DRIVER |
8b58be88 | 1786 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1787 | L: [email protected] |
1788 | S: Maintained | |
679655da | 1789 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1790 | |
63fbd24e | 1791 | BLUETOOTH DRIVERS |
8b58be88 | 1792 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1793 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1794 | M: Johan Hedberg <[email protected]> |
781c2844 | 1795 | L: [email protected] |
63fbd24e | 1796 | W: http://www.bluez.org/ |
22e7a424 MH |
1797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1799 | S: Maintained |
679655da | 1800 | F: drivers/bluetooth/ |
1da177e4 | 1801 | |
63fbd24e | 1802 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1803 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1804 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1805 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1806 | L: [email protected] |
1807 | W: http://www.bluez.org/ | |
22e7a424 MH |
1808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1810 | S: Maintained |
679655da JP |
1811 | F: net/bluetooth/ |
1812 | F: include/net/bluetooth/ | |
1da177e4 LT |
1813 | |
1814 | BONDING DRIVER | |
8b58be88 | 1815 | M: Jay Vosburgh <[email protected]> |
28ad7b06 | 1816 | M: Veaceslav Falico <[email protected]> |
4cd72c6e | 1817 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1818 | L: [email protected] |
ce00f85c JC |
1819 | W: http://sourceforge.net/projects/bonding/ |
1820 | S: Supported | |
679655da | 1821 | F: drivers/net/bonding/ |
c117ab84 | 1822 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1823 | |
39105890 | 1824 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1825 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1826 | L: [email protected] |
1827 | S: Supported | |
adfc5217 | 1828 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1829 | |
948c51e6 | 1830 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1831 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1832 | L: [email protected] |
1833 | S: Supported | |
adfc5217 JK |
1834 | F: drivers/net/ethernet/broadcom/bnx2.* |
1835 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1836 | |
4d9d2cb0 | 1837 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
28fb9655 | 1838 | M: Ariel Elior <[email protected]> |
4d9d2cb0 ET |
1839 | L: [email protected] |
1840 | S: Supported | |
adfc5217 | 1841 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1842 | |
af4b8e37 | 1843 | BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE |
497a045d CD |
1844 | M: Christian Daudt <[email protected]> |
1845 | L: [email protected] | |
af4b8e37 CD |
1846 | T: git git://git.github.com/broadcom/bcm11351 |
1847 | S: Maintained | |
1848 | F: arch/arm/mach-bcm/ | |
1849 | F: arch/arm/boot/dts/bcm113* | |
1850 | F: arch/arm/boot/dts/bcm281* | |
1851 | F: arch/arm/configs/bcm_defconfig | |
1852 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1853 | F: drivers/clocksource/bcm_kona_timer.c | |
1854 | ||
f680f25c SW |
1855 | BROADCOM BCM2835 ARM ARCHICTURE |
1856 | M: Stephen Warren <[email protected]> | |
1857 | L: [email protected] (moderated for non-subscribers) | |
1858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1859 | S: Maintained | |
1860 | F: arch/arm/mach-bcm2835/ | |
1861 | F: arch/arm/boot/dts/bcm2835* | |
1862 | F: arch/arm/configs/bcm2835_defconfig | |
1863 | F: drivers/*/*bcm2835* | |
1864 | ||
948c51e6 | 1865 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1866 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1867 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1868 | L: [email protected] |
1869 | S: Supported | |
adfc5217 | 1870 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1871 | |
a9533e7e HP |
1872 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1873 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1874 | M: Arend van Spriel <[email protected]> |
85d63686 | 1875 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1876 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1877 | L: [email protected] |
5615171c | 1878 | L: [email protected] |
a9533e7e | 1879 | S: Supported |
f62ebdd5 | 1880 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1881 | |
9958d6f9 | 1882 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
f69098c5 | 1883 | M: Eddie Wai <[email protected]> |
9958d6f9 BPG |
1884 | L: [email protected] |
1885 | S: Supported | |
1886 | F: drivers/scsi/bnx2fc/ | |
1887 | ||
6a6b5ad0 EW |
1888 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1889 | M: Eddie Wai <[email protected]> | |
1890 | L: [email protected] | |
1891 | S: Supported | |
1892 | F: drivers/scsi/bnx2i/ | |
1893 | ||
c9678d86 RM |
1894 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1895 | M: Rafał Miłecki <[email protected]> | |
1896 | L: [email protected] | |
1897 | S: Maintained | |
1898 | F: drivers/bcma/ | |
1899 | F: include/linux/bcma/ | |
1900 | ||
7725ccfd | 1901 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1902 | M: Anil Gurumurthy <[email protected]> |
1903 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1904 | L: [email protected] |
1905 | S: Supported | |
1906 | F: drivers/scsi/bfa/ | |
7725ccfd | 1907 | |
8b230ed8 RM |
1908 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1909 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1910 | L: [email protected] |
1911 | S: Supported | |
f844a0ea | 1912 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1913 | |
5cdf7f76 | 1914 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1915 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1916 | L: [email protected] |
1917 | S: Supported | |
679655da JP |
1918 | F: block/bsg.c |
1919 | F: include/linux/bsg.h | |
c117ab84 | 1920 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1921 | |
af39917d CL |
1922 | BT87X AUDIO DRIVER |
1923 | M: Clemens Ladisch <[email protected]> | |
1924 | L: [email protected] (moderated for non-subscribers) | |
1925 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1926 | S: Maintained | |
1927 | F: Documentation/sound/alsa/Bt87x.txt | |
1928 | F: sound/pci/bt87x.c | |
1929 | ||
ff1d5c2f | 1930 | BT8XXGPIO DRIVER |
eb032b98 | 1931 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1932 | W: http://bu3sch.de/btgpio.php |
1933 | S: Maintained | |
72dbb705 | 1934 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1935 | |
eb1eb04f | 1936 | BTRFS FILE SYSTEM |
c0778e25 CM |
1937 | M: Chris Mason <[email protected]> |
1938 | M: Josef Bacik <[email protected]> | |
eb1eb04f JP |
1939 | L: [email protected] |
1940 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1941 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1943 | S: Maintained |
679655da JP |
1944 | F: Documentation/filesystems/btrfs.txt |
1945 | F: fs/btrfs/ | |
eb1eb04f | 1946 | |
1da177e4 | 1947 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1948 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1949 | L: [email protected] |
96b6aba0 | 1950 | W: http://linuxtv.org |
275ffde4 | 1951 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1952 | S: Odd fixes |
679655da | 1953 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1954 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1955 | |
1f34923c KA |
1956 | BUSLOGIC SCSI DRIVER |
1957 | M: Khalid Aziz <[email protected]> | |
1958 | L: [email protected] | |
1959 | S: Maintained | |
1960 | F: drivers/scsi/BusLogic.* | |
1961 | F: drivers/scsi/FlashPoint.* | |
1962 | ||
af39917d CL |
1963 | C-MEDIA CMI8788 DRIVER |
1964 | M: Clemens Ladisch <[email protected]> | |
1965 | L: [email protected] (moderated for non-subscribers) | |
1966 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1967 | S: Maintained | |
1968 | F: sound/pci/oxygen/ | |
1969 | ||
2141355f MS |
1970 | C6X ARCHITECTURE |
1971 | M: Mark Salter <[email protected]> | |
1972 | M: Aurelien Jacquiot <[email protected]> | |
1973 | L: [email protected] | |
1974 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1975 | S: Maintained | |
1976 | F: arch/c6x/ | |
1977 | ||
a5432f5a | 1978 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1979 | M: David Howells <[email protected]> |
a5432f5a DH |
1980 | L: [email protected] |
1981 | S: Supported | |
1982 | F: Documentation/filesystems/caching/cachefiles.txt | |
1983 | F: fs/cachefiles/ | |
1984 | ||
c815ca39 HV |
1985 | CADET FM/AM RADIO RECEIVER DRIVER |
1986 | M: Hans Verkuil <[email protected]> | |
1987 | L: [email protected] | |
1988 | T: git git://linuxtv.org/media_tree.git | |
1989 | W: http://linuxtv.org | |
1990 | S: Maintained | |
1991 | F: drivers/media/radio/radio-cadet* | |
1992 | ||
77d5140f | 1993 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1994 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1995 | L: [email protected] |
275ffde4 | 1996 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1997 | S: Maintained |
679655da | 1998 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1999 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2000 | |
201b6bab | 2001 | CAIF NETWORK LAYER |
5c574f50 | 2002 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
2003 | L: [email protected] |
2004 | S: Supported | |
2005 | F: Documentation/networking/caif/ | |
2006 | F: drivers/net/caif/ | |
c117ab84 | 2007 | F: include/uapi/linux/caif/ |
201b6bab JP |
2008 | F: include/net/caif/ |
2009 | F: net/caif/ | |
2010 | ||
77dac90f | 2011 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2012 | M: Muli Ben-Yehuda <[email protected]> |
2013 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
2014 | L: [email protected] |
2015 | S: Maintained | |
679655da JP |
2016 | F: arch/x86/kernel/pci-calgary_64.c |
2017 | F: arch/x86/kernel/tce_64.c | |
2018 | F: arch/x86/include/asm/calgary.h | |
2019 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2020 | |
e2d1d6c0 | 2021 | CAN NETWORK LAYER |
8d15d386 | 2022 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 2023 | L: [email protected] |
ec78213a | 2024 | W: http://gitorious.org/linux-can |
405cc273 | 2025 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2026 | S: Maintained |
8d15d386 | 2027 | F: net/can/ |
8d15d386 | 2028 | F: include/linux/can/core.h |
c117ab84 CEB |
2029 | F: include/uapi/linux/can.h |
2030 | F: include/uapi/linux/can/bcm.h | |
2031 | F: include/uapi/linux/can/raw.h | |
2032 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2033 | |
4261a204 | 2034 | CAN NETWORK DRIVERS |
8b58be88 | 2035 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2036 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2037 | L: [email protected] |
ec78213a | 2038 | W: http://gitorious.org/linux-can |
405cc273 | 2039 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2040 | S: Maintained |
8d15d386 OH |
2041 | F: drivers/net/can/ |
2042 | F: include/linux/can/dev.h | |
8d15d386 | 2043 | F: include/linux/can/platform/ |
c117ab84 CEB |
2044 | F: include/uapi/linux/can/error.h |
2045 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2046 | |
95d16c72 JM |
2047 | CAPABILITIES |
2048 | M: Serge Hallyn <[email protected]> | |
2049 | L: [email protected] | |
6305902c | 2050 | S: Supported |
95d16c72 | 2051 | F: include/linux/capability.h |
c117ab84 | 2052 | F: include/uapi/linux/capability.h |
95d16c72 | 2053 | F: security/capability.c |
6305902c | 2054 | F: security/commoncap.c |
38a94118 | 2055 | F: kernel/capability.c |
95d16c72 | 2056 | |
b8154542 | 2057 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2058 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2059 | L: [email protected] |
2060 | L: [email protected] | |
b8154542 AB |
2061 | W: http://www.ibm.com/developerworks/power/cell/ |
2062 | S: Supported | |
679655da | 2063 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2064 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2065 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2066 | F: arch/powerpc/oprofile/*cell* |
2067 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2068 | |
9030aaf9 | 2069 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2070 | M: Sage Weil <[email protected]> |
82593f87 | 2071 | L: [email protected] |
09d90327 | 2072 | W: http://ceph.com/ |
fb99f881 | 2073 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2074 | S: Supported |
2075 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2076 | F: fs/ceph/ |
2077 | F: net/ceph/ | |
2078 | F: include/linux/ceph/ | |
2079 | F: include/linux/crush/ | |
9030aaf9 | 2080 | |
18332a80 | 2081 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2082 | L: [email protected] |
10c6c9c9 | 2083 | S: Orphan |
679655da JP |
2084 | F: Documentation/usb/WUSB-Design-overview.txt |
2085 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2086 | F: drivers/usb/host/hwa-hc.c |
2087 | F: drivers/usb/host/whci/ | |
679655da JP |
2088 | F: drivers/usb/wusbcore/ |
2089 | F: include/linux/usb/wusb* | |
18332a80 | 2090 | |
70e84049 | 2091 | CFAG12864B LCD DRIVER |
8b58be88 | 2092 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2093 | W: http://miguelojeda.es/auxdisplay.htm |
2094 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2095 | S: Maintained |
679655da JP |
2096 | F: drivers/auxdisplay/cfag12864b.c |
2097 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2098 | |
2099 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2100 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2101 | W: http://miguelojeda.es/auxdisplay.htm |
2102 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2103 | S: Maintained |
679655da JP |
2104 | F: drivers/auxdisplay/cfag12864bfb.c |
2105 | F: include/linux/cfag12864b.h | |
70e84049 | 2106 | |
704232c2 | 2107 | CFG80211 and NL80211 |
8b58be88 | 2108 | M: Johannes Berg <[email protected]> |
704232c2 | 2109 | L: [email protected] |
ce466579 JB |
2110 | W: http://wireless.kernel.org/ |
2111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2112 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2113 | S: Maintained |
c117ab84 | 2114 | F: include/uapi/linux/nl80211.h |
679655da JP |
2115 | F: include/net/cfg80211.h |
2116 | F: net/wireless/* | |
2117 | X: net/wireless/wext* | |
704232c2 | 2118 | |
46e64261 GKH |
2119 | CHAR and MISC DRIVERS |
2120 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2121 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2123 | S: Supported |
46e64261 GKH |
2124 | F: drivers/char/* |
2125 | F: drivers/misc/* | |
2126 | ||
0a920b5b | 2127 | CHECKPATCH |
8b58be88 | 2128 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2129 | M: Joe Perches <[email protected]> |
2130 | S: Maintained | |
679655da | 2131 | F: scripts/checkpatch.pl |
0a920b5b | 2132 | |
f8407f26 HW |
2133 | CHINESE DOCUMENTATION |
2134 | M: Harry Wei <[email protected]> | |
9740153c | 2135 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2136 | L: [email protected] (moderated for non-subscribers) |
2137 | S: Maintained | |
2138 | F: Documentation/zh_CN/ | |
2139 | ||
2721ea2c AS |
2140 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2141 | M: Alexander Shishkin <[email protected]> | |
2142 | L: [email protected] | |
2143 | S: Maintained | |
2144 | F: drivers/usb/chipidea/ | |
2145 | ||
ab043105 OJ |
2146 | CHROME HARDWARE PLATFORM SUPPORT |
2147 | M: Olof Johansson <[email protected]> | |
2148 | S: Maintained | |
2149 | F: drivers/platform/chrome/ | |
2150 | ||
641cb85e | 2151 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2152 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2153 | M: Sujith Sankar <[email protected]> |
2154 | M: Govindarajulu Varadarajan <[email protected]> | |
5c6652f5 NP |
2155 | M: Neel Patel <[email protected]> |
2156 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2157 | S: Supported |
a6a5580c | 2158 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2159 | |
2b7a52a4 | 2160 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2161 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2162 | L: [email protected] |
2163 | S: Maintained | |
57d0b7a0 | 2164 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2165 | |
2b7a52a4 | 2166 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2167 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2168 | L: [email protected] |
2b7a52a4 | 2169 | S: Maintained |
679655da | 2170 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2171 | |
d9e9d82c | 2172 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2173 | M: Timur Tabi <[email protected]> |
93711660 | 2174 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2175 | S: Odd Fixes |
679655da | 2176 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2177 | |
94574d9a KRW |
2178 | CLEANCACHE API |
2179 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2180 | L: [email protected] | |
2181 | S: Maintained | |
2182 | F: mm/cleancache.c | |
2183 | F: include/linux/cleancache.h | |
2184 | ||
d4275354 | 2185 | CLK API |
8b58be88 | 2186 | M: Russell King <[email protected]> |
37417046 | 2187 | S: Maintained |
d4275354 RK |
2188 | F: include/linux/clk.h |
2189 | ||
9222d247 JS |
2190 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2191 | M: Daniel Lezcano <[email protected]> | |
2192 | M: Thomas Gleixner <[email protected]> | |
2193 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | |
2194 | S: Supported | |
2195 | F: drivers/clocksource | |
2196 | ||
5df6d737 | 2197 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2198 | M: Hiral Patel <[email protected]> |
2199 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2200 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2201 | L: [email protected] |
2202 | S: Supported | |
2a99921a | 2203 | F: drivers/scsi/fnic/ |
5df6d737 | 2204 | |
529aa8cb TLSC |
2205 | CMPC ACPI DRIVER |
2206 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2207 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2208 | L: [email protected] |
529aa8cb TLSC |
2209 | S: Supported |
2210 | F: drivers/platform/x86/classmate-laptop.c | |
2211 | ||
74425eee | 2212 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2213 | M: Julia Lawall <[email protected]> |
74425eee | 2214 | M: Gilles Muller <[email protected]> |
26de9c26 | 2215 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2216 | M: Michal Marek <[email protected]> |
26de9c26 | 2217 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2219 | W: http://coccinelle.lip6.fr/ |
2220 | S: Supported | |
4b92b2aa | 2221 | F: Documentation/coccinelle.txt |
74425eee NP |
2222 | F: scripts/coccinelle/ |
2223 | F: scripts/coccicheck | |
2224 | ||
1da177e4 | 2225 | CODA FILE SYSTEM |
8b58be88 | 2226 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2227 | M: [email protected] |
2228 | L: [email protected] | |
2229 | W: http://www.coda.cs.cmu.edu/ | |
2230 | S: Maintained | |
679655da JP |
2231 | F: Documentation/filesystems/coda.txt |
2232 | F: fs/coda/ | |
2233 | F: include/linux/coda*.h | |
c117ab84 | 2234 | F: include/uapi/linux/coda*.h |
1da177e4 | 2235 | |
7704addb | 2236 | COMMON CLK FRAMEWORK |
7704addb MT |
2237 | M: Mike Turquette <[email protected]> |
2238 | L: [email protected] (same as CLK API & CLKDEV) | |
2239 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2240 | S: Maintained | |
60bea3b5 SW |
2241 | F: drivers/clk/ |
2242 | X: drivers/clk/clkdev.c | |
7704addb | 2243 | F: include/linux/clk-pr* |
60bea3b5 | 2244 | F: include/linux/clk/ |
7704addb | 2245 | |
e2d1d6c0 | 2246 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2247 | M: Steve French <[email protected]> |
51223df6 | 2248 | L: [email protected] |
d1f28953 | 2249 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2250 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2251 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2252 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2253 | S: Supported |
679655da JP |
2254 | F: Documentation/filesystems/cifs.txt |
2255 | F: fs/cifs/ | |
e2d1d6c0 | 2256 | |
1da177e4 | 2257 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2258 | M: Scott Murray <[email protected]> |
64dab204 | 2259 | L: [email protected] |
82c4dfc7 | 2260 | S: Maintained |
679655da | 2261 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2262 | |
2263 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2264 | M: Scott Murray <[email protected]> |
64dab204 | 2265 | L: [email protected] |
82c4dfc7 | 2266 | S: Maintained |
679655da | 2267 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2268 | |
2269 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2270 | M: Scott Murray <[email protected]> |
64dab204 | 2271 | L: [email protected] |
82c4dfc7 | 2272 | S: Maintained |
679655da | 2273 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2274 | |
5411552c | 2275 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2276 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2277 | L: [email protected] |
5411552c | 2278 | S: Maintained |
679655da | 2279 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2280 | |
949be0f7 | 2281 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2282 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2283 | L: [email protected] |
2284 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2285 | S: Maintained |
679655da | 2286 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2287 | |
e2d1d6c0 | 2288 | CONFIGFS |
d6351db2 JB |
2289 | M: Joel Becker <[email protected]> |
2290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2291 | S: Supported |
679655da JP |
2292 | F: fs/configfs/ |
2293 | F: include/linux/configfs.h | |
e2d1d6c0 | 2294 | |
acb9c1b2 | 2295 | CONNECTOR |
8b58be88 | 2296 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2297 | L: [email protected] |
2298 | S: Maintained | |
2299 | F: drivers/connector/ | |
2300 | ||
fb3a0fb6 | 2301 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2302 | M: Tejun Heo <[email protected]> |
ad50c159 | 2303 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2304 | L: [email protected] |
12340313 | 2305 | L: [email protected] |
860ca0e6 | 2306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2307 | S: Maintained |
679655da JP |
2308 | F: include/linux/cgroup* |
2309 | F: kernel/cgroup* | |
8ca739e3 | 2310 | F: mm/*cgroup* |
fb3a0fb6 | 2311 | |
bebe4678 | 2312 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2313 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2314 | L: [email protected] |
2315 | S: Maintained | |
679655da JP |
2316 | F: Documentation/hwmon/coretemp |
2317 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2318 | |
1da177e4 | 2319 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2320 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2321 | W: http://www.fi.muni.cz/~kas/cosa/ |
2322 | S: Maintained | |
679655da | 2323 | F: drivers/net/wan/cosa* |
1da177e4 | 2324 | |
4371ee35 | 2325 | CPMAC ETHERNET DRIVER |
8b58be88 | 2326 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2327 | L: [email protected] |
2328 | S: Maintained | |
b544dbac | 2329 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2330 | |
1da177e4 | 2331 | CPU FREQUENCY DRIVERS |
49db1903 | 2332 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2333 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2334 | L: [email protected] |
a6c072c7 | 2335 | L: [email protected] |
1da177e4 | 2336 | S: Maintained |
27209d91 VK |
2337 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2338 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2339 | F: drivers/cpufreq/ |
2340 | F: include/linux/cpufreq.h | |
1da177e4 | 2341 | |
8a67f0ef VK |
2342 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2343 | M: Viresh Kumar <[email protected]> | |
2344 | M: Sudeep KarkadaNagesha <[email protected]> | |
2345 | L: [email protected] | |
2346 | L: [email protected] | |
2347 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2348 | S: Maintained | |
2349 | F: drivers/cpufreq/arm_big_little.h | |
2350 | F: drivers/cpufreq/arm_big_little.c | |
2351 | F: drivers/cpufreq/arm_big_little_dt.c | |
2352 | ||
14d2c34c LP |
2353 | CPUIDLE DRIVER - ARM BIG LITTLE |
2354 | M: Lorenzo Pieralisi <[email protected]> | |
2355 | M: Daniel Lezcano <[email protected]> | |
2356 | L: [email protected] | |
2357 | L: [email protected] | |
2358 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2359 | S: Maintained | |
2360 | F: drivers/cpuidle/cpuidle-big_little.c | |
2361 | ||
a8e39c35 | 2362 | CPUIDLE DRIVERS |
49db1903 | 2363 | M: Rafael J. Wysocki <[email protected]> |
a8e39c35 DL |
2364 | M: Daniel Lezcano <[email protected]> |
2365 | L: [email protected] | |
2366 | S: Maintained | |
2367 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2368 | F: drivers/cpuidle/* | |
2369 | F: include/linux/cpuidle.h | |
2370 | ||
1da177e4 | 2371 | CPUID/MSR DRIVER |
8b58be88 | 2372 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2373 | S: Maintained |
679655da JP |
2374 | F: arch/x86/kernel/cpuid.c |
2375 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2376 | |
7fe2f639 DB |
2377 | CPU POWER MONITORING SUBSYSTEM |
2378 | M: Dominik Brodowski <[email protected]> | |
2379 | M: Thomas Renninger <[email protected]> | |
2380 | S: Maintained | |
14430813 | 2381 | F: tools/power/cpupower/ |
7fe2f639 | 2382 | |
ed90fb4a | 2383 | CPUSETS |
f47b89c7 | 2384 | M: Li Zefan <[email protected]> |
ed90fb4a | 2385 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2386 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2387 | S: Maintained |
679655da JP |
2388 | F: Documentation/cgroups/cpusets.txt |
2389 | F: include/linux/cpuset.h | |
2390 | F: kernel/cpuset.c | |
ed90fb4a | 2391 | |
1da177e4 | 2392 | CRAMFS FILESYSTEM |
ce00f85c | 2393 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2394 | S: Orphan / Obsolete |
679655da JP |
2395 | F: Documentation/filesystems/cramfs.txt |
2396 | F: fs/cramfs/ | |
1da177e4 LT |
2397 | |
2398 | CRIS PORT | |
8b58be88 JP |
2399 | M: Mikael Starvik <[email protected]> |
2400 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2401 | L: [email protected] |
1da177e4 LT |
2402 | W: http://developer.axis.com |
2403 | S: Maintained | |
679655da | 2404 | F: arch/cris/ |
df621252 | 2405 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2406 | |
2407 | CRYPTO API | |
8b58be88 JP |
2408 | M: Herbert Xu <[email protected]> |
2409 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2410 | L: [email protected] |
54e5881d | 2411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2412 | S: Maintained |
679655da JP |
2413 | F: Documentation/crypto/ |
2414 | F: arch/*/crypto/ | |
2415 | F: crypto/ | |
2416 | F: drivers/crypto/ | |
2417 | F: include/crypto/ | |
1da177e4 | 2418 | |
5b07bd57 | 2419 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2420 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2421 | L: [email protected] |
2422 | S: Maintained | |
51a2228a JP |
2423 | F: crypto/ansi_cprng.c |
2424 | F: crypto/rng.c | |
5b07bd57 | 2425 | |
9b4ffa48 | 2426 | CS5535 Audio ALSA driver |
8b58be88 | 2427 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2428 | S: Maintained |
679655da | 2429 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2430 | |
a910e4a9 SP |
2431 | CW1200 WLAN driver |
2432 | M: Solomon Peachy <[email protected]> | |
2433 | S: Maintained | |
2434 | F: drivers/net/wireless/cw1200/ | |
2435 | ||
6d8425b1 | 2436 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2437 | M: Andy Walls <[email protected]> |
c4240509 | 2438 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2439 | L: [email protected] |
275ffde4 | 2440 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2441 | W: http://linuxtv.org |
30e10993 | 2442 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2443 | S: Maintained |
679655da | 2444 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2445 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2446 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2447 | |
3f101d91 HV |
2448 | CX2341X MPEG ENCODER HELPER MODULE |
2449 | M: Hans Verkuil <[email protected]> | |
2450 | L: [email protected] | |
2451 | T: git git://linuxtv.org/media_tree.git | |
2452 | W: http://linuxtv.org | |
2453 | S: Maintained | |
c368360b | 2454 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2455 | F: include/media/cx2341x* |
2456 | ||
20357578 | 2457 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2458 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2459 | L: [email protected] |
2460 | W: http://linuxtv.org | |
2461 | T: git git://linuxtv.org/media_tree.git | |
2462 | S: Odd fixes | |
2463 | F: Documentation/video4linux/cx88/ | |
2464 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2465 | |
91952bc0 AP |
2466 | CXD2820R MEDIA DRIVER |
2467 | M: Antti Palosaari <[email protected]> | |
2468 | L: [email protected] | |
2469 | W: http://linuxtv.org/ | |
2470 | W: http://palosaari.fi/linux/ | |
2471 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2472 | T: git git://linuxtv.org/anttip/media_tree.git | |
2473 | S: Maintained | |
2474 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2475 | |
e5ec3789 | 2476 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2477 | M: Santosh Raspatur <[email protected]> |
e5ec3789 SW |
2478 | L: [email protected] |
2479 | W: http://www.chelsio.com | |
2480 | S: Supported | |
f7917c00 | 2481 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2482 | |
2483 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2484 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2485 | L: [email protected] |
e5ec3789 SW |
2486 | W: http://www.openfabrics.org |
2487 | S: Supported | |
679655da | 2488 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2489 | |
be4c9bad RD |
2490 | CXGB4 ETHERNET DRIVER (CXGB4) |
2491 | M: Dimitris Michailidis <[email protected]> | |
2492 | L: [email protected] | |
2493 | W: http://www.chelsio.com | |
2494 | S: Supported | |
f7917c00 | 2495 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2496 | |
2497 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2498 | M: Steve Wise <[email protected]> | |
2499 | L: [email protected] | |
2500 | W: http://www.openfabrics.org | |
2501 | S: Supported | |
2502 | F: drivers/infiniband/hw/cxgb4/ | |
2503 | ||
5c20a5c7 CL |
2504 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2505 | M: Casey Leedom <[email protected]> | |
2506 | L: [email protected] | |
2507 | W: http://www.chelsio.com | |
2508 | S: Supported | |
f7917c00 | 2509 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2510 | |
b52b97a3 GC |
2511 | STMMAC ETHERNET DRIVER |
2512 | M: Giuseppe Cavallaro <[email protected]> | |
2513 | L: [email protected] | |
2514 | W: http://www.stlinux.com | |
2515 | S: Supported | |
7ac6653a | 2516 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2517 | |
1da177e4 | 2518 | CYBERPRO FB DRIVER |
8b58be88 | 2519 | M: Russell King <[email protected]> |
efc03ecb | 2520 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2521 | W: http://www.arm.linux.org.uk/ |
2522 | S: Maintained | |
679655da | 2523 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2524 | |
1da177e4 | 2525 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2526 | W: http://www.cyclades.com/ |
d459883e | 2527 | S: Orphan |
c897401b | 2528 | F: drivers/tty/cyclades.c |
679655da | 2529 | F: include/linux/cyclades.h |
c117ab84 | 2530 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2531 | |
2532 | CYCLADES PC300 DRIVER | |
1da177e4 | 2533 | W: http://www.cyclades.com/ |
d459883e | 2534 | S: Orphan |
679655da | 2535 | F: drivers/net/wan/pc300* |
1da177e4 | 2536 | |
402f6ae4 AP |
2537 | CYPRESS_FIRMWARE MEDIA DRIVER |
2538 | M: Antti Palosaari <[email protected]> | |
2539 | L: [email protected] | |
2540 | W: http://linuxtv.org/ | |
2541 | W: http://palosaari.fi/linux/ | |
2542 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2543 | T: git git://linuxtv.org/anttip/media_tree.git | |
2544 | S: Maintained | |
2545 | F: drivers/media/common/cypress_firmware* | |
2546 | ||
e3ae3525 | 2547 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2548 | M: Ferruh Yigit <[email protected]> |
6305902c | 2549 | L: [email protected] |
be9a6f40 | 2550 | S: Supported |
6305902c JP |
2551 | F: drivers/input/touchscreen/cyttsp* |
2552 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2553 | |
1da177e4 | 2554 | DAMA SLAVE for AX.25 |
8b58be88 | 2555 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2556 | W: http://yaina.de/jreuter/ |
2557 | W: http://www.qsl.net/dl1bke/ | |
2558 | L: [email protected] | |
2559 | S: Maintained | |
679655da JP |
2560 | F: net/ax25/af_ax25.c |
2561 | F: net/ax25/ax25_dev.c | |
2562 | F: net/ax25/ax25_ds_* | |
2563 | F: net/ax25/ax25_in.c | |
2564 | F: net/ax25/ax25_out.c | |
2565 | F: net/ax25/ax25_timer.c | |
2566 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2567 | |
e2d1d6c0 | 2568 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2569 | L: [email protected] |
5ff77428 | 2570 | S: Orphan |
679655da | 2571 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2572 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2573 | |
2574 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2575 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2576 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2577 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2578 | S: Maintained |
679655da | 2579 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2580 | |
1da177e4 | 2581 | DC395x SCSI driver |
61eee9a7 | 2582 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2583 | M: Ali Akcaagac <[email protected]> |
2584 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2585 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2586 | L: [email protected] |
1da177e4 LT |
2587 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2588 | S: Maintained | |
679655da JP |
2589 | F: Documentation/scsi/dc395x.txt |
2590 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2591 | |
eb8edb08 | 2592 | DCCP PROTOCOL |
a89d030e | 2593 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2594 | L: [email protected] |
c996d8b9 | 2595 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2596 | S: Maintained |
679655da | 2597 | F: include/linux/dccp.h |
c117ab84 | 2598 | F: include/uapi/linux/dccp.h |
679655da JP |
2599 | F: include/linux/tfrc.h |
2600 | F: net/dccp/ | |
eb8edb08 | 2601 | |
1da177e4 | 2602 | DECnet NETWORK LAYER |
1da177e4 LT |
2603 | W: http://linux-decnet.sourceforge.net |
2604 | L: [email protected] | |
f546444d | 2605 | S: Orphan |
679655da JP |
2606 | F: Documentation/networking/decnet.txt |
2607 | F: net/decnet/ | |
1da177e4 LT |
2608 | |
2609 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2610 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2611 | S: Maintained |
33f810b2 | 2612 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2613 | |
ad8f07cc | 2614 | DELL LAPTOP DRIVER |
8b58be88 | 2615 | M: Matthew Garrett <[email protected]> |
d0944853 | 2616 | L: [email protected] |
ad8f07cc | 2617 | S: Maintained |
679655da | 2618 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2619 | |
1da177e4 | 2620 | DELL LAPTOP SMM DRIVER |
c5471462 | 2621 | S: Orphan |
679655da | 2622 | F: drivers/char/i8k.c |
c117ab84 | 2623 | F: include/uapi/linux/i8k.h |
1da177e4 | 2624 | |
90563ec4 | 2625 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2626 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2627 | S: Maintained |
679655da JP |
2628 | F: Documentation/dcdbas.txt |
2629 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2630 | |
0b3f6109 | 2631 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2632 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2633 | S: Maintained |
36b3a96f | 2634 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2635 | |
5efc75e3 PZ |
2636 | DESIGNWARE USB2 DRD IP DRIVER |
2637 | M: Paul Zimmerman <[email protected]> | |
2638 | L: [email protected] | |
2639 | S: Maintained | |
2640 | F: drivers/staging/dwc2/ | |
2641 | ||
94ab23dd FB |
2642 | DESIGNWARE USB3 DRD IP DRIVER |
2643 | M: Felipe Balbi <[email protected]> | |
2644 | L: [email protected] | |
2645 | L: [email protected] | |
2646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2647 | S: Maintained | |
2648 | F: drivers/usb/dwc3/ | |
2649 | ||
89d07767 KP |
2650 | DEVICE FREQUENCY (DEVFREQ) |
2651 | M: MyungJoo Ham <[email protected]> | |
2652 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2653 | L: [email protected] |
89d07767 KP |
2654 | S: Maintained |
2655 | F: drivers/devfreq/ | |
2656 | ||
1da177e4 | 2657 | DEVICE NUMBER REGISTRY |
8b58be88 | 2658 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2659 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2660 | S: Maintained |
2661 | ||
e2d1d6c0 | 2662 | DEVICE-MAPPER (LVM) |
854ecaad | 2663 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2664 | M: Mike Snitzer <[email protected]> |
854ecaad | 2665 | M: [email protected] |
e2d1d6c0 RD |
2666 | L: [email protected] |
2667 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2668 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2669 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2670 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2671 | S: Maintained |
679655da JP |
2672 | F: Documentation/device-mapper/ |
2673 | F: drivers/md/dm* | |
854ecaad | 2674 | F: drivers/md/persistent-data/ |
679655da JP |
2675 | F: include/linux/device-mapper.h |
2676 | F: include/linux/dm-*.h | |
8504eed3 | 2677 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2678 | |
599aa697 LL |
2679 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2680 | M: Lidza Louina <[email protected]> | |
2681 | L: [email protected] | |
2682 | S: Maintained | |
2683 | F: drivers/staging/dgnc/ | |
2684 | ||
2685 | DIGI EPCA PCI PRODUCTS | |
2686 | M: Lidza Louina <[email protected]> | |
2687 | L: [email protected] | |
2688 | S: Maintained | |
2689 | F: drivers/staging/dgap/ | |
2690 | ||
335d7c58 | 2691 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2692 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2693 | L: [email protected] |
2694 | S: Maintained | |
2695 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2696 | ||
e7839f25 | 2697 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2698 | M: Eric Paris <[email protected]> |
3c5119c0 | 2699 | S: Maintained |
679655da JP |
2700 | F: Documentation/filesystems/dnotify.txt |
2701 | F: fs/notify/dnotify/ | |
2702 | F: include/linux/dnotify.h | |
1da177e4 LT |
2703 | |
2704 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2705 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2706 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2707 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2708 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2709 | S: Maintained | |
2710 | ||
4480f15b | 2711 | DISKQUOTA |
8b58be88 | 2712 | M: Jan Kara <[email protected]> |
1da177e4 | 2713 | S: Maintained |
679655da JP |
2714 | F: Documentation/filesystems/quota.txt |
2715 | F: fs/quota/ | |
2716 | F: include/linux/quota*.h | |
c117ab84 | 2717 | F: include/uapi/linux/quota*.h |
1da177e4 | 2718 | |
702686ad BT |
2719 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2720 | M: Bernie Thompson <[email protected]> | |
2721 | L: [email protected] | |
2722 | S: Maintained | |
2723 | W: http://plugable.com/category/projects/udlfb/ | |
2724 | F: drivers/video/udlfb.c | |
2725 | F: include/video/udlfb.h | |
2726 | F: Documentation/fb/udlfb.txt | |
2727 | ||
e7839f25 | 2728 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2729 | M: Christine Caulfield <[email protected]> |
2730 | M: David Teigland <[email protected]> | |
a4644184 | 2731 | L: [email protected] |
5be7b50f | 2732 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2734 | S: Supported |
679655da | 2735 | F: fs/dlm/ |
5be7b50f | 2736 | |
53b6b3e0 SS |
2737 | DMA BUFFER SHARING FRAMEWORK |
2738 | M: Sumit Semwal <[email protected]> | |
2739 | S: Maintained | |
2740 | L: [email protected] | |
2741 | L: [email protected] | |
2742 | L: [email protected] | |
2743 | F: drivers/base/dma-buf* | |
2744 | F: include/linux/dma-buf* | |
2745 | F: Documentation/dma-buf-sharing.txt | |
2746 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2747 | ||
b3e5f263 | 2748 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2749 | M: Vinod Koul <[email protected]> |
ab5f8c6e | 2750 | M: Dan Williams <[email protected]> |
17b59560 VK |
2751 | L: [email protected] |
2752 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2753 | S: Supported |
679655da JP |
2754 | F: drivers/dma/ |
2755 | F: include/linux/dma* | |
5dbd05d4 VK |
2756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2757 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2758 | |
b825037d | 2759 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2760 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2761 | L: [email protected] |
2762 | S: Maintained | |
679655da JP |
2763 | F: Documentation/hwmon/dme1737 |
2764 | F: drivers/hwmon/dme1737.c | |
b825037d | 2765 | |
5b9c9bf6 | 2766 | DOCKING STATION DRIVER |
8b58be88 | 2767 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2768 | L: [email protected] |
8b59a454 | 2769 | S: Supported |
679655da | 2770 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2771 | |
7d2c86b5 | 2772 | DOCUMENTATION |
5191d566 | 2773 | M: Rob Landley <[email protected]> |
795fb7e7 | 2774 | L: [email protected] |
5191d566 | 2775 | T: TBD |
795fb7e7 | 2776 | S: Maintained |
679655da | 2777 | F: Documentation/ |
abbaeff3 | 2778 | |
1da177e4 | 2779 | DOUBLETALK DRIVER |
8b58be88 | 2780 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2781 | L: [email protected] |
2782 | S: Maintained | |
679655da JP |
2783 | F: drivers/char/dtlk.c |
2784 | F: include/linux/dtlk.h | |
1da177e4 | 2785 | |
e2d1d6c0 | 2786 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2787 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2788 | L: [email protected] |
2789 | W: http://www.adaptec.com/ | |
2790 | S: Maintained | |
679655da JP |
2791 | F: drivers/scsi/dpt* |
2792 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2793 | |
b411b363 | 2794 | DRBD DRIVER |
28b8e8d4 JP |
2795 | P: Philipp Reisner |
2796 | P: Lars Ellenberg | |
2797 | M: [email protected] | |
2798 | L: [email protected] | |
2799 | W: http://www.drbd.org | |
2800 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2801 | T: git git://git.drbd.org/drbd-8.3.git | |
2802 | S: Supported | |
2803 | F: drivers/block/drbd/ | |
2804 | F: lib/lru_cache.c | |
2805 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2806 | |
87544653 | 2807 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2808 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2810 | S: Supported |
679655da | 2811 | F: Documentation/kobject.txt |
7cfc51b9 | 2812 | F: drivers/base/ |
679655da | 2813 | F: fs/sysfs/ |
87544653 | 2814 | F: fs/debugfs/ |
679655da | 2815 | F: include/linux/kobj* |
87544653 | 2816 | F: include/linux/debugfs.h |
679655da | 2817 | F: lib/kobj* |
1da177e4 LT |
2818 | |
2819 | DRM DRIVERS | |
8b58be88 | 2820 | M: David Airlie <[email protected]> |
4c6a3999 | 2821 | L: [email protected] |
54e5881d | 2822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2823 | S: Maintained |
679655da | 2824 | F: drivers/gpu/drm/ |
850e9411 | 2825 | F: include/drm/ |
c117ab84 | 2826 | F: include/uapi/drm/ |
1da177e4 | 2827 | |
8daf7473 | 2828 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2829 | M: Daniel Vetter <[email protected]> |
362132d2 | 2830 | L: [email protected] |
8daf7473 | 2831 | L: [email protected] |
38e490fe | 2832 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 | 2833 | S: Supported |
14430813 | 2834 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2835 | F: include/drm/i915* |
c117ab84 | 2836 | F: include/uapi/drm/i915* |
8daf7473 | 2837 | |
398a6d4a KP |
2838 | DRM DRIVERS FOR EXYNOS |
2839 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2840 | M: Joonyoung Shim <[email protected]> |
2841 | M: Seung-Woo Kim <[email protected]> | |
2842 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2843 | L: [email protected] |
25a58030 | 2844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2845 | S: Supported |
14430813 | 2846 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2847 | F: include/drm/exynos* |
c117ab84 | 2848 | F: include/uapi/drm/exynos* |
398a6d4a | 2849 | |
bd3b49f2 | 2850 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2851 | M: Thierry Reding <[email protected]> |
2852 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2853 | L: [email protected] |
2854 | L: [email protected] | |
a5ad7a63 | 2855 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 2856 | S: Supported |
dee8268f | 2857 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 2858 | F: drivers/gpu/host1x/ |
e1e90644 | 2859 | F: include/linux/host1x.h |
a5ad7a63 | 2860 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
2861 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2862 | ||
598df1ac AK |
2863 | DSBR100 USB FM RADIO DRIVER |
2864 | M: Alexey Klimov <[email protected]> | |
2865 | L: [email protected] | |
2866 | T: git git://linuxtv.org/media_tree.git | |
2867 | S: Maintained | |
2868 | F: drivers/media/radio/dsbr100.c | |
2869 | ||
1da177e4 | 2870 | DSCC4 DRIVER |
8b58be88 | 2871 | M: Francois Romieu <[email protected]> |
01f20734 | 2872 | L: [email protected] |
1da177e4 | 2873 | S: Maintained |
679655da | 2874 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2875 | |
91952bc0 AP |
2876 | DVB_USB_AF9015 MEDIA DRIVER |
2877 | M: Antti Palosaari <[email protected]> | |
2878 | L: [email protected] | |
2879 | W: http://linuxtv.org/ | |
2880 | W: http://palosaari.fi/linux/ | |
2881 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2882 | T: git git://linuxtv.org/anttip/media_tree.git | |
2883 | S: Maintained | |
2884 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2885 | ||
2886 | DVB_USB_AF9035 MEDIA DRIVER | |
2887 | M: Antti Palosaari <[email protected]> | |
2888 | L: [email protected] | |
2889 | W: http://linuxtv.org/ | |
2890 | W: http://palosaari.fi/linux/ | |
2891 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2892 | T: git git://linuxtv.org/anttip/media_tree.git | |
2893 | S: Maintained | |
2894 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2895 | ||
2896 | DVB_USB_ANYSEE MEDIA DRIVER | |
2897 | M: Antti Palosaari <[email protected]> | |
2898 | L: [email protected] | |
2899 | W: http://linuxtv.org/ | |
2900 | W: http://palosaari.fi/linux/ | |
2901 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2902 | T: git git://linuxtv.org/anttip/media_tree.git | |
2903 | S: Maintained | |
2904 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2905 | ||
2906 | DVB_USB_AU6610 MEDIA DRIVER | |
2907 | M: Antti Palosaari <[email protected]> | |
2908 | L: [email protected] | |
2909 | W: http://linuxtv.org/ | |
2910 | W: http://palosaari.fi/linux/ | |
2911 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2912 | T: git git://linuxtv.org/anttip/media_tree.git | |
2913 | S: Maintained | |
2914 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2915 | ||
2916 | DVB_USB_CE6230 MEDIA DRIVER | |
2917 | M: Antti Palosaari <[email protected]> | |
2918 | L: [email protected] | |
2919 | W: http://linuxtv.org/ | |
2920 | W: http://palosaari.fi/linux/ | |
2921 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2922 | T: git git://linuxtv.org/anttip/media_tree.git | |
2923 | S: Maintained | |
2924 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2925 | ||
d099dea2 MK |
2926 | DVB_USB_CXUSB MEDIA DRIVER |
2927 | M: Michael Krufky <[email protected]> | |
2928 | L: [email protected] | |
2929 | W: http://linuxtv.org/ | |
2930 | W: http://github.com/mkrufky | |
2931 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2932 | T: git git://linuxtv.org/media_tree.git | |
2933 | S: Maintained | |
9819da66 | 2934 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2935 | |
91952bc0 | 2936 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2937 | M: Antti Palosaari <[email protected]> |
2938 | L: [email protected] | |
2939 | W: http://linuxtv.org/ | |
2940 | W: http://palosaari.fi/linux/ | |
2941 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2942 | T: git git://linuxtv.org/anttip/media_tree.git | |
2943 | S: Maintained | |
91952bc0 | 2944 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2945 | |
5560983b | 2946 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2947 | M: Antti Palosaari <[email protected]> |
2948 | L: [email protected] | |
2949 | W: http://linuxtv.org/ | |
91952bc0 AP |
2950 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2951 | T: git git://linuxtv.org/anttip/media_tree.git | |
2952 | S: Maintained | |
5560983b | 2953 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2954 | |
8856f5f2 MK |
2955 | DVB_USB_MXL111SF MEDIA DRIVER |
2956 | M: Michael Krufky <[email protected]> | |
2957 | L: [email protected] | |
2958 | W: http://linuxtv.org/ | |
2959 | W: http://github.com/mkrufky | |
2960 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2961 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2962 | S: Maintained | |
2963 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2964 | ||
91952bc0 AP |
2965 | DVB_USB_RTL28XXU MEDIA DRIVER |
2966 | M: Antti Palosaari <[email protected]> | |
2967 | L: [email protected] | |
2968 | W: http://linuxtv.org/ | |
2969 | W: http://palosaari.fi/linux/ | |
2970 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2971 | T: git git://linuxtv.org/anttip/media_tree.git | |
2972 | S: Maintained | |
2973 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2974 | ||
2975 | DVB_USB_V2 MEDIA DRIVER | |
2976 | M: Antti Palosaari <[email protected]> | |
2977 | L: [email protected] | |
2978 | W: http://linuxtv.org/ | |
2979 | W: http://palosaari.fi/linux/ | |
2980 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2981 | T: git git://linuxtv.org/anttip/media_tree.git | |
2982 | S: Maintained | |
2983 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2984 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2985 | ||
ac0ac38f | 2986 | DYNAMIC DEBUG |
5c4a97d1 | 2987 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
2988 | S: Maintained |
2989 | F: lib/dynamic_debug.c | |
2990 | F: include/linux/dynamic_debug.h | |
2991 | ||
789c7048 | 2992 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2993 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2994 | S: Maintained |
df621252 | 2995 | F: drivers/tty/serial/dz.* |
789c7048 | 2996 | |
91952bc0 AP |
2997 | E4000 MEDIA DRIVER |
2998 | M: Antti Palosaari <[email protected]> | |
2999 | L: [email protected] | |
3000 | W: http://linuxtv.org/ | |
3001 | W: http://palosaari.fi/linux/ | |
3002 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3003 | T: git git://linuxtv.org/anttip/media_tree.git | |
3004 | S: Maintained | |
3005 | F: drivers/media/tuners/e4000* | |
3006 | ||
1da177e4 | 3007 | EATA-DMA SCSI DRIVER |
8b58be88 | 3008 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3009 | L: [email protected] |
3010 | L: [email protected] | |
1da177e4 | 3011 | S: Maintained |
679655da | 3012 | F: drivers/scsi/eata* |
1da177e4 LT |
3013 | |
3014 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 3015 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
3016 | L: [email protected] |
3017 | S: Maintained | |
679655da | 3018 | F: drivers/scsi/eata.c |
1da177e4 LT |
3019 | |
3020 | EATA-PIO SCSI DRIVER | |
8b58be88 | 3021 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
3022 | L: [email protected] |
3023 | L: [email protected] | |
1da177e4 | 3024 | S: Maintained |
679655da | 3025 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
3026 | |
3027 | EBTABLES | |
8b58be88 | 3028 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 3029 | L: [email protected] |
1da177e4 LT |
3030 | W: http://ebtables.sourceforge.net/ |
3031 | S: Maintained | |
679655da | 3032 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 3033 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 3034 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 3035 | |
91952bc0 AP |
3036 | EC100 MEDIA DRIVER |
3037 | M: Antti Palosaari <[email protected]> | |
3038 | L: [email protected] | |
3039 | W: http://linuxtv.org/ | |
3040 | W: http://palosaari.fi/linux/ | |
3041 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3042 | T: git git://linuxtv.org/anttip/media_tree.git | |
3043 | S: Maintained | |
3044 | F: drivers/media/dvb-frontends/ec100* | |
3045 | ||
237fead6 | 3046 | ECRYPT FILE SYSTEM |
0de9adf2 | 3047 | M: Tyler Hicks <[email protected]> |
a058bfbb | 3048 | L: [email protected] |
24a923e4 | 3049 | W: http://ecryptfs.org |
6dc7516e | 3050 | W: https://launchpad.net/ecryptfs |
237fead6 | 3051 | S: Supported |
679655da JP |
3052 | F: Documentation/filesystems/ecryptfs.txt |
3053 | F: fs/ecryptfs/ | |
237fead6 | 3054 | |
da9bb1d2 | 3055 | EDAC-CORE |
8b58be88 | 3056 | M: Doug Thompson <[email protected]> |
91445c72 | 3057 | L: [email protected] |
0e438e3f | 3058 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3059 | S: Supported |
679655da | 3060 | F: Documentation/edac.txt |
91445c72 | 3061 | F: drivers/edac/ |
679655da | 3062 | F: include/linux/edac.h |
0e438e3f | 3063 | |
c476c23b | 3064 | EDAC-AMD64 |
8b58be88 | 3065 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3066 | M: Borislav Petkov <[email protected]> |
91445c72 | 3067 | L: [email protected] |
c476c23b | 3068 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3069 | S: Maintained |
c476c23b BP |
3070 | F: drivers/edac/amd64_edac* |
3071 | ||
836dae5d RR |
3072 | EDAC-CALXEDA |
3073 | M: Doug Thompson <[email protected]> | |
3074 | M: Robert Richter <[email protected]> | |
3075 | L: [email protected] | |
3076 | W: bluesmoke.sourceforge.net | |
3077 | S: Maintained | |
3078 | F: drivers/edac/highbank* | |
3079 | ||
f65aad41 RB |
3080 | EDAC-CAVIUM |
3081 | M: Ralf Baechle <[email protected]> | |
3082 | M: David Daney <[email protected]> | |
3083 | L: [email protected] | |
3084 | L: [email protected] | |
3085 | W: bluesmoke.sourceforge.net | |
3086 | S: Supported | |
3087 | F: drivers/edac/octeon_edac* | |
3088 | ||
0e438e3f | 3089 | EDAC-E752X |
8b58be88 JP |
3090 | M: Mark Gross <[email protected]> |
3091 | M: Doug Thompson <[email protected]> | |
91445c72 | 3092 | L: [email protected] |
0e438e3f DP |
3093 | W: bluesmoke.sourceforge.net |
3094 | S: Maintained | |
679655da | 3095 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3096 | |
3097 | EDAC-E7XXX | |
8b58be88 | 3098 | M: Doug Thompson <[email protected]> |
91445c72 | 3099 | L: [email protected] |
0e438e3f DP |
3100 | W: bluesmoke.sourceforge.net |
3101 | S: Maintained | |
679655da | 3102 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3103 | |
77c5f5d2 | 3104 | EDAC-GHES |
1b2c14b4 | 3105 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3106 | L: [email protected] |
3107 | W: bluesmoke.sourceforge.net | |
3108 | S: Maintained | |
2caa67a6 | 3109 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3110 | |
6bc78404 | 3111 | EDAC-I82443BXGX |
8b58be88 | 3112 | M: Tim Small <[email protected]> |
91445c72 | 3113 | L: [email protected] |
6bc78404 DT |
3114 | W: bluesmoke.sourceforge.net |
3115 | S: Maintained | |
679655da | 3116 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3117 | |
3118 | EDAC-I3000 | |
8b58be88 | 3119 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3120 | L: [email protected] |
6bc78404 DT |
3121 | W: bluesmoke.sourceforge.net |
3122 | S: Maintained | |
679655da | 3123 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3124 | |
3125 | EDAC-I5000 | |
8b58be88 | 3126 | M: Doug Thompson <[email protected]> |
91445c72 | 3127 | L: [email protected] |
ba9a5918 DT |
3128 | W: bluesmoke.sourceforge.net |
3129 | S: Maintained | |
679655da | 3130 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3131 | |
44c12cb2 | 3132 | EDAC-I5400 |
1b2c14b4 | 3133 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3134 | L: [email protected] |
44c12cb2 MCC |
3135 | W: bluesmoke.sourceforge.net |
3136 | S: Maintained | |
679655da | 3137 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3138 | |
3c9c92b6 | 3139 | EDAC-I7300 |
1b2c14b4 | 3140 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3141 | L: [email protected] |
3142 | W: bluesmoke.sourceforge.net | |
3143 | S: Maintained | |
3144 | F: drivers/edac/i7300_edac.c | |
3145 | ||
67c89316 | 3146 | EDAC-I7CORE |
1b2c14b4 | 3147 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3148 | L: [email protected] |
3149 | W: bluesmoke.sourceforge.net | |
3150 | S: Maintained | |
70aff0ce | 3151 | F: drivers/edac/i7core_edac.c |
67c89316 | 3152 | |
ba9a5918 | 3153 | EDAC-I82975X |
8b58be88 | 3154 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3155 | M: "Arvind R." <[email protected]> |
91445c72 | 3156 | L: [email protected] |
ba9a5918 DT |
3157 | W: bluesmoke.sourceforge.net |
3158 | S: Maintained | |
679655da | 3159 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3160 | |
ccdfb979 JT |
3161 | EDAC-MPC85XX |
3162 | M: Johannes Thumshirn <[email protected]> | |
3163 | L: [email protected] | |
3164 | W: bluesmoke.sourceforge.net | |
3165 | S: Maintained | |
3166 | F: drivers/edac/mpc85xx_edac.[ch] | |
3167 | ||
ba9a5918 | 3168 | EDAC-PASEMI |
8b58be88 | 3169 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3170 | L: [email protected] |
6bc78404 DT |
3171 | W: bluesmoke.sourceforge.net |
3172 | S: Maintained | |
679655da | 3173 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3174 | |
0e438e3f | 3175 | EDAC-R82600 |
8b58be88 | 3176 | M: Tim Small <[email protected]> |
91445c72 | 3177 | L: [email protected] |
0e438e3f DP |
3178 | W: bluesmoke.sourceforge.net |
3179 | S: Maintained | |
679655da | 3180 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3181 | |
4d096ca7 | 3182 | EDAC-SBRIDGE |
1b2c14b4 | 3183 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3184 | L: [email protected] |
3185 | W: bluesmoke.sourceforge.net | |
3186 | S: Maintained | |
3187 | F: drivers/edac/sb_edac.c | |
3188 | ||
af39917d CL |
3189 | EDIROL UA-101/UA-1000 DRIVER |
3190 | M: Clemens Ladisch <[email protected]> | |
3191 | L: [email protected] (moderated for non-subscribers) | |
3192 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3193 | S: Maintained | |
3194 | F: sound/usb/misc/ua101.c | |
3195 | ||
1f7df953 MF |
3196 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3197 | M: Matt Fleming <[email protected]> | |
3198 | L: [email protected] | |
78bef24e | 3199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3200 | S: Maintained |
3201 | F: Documentation/x86/efi-stub.txt | |
3202 | F: arch/ia64/kernel/efi.c | |
3203 | F: arch/x86/boot/compressed/eboot.[ch] | |
3204 | F: arch/x86/include/asm/efi.h | |
3205 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3206 | F: drivers/firmware/efi/* |
1f7df953 MF |
3207 | F: include/linux/efi*.h |
3208 | ||
d68772b7 MF |
3209 | EFI VARIABLE FILESYSTEM |
3210 | M: Matthew Garrett <[email protected]> | |
3211 | M: Jeremy Kerr <[email protected]> | |
3212 | M: Matt Fleming <[email protected]> | |
3213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3214 | L: [email protected] | |
3215 | S: Maintained | |
3216 | F: fs/efivarfs/ | |
3217 | ||
85a00d9b PJ |
3218 | EFIFB FRAMEBUFFER DRIVER |
3219 | L: [email protected] | |
3220 | M: Peter Jones <[email protected]> | |
3221 | S: Maintained | |
3222 | F: drivers/video/efifb.c | |
3223 | ||
0bee8d28 JT |
3224 | EFS FILESYSTEM |
3225 | W: http://aeschi.ch.eu.org/efs/ | |
3226 | S: Orphan | |
679655da | 3227 | F: fs/efs/ |
0bee8d28 | 3228 | |
4480f15b | 3229 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3230 | M: Hoang-Nam Nguyen <[email protected]> |
3231 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3232 | L: [email protected] |
fab97220 | 3233 | S: Supported |
679655da | 3234 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3235 | |
aa8a9e25 | 3236 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3237 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3238 | L: [email protected] |
3239 | S: Maintained | |
9aa32835 | 3240 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3241 | |
f0319efe | 3242 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3243 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3244 | L: [email protected] |
3245 | W: http://linuxtv.org | |
3246 | T: git git://linuxtv.org/media_tree.git | |
3247 | S: Maintained | |
3248 | F: drivers/media/usb/em28xx/ | |
3249 | ||
3e3a7d66 | 3250 | EMBEDDED LINUX |
8b58be88 JP |
3251 | M: Paul Gortmaker <[email protected]> |
3252 | M: Matt Mackall <[email protected]> | |
3253 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3254 | L: [email protected] |
3255 | S: Maintained | |
3256 | ||
3a1c1d44 | 3257 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3258 | M: James Smart <[email protected]> |
ce00f85c JC |
3259 | L: [email protected] |
3260 | W: http://sourceforge.net/projects/lpfcxxxx | |
3261 | S: Supported | |
679655da | 3262 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3263 | |
5f5bac82 | 3264 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3265 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3266 | S: Maintained |
3267 | F: drivers/misc/cb710/ | |
3268 | F: drivers/mmc/host/cb710-mmc.* | |
3269 | F: include/linux/cb710.h | |
3270 | ||
931e39a1 ML |
3271 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3272 | M: Maxim Levitsky <[email protected]> | |
3273 | S: Maintained | |
2a837449 | 3274 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3275 | |
ec207dcc GS |
3276 | ENHANCED ERROR HANDLING (EEH) |
3277 | M: Gavin Shan <[email protected]> | |
3278 | L: [email protected] | |
3279 | S: Supported | |
3280 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3281 | F: arch/powerpc/kernel/eeh*.c | |
3282 | ||
d5ca9006 | 3283 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3284 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3285 | S: Maintained |
084bad91 | 3286 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3287 | F: drivers/video/s1d13xxxfb.c |
3288 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3289 | |
1da177e4 | 3290 | ETHERNET BRIDGE |
adbbf69d | 3291 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3292 | L: [email protected] |
4c325313 | 3293 | L: [email protected] |
c996d8b9 | 3294 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3295 | S: Maintained |
679655da JP |
3296 | F: include/linux/netfilter_bridge/ |
3297 | F: net/bridge/ | |
1da177e4 | 3298 | |
1da177e4 | 3299 | EXT2 FILE SYSTEM |
01971952 | 3300 | M: Jan Kara <[email protected]> |
72be2ccf | 3301 | L: [email protected] |
1da177e4 | 3302 | S: Maintained |
679655da JP |
3303 | F: Documentation/filesystems/ext2.txt |
3304 | F: fs/ext2/ | |
3305 | F: include/linux/ext2* | |
1da177e4 LT |
3306 | |
3307 | EXT3 FILE SYSTEM | |
01971952 | 3308 | M: Jan Kara <[email protected]> |
8b58be88 | 3309 | M: Andrew Morton <[email protected]> |
3c373a5f | 3310 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3311 | L: [email protected] |
3312 | S: Maintained | |
679655da JP |
3313 | F: Documentation/filesystems/ext3.txt |
3314 | F: fs/ext3/ | |
72be2ccf EM |
3315 | |
3316 | EXT4 FILE SYSTEM | |
8b58be88 | 3317 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3318 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3319 | L: [email protected] |
08a225f1 | 3320 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3321 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3322 | S: Maintained |
679655da JP |
3323 | F: Documentation/filesystems/ext4.txt |
3324 | F: fs/ext4/ | |
1da177e4 | 3325 | |
c5532b09 MZ |
3326 | Extended Verification Module (EVM) |
3327 | M: Mimi Zohar <[email protected]> | |
3328 | S: Supported | |
3329 | F: security/integrity/evm/ | |
3330 | ||
df6b3cfe MH |
3331 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3332 | M: MyungJoo Ham <[email protected]> | |
3333 | M: Chanwoo Choi <[email protected]> | |
3334 | L: [email protected] | |
3335 | S: Maintained | |
3336 | F: drivers/extcon/ | |
3337 | F: Documentation/extcon/ | |
3338 | ||
0a79951a JH |
3339 | EXYNOS DP DRIVER |
3340 | M: Jingoo Han <[email protected]> | |
3341 | L: [email protected] | |
3342 | S: Maintained | |
3343 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3344 | F: include/video/exynos_dp* |
0a79951a | 3345 | |
33ad3912 DL |
3346 | EXYNOS MIPI DISPLAY DRIVERS |
3347 | M: Inki Dae <[email protected]> | |
3348 | M: Donghwa Lee <[email protected]> | |
3349 | M: Kyungmin Park <[email protected]> | |
3350 | L: [email protected] | |
3351 | S: Maintained | |
3352 | F: drivers/video/exynos/exynos_mipi* | |
3353 | F: include/video/exynos_mipi* | |
3354 | ||
e53004e2 | 3355 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3356 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3357 | L: [email protected] |
3358 | S: Maintained | |
679655da JP |
3359 | F: Documentation/hwmon/f71805f |
3360 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3361 | |
eea977ed MB |
3362 | FC0011 TUNER DRIVER |
3363 | M: Michael Buesch <[email protected]> | |
3364 | L: [email protected] | |
3365 | S: Maintained | |
ccae7af2 MCC |
3366 | F: drivers/media/tuners/fc0011.h |
3367 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3368 | |
91952bc0 AP |
3369 | FC2580 MEDIA DRIVER |
3370 | M: Antti Palosaari <[email protected]> | |
3371 | L: [email protected] | |
3372 | W: http://linuxtv.org/ | |
3373 | W: http://palosaari.fi/linux/ | |
3374 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3375 | T: git git://linuxtv.org/anttip/media_tree.git | |
3376 | S: Maintained | |
3377 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3378 | |
88b2dbdb EP |
3379 | FANOTIFY |
3380 | M: Eric Paris <[email protected]> | |
3381 | S: Maintained | |
3382 | F: fs/notify/fanotify/ | |
3383 | F: include/linux/fanotify.h | |
c117ab84 | 3384 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3385 | |
1da177e4 | 3386 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3387 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3388 | W: http://www.farsite.co.uk/ |
3389 | S: Supported | |
679655da | 3390 | F: drivers/net/wan/farsync.* |
1da177e4 | 3391 | |
c5408b88 | 3392 | FAULT INJECTION SUPPORT |
8b58be88 | 3393 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3394 | S: Supported |
679655da JP |
3395 | F: Documentation/fault-injection/ |
3396 | F: lib/fault-inject.c | |
c5408b88 | 3397 | |
cae727db RL |
3398 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3399 | M: Robert Love <[email protected]> | |
f4aaea6d | 3400 | L: [email protected] |
cae727db RL |
3401 | W: www.Open-FCoE.org |
3402 | S: Supported | |
3403 | F: drivers/scsi/libfc/ | |
3404 | F: drivers/scsi/fcoe/ | |
3405 | F: include/scsi/fc/ | |
3406 | F: include/scsi/libfc.h | |
3407 | F: include/scsi/libfcoe.h | |
c117ab84 | 3408 | F: include/uapi/scsi/fc/ |
cae727db | 3409 | |
e2d1d6c0 | 3410 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3411 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3412 | L: [email protected] |
1da177e4 | 3413 | S: Maintained |
679655da JP |
3414 | F: include/linux/fcntl.h |
3415 | F: include/linux/fs.h | |
c117ab84 CEB |
3416 | F: include/uapi/linux/fcntl.h |
3417 | F: include/uapi/linux/fs.h | |
679655da JP |
3418 | F: fs/fcntl.c |
3419 | F: fs/locks.c | |
1da177e4 | 3420 | |
e2d1d6c0 | 3421 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3422 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3423 | L: [email protected] |
173acc7c | 3424 | S: Maintained |
679655da | 3425 | F: fs/* |
173acc7c | 3426 | |
b26e0ed4 | 3427 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3428 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3429 | L: [email protected] |
3430 | S: Maintained | |
d5ca6918 JP |
3431 | F: drivers/hwmon/f75375s.c |
3432 | F: include/linux/f75375s.h | |
b26e0ed4 | 3433 | |
a331b0c3 CL |
3434 | FIREWIRE AUDIO DRIVERS |
3435 | M: Clemens Ladisch <[email protected]> | |
3436 | L: [email protected] (moderated for non-subscribers) | |
3437 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3438 | S: Maintained | |
3439 | F: sound/firewire/ | |
3440 | ||
eb86ec51 SR |
3441 | FIREWIRE MEDIA DRIVERS (firedtv) |
3442 | M: Stefan Richter <[email protected]> | |
3443 | L: [email protected] | |
3444 | L: [email protected] | |
3445 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3446 | S: Maintained | |
3447 | F: drivers/media/firewire/ | |
3448 | ||
a511ce33 CB |
3449 | FIREWIRE SBP-2 TARGET |
3450 | M: Chris Boot <[email protected]> | |
3451 | L: [email protected] | |
3452 | L: [email protected] | |
3453 | L: [email protected] | |
3454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3455 | S: Maintained | |
3456 | F: drivers/target/sbp/ | |
3457 | ||
7d2c86b5 | 3458 | FIREWIRE SUBSYSTEM |
8b58be88 | 3459 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3460 | L: [email protected] |
958a29cb | 3461 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3462 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3463 | S: Maintained |
679655da | 3464 | F: drivers/firewire/ |
8f06ce3b SR |
3465 | F: include/linux/firewire.h |
3466 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3467 | F: tools/firewire/ |
e2d1d6c0 RD |
3468 | |
3469 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3470 | M: Ming Lei <[email protected]> |
3471 | L: [email protected] | |
3472 | S: Maintained | |
679655da JP |
3473 | F: Documentation/firmware_class/ |
3474 | F: drivers/base/firmware*.c | |
3475 | F: include/linux/firmware.h | |
e2d1d6c0 | 3476 | |
f730e3dc | 3477 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3478 | M: Joshua Morris <[email protected]> |
3479 | M: Philip Kelleher <[email protected]> | |
3480 | S: Maintained | |
3481 | F: drivers/block/rsxx/ | |
3482 | ||
8206f664 JK |
3483 | FLOPPY DRIVER |
3484 | M: Jiri Kosina <[email protected]> | |
3485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3486 | S: Odd fixes | |
3487 | F: drivers/block/floppy.c | |
3488 | ||
9c9f32ed AR |
3489 | FMC SUBSYSTEM |
3490 | M: Alessandro Rubini <[email protected]> | |
3491 | W: http://www.ohwr.org/projects/fmc-bus | |
3492 | S: Supported | |
3493 | F: drivers/fmc/ | |
3494 | F: include/linux/fmc*.h | |
3495 | F: include/linux/ipmi-fru.h | |
3496 | K: fmc_d.*register | |
3497 | ||
e2d1d6c0 | 3498 | FPU EMULATOR |
8b58be88 | 3499 | M: Bill Metzenthen <[email protected]> |
e769980f | 3500 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3501 | S: Maintained |
679655da | 3502 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3503 | |
3504 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3505 | L: [email protected] |
c173bfac | 3506 | S: Orphan |
679655da JP |
3507 | F: drivers/net/wan/dlci.c |
3508 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3509 | |
3510 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3511 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3512 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3513 | L: [email protected] |
e2d1d6c0 | 3514 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3515 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3517 | S: Maintained |
679655da | 3518 | F: Documentation/fb/ |
d958c62c | 3519 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3520 | F: drivers/video/ |
3521 | F: include/video/ | |
679655da | 3522 | F: include/linux/fb.h |
c117ab84 CEB |
3523 | F: include/uapi/video/ |
3524 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3525 | |
a57c188e | 3526 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3527 | M: Timur Tabi <[email protected]> |
a57c188e | 3528 | L: [email protected] |
c4ef9bc4 | 3529 | S: Maintained |
a57c188e TT |
3530 | F: drivers/video/fsl-diu-fb.* |
3531 | ||
e2d1d6c0 | 3532 | FREESCALE DMA DRIVER |
8b58be88 JP |
3533 | M: Li Yang <[email protected]> |
3534 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3535 | L: [email protected] |
e2d1d6c0 | 3536 | S: Maintained |
679655da | 3537 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3538 | |
3539 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3540 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3541 | L: [email protected] |
846557d3 | 3542 | L: [email protected] |
0d2b405a | 3543 | S: Maintained |
679655da | 3544 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3545 | |
60e8c5ab | 3546 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3547 | M: Sascha Hauer <[email protected]> |
c69f677c | 3548 | L: [email protected] |
efc03ecb | 3549 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3550 | S: Maintained |
bad985a1 | 3551 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3552 | F: drivers/video/imxfb.c |
60e8c5ab | 3553 | |
4689a6b1 | 3554 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3555 | M: Pantelis Antoniou <[email protected]> |
3556 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3557 | L: [email protected] |
4689a6b1 PA |
3558 | L: [email protected] |
3559 | S: Maintained | |
ec21e2ec | 3560 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3561 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3562 | |
d9e9d82c | 3563 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3564 | L: [email protected] |
c4ef9bc4 | 3565 | S: Orphan |
679655da JP |
3566 | F: arch/powerpc/sysdev/qe_lib/ |
3567 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3568 | |
b55ef929 | 3569 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3570 | M: Li Yang <[email protected]> |
6372594a | 3571 | L: [email protected] |
a4724ed6 | 3572 | L: [email protected] |
a7205b30 | 3573 | S: Maintained |
5429c731 | 3574 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3575 | |
beaf53bf | 3576 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3577 | M: Li Yang <[email protected]> |
beaf53bf | 3578 | L: [email protected] |
a4724ed6 | 3579 | L: [email protected] |
beaf53bf | 3580 | S: Maintained |
ec21e2ec | 3581 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3582 | |
d9e9d82c | 3583 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3584 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3585 | L: [email protected] |
c4ef9bc4 | 3586 | S: Maintained |
df621252 | 3587 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3588 | |
3589 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3590 | M: Timur Tabi <[email protected]> |
93711660 | 3591 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3592 | L: [email protected] |
c4ef9bc4 | 3593 | S: Maintained |
69aefcea JP |
3594 | F: sound/soc/fsl/fsl* |
3595 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3596 | |
1da177e4 | 3597 | FREEVXFS FILESYSTEM |
8b58be88 | 3598 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3599 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3600 | S: Maintained | |
679655da | 3601 | F: fs/freevxfs/ |
1da177e4 | 3602 | |
71038f52 | 3603 | FREEZER |
8b58be88 | 3604 | M: Pavel Machek <[email protected]> |
49db1903 | 3605 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 3606 | L: [email protected] |
71038f52 | 3607 | S: Supported |
679655da JP |
3608 | F: Documentation/power/freezing-of-tasks.txt |
3609 | F: include/linux/freezer.h | |
3610 | F: kernel/freezer.c | |
71038f52 | 3611 | |
839a1f79 KRW |
3612 | FRONTSWAP API |
3613 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3614 | L: [email protected] | |
3615 | S: Maintained | |
3616 | F: mm/frontswap.c | |
3617 | F: include/linux/frontswap.h | |
3618 | ||
a5432f5a | 3619 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3620 | M: David Howells <[email protected]> |
a5432f5a DH |
3621 | L: [email protected] |
3622 | S: Supported | |
3623 | F: Documentation/filesystems/caching/ | |
3624 | F: fs/fscache/ | |
3625 | F: include/linux/fscache*.h | |
3626 | ||
f58ad8f5 JK |
3627 | F2FS FILE SYSTEM |
3628 | M: Jaegeuk Kim <[email protected]> | |
3629 | L: [email protected] | |
3630 | W: http://en.wikipedia.org/wiki/F2FS | |
3631 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3632 | S: Maintained | |
3633 | F: Documentation/filesystems/f2fs.txt | |
3634 | F: fs/f2fs/ | |
3635 | F: include/linux/f2fs_fs.h | |
3636 | ||
5ab7ffea | 3637 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3638 | M: David Howells <[email protected]> |
1da177e4 | 3639 | S: Maintained |
679655da | 3640 | F: arch/frv/ |
1da177e4 | 3641 | |
20b93734 | 3642 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3643 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3644 | L: [email protected] |
20b93734 | 3645 | S: Maintained |
679655da | 3646 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3647 | |
4da621b6 HK |
3648 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3649 | M: Kyungmin Park <[email protected]> | |
3650 | M: Heungjun Kim <[email protected]> | |
3651 | L: [email protected] | |
3652 | S: Maintained | |
90d72ac6 | 3653 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3654 | F: include/media/m5mols.h |
3655 | ||
2d24c490 RG |
3656 | FUJITSU TABLET EXTRAS |
3657 | M: Robert Gerlach <[email protected]> | |
3658 | L: [email protected] | |
3659 | S: Maintained | |
3660 | F: drivers/platform/x86/fujitsu-tablet.c | |
3661 | ||
04578f17 | 3662 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3663 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3664 | L: [email protected] |
3665 | W: http://fuse.sourceforge.net/ | |
3666 | S: Maintained | |
679655da | 3667 | F: fs/fuse/ |
c117ab84 | 3668 | F: include/uapi/linux/fuse.h |
04578f17 | 3669 | |
1da177e4 | 3670 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3671 | M: Rik Faith <[email protected]> |
1da177e4 | 3672 | L: [email protected] |
baaea1dc | 3673 | S: Odd Fixes (e.g., new signatures) |
679655da | 3674 | F: drivers/scsi/fdomain.* |
1da177e4 | 3675 | |
d8e2162c PO |
3676 | GCOV BASED KERNEL PROFILING |
3677 | M: Peter Oberparleiter <[email protected]> | |
3678 | S: Maintained | |
3679 | F: kernel/gcov/ | |
3680 | F: Documentation/gcov.txt | |
3681 | ||
1da177e4 | 3682 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3683 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3684 | L: [email protected] |
3685 | W: http://www.icp-vortex.com/ | |
3686 | S: Supported | |
679655da | 3687 | F: drivers/scsi/gdt* |
1da177e4 | 3688 | |
3169a1c7 HV |
3689 | GEMTEK FM RADIO RECEIVER DRIVER |
3690 | M: Hans Verkuil <[email protected]> | |
3691 | L: [email protected] | |
3692 | T: git git://linuxtv.org/media_tree.git | |
3693 | W: http://linuxtv.org | |
3694 | S: Maintained | |
3695 | F: drivers/media/radio/radio-gemtek* | |
3696 | ||
1c23af90 | 3697 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3698 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3699 | S: Supported |
679655da JP |
3700 | F: drivers/i2c/busses/i2c-gpio.c |
3701 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3702 | |
92ed1a76 PK |
3703 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3704 | M: Peter Korsgaard <[email protected]> | |
3705 | L: [email protected] | |
3706 | S: Supported | |
e7065e20 JD |
3707 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3708 | F: include/linux/i2c-mux-gpio.h | |
3709 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3710 | |
9251ce95 | 3711 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3712 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3713 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3714 | S: Maintained | |
679655da JP |
3715 | F: drivers/net/wan/c101.c |
3716 | F: drivers/net/wan/hd6457* | |
3717 | F: drivers/net/wan/hdlc* | |
3718 | F: drivers/net/wan/n2.c | |
3719 | F: drivers/net/wan/pc300too.c | |
3720 | F: drivers/net/wan/pci200syn.c | |
3721 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3722 | |
1527aab6 | 3723 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3724 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3725 | L: [email protected] |
3726 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3727 | S: Maintained | |
14430813 JP |
3728 | F: include/asm-generic/ |
3729 | F: include/uapi/asm-generic/ | |
1527aab6 | 3730 | |
ff764963 KVA |
3731 | GENERIC PHY FRAMEWORK |
3732 | M: Kishon Vijay Abraham I <[email protected]> | |
3733 | L: [email protected] | |
3734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
3735 | S: Supported | |
3736 | F: drivers/phy/ | |
3737 | F: include/linux/phy/ | |
3738 | ||
ccb86a69 | 3739 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3740 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3741 | L: [email protected] |
ccb86a69 MT |
3742 | S: Supported |
3743 | F: drivers/uio/uio_pci_generic.c | |
3744 | ||
5be7b50f | 3745 | GFS2 FILE SYSTEM |
8b58be88 | 3746 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3747 | L: [email protected] |
5be7b50f | 3748 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3751 | S: Supported |
679655da JP |
3752 | F: Documentation/filesystems/gfs2*.txt |
3753 | F: fs/gfs2/ | |
c117ab84 | 3754 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3755 | |
0a34eb8f | 3756 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3757 | M: Hansjoerg Lipp <[email protected]> |
3758 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3759 | L: [email protected] |
3760 | W: http://gigaset307x.sourceforge.net/ | |
3761 | S: Maintained | |
679655da JP |
3762 | F: Documentation/isdn/README.gigaset |
3763 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3764 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3765 | |
a0dc00b4 | 3766 | GPIO SUBSYSTEM |
e4651a9f | 3767 | M: Linus Walleij <[email protected]> |
a0dc00b4 | 3768 | S: Maintained |
d15b7179 | 3769 | L: [email protected] |
98909cf0 | 3770 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3771 | F: drivers/gpio/ |
3772 | F: include/linux/gpio* | |
9b692346 | 3773 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3774 | |
71a6d0af HW |
3775 | GRE DEMULTIPLEXER DRIVER |
3776 | M: Dmitry Kozlov <[email protected]> | |
3777 | L: [email protected] | |
3778 | S: Maintained | |
11c26770 JP |
3779 | F: net/ipv4/gre_demux.c |
3780 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3781 | F: include/net/gre.h |
3782 | ||
d4c41139 KG |
3783 | GRETH 10/100/1G Ethernet MAC device driver |
3784 | M: Kristoffer Glembo <[email protected]> | |
3785 | L: [email protected] | |
3786 | S: Maintained | |
a31a96ad | 3787 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3788 | |
e8deeae2 | 3789 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3790 | M: Frank Zago <[email protected]> |
661263b5 | 3791 | L: [email protected] |
275ffde4 | 3792 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3793 | S: Maintained |
0c0d06ca | 3794 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3795 | |
4b3fa3c4 OL |
3796 | GSPCA GL860 SUBDRIVER |
3797 | M: Olivier Lorin <[email protected]> | |
3798 | L: [email protected] | |
275ffde4 | 3799 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3800 | S: Maintained |
0c0d06ca | 3801 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3802 | |
e8deeae2 | 3803 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3804 | M: Erik Andren <[email protected]> |
661263b5 | 3805 | L: [email protected] |
275ffde4 | 3806 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3807 | S: Maintained |
0c0d06ca | 3808 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3809 | |
3810 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3811 | M: Hans de Goede <[email protected]> |
661263b5 | 3812 | L: [email protected] |
275ffde4 | 3813 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3814 | S: Maintained |
0c0d06ca | 3815 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3816 | |
261982f1 | 3817 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3818 | M: Brian Johnson <[email protected]> |
261982f1 | 3819 | L: [email protected] |
275ffde4 | 3820 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3821 | S: Maintained |
0c0d06ca | 3822 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3823 | |
e8deeae2 | 3824 | GSPCA T613 SUBDRIVER |
8b58be88 | 3825 | M: Leandro Costantino <[email protected]> |
661263b5 | 3826 | L: [email protected] |
275ffde4 | 3827 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3828 | S: Maintained |
0c0d06ca | 3829 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3830 | |
3831 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3832 | M: Hans de Goede <[email protected]> |
661263b5 | 3833 | L: [email protected] |
275ffde4 | 3834 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3835 | S: Maintained |
0c0d06ca | 3836 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3837 | |
aa3c598b EG |
3838 | STK1160 USB VIDEO CAPTURE DRIVER |
3839 | M: Ezequiel Garcia <[email protected]> | |
3840 | L: [email protected] | |
275ffde4 | 3841 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3842 | S: Maintained |
3843 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3844 | |
71a6d0af HW |
3845 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3846 | M: Frank Seidel <[email protected]> | |
3847 | L: [email protected] | |
3848 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3849 | S: Maintained | |
3850 | F: drivers/platform/x86/hdaps.c | |
3851 | ||
48fc9e26 HV |
3852 | HDPVR USB VIDEO ENCODER DRIVER |
3853 | M: Hans Verkuil <[email protected]> | |
3854 | L: [email protected] | |
3855 | T: git git://linuxtv.org/media_tree.git | |
3856 | W: http://linuxtv.org | |
3857 | S: Odd Fixes | |
14430813 | 3858 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 3859 | |
71a6d0af HW |
3860 | HWPOISON MEMORY FAILURE HANDLING |
3861 | M: Andi Kleen <[email protected]> | |
3862 | L: [email protected] | |
3863 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3864 | S: Maintained | |
3865 | F: mm/memory-failure.c | |
3866 | F: mm/hwpoison-inject.c | |
3867 | ||
3868 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3869 | L: [email protected] | |
3870 | S: Odd Fixes | |
3871 | F: drivers/tty/hvc/ | |
3872 | ||
5b543965 | 3873 | HARDWARE MONITORING |
9e012c1a | 3874 | M: Jean Delvare <[email protected]> |
ca462085 | 3875 | M: Guenter Roeck <[email protected]> |
5b543965 | 3876 | L: [email protected] |
595142e0 | 3877 | W: http://www.lm-sensors.org/ |
9e012c1a | 3878 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3879 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3880 | S: Maintained |
047f4ec2 | 3881 | F: Documentation/hwmon/ |
679655da | 3882 | F: drivers/hwmon/ |
047f4ec2 | 3883 | F: include/linux/hwmon*.h |
5b543965 | 3884 | |
844dd05f | 3885 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3886 | M: Matt Mackall <[email protected]> |
3887 | M: Herbert Xu <[email protected]> | |
3888 | S: Odd fixes | |
679655da JP |
3889 | F: Documentation/hw_random.txt |
3890 | F: drivers/char/hw_random/ | |
3891 | F: include/linux/hw_random.h | |
844dd05f | 3892 | |
8b37fcfc OBC |
3893 | HARDWARE SPINLOCK CORE |
3894 | M: Ohad Ben-Cohen <[email protected]> | |
3895 | S: Maintained | |
3896 | F: Documentation/hwspinlock.txt | |
3897 | F: drivers/hwspinlock/hwspinlock_* | |
3898 | F: include/linux/hwspinlock.h | |
3899 | ||
1da177e4 | 3900 | HARMONY SOUND DRIVER |
ac6aecbf | 3901 | L: [email protected] |
1da177e4 | 3902 | S: Maintained |
679655da | 3903 | F: sound/parisc/harmony.* |
1da177e4 | 3904 | |
91952bc0 AP |
3905 | HD29L2 MEDIA DRIVER |
3906 | M: Antti Palosaari <[email protected]> | |
3907 | L: [email protected] | |
3908 | W: http://linuxtv.org/ | |
3909 | W: http://palosaari.fi/linux/ | |
3910 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3911 | T: git git://linuxtv.org/anttip/media_tree.git | |
3912 | S: Maintained | |
3913 | F: drivers/media/dvb-frontends/hd29l2* | |
3914 | ||
e2d1d6c0 | 3915 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3916 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3917 | L: [email protected] |
3918 | S: Maintained | |
679655da JP |
3919 | F: Documentation/blockdev/cpqarray.txt |
3920 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3921 | |
9257aa49 | 3922 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3923 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3924 | L: [email protected] |
3925 | S: Supported | |
3926 | F: Documentation/scsi/hpsa.txt | |
3927 | F: drivers/scsi/hpsa*.[ch] | |
3928 | F: include/linux/cciss*.h | |
c117ab84 | 3929 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3930 | |
e2d1d6c0 | 3931 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3932 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3933 | L: [email protected] |
3934 | S: Supported | |
679655da JP |
3935 | F: Documentation/blockdev/cciss.txt |
3936 | F: drivers/block/cciss* | |
3937 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3938 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3939 | |
1da177e4 | 3940 | HFS FILESYSTEM |
6cf515e1 GU |
3941 | L: [email protected] |
3942 | S: Orphan | |
679655da JP |
3943 | F: Documentation/filesystems/hfs.txt |
3944 | F: fs/hfs/ | |
1da177e4 LT |
3945 | |
3946 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3947 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3948 | L: [email protected] |
3949 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3950 | S: Maintained | |
679655da | 3951 | F: drivers/video/hgafb.c |
1da177e4 | 3952 | |
4480f15b | 3953 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 | 3954 | M: Pavel Machek <[email protected]> |
49db1903 | 3955 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 3956 | L: [email protected] |
e2d1d6c0 | 3957 | S: Supported |
679655da JP |
3958 | F: arch/x86/power/ |
3959 | F: drivers/base/power/ | |
3960 | F: kernel/power/ | |
3961 | F: include/linux/suspend.h | |
3962 | F: include/linux/freezer.h | |
3963 | F: include/linux/pm.h | |
679655da | 3964 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3965 | |
4ef4caad | 3966 | HID CORE LAYER |
8b58be88 | 3967 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3968 | L: [email protected] |
54e5881d | 3969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3970 | S: Maintained |
679655da JP |
3971 | F: drivers/hid/ |
3972 | F: include/linux/hid* | |
c117ab84 | 3973 | F: include/uapi/linux/hid* |
4ef4caad | 3974 | |
38bed542 | 3975 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3976 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3978 | S: Maintained |
679655da JP |
3979 | F: Documentation/timers/ |
3980 | F: kernel/hrtimer.c | |
88606e80 TG |
3981 | F: kernel/time/clockevents.c |
3982 | F: kernel/time/tick*.* | |
3983 | F: kernel/time/timer_*.c | |
05ed8490 | 3984 | F: include/linux/clockchips.h |
679655da | 3985 | F: include/linux/hrtimer.h |
38bed542 | 3986 | |
1da177e4 | 3987 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3988 | L: [email protected] |
8b64f2a0 | 3989 | S: Orphan |
679655da JP |
3990 | F: drivers/net/hamradio/dmascc.c |
3991 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3992 | |
ede1e6f8 | 3993 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3994 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3995 | W: http://www.highpoint-tech.com |
3996 | S: Supported | |
679655da JP |
3997 | F: Documentation/scsi/hptiop.txt |
3998 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3999 | |
1da177e4 | 4000 | HIPPI |
8b58be88 | 4001 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
4002 | L: [email protected] |
4003 | S: Maintained | |
679655da | 4004 | F: include/linux/hippidevice.h |
c117ab84 | 4005 | F: include/uapi/linux/if_hippi.h |
679655da | 4006 | F: net/802/hippi.c |
ff5a3b50 | 4007 | F: drivers/net/hippi/ |
1da177e4 | 4008 | |
ff1d2767 | 4009 | HOST AP DRIVER |
8b58be88 | 4010 | M: Jouni Malinen <[email protected]> |
85d32e7b | 4011 | L: [email protected] (subscribers-only) |
724c6b35 | 4012 | L: [email protected] |
ff1d2767 JM |
4013 | W: http://hostap.epitest.fi/ |
4014 | S: Maintained | |
679655da | 4015 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4016 | |
dd8cd779 | 4017 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4018 | L: [email protected] |
95c70215 | 4019 | S: Orphan |
679655da | 4020 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4021 | |
e2d1d6c0 | 4022 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4023 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4024 | S: Maintained |
7e25d724 | 4025 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4026 | |
7d2c86b5 | 4027 | HPET: High Precision Event Timers driver |
8b58be88 | 4028 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 4029 | S: Maintained |
679655da JP |
4030 | F: Documentation/timers/hpet.txt |
4031 | F: drivers/char/hpet.c | |
4032 | F: include/linux/hpet.h | |
c117ab84 | 4033 | F: include/uapi/linux/hpet.h |
b9b0332f | 4034 | |
e07b5d79 | 4035 | HPET: x86 |
9c5fb19a | 4036 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 4037 | S: Maintained |
679655da JP |
4038 | F: arch/x86/kernel/hpet.c |
4039 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4040 | |
1da177e4 | 4041 | HPFS FILESYSTEM |
8b58be88 | 4042 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
4043 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4044 | S: Maintained | |
679655da | 4045 | F: fs/hpfs/ |
1da177e4 | 4046 | |
7d2c86b5 | 4047 | HSO 3G MODEM DRIVER |
8b58be88 | 4048 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
4049 | W: http://www.pharscape.org |
4050 | S: Maintained | |
679655da | 4051 | F: drivers/net/usb/hso.c |
11cd29b0 | 4052 | |
19990e29 AB |
4053 | HSR NETWORK PROTOCOL |
4054 | M: Arvid Brodin <[email protected]> | |
4055 | L: [email protected] | |
4056 | S: Maintained | |
4057 | F: net/hsr/ | |
4058 | ||
5a18c343 | 4059 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4060 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
4061 | L: [email protected] |
4062 | S: Maintained | |
679655da | 4063 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4064 | |
1da177e4 | 4065 | HUGETLB FILESYSTEM |
6d49e352 | 4066 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 4067 | S: Maintained |
679655da | 4068 | F: fs/hugetlbfs/ |
1da177e4 | 4069 | |
05183189 S |
4070 | Hyper-V CORE AND DRIVERS |
4071 | M: K. Y. Srinivasan <[email protected]> | |
4072 | M: Haiyang Zhang <[email protected]> | |
4073 | L: [email protected] | |
4074 | S: Maintained | |
a4162747 HZ |
4075 | F: arch/x86/include/asm/mshyperv.h |
4076 | F: arch/x86/include/uapi/asm/hyperv.h | |
4077 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4078 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4079 | F: drivers/hv/ |
f92ca80b | 4080 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4081 | F: drivers/net/hyperv/ |
a4162747 HZ |
4082 | F: drivers/scsi/storvsc_drv.c |
4083 | F: drivers/video/hyperv_fb.c | |
4084 | F: include/linux/hyperv.h | |
4085 | F: tools/hv/ | |
05183189 | 4086 | |
d85c8a6a JD |
4087 | I2C OVER PARALLEL PORT |
4088 | M: Jean Delvare <[email protected]> | |
4089 | L: [email protected] | |
4090 | S: Maintained | |
4091 | F: Documentation/i2c/busses/i2c-parport | |
4092 | F: Documentation/i2c/busses/i2c-parport-light | |
4093 | F: drivers/i2c/busses/i2c-parport.c | |
4094 | F: drivers/i2c/busses/i2c-parport-light.c | |
4095 | ||
4096 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
4097 | M: Jean Delvare <[email protected]> | |
4098 | L: [email protected] | |
4099 | S: Maintained | |
4100 | F: Documentation/i2c/busses/i2c-ali1535 | |
4101 | F: Documentation/i2c/busses/i2c-ali1563 | |
4102 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4103 | F: Documentation/i2c/busses/i2c-amd756 | |
4104 | F: Documentation/i2c/busses/i2c-amd8111 | |
4105 | F: Documentation/i2c/busses/i2c-i801 | |
4106 | F: Documentation/i2c/busses/i2c-nforce2 | |
4107 | F: Documentation/i2c/busses/i2c-piix4 | |
4108 | F: Documentation/i2c/busses/i2c-sis5595 | |
4109 | F: Documentation/i2c/busses/i2c-sis630 | |
4110 | F: Documentation/i2c/busses/i2c-sis96x | |
4111 | F: Documentation/i2c/busses/i2c-via | |
4112 | F: Documentation/i2c/busses/i2c-viapro | |
4113 | F: drivers/i2c/busses/i2c-ali1535.c | |
4114 | F: drivers/i2c/busses/i2c-ali1563.c | |
4115 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4116 | F: drivers/i2c/busses/i2c-amd756.c | |
4117 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4118 | F: drivers/i2c/busses/i2c-amd8111.c | |
4119 | F: drivers/i2c/busses/i2c-i801.c | |
4120 | F: drivers/i2c/busses/i2c-isch.c | |
4121 | F: drivers/i2c/busses/i2c-nforce2.c | |
4122 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4123 | F: drivers/i2c/busses/i2c-piix4.c | |
4124 | F: drivers/i2c/busses/i2c-sis5595.c | |
4125 | F: drivers/i2c/busses/i2c-sis630.c | |
4126 | F: drivers/i2c/busses/i2c-sis96x.c | |
4127 | F: drivers/i2c/busses/i2c-via.c | |
4128 | F: drivers/i2c/busses/i2c-viapro.c | |
4129 | ||
cb7f07a4 NH |
4130 | I2C/SMBUS ISMT DRIVER |
4131 | M: Seth Heasley <[email protected]> | |
4132 | M: Neil Horman <[email protected]> | |
4133 | L: [email protected] | |
4134 | F: drivers/i2c/busses/i2c-ismt.c | |
4135 | F: Documentation/i2c/busses/i2c-ismt | |
4136 | ||
6ea884db | 4137 | I2C/SMBUS STUB DRIVER |
94877548 | 4138 | M: Jean Delvare <[email protected]> |
846557d3 | 4139 | L: [email protected] |
6ea884db | 4140 | S: Maintained |
8547a5bc | 4141 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4142 | |
5b543965 | 4143 | I2C SUBSYSTEM |
14d77c4d | 4144 | M: Wolfram Sang <[email protected]> |
846557d3 | 4145 | L: [email protected] |
a01064a9 | 4146 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4148 | S: Maintained |
679655da JP |
4149 | F: Documentation/i2c/ |
4150 | F: drivers/i2c/ | |
4151 | F: include/linux/i2c.h | |
03b70d62 | 4152 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4153 | F: include/uapi/linux/i2c.h |
4154 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4155 | |
d85c8a6a JD |
4156 | I2C-TAOS-EVM DRIVER |
4157 | M: Jean Delvare <[email protected]> | |
4158 | L: [email protected] | |
4159 | S: Maintained | |
4160 | F: Documentation/i2c/busses/i2c-taos-evm | |
4161 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4162 | ||
e8c76eed | 4163 | I2C-TINY-USB DRIVER |
8b58be88 | 4164 | M: Till Harbaum <[email protected]> |
846557d3 | 4165 | L: [email protected] |
932d1872 | 4166 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4167 | S: Maintained |
679655da | 4168 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4169 | |
1da177e4 | 4170 | i386 BOOT CODE |
8b58be88 | 4171 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4172 | S: Maintained |
679655da | 4173 | F: arch/x86/boot/ |
1da177e4 LT |
4174 | |
4175 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4176 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4178 | S: Maintained |
4179 | ||
1da177e4 | 4180 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4181 | M: Tony Luck <[email protected]> |
4182 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4183 | L: [email protected] |
6b1c70b1 | 4184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4185 | S: Maintained |
679655da | 4186 | F: arch/ia64/ |
1da177e4 | 4187 | |
956c203c | 4188 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4189 | M: Marcelo Henrique Cerri <[email protected]> |
4190 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4191 | L: [email protected] |
4192 | S: Supported | |
4193 | F: drivers/crypto/nx/ | |
4194 | ||
0e16aafb SJ |
4195 | IBM Power 842 compression accelerator |
4196 | M: Robert Jennings <[email protected]> | |
4197 | S: Supported | |
4198 | F: drivers/crypto/nx/nx-842.c | |
4199 | F: include/linux/nx842.h | |
4200 | ||
1da177e4 | 4201 | IBM Power Linux RAID adapter |
8b58be88 | 4202 | M: Brian King <[email protected]> |
1da177e4 | 4203 | S: Supported |
679655da | 4204 | F: drivers/scsi/ipr.* |
1da177e4 | 4205 | |
9d348af4 SL |
4206 | IBM Power Virtual Ethernet Device Driver |
4207 | M: Santiago Leon <[email protected]> | |
4208 | L: [email protected] | |
4209 | S: Supported | |
9aa32835 | 4210 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4211 | |
4b7652cc RJ |
4212 | IBM Power Virtual SCSI/FC Device Drivers |
4213 | M: Robert Jennings <[email protected]> | |
4214 | L: [email protected] | |
4215 | S: Supported | |
4216 | F: drivers/scsi/ibmvscsi/ | |
4217 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4218 | ||
1da177e4 LT |
4219 | IBM ServeRAID RAID DRIVER |
4220 | P: Jack Hammer | |
8b58be88 | 4221 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4222 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4223 | S: Supported |
679655da | 4224 | F: drivers/scsi/ips.* |
1da177e4 | 4225 | |
6ed9f9c4 PT |
4226 | ICH LPC AND GPIO DRIVER |
4227 | M: Peter Tyser <[email protected]> | |
4228 | S: Maintained | |
4229 | F: drivers/mfd/lpc_ich.c | |
4230 | F: drivers/gpio/gpio-ich.c | |
4231 | ||
1e7106fc | 4232 | IDE SUBSYSTEM |
8b58be88 | 4233 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4234 | L: [email protected] |
8a6e2535 | 4235 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4237 | S: Maintained |
679655da JP |
4238 | F: Documentation/ide/ |
4239 | F: drivers/ide/ | |
4240 | F: include/linux/ide.h | |
1da177e4 | 4241 | |
6cb8c13d IP |
4242 | IDEAPAD LAPTOP EXTRAS DRIVER |
4243 | M: Ike Panhc <[email protected]> | |
4244 | L: [email protected] | |
4245 | W: http://launchpad.net/ideapad-laptop | |
4246 | S: Maintained | |
4247 | F: drivers/platform/x86/ideapad-laptop.c | |
4248 | ||
1ea4c161 AM |
4249 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4250 | M: Andrey Moiseev <[email protected]> | |
4251 | L: [email protected] | |
4252 | W: https://github.com/o2genum/ideapad-slidebar | |
4253 | S: Maintained | |
4254 | F: drivers/input/misc/ideapad_slidebar.c | |
4255 | ||
0f861e8c | 4256 | IDE/ATAPI DRIVERS |
487ba8e8 | 4257 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4258 | L: [email protected] |
c404c199 | 4259 | S: Maintained |
679655da JP |
4260 | F: Documentation/cdrom/ide-cd |
4261 | F: drivers/ide/ide-cd* | |
1da177e4 | 4262 | |
27471fdb | 4263 | IDLE-I7300 |
8b58be88 | 4264 | M: Andy Henroid <[email protected]> |
bf1c138e | 4265 | L: [email protected] |
27471fdb | 4266 | S: Supported |
679655da | 4267 | F: drivers/idle/i7300_idle.c |
27471fdb | 4268 | |
02cf2286 | 4269 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4270 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4271 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4272 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4273 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4275 | S: Maintained |
4276 | F: net/ieee802154/ | |
68653359 | 4277 | F: net/mac802154/ |
251741b1 | 4278 | F: drivers/net/ieee802154/ |
02cf2286 | 4279 | |
40ad4a30 SY |
4280 | IGUANAWORKS USB IR TRANSCEIVER |
4281 | M: Sean Young <[email protected]> | |
4282 | L: [email protected] | |
4283 | S: Maintained | |
4284 | F: drivers/media/rc/iguanair.c | |
4285 | ||
9545f86e | 4286 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4287 | M: Jonathan Cameron <[email protected]> |
9545f86e AP |
4288 | L: [email protected] |
4289 | S: Maintained | |
03e7c251 | 4290 | F: drivers/iio/ |
9545f86e AP |
4291 | F: drivers/staging/iio/ |
4292 | ||
65519263 SG |
4293 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4294 | M: Matthieu Castet <[email protected]> | |
4295 | M: Stanislaw Gruszka <[email protected]> | |
4296 | S: Maintained | |
4297 | F: drivers/usb/atm/ueagle-atm.c | |
4298 | ||
e89ab51f GR |
4299 | INA209 HARDWARE MONITOR DRIVER |
4300 | M: Guenter Roeck <[email protected]> | |
4301 | L: [email protected] | |
4302 | S: Maintained | |
4303 | F: Documentation/hwmon/ina209 | |
4304 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4305 | F: drivers/hwmon/ina209.c | |
4306 | ||
4307 | INA2XX HARDWARE MONITOR DRIVER | |
4308 | M: Guenter Roeck <[email protected]> | |
4309 | L: [email protected] | |
4310 | S: Maintained | |
4311 | F: Documentation/hwmon/ina2xx | |
4312 | F: drivers/hwmon/ina2xx.c | |
4313 | F: include/linux/platform_data/ina2xx.h | |
4314 | ||
14dc124f SIG |
4315 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4316 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4317 | M: Jens Taprogge <[email protected]> | |
4318 | M: Greg Kroah-Hartman <[email protected]> | |
4319 | L: [email protected] | |
4320 | W: http://industrypack.sourceforge.net | |
4321 | S: Maintained | |
4322 | F: drivers/ipack/ | |
4323 | ||
aa7168f4 | 4324 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4325 | M: Mimi Zohar <[email protected]> |
8912176c | 4326 | M: Dmitry Kasatkin <[email protected]> |
aa7168f4 | 4327 | S: Supported |
679655da | 4328 | F: security/integrity/ima/ |
aa7168f4 | 4329 | |
1da177e4 | 4330 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4331 | L: [email protected] |
843393d3 | 4332 | S: Orphan |
679655da | 4333 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4334 | |
4335 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4336 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4337 | M: Sean Hefty <[email protected]> |
4338 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4339 | L: [email protected] |
605841f5 | 4340 | W: http://www.openfabrics.org/ |
8a6e2535 | 4341 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4342 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4343 | S: Supported |
679655da JP |
4344 | F: Documentation/infiniband/ |
4345 | F: drivers/infiniband/ | |
c117ab84 | 4346 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4347 | |
c9f04f58 | 4348 | INOTIFY |
8b58be88 JP |
4349 | M: John McCutchan <[email protected]> |
4350 | M: Robert Love <[email protected]> | |
4351 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4352 | S: Maintained |
679655da JP |
4353 | F: Documentation/filesystems/inotify.txt |
4354 | F: fs/notify/inotify/ | |
4355 | F: include/linux/inotify.h | |
c117ab84 | 4356 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4357 | |
e2d1d6c0 | 4358 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4359 | M: Dmitry Torokhov <[email protected]> |
4360 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4361 | L: [email protected] |
8a6e2535 | 4362 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4363 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4364 | S: Maintained |
679655da | 4365 | F: drivers/input/ |
f4eea7e2 | 4366 | F: include/linux/input.h |
c117ab84 | 4367 | F: include/uapi/linux/input.h |
f4eea7e2 | 4368 | F: include/linux/input/ |
e2d1d6c0 | 4369 | |
3267a87f HR |
4370 | INPUT MULTITOUCH (MT) PROTOCOL |
4371 | M: Henrik Rydberg <[email protected]> | |
4372 | L: [email protected] | |
7f9c2454 | 4373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4374 | S: Maintained |
4375 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4376 | F: drivers/input/input-mt.c |
3267a87f HR |
4377 | K: \b(ABS|SYN)_MT_ |
4378 | ||
4ac13e17 DJ |
4379 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4380 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4381 | M: Lukasz Dorau <[email protected]> |
4382 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4383 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4384 | L: [email protected] |
7106891a DJ |
4385 | T: git git://git.code.sf.net/p/intel-sas/isci |
4386 | S: Supported | |
4ac13e17 | 4387 | F: drivers/scsi/isci/ |
4ac13e17 | 4388 | |
26717172 LB |
4389 | INTEL IDLE DRIVER |
4390 | M: Len Brown <[email protected]> | |
bf1c138e | 4391 | L: [email protected] |
08deed1e | 4392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4393 | S: Supported |
4394 | F: drivers/idle/intel_idle.c | |
4395 | ||
9eb8ef74 | 4396 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4397 | M: Maik Broemme <[email protected]> |
c69f677c | 4398 | L: [email protected] |
ce00f85c | 4399 | S: Maintained |
679655da JP |
4400 | F: Documentation/fb/intelfb.txt |
4401 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4402 | |
1da177e4 | 4403 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4404 | M: Antonino Daplas <[email protected]> |
c69f677c | 4405 | L: [email protected] |
ce00f85c | 4406 | S: Maintained |
679655da | 4407 | F: drivers/video/i810/ |
1da177e4 | 4408 | |
f4a9bc4c | 4409 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4410 | M: Sujith Thomas <[email protected]> |
d0944853 | 4411 | L: [email protected] |
5ca92bd9 | 4412 | W: https://01.org/linux-acpi |
f4a9bc4c | 4413 | S: Supported |
679655da | 4414 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4415 | |
1da177e4 | 4416 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4417 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4418 | S: Maintained |
679655da JP |
4419 | F: arch/x86/kernel/microcode_core.c |
4420 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4421 | |
248a9dc3 | 4422 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4423 | M: Dan Williams <[email protected]> |
18ebd564 DJ |
4424 | M: Dave Jiang <[email protected]> |
4425 | L: [email protected] | |
4426 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4427 | S: Supported | |
679655da | 4428 | F: drivers/dma/ioat* |
248a9dc3 | 4429 | |
6c8909b4 | 4430 | INTEL IOMMU (VT-d) |
8b58be88 | 4431 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4432 | L: [email protected] |
54e5881d | 4433 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4434 | S: Supported |
3fb39615 | 4435 | F: drivers/iommu/intel-iommu.c |
679655da | 4436 | F: include/linux/intel-iommu.h |
6c8909b4 | 4437 | |
b3e5f263 | 4438 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4439 | M: Dan Williams <[email protected]> |
1dd8372d | 4440 | S: Odd fixes |
679655da | 4441 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4442 | |
9251ce95 | 4443 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4444 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4445 | S: Maintained |
679655da JP |
4446 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4447 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4448 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4449 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4450 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4451 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4452 | |
844dd05f | 4453 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4454 | M: Deepak Saxena <[email protected]> |
844dd05f | 4455 | S: Maintained |
679655da | 4456 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4457 | |
1bff6529 | 4458 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e) |
8b58be88 JP |
4459 | M: Jeff Kirsher <[email protected]> |
4460 | M: Jesse Brandeburg <[email protected]> | |
4461 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4462 | M: Carolyn Wyborny <[email protected]> |
4463 | M: Don Skidmore <[email protected]> | |
4464 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4465 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4466 | M: Alex Duyck <[email protected]> |
8b58be88 | 4467 | M: John Ronciak <[email protected]> |
f6fde11a | 4468 | M: Tushar Dave <[email protected]> |
dcd01faf | 4469 | L: [email protected] |
f6fde11a | 4470 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4471 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4474 | S: Supported |
0d164401 JK |
4475 | F: Documentation/networking/e100.txt |
4476 | F: Documentation/networking/e1000.txt | |
4477 | F: Documentation/networking/e1000e.txt | |
4478 | F: Documentation/networking/igb.txt | |
4479 | F: Documentation/networking/igbvf.txt | |
4480 | F: Documentation/networking/ixgb.txt | |
4481 | F: Documentation/networking/ixgbe.txt | |
4482 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4483 | F: Documentation/networking/i40e.txt |
dee1ad47 | 4484 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4485 | |
0963d59b LW |
4486 | INTEL-MID GPIO DRIVER |
4487 | M: David Cohen <[email protected]> | |
4488 | L: [email protected] | |
4489 | S: Maintained | |
4490 | F: drivers/gpio/gpio-intel-mid.c | |
4491 | ||
ca907a90 SY |
4492 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4493 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4494 | L: [email protected] |
ca907a90 | 4495 | S: Maintained |
679655da | 4496 | F: Documentation/networking/README.ipw2100 |
679655da | 4497 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4498 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4499 | |
4bd96a7a | 4500 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4501 | M: Richard L Maliszewski <[email protected]> |
4502 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4503 | M: Shane Wang <[email protected]> |
4504 | L: [email protected] | |
4505 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4506 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4507 | S: Supported |
4508 | F: Documentation/intel_txt.txt | |
4509 | F: include/linux/tboot.h | |
4510 | F: arch/x86/kernel/tboot.c | |
4511 | ||
8a70da82 | 4512 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4513 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4514 | M: [email protected] |
4515 | L: [email protected] | |
4516 | S: Supported | |
4517 | W: http://linuxwimax.org | |
679655da JP |
4518 | F: Documentation/wimax/README.i2400m |
4519 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4520 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4521 | |
1c0ce89c SG |
4522 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4523 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4524 | L: [email protected] |
1c0ce89c | 4525 | S: Supported |
efa3144e WYG |
4526 | F: drivers/net/wireless/iwlegacy/ |
4527 | ||
b481de9c | 4528 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4529 | M: Johannes Berg <[email protected]> |
6161b02b | 4530 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 4531 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4532 | L: [email protected] |
b481de9c | 4533 | W: http://intellinuxwireless.org |
b62ff718 | 4534 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4535 | S: Supported |
679655da | 4536 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4537 | |
de8fe023 TW |
4538 | INTEL MANAGEMENT ENGINE (mei) |
4539 | M: Tomas Winkler <[email protected]> | |
4540 | L: [email protected] | |
4541 | S: Supported | |
c117ab84 | 4542 | F: include/uapi/linux/mei.h |
de8fe023 | 4543 | F: drivers/misc/mei/* |
e07950a1 | 4544 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4545 | |
cb109a0e | 4546 | IOC3 ETHERNET DRIVER |
8b58be88 | 4547 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4548 | L: [email protected] |
4549 | S: Maintained | |
8862bf1e | 4550 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4551 | |
cb109a0e | 4552 | IOC3 SERIAL DRIVER |
8b58be88 | 4553 | M: Pat Gefre <[email protected]> |
d39e0721 | 4554 | L: [email protected] |
cb109a0e | 4555 | S: Maintained |
df621252 | 4556 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4557 | |
0b6e8569 SW |
4558 | IOMMU DRIVERS |
4559 | M: Joerg Roedel <[email protected]> | |
4560 | L: [email protected] | |
4561 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4562 | S: Maintained | |
4563 | F: drivers/iommu/ | |
4564 | ||
4480f15b | 4565 | IP MASQUERADING |
8b58be88 | 4566 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4567 | S: Maintained |
679655da | 4568 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4569 | |
1202d6ff | 4570 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4571 | M: Francois Romieu <[email protected]> |
4572 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4573 | L: [email protected] |
4574 | S: Maintained | |
7443713a | 4575 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4576 | |
4480f15b | 4577 | IPATH DRIVER |
8473c603 | 4578 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4579 | L: [email protected] |
52a09a04 | 4580 | S: Maintained |
679655da | 4581 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4582 | |
4409ebe9 | 4583 | IPMI SUBSYSTEM |
8b58be88 | 4584 | M: Corey Minyard <[email protected]> |
b0c90653 | 4585 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4586 | W: http://openipmi.sourceforge.net/ |
4587 | S: Supported | |
679655da JP |
4588 | F: Documentation/IPMI.txt |
4589 | F: drivers/char/ipmi/ | |
4590 | F: include/linux/ipmi* | |
c117ab84 | 4591 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4592 | |
e2d1d6c0 | 4593 | IPS SCSI RAID DRIVER |
8b58be88 | 4594 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4595 | L: [email protected] |
4596 | W: http://www.adaptec.com/ | |
4597 | S: Maintained | |
679655da | 4598 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4599 | |
4600 | IPVS | |
8b58be88 JP |
4601 | M: Wensong Zhang <[email protected]> |
4602 | M: Simon Horman <[email protected]> | |
4603 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4604 | L: [email protected] |
e2d1d6c0 | 4605 | L: [email protected] |
1da177e4 | 4606 | S: Maintained |
679655da | 4607 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4608 | F: include/net/ip_vs.h |
c117ab84 | 4609 | F: include/uapi/linux/ip_vs.h |
679655da | 4610 | F: net/netfilter/ipvs/ |
1da177e4 | 4611 | |
e7839f25 | 4612 | IPWIRELESS DRIVER |
8b58be88 JP |
4613 | M: Jiri Kosina <[email protected]> |
4614 | M: David Sterba <[email protected]> | |
92094aa0 | 4615 | S: Odd Fixes |
282361a0 | 4616 | F: drivers/tty/ipwireless/ |
099dc4fb | 4617 | |
e2d1d6c0 | 4618 | IPX NETWORK LAYER |
8b58be88 | 4619 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4620 | L: [email protected] |
4621 | S: Maintained | |
679655da | 4622 | F: include/net/ipx.h |
c117ab84 | 4623 | F: include/uapi/linux/ipx.h |
679655da | 4624 | F: net/ipx/ |
e2d1d6c0 | 4625 | |
1da177e4 | 4626 | IRDA SUBSYSTEM |
8b58be88 | 4627 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4628 | L: [email protected] (subscribers-only) |
ced649ea | 4629 | L: [email protected] |
1da177e4 | 4630 | W: http://irda.sourceforge.net/ |
f353976d | 4631 | S: Maintained |
e0057975 | 4632 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4633 | F: Documentation/networking/irda.txt |
4634 | F: drivers/net/irda/ | |
4635 | F: include/net/irda/ | |
4636 | F: net/irda/ | |
1da177e4 | 4637 | |
a800c7cc TG |
4638 | IRQ SUBSYSTEM |
4639 | M: Thomas Gleixner <[email protected]> | |
4640 | S: Maintained | |
75fc2d37 | 4641 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4642 | F: kernel/irq/ |
edd96900 | 4643 | F: drivers/irqchip/ |
a800c7cc | 4644 | |
7ab3a837 GL |
4645 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4646 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4647 | S: Maintained |
4648 | F: Documentation/IRQ-domain.txt | |
4649 | F: include/linux/irqdomain.h | |
4650 | F: kernel/irq/irqdomain.c | |
4651 | ||
e2d1d6c0 | 4652 | ISAPNP |
8b58be88 | 4653 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4654 | S: Maintained |
679655da JP |
4655 | F: Documentation/isapnp.txt |
4656 | F: drivers/pnp/isapnp/ | |
4657 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4658 | |
d39b8420 HV |
4659 | ISA RADIO MODULE |
4660 | M: Hans Verkuil <[email protected]> | |
4661 | L: [email protected] | |
4662 | T: git git://linuxtv.org/media_tree.git | |
4663 | W: http://linuxtv.org | |
4664 | S: Maintained | |
4665 | F: drivers/media/radio/radio-isa* | |
4666 | ||
71a6d0af HW |
4667 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4668 | M: Peter Jones <[email protected]> | |
4669 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4670 | S: Maintained | |
4671 | F: drivers/firmware/iscsi_ibft* | |
4672 | ||
14816b1e | 4673 | ISCSI |
8b58be88 | 4674 | M: Mike Christie <[email protected]> |
14816b1e MC |
4675 | L: [email protected] |
4676 | W: www.open-iscsi.org | |
54e5881d | 4677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4678 | S: Maintained |
679655da JP |
4679 | F: drivers/scsi/*iscsi* |
4680 | F: include/scsi/*iscsi* | |
14816b1e | 4681 | |
1e65eb42 OG |
4682 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4683 | M: Or Gerlitz <[email protected]> | |
4684 | M: Roi Dayan <[email protected]> | |
4685 | L: [email protected] | |
4686 | S: Supported | |
4687 | W: http://www.openfabrics.org | |
4688 | W: www.open-iscsi.org | |
4689 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4690 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4691 | |
1da177e4 | 4692 | ISDN SUBSYSTEM |
8b58be88 | 4693 | M: Karsten Keil <[email protected]> |
d5d52273 | 4694 | L: [email protected] (subscribers-only) |
3da0ae62 | 4695 | L: [email protected] |
1da177e4 | 4696 | W: http://www.isdn4linux.de |
54e5881d | 4697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4698 | S: Maintained |
679655da JP |
4699 | F: Documentation/isdn/ |
4700 | F: drivers/isdn/ | |
4701 | F: include/linux/isdn.h | |
4702 | F: include/linux/isdn/ | |
c117ab84 CEB |
4703 | F: include/uapi/linux/isdn.h |
4704 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4705 | |
4706 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4707 | M: Armin Schindler <[email protected]> |
d5d52273 | 4708 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4709 | W: http://www.melware.de |
4710 | S: Maintained | |
679655da | 4711 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4712 | |
d624870f JD |
4713 | IT87 HARDWARE MONITORING DRIVER |
4714 | M: Jean Delvare <[email protected]> | |
4715 | L: [email protected] | |
4716 | S: Maintained | |
4717 | F: Documentation/hwmon/it87 | |
4718 | F: drivers/hwmon/it87.c | |
4719 | ||
68620bdd MP |
4720 | IT913X MEDIA DRIVER |
4721 | M: Malcolm Priestley <[email protected]> | |
4722 | L: [email protected] | |
4723 | W: http://linuxtv.org/ | |
4724 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4725 | S: Maintained | |
4726 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4727 | ||
4728 | IT913X FE MEDIA DRIVER | |
4729 | M: Malcolm Priestley <[email protected]> | |
4730 | L: [email protected] | |
4731 | W: http://linuxtv.org/ | |
4732 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4733 | S: Maintained | |
4734 | F: drivers/media/dvb-frontends/it913x-fe* | |
4735 | ||
d7104bff AP |
4736 | IT913X MEDIA DRIVER |
4737 | M: Antti Palosaari <[email protected]> | |
4738 | L: [email protected] | |
4739 | W: http://linuxtv.org/ | |
4740 | W: http://palosaari.fi/linux/ | |
4741 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4742 | T: git git://linuxtv.org/anttip/media_tree.git | |
4743 | S: Maintained | |
9d9fb744 | 4744 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4745 | |
91821ff3 | 4746 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4747 | M: Andy Walls <[email protected]> |
c4240509 | 4748 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4749 | L: [email protected] |
275ffde4 | 4750 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4751 | W: http://www.ivtvdriver.org |
4752 | S: Maintained | |
679655da | 4753 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4754 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4755 | F: include/uapi/linux/ivtv* |
91821ff3 | 4756 | |
68620bdd MP |
4757 | IX2505V MEDIA DRIVER |
4758 | M: Malcolm Priestley <[email protected]> | |
4759 | L: [email protected] | |
4760 | W: http://linuxtv.org/ | |
4761 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4762 | S: Maintained | |
4763 | F: drivers/media/dvb-frontends/ix2505v* | |
4764 | ||
4453d736 GR |
4765 | JC42.4 TEMPERATURE SENSOR DRIVER |
4766 | M: Guenter Roeck <[email protected]> | |
4767 | L: [email protected] | |
4768 | S: Maintained | |
4769 | F: drivers/hwmon/jc42.c | |
4770 | F: Documentation/hwmon/jc42 | |
4771 | ||
e2d1d6c0 | 4772 | JFS FILESYSTEM |
3256f80f | 4773 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4774 | L: [email protected] |
4775 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4777 | S: Maintained |
679655da JP |
4778 | F: Documentation/filesystems/jfs.txt |
4779 | F: fs/jfs/ | |
e2d1d6c0 | 4780 | |
95252236 | 4781 | JME NETWORK DRIVER |
8b58be88 | 4782 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4783 | L: [email protected] |
4784 | S: Maintained | |
63d24a0e | 4785 | F: drivers/net/ethernet/jme.* |
95252236 | 4786 | |
1da177e4 | 4787 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4788 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4789 | L: [email protected] |
4790 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4791 | S: Maintained |
679655da | 4792 | F: fs/jffs2/ |
c117ab84 | 4793 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4794 | |
de456d37 | 4795 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4796 | M: Andrew Morton <[email protected]> |
19003c18 | 4797 | M: Jan Kara <[email protected]> |
72be2ccf | 4798 | L: [email protected] |
ae0718f8 | 4799 | S: Maintained |
d183e11a | 4800 | F: fs/jbd/ |
d183e11a TT |
4801 | F: include/linux/jbd.h |
4802 | ||
4803 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4804 | M: "Theodore Ts'o" <[email protected]> | |
4805 | L: [email protected] | |
4806 | S: Maintained | |
4807 | F: fs/jbd2/ | |
4808 | F: include/linux/jbd2.h | |
ae0718f8 | 4809 | |
fd8b6cb4 | 4810 | JSM Neo PCI based serial card |
9d141cb9 | 4811 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4812 | L: [email protected] |
4813 | S: Maintained | |
df621252 | 4814 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4815 | |
af39917d CL |
4816 | K10TEMP HARDWARE MONITORING DRIVER |
4817 | M: Clemens Ladisch <[email protected]> | |
4818 | L: [email protected] | |
4819 | S: Maintained | |
4820 | F: Documentation/hwmon/k10temp | |
4821 | F: drivers/hwmon/k10temp.c | |
4822 | ||
4660cb35 | 4823 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4824 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4825 | L: [email protected] |
ae0718f8 | 4826 | S: Maintained |
679655da JP |
4827 | F: Documentation/hwmon/k8temp |
4828 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4829 | |
c63a1642 | 4830 | KTAP |
687b63a3 | 4831 | M: Jovi Zhangwei <[email protected]> |
c63a1642 JZ |
4832 | W: http://www.ktap.org |
4833 | L: [email protected] | |
4834 | S: Maintained | |
4835 | F: drivers/staging/ktap/ | |
4836 | ||
1da177e4 | 4837 | KCONFIG |
5eb1f99e | 4838 | M: "Yann E. MORIN" <[email protected]> |
347d12d7 | 4839 | L: [email protected] |
5eb1f99e MM |
4840 | T: git://gitorious.org/linux-kconfig/linux-kconfig |
4841 | S: Maintained | |
679655da JP |
4842 | F: Documentation/kbuild/kconfig-language.txt |
4843 | F: scripts/kconfig/ | |
1da177e4 | 4844 | |
ea6c2089 | 4845 | KDUMP |
8b58be88 JP |
4846 | M: Vivek Goyal <[email protected]> |
4847 | M: Haren Myneni <[email protected]> | |
34633993 | 4848 | L: [email protected] |
ea6c2089 VG |
4849 | W: http://lse.sourceforge.net/kdump/ |
4850 | S: Maintained | |
80811493 | 4851 | F: Documentation/kdump/ |
ea6c2089 | 4852 | |
f41bf02f HV |
4853 | KEENE FM RADIO TRANSMITTER DRIVER |
4854 | M: Hans Verkuil <[email protected]> | |
4855 | L: [email protected] | |
4856 | T: git git://linuxtv.org/media_tree.git | |
4857 | W: http://linuxtv.org | |
4858 | S: Maintained | |
4859 | F: drivers/media/radio/radio-keene* | |
4860 | ||
1da177e4 | 4861 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4862 | M: Ian Kent <[email protected]> |
f694fc97 | 4863 | L: [email protected] |
1da177e4 | 4864 | S: Maintained |
679655da | 4865 | F: fs/autofs4/ |
1da177e4 | 4866 | |
70fb7ba6 | 4867 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4868 | M: Michal Marek <[email protected]> |
08deed1e JP |
4869 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4871 | L: [email protected] |
5ce45962 | 4872 | S: Maintained |
679655da JP |
4873 | F: Documentation/kbuild/ |
4874 | F: Makefile | |
4875 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4876 | F: scripts/basic/ |
4877 | F: scripts/mk* | |
4878 | F: scripts/package/ | |
1da177e4 LT |
4879 | |
4880 | KERNEL JANITORS | |
c3000e03 | 4881 | L: [email protected] |
10466f5a | 4882 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4883 | S: Odd Fixes |
1da177e4 | 4884 | |
e8b43555 | 4885 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4886 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4887 | L: [email protected] |
1da177e4 | 4888 | W: http://nfs.sourceforge.net/ |
98fac23f | 4889 | S: Supported |
679655da JP |
4890 | F: fs/nfsd/ |
4891 | F: include/linux/nfsd/ | |
c117ab84 | 4892 | F: include/uapi/linux/nfsd/ |
679655da JP |
4893 | F: fs/lockd/ |
4894 | F: fs/nfs_common/ | |
4895 | F: net/sunrpc/ | |
4896 | F: include/linux/lockd/ | |
4897 | F: include/linux/sunrpc/ | |
c117ab84 | 4898 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4899 | |
426d62e2 | 4900 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4901 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4902 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4903 | L: [email protected] |
e3e58478 | 4904 | W: http://www.linux-kvm.org |
a94b40a6 | 4905 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 4906 | S: Supported |
c93a64fe PB |
4907 | F: Documentation/*/kvm*.txt |
4908 | F: Documentation/virtual/kvm/ | |
679655da JP |
4909 | F: arch/*/kvm/ |
4910 | F: arch/*/include/asm/kvm* | |
4911 | F: include/linux/kvm* | |
c117ab84 | 4912 | F: include/uapi/linux/kvm* |
679655da | 4913 | F: virt/kvm/ |
426d62e2 | 4914 | |
ad8003d3 | 4915 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4916 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4917 | L: [email protected] |
4918 | W: http://kvm.qumranet.com | |
7de609c8 | 4919 | S: Maintained |
679655da | 4920 | F: arch/x86/include/asm/svm.h |
679655da | 4921 | F: arch/x86/kvm/svm.c |
426d62e2 | 4922 | |
513014b7 | 4923 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4924 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4925 | L: [email protected] |
4926 | W: http://kvm.qumranet.com | |
6a7f972d | 4927 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4928 | S: Supported |
679655da JP |
4929 | F: arch/powerpc/include/asm/kvm* |
4930 | F: arch/powerpc/kvm/ | |
513014b7 | 4931 | |
1fc9d2bf | 4932 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4933 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4934 | L: [email protected] |
4935 | W: http://kvm.qumranet.com | |
920ed9f1 | 4936 | S: Supported |
679655da JP |
4937 | F: Documentation/ia64/kvm.txt |
4938 | F: arch/ia64/include/asm/kvm* | |
4939 | F: arch/ia64/kvm/ | |
920ed9f1 | 4940 | |
85f8fffe | 4941 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4942 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4943 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4944 | M: [email protected] |
4945 | L: [email protected] | |
4946 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4947 | S: Supported | |
679655da JP |
4948 | F: Documentation/s390/kvm.txt |
4949 | F: arch/s390/include/asm/kvm* | |
80811493 | 4950 | F: arch/s390/kvm/ |
a968cd3e | 4951 | F: drivers/s390/kvm/ |
85f8fffe | 4952 | |
a749474d | 4953 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 4954 | M: Christoffer Dall <[email protected]> |
a749474d CD |
4955 | L: [email protected] |
4956 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 4957 | S: Supported |
a749474d CD |
4958 | F: arch/arm/include/uapi/asm/kvm* |
4959 | F: arch/arm/include/asm/kvm* | |
4960 | F: arch/arm/kvm/ | |
4961 | ||
6394a3ec MZ |
4962 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4963 | M: Marc Zyngier <[email protected]> | |
4964 | L: [email protected] (moderated for non-subscribers) | |
4965 | L: [email protected] | |
4966 | S: Maintained | |
4967 | F: arch/arm64/include/uapi/asm/kvm* | |
4968 | F: arch/arm64/include/asm/kvm* | |
4969 | F: arch/arm64/kvm/ | |
4970 | ||
dc009d92 | 4971 | KEXEC |
8b58be88 | 4972 | M: Eric Biederman <[email protected]> |
2f327dad | 4973 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4974 | L: [email protected] |
dc009d92 | 4975 | S: Maintained |
679655da | 4976 | F: include/linux/kexec.h |
c117ab84 | 4977 | F: include/uapi/linux/kexec.h |
679655da | 4978 | F: kernel/kexec.c |
dc009d92 | 4979 | |
e971461f DH |
4980 | KEYS/KEYRINGS: |
4981 | M: David Howells <[email protected]> | |
4982 | L: [email protected] | |
4983 | S: Maintained | |
d410fa4e | 4984 | F: Documentation/security/keys.txt |
e971461f DH |
4985 | F: include/linux/key.h |
4986 | F: include/linux/key-type.h | |
4987 | F: include/keys/ | |
4988 | F: security/keys/ | |
4989 | ||
7f3c68be MZ |
4990 | KEYS-TRUSTED |
4991 | M: David Safford <[email protected]> | |
4992 | M: Mimi Zohar <[email protected]> | |
4993 | L: [email protected] | |
4994 | L: [email protected] | |
4995 | S: Supported | |
d410fa4e | 4996 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4997 | F: include/keys/trusted-type.h |
4998 | F: security/keys/trusted.c | |
4999 | F: security/keys/trusted.h | |
5000 | ||
5001 | KEYS-ENCRYPTED | |
5002 | M: Mimi Zohar <[email protected]> | |
5003 | M: David Safford <[email protected]> | |
5004 | L: [email protected] | |
5005 | L: [email protected] | |
5006 | S: Supported | |
d410fa4e | 5007 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5008 | F: include/keys/encrypted-type.h |
19c90aa6 | 5009 | F: security/keys/encrypted-keys/ |
7f3c68be | 5010 | |
5b778dad | 5011 | KGDB / KDB /debug_core |
8b58be88 | 5012 | M: Jason Wessel <[email protected]> |
4063eb5f | 5013 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5014 | L: [email protected] |
5015 | S: Maintained | |
679655da JP |
5016 | F: Documentation/DocBook/kgdb.tmpl |
5017 | F: drivers/misc/kgdbts.c | |
df621252 | 5018 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5019 | F: include/linux/kdb.h |
679655da | 5020 | F: include/linux/kgdb.h |
4063eb5f | 5021 | F: kernel/debug/ |
e3e2aaf7 | 5022 | |
456db8cc | 5023 | KMEMCHECK |
8b58be88 | 5024 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 5025 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 5026 | S: Maintained |
410d7a97 JP |
5027 | F: Documentation/kmemcheck.txt |
5028 | F: arch/x86/include/asm/kmemcheck.h | |
5029 | F: arch/x86/mm/kmemcheck/ | |
5030 | F: include/linux/kmemcheck.h | |
5031 | F: mm/kmemcheck.c | |
b9ce08c0 | 5032 | |
c3bb4d24 | 5033 | KMEMLEAK |
8b58be88 | 5034 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
5035 | S: Maintained |
5036 | F: Documentation/kmemleak.txt | |
5037 | F: include/linux/kmemleak.h | |
5038 | F: mm/kmemleak.c | |
5039 | F: mm/kmemleak-test.c | |
5040 | ||
89559a61 | 5041 | KPROBES |
8b58be88 JP |
5042 | M: Ananth N Mavinakayanahalli <[email protected]> |
5043 | M: Anil S Keshavamurthy <[email protected]> | |
5044 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 5045 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 5046 | S: Maintained |
679655da JP |
5047 | F: Documentation/kprobes.txt |
5048 | F: include/linux/kprobes.h | |
5049 | F: kernel/kprobes.c | |
89559a61 | 5050 | |
70e84049 | 5051 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5052 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
5053 | W: http://miguelojeda.es/auxdisplay.htm |
5054 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5055 | S: Maintained |
679655da JP |
5056 | F: Documentation/auxdisplay/ks0108 |
5057 | F: drivers/auxdisplay/ks0108.c | |
5058 | F: include/linux/ks0108.h | |
70e84049 | 5059 | |
1da177e4 | 5060 | LAPB module |
1da177e4 | 5061 | L: [email protected] |
bf9915cc | 5062 | S: Orphan |
679655da JP |
5063 | F: Documentation/networking/lapb-module.txt |
5064 | F: include/*/lapb.h | |
5065 | F: net/lapb/ | |
1da177e4 LT |
5066 | |
5067 | LASI 53c700 driver for PARISC | |
8b58be88 | 5068 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5069 | L: [email protected] |
5070 | S: Maintained | |
679655da JP |
5071 | F: Documentation/scsi/53c700.txt |
5072 | F: drivers/scsi/53c700* | |
1da177e4 | 5073 | |
263de9b5 | 5074 | LED SUBSYSTEM |
c772fc26 | 5075 | M: Bryan Wu <[email protected]> |
8b58be88 | 5076 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
5077 | L: [email protected] |
5078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5079 | S: Maintained |
679655da JP |
5080 | F: drivers/leds/ |
5081 | F: include/linux/leds.h | |
263de9b5 | 5082 | |
b0461a44 JD |
5083 | LEGACY EEPROM DRIVER |
5084 | M: Jean Delvare <[email protected]> | |
5085 | S: Maintained | |
5086 | F: Documentation/misc-devices/eeprom | |
5087 | F: drivers/misc/eeprom/eeprom.c | |
5088 | ||
1da177e4 | 5089 | LEGO USB Tower driver |
8b58be88 | 5090 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
5091 | L: [email protected] |
5092 | W: http://legousb.sourceforge.net/ | |
5093 | S: Maintained | |
679655da | 5094 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5095 | |
055616a8 MK |
5096 | LG2160 MEDIA DRIVER |
5097 | M: Michael Krufky <[email protected]> | |
5098 | L: [email protected] | |
5099 | W: http://linuxtv.org/ | |
5100 | W: http://github.com/mkrufky | |
5101 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5102 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5103 | S: Maintained | |
5104 | F: drivers/media/dvb-frontends/lg2160.* | |
5105 | ||
6f0e7725 MK |
5106 | LGDT3305 MEDIA DRIVER |
5107 | M: Michael Krufky <[email protected]> | |
5108 | L: [email protected] | |
5109 | W: http://linuxtv.org/ | |
5110 | W: http://github.com/mkrufky | |
5111 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5112 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5113 | S: Maintained | |
5114 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5115 | ||
568a17ff | 5116 | LGUEST |
8b58be88 | 5117 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5118 | L: [email protected] |
568a17ff | 5119 | W: http://lguest.ozlabs.org/ |
72e91863 | 5120 | S: Odd Fixes |
070f420b | 5121 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5122 | F: arch/x86/lguest/ |
5123 | F: drivers/lguest/ | |
5124 | F: include/linux/lguest*.h | |
070f420b | 5125 | F: tools/lguest/ |
568a17ff | 5126 | |
1da177e4 | 5127 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5128 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5129 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5130 | S: Supported | |
11c34c7d | 5131 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5132 | |
852bb9f5 | 5133 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5134 | M: Benjamin Herrenschmidt <[email protected]> |
5135 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 5136 | W: http://www.penguinppc.org/ |
a4724ed6 | 5137 | L: [email protected] |
8a6e2535 | 5138 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5139 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5140 | S: Supported |
11c34c7d JP |
5141 | F: Documentation/powerpc/ |
5142 | F: arch/powerpc/ | |
1da177e4 LT |
5143 | |
5144 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5145 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5146 | W: http://www.penguinppc.org/ |
a4724ed6 | 5147 | L: [email protected] |
1da177e4 | 5148 | S: Maintained |
11c34c7d JP |
5149 | F: arch/powerpc/platforms/powermac/ |
5150 | F: drivers/macintosh/ | |
1da177e4 | 5151 | |
77a76369 | 5152 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5153 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5154 | L: [email protected] |
a149507b | 5155 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5156 | S: Maintained |
11c34c7d JP |
5157 | F: arch/powerpc/platforms/512x/ |
5158 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5159 | |
5160 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 5161 | M: Josh Boyer <[email protected]> |
8b58be88 | 5162 | M: Matt Porter <[email protected]> |
1da177e4 | 5163 | W: http://www.penguinppc.org/ |
a4724ed6 | 5164 | L: [email protected] |
645609c0 | 5165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 5166 | S: Maintained |
11c34c7d JP |
5167 | F: arch/powerpc/platforms/40x/ |
5168 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5169 | |
260c02a9 | 5170 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5171 | L: [email protected] |
cdeb8994 | 5172 | S: Orphan |
11c34c7d JP |
5173 | F: arch/powerpc/*/*virtex* |
5174 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5175 | |
e93adf1e | 5176 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5177 | M: Vitaly Bordug <[email protected]> |
5178 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5179 | W: http://www.penguinppc.org/ |
a4724ed6 | 5180 | L: [email protected] |
e93adf1e | 5181 | S: Maintained |
a2b1f7c8 | 5182 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5183 | |
1da177e4 | 5184 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5185 | M: Kumar Gala <[email protected]> |
ce00f85c | 5186 | W: http://www.penguinppc.org/ |
a4724ed6 | 5187 | L: [email protected] |
ce00f85c | 5188 | S: Maintained |
11c34c7d | 5189 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5190 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5191 | |
ab06ff3a | 5192 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5193 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5194 | L: [email protected] |
92e19709 | 5195 | S: Maintained |
11c34c7d JP |
5196 | F: arch/powerpc/platforms/pasemi/ |
5197 | F: drivers/*/*pasemi* | |
5198 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5199 | |
1da177e4 | 5200 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5201 | M: Chris Wright <[email protected]> |
1a4520be | 5202 | L: [email protected] |
1da177e4 LT |
5203 | S: Supported |
5204 | ||
a23ce6da HW |
5205 | LIS3LV02D ACCELEROMETER DRIVER |
5206 | M: Eric Piel <[email protected]> | |
5207 | S: Maintained | |
ff606677 JD |
5208 | F: Documentation/misc-devices/lis3lv02d |
5209 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5210 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5211 | |
e2d1d6c0 | 5212 | LLC (802.2) |
8b58be88 | 5213 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5214 | S: Maintained |
679655da | 5215 | F: include/linux/llc.h |
c117ab84 | 5216 | F: include/uapi/linux/llc.h |
679655da JP |
5217 | F: include/net/llc* |
5218 | F: net/llc/ | |
e2d1d6c0 | 5219 | |
4e233cbe AD |
5220 | LM73 HARDWARE MONITOR DRIVER |
5221 | M: Guillaume Ligneul <[email protected]> | |
5222 | L: [email protected] | |
5223 | S: Maintained | |
5224 | F: drivers/hwmon/lm73.c | |
5225 | ||
156e2d1a JD |
5226 | LM78 HARDWARE MONITOR DRIVER |
5227 | M: Jean Delvare <[email protected]> | |
5228 | L: [email protected] | |
5229 | S: Maintained | |
5230 | F: Documentation/hwmon/lm78 | |
5231 | F: drivers/hwmon/lm78.c | |
5232 | ||
1da177e4 | 5233 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5234 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5235 | L: [email protected] |
1da177e4 | 5236 | S: Maintained |
679655da JP |
5237 | F: Documentation/hwmon/lm83 |
5238 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5239 | |
5240 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5241 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5242 | L: [email protected] |
1da177e4 | 5243 | S: Maintained |
679655da | 5244 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5245 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5246 | F: drivers/hwmon/lm90.c |
1da177e4 | 5247 | |
917cc4e6 GR |
5248 | LM95234 HARDWARE MONITOR DRIVER |
5249 | M: Guenter Roeck <[email protected]> | |
5250 | L: [email protected] | |
5251 | S: Maintained | |
5252 | F: Documentation/hwmon/lm95234 | |
5253 | F: drivers/hwmon/lm95234.c | |
5254 | ||
68620bdd MP |
5255 | LME2510 MEDIA DRIVER |
5256 | M: Malcolm Priestley <[email protected]> | |
5257 | L: [email protected] | |
5258 | W: http://linuxtv.org/ | |
5259 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5260 | S: Maintained | |
5261 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5262 | ||
512e67f9 | 5263 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5264 | M: Peter Zijlstra <[email protected]> |
5265 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 5266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5267 | S: Maintained |
679655da JP |
5268 | F: Documentation/lockdep*.txt |
5269 | F: Documentation/lockstat.txt | |
5270 | F: include/linux/lockdep.h | |
7486d6da | 5271 | F: kernel/locking/ |
512e67f9 | 5272 | |
dde33348 | 5273 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5274 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5275 | L: [email protected] |
5276 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5277 | S: Maintained |
679655da | 5278 | F: Documentation/ldm.txt |
20d16fef | 5279 | F: block/partitions/ldm.* |
1da177e4 | 5280 | |
ef6ada3d JE |
5281 | LogFS |
5282 | M: Joern Engel <[email protected]> | |
756ccb3c | 5283 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5284 | L: [email protected] |
5285 | W: logfs.org | |
5286 | S: Maintained | |
5287 | F: fs/logfs/ | |
5288 | ||
b62d7946 RS |
5289 | LPC32XX MACHINE SUPPORT |
5290 | M: Roland Stigge <[email protected]> | |
5291 | L: [email protected] (moderated for non-subscribers) | |
5292 | S: Maintained | |
5293 | F: arch/arm/mach-lpc32xx/ | |
5294 | ||
c87e34ef | 5295 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5296 | M: Nagalakshmi Nandigama <[email protected]> |
5297 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5298 | M: [email protected] |
cec744fb | 5299 | L: [email protected] |
c87e34ef MED |
5300 | L: [email protected] |
5301 | W: http://www.lsilogic.com/support | |
5302 | S: Supported | |
679655da | 5303 | F: drivers/message/fusion/ |
500c152a | 5304 | F: drivers/scsi/mpt2sas/ |
5305 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5306 | |
1da177e4 | 5307 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5308 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5309 | L: [email protected] |
5310 | S: Maintained | |
679655da | 5311 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5312 | |
e5f5c99a GR |
5313 | LTC4261 HARDWARE MONITOR DRIVER |
5314 | M: Guenter Roeck <[email protected]> | |
5315 | L: [email protected] | |
5316 | S: Maintained | |
5317 | F: Documentation/hwmon/ltc4261 | |
5318 | F: drivers/hwmon/ltc4261.c | |
5319 | ||
81365c31 | 5320 | LTP (Linux Test Project) |
7d1ae8a8 | 5321 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5322 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5323 | M: Cyril Hrubis <[email protected]> |
5324 | M: Caspar Zhang <[email protected]> | |
5325 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5326 | L: [email protected] (subscribers-only) |
5327 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5328 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5329 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5330 | S: Maintained |
5331 | ||
c12a54b3 | 5332 | M32R ARCHITECTURE |
8b58be88 | 5333 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5334 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5335 | L: [email protected] (in Japanese) |
5336 | W: http://www.linux-m32r.org/ | |
5337 | S: Maintained | |
679655da | 5338 | F: arch/m32r/ |
c12a54b3 | 5339 | |
1da177e4 | 5340 | M68K ARCHITECTURE |
8b58be88 | 5341 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5342 | L: [email protected] |
5343 | W: http://www.linux-m68k.org/ | |
54e5881d | 5344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5345 | S: Maintained |
679655da | 5346 | F: arch/m68k/ |
9db35182 | 5347 | F: drivers/zorro/ |
1da177e4 LT |
5348 | |
5349 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5350 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5351 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5352 | L: [email protected] |
1da177e4 | 5353 | S: Maintained |
9db35182 | 5354 | F: arch/m68k/mac/ |
1da177e4 LT |
5355 | |
5356 | M68K ON HP9000/300 | |
8b58be88 | 5357 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5358 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5359 | S: Maintained | |
679655da | 5360 | F: arch/m68k/hp300/ |
1da177e4 | 5361 | |
68620bdd MP |
5362 | M88RS2000 MEDIA DRIVER |
5363 | M: Malcolm Priestley <[email protected]> | |
5364 | L: [email protected] | |
5365 | W: http://linuxtv.org/ | |
5366 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5367 | S: Maintained | |
5368 | F: drivers/media/dvb-frontends/m88rs2000* | |
5369 | ||
07a092fa AK |
5370 | MA901 MASTERKIT USB FM RADIO DRIVER |
5371 | M: Alexey Klimov <[email protected]> | |
5372 | L: [email protected] | |
5373 | T: git git://linuxtv.org/media_tree.git | |
5374 | S: Maintained | |
5375 | F: drivers/media/radio/radio-ma901.c | |
5376 | ||
64a327a7 | 5377 | MAC80211 |
8b58be88 | 5378 | M: Johannes Berg <[email protected]> |
64a327a7 | 5379 | L: [email protected] |
491b26b4 | 5380 | W: http://wireless.kernel.org/ |
ce466579 JB |
5381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5383 | S: Maintained |
679655da JP |
5384 | F: Documentation/networking/mac80211-injection.txt |
5385 | F: include/net/mac80211.h | |
5386 | F: net/mac80211/ | |
64a327a7 | 5387 | |
1036d864 | 5388 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5389 | M: Stefano Brivio <[email protected]> |
5390 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5391 | L: [email protected] |
491b26b4 | 5392 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5393 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5395 | S: Maintained |
679655da | 5396 | F: net/mac80211/rc80211_pid* |
1036d864 | 5397 | |
b863ceb7 | 5398 | MACVLAN DRIVER |
8b58be88 | 5399 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5400 | L: [email protected] |
5401 | S: Maintained | |
679655da JP |
5402 | F: drivers/net/macvlan.c |
5403 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5404 | |
faf1668c | 5405 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5406 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5407 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5408 | L: [email protected] |
1b53dc74 | 5409 | S: Maintained |
faf1668c | 5410 | |
44c14c1d | 5411 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5412 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5413 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5414 | L: [email protected] |
5415 | S: Maintained | |
5416 | F: drivers/net/ethernet/marvell/sk* | |
5417 | ||
74cda169 | 5418 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5419 | L: [email protected] |
8ac3e99e | 5420 | S: Orphan |
679655da | 5421 | F: drivers/net/wireless/libertas/ |
74cda169 | 5422 | |
b60d6975 | 5423 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5424 | M: Sebastian Hesselbarth <[email protected]> |
979b6c13 | 5425 | L: [email protected] |
f5ca8502 | 5426 | S: Maintained |
527a6266 | 5427 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5428 | F: include/linux/mv643xx.h |
1da177e4 | 5429 | |
370b8ed9 TP |
5430 | MARVELL MVNETA ETHERNET DRIVER |
5431 | M: Thomas Petazzoni <[email protected]> | |
5432 | L: [email protected] | |
5433 | S: Maintained | |
5434 | F: drivers/net/ethernet/marvell/mvneta.* | |
5435 | ||
fcad584d BZ |
5436 | MARVELL MWIFIEX WIRELESS DRIVER |
5437 | M: Bing Zhao <[email protected]> | |
5438 | L: [email protected] | |
5439 | S: Maintained | |
5440 | F: drivers/net/wireless/mwifiex/ | |
5441 | ||
a2c3f656 | 5442 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5443 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5444 | L: [email protected] |
16345910 | 5445 | S: Odd Fixes |
a2c3f656 LB |
5446 | F: drivers/net/wireless/mwl8k.c |
5447 | ||
2a69567b | 5448 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5449 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5450 | S: Odd Fixes |
1fa7e547 | 5451 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5452 | |
1da177e4 | 5453 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5454 | L: [email protected] |
52653199 | 5455 | S: Orphan |
679655da | 5456 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5457 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5458 | |
ca462085 GR |
5459 | MAX16065 HARDWARE MONITOR DRIVER |
5460 | M: Guenter Roeck <[email protected]> | |
5461 | L: [email protected] | |
5462 | S: Maintained | |
5463 | F: Documentation/hwmon/max16065 | |
5464 | F: drivers/hwmon/max16065.c | |
5465 | ||
d20620de | 5466 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5467 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5468 | L: [email protected] |
5469 | S: Maintained | |
679655da JP |
5470 | F: Documentation/hwmon/max6650 |
5471 | F: drivers/hwmon/max6650.c | |
d20620de | 5472 | |
e89ab51f GR |
5473 | MAX6697 HARDWARE MONITOR DRIVER |
5474 | M: Guenter Roeck <[email protected]> | |
5475 | L: [email protected] | |
5476 | S: Maintained | |
5477 | F: Documentation/hwmon/max6697 | |
5478 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5479 | F: drivers/hwmon/max6697.c | |
5480 | F: include/linux/platform_data/max6697.h | |
5481 | ||
9be3c9a5 HV |
5482 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5483 | M: Hans Verkuil <[email protected]> | |
5484 | L: [email protected] | |
5485 | T: git git://linuxtv.org/media_tree.git | |
5486 | W: http://linuxtv.org | |
5487 | S: Maintained | |
5488 | F: drivers/media/radio/radio-maxiradio* | |
5489 | ||
127c49ae | 5490 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5491 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5492 | P: LinuxTV.org Project |
5493 | L: [email protected] | |
5494 | W: http://linuxtv.org | |
8a6e2535 | 5495 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5496 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5497 | S: Maintained |
5498 | F: Documentation/dvb/ | |
5499 | F: Documentation/video4linux/ | |
ffe06198 | 5500 | F: Documentation/DocBook/media/ |
127c49ae | 5501 | F: drivers/media/ |
ffe06198 | 5502 | F: drivers/staging/media/ |
127c49ae | 5503 | F: include/media/ |
6c0f0359 MCC |
5504 | F: include/uapi/linux/dvb/ |
5505 | F: include/uapi/linux/videodev2.h | |
5506 | F: include/uapi/linux/media.h | |
5507 | F: include/uapi/linux/v4l2-* | |
5508 | F: include/uapi/linux/meye.h | |
5509 | F: include/uapi/linux/ivtv* | |
5510 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5511 | |
6149a936 HV |
5512 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5513 | M: Hans Verkuil <[email protected]> | |
5514 | L: [email protected] | |
5515 | T: git git://linuxtv.org/media_tree.git | |
5516 | W: http://linuxtv.org | |
5517 | S: Odd Fixes | |
5518 | F: drivers/media/parport/pms* | |
5519 | ||
757e0108 | 5520 | MEGARAID SCSI DRIVERS |
8b58be88 | 5521 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5522 | L: [email protected] |
ce00f85c JC |
5523 | W: http://megaraid.lsilogic.com |
5524 | S: Maintained | |
679655da JP |
5525 | F: Documentation/scsi/megaraid.txt |
5526 | F: drivers/scsi/megaraid.* | |
5527 | F: drivers/scsi/megaraid/ | |
757e0108 | 5528 | |
2c46c9d5 AV |
5529 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5530 | M: Amir Vadai <[email protected]> | |
5531 | L: [email protected] | |
5532 | S: Supported | |
5533 | W: http://www.mellanox.com | |
5534 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5535 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5536 | ||
70ea91f1 SR |
5537 | MEMORY MANAGEMENT |
5538 | L: [email protected] | |
70ea91f1 SR |
5539 | W: http://www.linux-mm.org |
5540 | S: Maintained | |
679655da | 5541 | F: include/linux/mm.h |
551450bb CS |
5542 | F: include/linux/gfp.h |
5543 | F: include/linux/mmzone.h | |
5544 | F: include/linux/memory_hotplug.h | |
5545 | F: include/linux/vmalloc.h | |
679655da | 5546 | F: mm/ |
70ea91f1 | 5547 | |
938a9204 | 5548 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5549 | M: Johannes Weiner <[email protected]> |
5550 | M: Michal Hocko <[email protected]> | |
185e595f | 5551 | M: Balbir Singh <[email protected]> |
8b58be88 | 5552 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5553 | L: [email protected] |
938a9204 | 5554 | L: [email protected] |
938a9204 | 5555 | S: Maintained |
679655da | 5556 | F: mm/memcontrol.c |
4e4c941c | 5557 | F: mm/page_cgroup.c |
938a9204 | 5558 | |
f4e9ce66 | 5559 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5560 | M: David Woodhouse <[email protected]> |
1da177e4 | 5561 | L: [email protected] |
8a6e2535 JP |
5562 | W: http://www.linux-mtd.infradead.org/ |
5563 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5564 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5565 | S: Maintained |
679655da JP |
5566 | F: drivers/mtd/ |
5567 | F: include/linux/mtd/ | |
c117ab84 | 5568 | F: include/uapi/mtd/ |
1da177e4 | 5569 | |
26c57ef1 JT |
5570 | MEN A21 WATCHDOG DRIVER |
5571 | M: Johannes Thumshirn <[email protected]> | |
5572 | L: [email protected] | |
5573 | S: Supported | |
5574 | F: drivers/watchdog/mena21_wdt.c | |
5575 | ||
12285945 JH |
5576 | METAG ARCHITECTURE |
5577 | M: James Hogan <[email protected]> | |
d668d9ed | 5578 | L: [email protected] |
12285945 JH |
5579 | S: Supported |
5580 | F: arch/metag/ | |
5581 | F: Documentation/metag/ | |
5582 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5583 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5584 | F: drivers/irqchip/irq-metag.c |
5585 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5586 | F: drivers/tty/metag_da.c |
5587 | F: fs/imgdafs/ | |
12285945 | 5588 | |
c6375b0a | 5589 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5590 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5591 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5592 | W: http://www.monstr.eu/fdt/ |
5593 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5594 | S: Supported | |
0a8c7914 | 5595 | F: arch/microblaze/ |
1da177e4 LT |
5596 | |
5597 | MICROTEK X6 SCANNER | |
61eee9a7 | 5598 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5599 | S: Maintained |
679655da | 5600 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5601 | |
5602 | MIPS | |
8b58be88 | 5603 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5604 | L: [email protected] |
6097050d | 5605 | W: http://www.linux-mips.org/ |
b05e988e | 5606 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5607 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5608 | S: Supported |
679655da JP |
5609 | F: Documentation/mips/ |
5610 | F: arch/mips/ | |
1da177e4 | 5611 | |
08b7620a HV |
5612 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5613 | M: Hans Verkuil <[email protected]> | |
5614 | L: [email protected] | |
5615 | T: git git://linuxtv.org/media_tree.git | |
5616 | W: http://linuxtv.org | |
5617 | S: Odd Fixes | |
5618 | F: drivers/media/radio/radio-miropcm20* | |
5619 | ||
e126ba97 EC |
5620 | Mellanox MLX5 core VPI driver |
5621 | M: Eli Cohen <[email protected]> | |
5622 | L: [email protected] | |
5623 | L: [email protected] | |
5624 | W: http://www.mellanox.com | |
5625 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5626 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5627 | T: git://openfabrics.org/~eli/connect-ib.git | |
5628 | S: Supported | |
5629 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5630 | F: include/linux/mlx5/ | |
5631 | ||
5632 | Mellanox MLX5 IB driver | |
5633 | M: Eli Cohen <[email protected]> | |
5634 | L: [email protected] | |
5635 | W: http://www.mellanox.com | |
5636 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5637 | T: git://openfabrics.org/~eli/connect-ib.git | |
5638 | S: Supported | |
5639 | F: include/linux/mlx5/ | |
5640 | F: drivers/infiniband/hw/mlx5/ | |
5641 | ||
1da177e4 | 5642 | MODULE SUPPORT |
8b58be88 | 5643 | M: Rusty Russell <[email protected]> |
1da177e4 | 5644 | S: Maintained |
679655da JP |
5645 | F: include/linux/module.h |
5646 | F: kernel/module.c | |
1da177e4 LT |
5647 | |
5648 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5649 | W: http://popies.net/meye/ |
b7788e13 | 5650 | S: Orphan |
679655da | 5651 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5652 | F: drivers/media/pci/meye/ |
6c0f0359 | 5653 | F: include/uapi/linux/meye.h |
1da177e4 | 5654 | |
b9705b60 | 5655 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5656 | M: Jiri Slaby <[email protected]> |
d735410a | 5657 | S: Maintained |
679655da | 5658 | F: Documentation/serial/moxa-smartio |
c897401b | 5659 | F: drivers/tty/mxser.* |
d735410a | 5660 | |
889b2f87 AK |
5661 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5662 | M: Alexey Klimov <[email protected]> | |
5663 | L: [email protected] | |
5664 | T: git git://linuxtv.org/media_tree.git | |
5665 | S: Maintained | |
5666 | F: drivers/media/radio/radio-mr800.c | |
5667 | ||
8c4c731a | 5668 | MSI LAPTOP SUPPORT |
182ae55c | 5669 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5670 | L: [email protected] |
8c4c731a | 5671 | S: Maintained |
679655da | 5672 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5673 | |
0f1006b1 AA |
5674 | MSI WMI SUPPORT |
5675 | M: Anisse Astier <[email protected]> | |
d0944853 | 5676 | L: [email protected] |
0f1006b1 AA |
5677 | S: Supported |
5678 | F: drivers/platform/x86/msi-wmi.c | |
5679 | ||
62a37dc7 | 5680 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5681 | M: Laurent Pinchart <[email protected]> |
5682 | L: [email protected] | |
5683 | T: git git://linuxtv.org/media_tree.git | |
5684 | S: Maintained | |
5685 | F: drivers/media/i2c/mt9m032.c | |
5686 | F: include/media/mt9m032.h | |
5687 | ||
62a37dc7 | 5688 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5689 | M: Laurent Pinchart <[email protected]> |
5690 | L: [email protected] | |
5691 | T: git git://linuxtv.org/media_tree.git | |
5692 | S: Maintained | |
5693 | F: drivers/media/i2c/mt9p031.c | |
5694 | F: include/media/mt9p031.h | |
5695 | ||
62a37dc7 | 5696 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5697 | M: Laurent Pinchart <[email protected]> |
5698 | L: [email protected] | |
5699 | T: git git://linuxtv.org/media_tree.git | |
5700 | S: Maintained | |
5701 | F: drivers/media/i2c/mt9t001.c | |
5702 | F: include/media/mt9t001.h | |
5703 | ||
62a37dc7 | 5704 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5705 | M: Laurent Pinchart <[email protected]> |
5706 | L: [email protected] | |
5707 | T: git git://linuxtv.org/media_tree.git | |
5708 | S: Maintained | |
5709 | F: drivers/media/i2c/mt9v032.c | |
5710 | F: include/media/mt9v032.h | |
5711 | ||
4e0d13cb | 5712 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5713 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5714 | M: Lee Jones <[email protected]> |
5715 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5717 | S: Supported |
679655da | 5718 | F: drivers/mfd/ |
55b5940d | 5719 | F: include/linux/mfd/ |
4e0d13cb | 5720 | |
5c4e6f13 | 5721 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5722 | M: Chris Ball <[email protected]> |
b2503a94 | 5723 | L: [email protected] |
245feaa6 CB |
5724 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5725 | S: Maintained | |
679655da JP |
5726 | F: drivers/mmc/ |
5727 | F: include/linux/mmc/ | |
c117ab84 | 5728 | F: include/uapi/linux/mmc/ |
baca2da4 | 5729 | |
15a0580c | 5730 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5731 | S: Orphan |
679655da JP |
5732 | F: drivers/mmc/host/mmc_spi.c |
5733 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5734 | |
1da177e4 | 5735 | MULTISOUND SOUND DRIVER |
8b58be88 | 5736 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5737 | S: Maintained |
679655da JP |
5738 | F: Documentation/sound/oss/MultiSound |
5739 | F: sound/oss/msnd* | |
1da177e4 | 5740 | |
d735410a | 5741 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5742 | S: Orphan |
c897401b | 5743 | F: drivers/tty/isicom.c |
679655da | 5744 | F: include/linux/isicom.h |
d735410a | 5745 | |
550a7375 | 5746 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5747 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5748 | L: [email protected] |
43b416e5 | 5749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5750 | S: Maintained |
679655da | 5751 | F: drivers/usb/musb/ |
550a7375 | 5752 | |
ea0af5f6 MK |
5753 | MXL5007T MEDIA DRIVER |
5754 | M: Michael Krufky <[email protected]> | |
5755 | L: [email protected] | |
5756 | W: http://linuxtv.org/ | |
5757 | W: http://github.com/mkrufky | |
5758 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5759 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5760 | S: Maintained | |
5761 | F: drivers/media/tuners/mxl5007t.* | |
5762 | ||
2d3cf588 | 5763 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5764 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 5765 | L: [email protected] |
205057ae | 5766 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5767 | S: Supported |
93f7848b | 5768 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5769 | |
1da177e4 | 5770 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5771 | S: Orphan |
d9fb9f38 | 5772 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5773 | |
23dc05a3 DM |
5774 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5775 | M: Daniel Mack <[email protected]> | |
5776 | S: Maintained | |
5777 | L: [email protected] | |
5778 | W: http://www.native-instruments.com | |
5779 | F: sound/usb/caiaq/ | |
5780 | ||
1da177e4 | 5781 | NCP FILESYSTEM |
52653199 PV |
5782 | M: Petr Vandrovec <[email protected]> |
5783 | S: Odd Fixes | |
679655da | 5784 | F: fs/ncpfs/ |
1da177e4 LT |
5785 | |
5786 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5787 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5788 | L: [email protected] |
5789 | S: Maintained | |
679655da | 5790 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5791 | |
4aa3eb4c GR |
5792 | NCT6775 HARDWARE MONITOR DRIVER |
5793 | M: Guenter Roeck <[email protected]> | |
5794 | L: [email protected] | |
5795 | S: Maintained | |
5796 | F: Documentation/hwmon/nct6775 | |
5797 | F: drivers/hwmon/nct6775.c | |
5798 | ||
3c2d774c | 5799 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5800 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5801 | L: [email protected] |
e3d33cb1 | 5802 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5803 | S: Supported |
5804 | F: drivers/infiniband/hw/nes/ | |
5805 | ||
be2f2e84 | 5806 | NETEM NETWORK EMULATOR |
adbbf69d | 5807 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5808 | L: [email protected] |
be2f2e84 | 5809 | S: Maintained |
679655da | 5810 | F: net/sched/sch_netem.c |
be2f2e84 | 5811 | |
b2f5a051 | 5812 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5813 | M: Jon Mason <[email protected]> |
4a58448b | 5814 | L: [email protected] |
4a58448b | 5815 | S: Supported |
679655da | 5816 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5817 | F: Documentation/networking/vxge.txt |
86387e1a | 5818 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5819 | |
42010ed0 | 5820 | NETFILTER/IPTABLES |
0e05e192 | 5821 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5822 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5823 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5824 | L: [email protected] |
5825 | L: [email protected] | |
82b98543 | 5826 | L: [email protected] |
1da177e4 LT |
5827 | W: http://www.netfilter.org/ |
5828 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5829 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5832 | S: Supported |
679655da JP |
5833 | F: include/linux/netfilter* |
5834 | F: include/linux/netfilter/ | |
5835 | F: include/net/netfilter/ | |
c117ab84 CEB |
5836 | F: include/uapi/linux/netfilter* |
5837 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5838 | F: net/*/netfilter.c |
5839 | F: net/*/netfilter/ | |
5840 | F: net/netfilter/ | |
1da177e4 | 5841 | |
4cc67735 | 5842 | NETLABEL |
87a0874c | 5843 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5844 | W: http://netlabel.sf.net |
5845 | L: [email protected] | |
87a0874c | 5846 | S: Maintained |
80811493 | 5847 | F: Documentation/netlabel/ |
679655da JP |
5848 | F: include/net/netlabel.h |
5849 | F: net/netlabel/ | |
4cc67735 | 5850 | |
1da177e4 | 5851 | NETROM NETWORK LAYER |
8b58be88 | 5852 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5853 | L: [email protected] |
d34cb28a | 5854 | W: http://www.linux-ax25.org/ |
1da177e4 | 5855 | S: Maintained |
679655da | 5856 | F: include/net/netrom.h |
c117ab84 | 5857 | F: include/uapi/linux/netrom.h |
679655da | 5858 | F: net/netrom/ |
1da177e4 | 5859 | |
5ddb88c0 | 5860 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5861 | M: Paul Clements <[email protected]> |
1da177e4 | 5862 | S: Maintained |
5e4b269b | 5863 | L: [email protected] |
679655da JP |
5864 | F: Documentation/blockdev/nbd.txt |
5865 | F: drivers/block/nbd.c | |
5866 | F: include/linux/nbd.h | |
c117ab84 | 5867 | F: include/uapi/linux/nbd.h |
1da177e4 | 5868 | |
6e43650c NH |
5869 | NETWORK DROP MONITOR |
5870 | M: Neil Horman <[email protected]> | |
5871 | L: [email protected] | |
5872 | S: Maintained | |
5873 | W: https://fedorahosted.org/dropwatch/ | |
5874 | F: net/core/drop_monitor.c | |
5875 | ||
1da177e4 | 5876 | NETWORKING [GENERAL] |
8b58be88 | 5877 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5878 | L: [email protected] |
b1e8fd54 | 5879 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5880 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5881 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5883 | S: Maintained |
679655da JP |
5884 | F: net/ |
5885 | F: include/net/ | |
018d21ed JP |
5886 | F: include/linux/in.h |
5887 | F: include/linux/net.h | |
5888 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5889 | F: include/uapi/linux/in.h |
5890 | F: include/uapi/linux/net.h | |
5891 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5892 | |
5893 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5894 | M: "David S. Miller" <[email protected]> |
5895 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5896 | M: James Morris <[email protected]> |
5897 | M: Hideaki YOSHIFUJI <[email protected]> | |
5898 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5899 | L: [email protected] |
08deed1e | 5900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5901 | S: Maintained |
679655da JP |
5902 | F: net/ipv4/ |
5903 | F: net/ipv6/ | |
5904 | F: include/net/ip* | |
0a14842f | 5905 | F: arch/x86/net/* |
1da177e4 | 5906 | |
73b7656c DM |
5907 | NETWORKING [IPSEC] |
5908 | M: Steffen Klassert <[email protected]> | |
5909 | M: Herbert Xu <[email protected]> | |
5910 | M: "David S. Miller" <[email protected]> | |
5911 | L: [email protected] | |
5912 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5913 | S: Maintained | |
5914 | F: net/xfrm/ | |
5915 | F: net/key/ | |
5916 | F: net/ipv4/xfrm* | |
5917 | F: net/ipv6/xfrm* | |
5918 | F: include/uapi/linux/xfrm.h | |
5919 | F: include/net/xfrm.h | |
5920 | ||
10e2ff1c | 5921 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5922 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5923 | L: [email protected] |
5924 | S: Maintained | |
5925 | ||
29f8f632 | 5926 | NETWORKING [WIRELESS] |
8b58be88 | 5927 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5928 | L: [email protected] |
8a6e2535 | 5929 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5930 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5931 | S: Maintained |
34b921cf JP |
5932 | F: net/mac80211/ |
5933 | F: net/rfkill/ | |
679655da JP |
5934 | F: net/wireless/ |
5935 | F: include/net/ieee80211* | |
cc8b4a2b | 5936 | F: include/linux/wireless.h |
c117ab84 | 5937 | F: include/uapi/linux/wireless.h |
c984e24d | 5938 | F: include/net/iw_handler.h |
34b921cf | 5939 | F: drivers/net/wireless/ |
29f8f632 | 5940 | |
788873ac JP |
5941 | NETWORKING DRIVERS |
5942 | L: [email protected] | |
5943 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5944 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5946 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5947 | S: Odd Fixes |
5948 | F: drivers/net/ | |
018d21ed | 5949 | F: include/linux/if_* |
0b63bf1f JD |
5950 | F: include/linux/netdevice.h |
5951 | F: include/linux/arcdevice.h | |
5952 | F: include/linux/etherdevice.h | |
5953 | F: include/linux/fcdevice.h | |
5954 | F: include/linux/fddidevice.h | |
5955 | F: include/linux/hippidevice.h | |
5956 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5957 | F: include/uapi/linux/if_* |
5958 | F: include/uapi/linux/netdevice.h | |
788873ac | 5959 | |
3d396eb1 | 5960 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5961 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
5962 | M: Sony Chacko <[email protected]> |
5963 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5964 | L: [email protected] |
9c2b5bde | 5965 | W: http://www.qlogic.com |
3d396eb1 | 5966 | S: Supported |
aa43c215 | 5967 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5968 | |
6423d30f AAJ |
5969 | NFC SUBSYSTEM |
5970 | M: Lauro Ramos Venancio <[email protected]> | |
5971 | M: Aloisio Almeida Jr <[email protected]> | |
5972 | M: Samuel Ortiz <[email protected]> | |
5973 | L: [email protected] | |
5adf54de | 5974 | L: [email protected] (moderated for non-subscribers) |
0293ba20 | 5975 | S: Supported |
6423d30f | 5976 | F: net/nfc/ |
55eb94f9 | 5977 | F: include/net/nfc/ |
c117ab84 | 5978 | F: include/uapi/linux/nfc.h |
6423d30f | 5979 | F: drivers/nfc/ |
08eaa1e0 | 5980 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5981 | |
e8b43555 | 5982 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 5983 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5984 | L: [email protected] |
5985 | W: http://client.linux-nfs.org | |
cd7b996a | 5986 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 5987 | S: Maintained |
679655da JP |
5988 | F: fs/lockd/ |
5989 | F: fs/nfs/ | |
5990 | F: fs/nfs_common/ | |
5991 | F: net/sunrpc/ | |
5992 | F: include/linux/lockd/ | |
5993 | F: include/linux/nfs* | |
5994 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5995 | F: include/uapi/linux/nfs* |
5996 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5997 | |
85ef9cea | 5998 | NILFS2 FILESYSTEM |
8b58be88 | 5999 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 6000 | L: [email protected] |
85ef9cea | 6001 | W: http://www.nilfs.org/en/ |
af1761f2 | 6002 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 6003 | S: Supported |
679655da JP |
6004 | F: Documentation/filesystems/nilfs2.txt |
6005 | F: fs/nilfs2/ | |
6006 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6007 | |
1da177e4 | 6008 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6009 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
6010 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6011 | S: Maintained | |
679655da JP |
6012 | F: Documentation/scsi/NinjaSCSI.txt |
6013 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6014 | |
6015 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6016 | M: GOTO Masanori <[email protected]> |
6017 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
6018 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6019 | S: Maintained | |
679655da JP |
6020 | F: Documentation/scsi/NinjaSCSI.txt |
6021 | F: drivers/scsi/nsp32* | |
1da177e4 | 6022 | |
fce8a7bb JM |
6023 | NTB DRIVER |
6024 | M: Jon Mason <[email protected]> | |
6025 | S: Supported | |
2984411f JM |
6026 | W: https://github.com/jonmason/ntb/wiki |
6027 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6028 | F: drivers/ntb/ |
548c237c | 6029 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6030 | F: include/linux/ntb.h |
6031 | ||
1da177e4 | 6032 | NTFS FILESYSTEM |
2818ef50 | 6033 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 6034 | L: [email protected] |
2818ef50 | 6035 | W: http://www.tuxera.com/ |
e6f4dee7 | 6036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6037 | S: Supported |
679655da JP |
6038 | F: Documentation/filesystems/ntfs.txt |
6039 | F: fs/ntfs/ | |
1da177e4 | 6040 | |
9eb8ef74 | 6041 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6042 | M: Antonino Daplas <[email protected]> |
c69f677c | 6043 | L: [email protected] |
ce00f85c | 6044 | S: Maintained |
679655da JP |
6045 | F: drivers/video/riva/ |
6046 | F: drivers/video/nvidia/ | |
1da177e4 | 6047 | |
79461681 MW |
6048 | NVM EXPRESS DRIVER |
6049 | M: Matthew Wilcox <[email protected]> | |
6050 | L: [email protected] | |
6051 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6052 | S: Supported | |
5be37bf9 | 6053 | F: drivers/block/nvme* |
79461681 MW |
6054 | F: include/linux/nvme.h |
6055 | ||
f5525786 | 6056 | OMAP SUPPORT |
0e24bdd4 | 6057 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
6058 | L: [email protected] |
6059 | W: http://www.muru.com/linux/omap/ | |
6060 | W: http://linux.omap.com/ | |
8a6e2535 | 6061 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6063 | S: Maintained |
4e04d5a3 | 6064 | F: arch/arm/*omap*/ |
046d0a37 JD |
6065 | F: drivers/i2c/busses/i2c-omap.c |
6066 | F: include/linux/i2c-omap.h | |
f5525786 | 6067 | |
50f29fbd | 6068 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6069 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
6070 | M: Tony Lindgren <[email protected]> |
6071 | L: [email protected] | |
d0fb18c5 | 6072 | L: [email protected] |
50f29fbd TL |
6073 | S: Maintained |
6074 | F: arch/arm/boot/dts/*omap* | |
6075 | F: arch/arm/boot/dts/*am3* | |
6076 | ||
f5525786 | 6077 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6078 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
6079 | L: [email protected] |
6080 | S: Maintained | |
6081 | F: arch/arm/*omap*/*clock* | |
6082 | ||
6083 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6084 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
6085 | L: [email protected] |
6086 | S: Maintained | |
6087 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6088 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6089 | |
d21db568 | 6090 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6091 | M: Rajendra Nayak <[email protected]> |
6092 | M: Paul Walmsley <[email protected]> | |
6093 | L: [email protected] | |
6094 | S: Maintained | |
d21db568 | 6095 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6096 | |
f5525786 | 6097 | OMAP AUDIO SUPPORT |
6c284903 | 6098 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 6099 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
6100 | L: [email protected] (subscribers-only) |
6101 | L: [email protected] | |
6102 | S: Maintained | |
6103 | F: sound/soc/omap/ | |
6104 | ||
6105 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6106 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 6107 | L: [email protected] |
f5525786 TL |
6108 | L: [email protected] |
6109 | S: Maintained | |
6110 | F: drivers/video/omap/ | |
6111 | ||
676eec0d | 6112 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6113 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 6114 | L: [email protected] |
676eec0d | 6115 | L: [email protected] |
178ff4c9 | 6116 | S: Maintained |
676eec0d | 6117 | F: drivers/video/omap2/ |
178ff4c9 TV |
6118 | F: Documentation/arm/OMAP/DSS |
6119 | ||
8b37fcfc OBC |
6120 | OMAP HARDWARE SPINLOCK SUPPORT |
6121 | M: Ohad Ben-Cohen <[email protected]> | |
6122 | L: [email protected] | |
6123 | S: Maintained | |
6124 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6125 | F: arch/arm/mach-omap2/hwspinlock.c | |
6126 | ||
f5525786 | 6127 | OMAP MMC SUPPORT |
8b58be88 | 6128 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
6129 | L: [email protected] |
6130 | S: Maintained | |
653f41b5 MC |
6131 | F: drivers/mmc/host/omap.c |
6132 | ||
6133 | OMAP HS MMC SUPPORT | |
14006bfb | 6134 | M: Balaji T K <[email protected]> |
0a4585c6 | 6135 | L: [email protected] |
653f41b5 | 6136 | L: [email protected] |
0a4585c6 | 6137 | S: Maintained |
653f41b5 | 6138 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6139 | |
6140 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6141 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
6142 | S: Maintained |
6143 | F: drivers/char/hw_random/omap-rng.c | |
6144 | ||
f400c82e | 6145 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6146 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6147 | M: Paul Walmsley <[email protected]> |
6148 | L: [email protected] | |
6149 | S: Maintained | |
8fc8b12b | 6150 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6151 | |
6152 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6153 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6154 | L: [email protected] |
6155 | S: Maintained | |
6156 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6157 | ||
7e8970e1 LP |
6158 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6159 | M: Laurent Pinchart <[email protected]> | |
6160 | L: [email protected] | |
6161 | S: Maintained | |
90d72ac6 | 6162 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6163 | |
f5525786 | 6164 | OMAP USB SUPPORT |
f299470a | 6165 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
6166 | L: [email protected] |
6167 | L: [email protected] | |
43b416e5 | 6168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6169 | S: Maintained |
a16fbd65 JP |
6170 | F: drivers/usb/*/*omap* |
6171 | F: arch/arm/*omap*/usb* | |
f5525786 | 6172 | |
6d994710 KH |
6173 | OMAP GPIO DRIVER |
6174 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 6175 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
6176 | L: [email protected] |
6177 | S: Maintained | |
6178 | F: drivers/gpio/gpio-omap.c | |
6179 | ||
c351e290 MJ |
6180 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6181 | M: Mark Jackson <[email protected]> | |
6182 | L: [email protected] | |
6183 | S: Maintained | |
6184 | F: arch/arm/boot/dts/am335x-nano.dts | |
6185 | ||
0ad122d9 | 6186 | OMFS FILESYSTEM |
8b58be88 | 6187 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6188 | L: [email protected] |
6189 | S: Maintained | |
679655da JP |
6190 | F: Documentation/filesystems/omfs.txt |
6191 | F: fs/omfs/ | |
0ad122d9 | 6192 | |
c1986ee9 | 6193 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6194 | M: Harald Welte <[email protected]> |
c1986ee9 | 6195 | S: Maintained |
679655da JP |
6196 | F: drivers/char/pcmcia/cm4000_cs.c |
6197 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6198 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6199 | |
77c44ab1 | 6200 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6201 | M: Harald Welte <[email protected]> |
77c44ab1 | 6202 | S: Maintained |
679655da | 6203 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6204 | |
77d5140f | 6205 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6206 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6207 | L: [email protected] |
275ffde4 | 6208 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6209 | S: Maintained |
90d72ac6 | 6210 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6211 | |
431bca73 | 6212 | ONENAND FLASH DRIVER |
8b58be88 | 6213 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6214 | L: [email protected] |
6215 | S: Maintained | |
679655da JP |
6216 | F: drivers/mtd/onenand/ |
6217 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6218 | |
1da177e4 | 6219 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6220 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6221 | L: [email protected] |
6222 | L: [email protected] | |
6223 | S: Maintained | |
f7269cfc JD |
6224 | F: Documentation/scsi/osst.txt |
6225 | F: drivers/scsi/osst.* | |
6226 | F: drivers/scsi/osst_*.h | |
6227 | F: drivers/scsi/st.h | |
1da177e4 | 6228 | |
e2d1d6c0 | 6229 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6230 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6231 | L: [email protected] |
e2d1d6c0 | 6232 | S: Maintained |
679655da JP |
6233 | F: Documentation/i2c/busses/i2c-ocores |
6234 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6235 | |
860c44c1 | 6236 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6237 | M: Grant Likely <[email protected]> |
f910b831 | 6238 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6239 | L: [email protected] |
860c44c1 | 6240 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6241 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6242 | S: Maintained |
f8828205 | 6243 | F: drivers/of/ |
860c44c1 | 6244 | F: include/linux/of*.h |
f8828205 | 6245 | F: scripts/dtc/ |
860c44c1 | 6246 | K: of_get_property |
d945fa0d | 6247 | K: of_match_table |
860c44c1 | 6248 | |
f8828205 GL |
6249 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6250 | M: Rob Herring <[email protected]> | |
6251 | M: Pawel Moll <[email protected]> | |
6252 | M: Mark Rutland <[email protected]> | |
de80963e | 6253 | M: Ian Campbell <[email protected]> |
bdbff6ba | 6254 | M: Kumar Gala <[email protected]> |
f8828205 GL |
6255 | L: [email protected] |
6256 | S: Maintained | |
6257 | F: Documentation/devicetree/ | |
6258 | F: arch/*/boot/dts/ | |
6259 | F: include/dt-bindings/ | |
6260 | ||
19f9d392 JB |
6261 | OPENRISC ARCHITECTURE |
6262 | M: Jonas Bonn <[email protected]> | |
6263 | W: http://openrisc.net | |
eab7c1c0 | 6264 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6265 | S: Maintained |
6266 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6267 | F: arch/openrisc/ |
19f9d392 | 6268 | |
ccb1352e JG |
6269 | OPENVSWITCH |
6270 | M: Jesse Gross <[email protected]> | |
6271 | L: [email protected] | |
6272 | W: http://openvswitch.org | |
6273 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6274 | S: Maintained | |
6275 | F: net/openvswitch/ | |
6276 | ||
af39917d CL |
6277 | OPL4 DRIVER |
6278 | M: Clemens Ladisch <[email protected]> | |
6279 | L: [email protected] (moderated for non-subscribers) | |
6280 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6281 | S: Maintained | |
6282 | F: sound/drivers/opl4/ | |
6283 | ||
1da177e4 | 6284 | OPROFILE |
4cf7e718 | 6285 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6286 | L: [email protected] |
6287 | S: Maintained | |
81c4a8a6 | 6288 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6289 | F: arch/*/oprofile/ |
6290 | F: drivers/oprofile/ | |
6291 | F: include/linux/oprofile.h | |
1da177e4 | 6292 | |
e2d1d6c0 | 6293 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6294 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6295 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6296 | L: [email protected] (moderated for non-subscribers) |
6297 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6299 | S: Supported |
679655da JP |
6300 | F: Documentation/filesystems/ocfs2.txt |
6301 | F: Documentation/filesystems/dlmfs.txt | |
6302 | F: fs/ocfs2/ | |
e2d1d6c0 | 6303 | |
1da177e4 | 6304 | ORINOCO DRIVER |
724c6b35 | 6305 | L: [email protected] |
491b26b4 | 6306 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6307 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6308 | S: Orphan |
679655da | 6309 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6310 | |
42c55aa8 | 6311 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6312 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6313 | M: Benny Halevy <[email protected]> |
68274794 BH |
6314 | L: [email protected] |
6315 | W: http://open-osd.org | |
54e5881d | 6316 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6317 | S: Maintained |
42c55aa8 | 6318 | F: drivers/scsi/osd/ |
6b6f0b6c | 6319 | F: include/scsi/osd_* |
42c55aa8 | 6320 | F: fs/exofs/ |
68274794 | 6321 | |
e2d1d6c0 | 6322 | P54 WIRELESS DRIVER |
084cb0fe | 6323 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6324 | L: [email protected] |
084cb0fe | 6325 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6326 | S: Maintained |
679655da | 6327 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6328 | |
f5cd7872 | 6329 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6330 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6331 | L: [email protected] |
6332 | S: Maintained | |
ded19add | 6333 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6334 | |
beb58aa3 | 6335 | PA SEMI SMBUS DRIVER |
8b58be88 | 6336 | M: Olof Johansson <[email protected]> |
846557d3 | 6337 | L: [email protected] |
beb58aa3 | 6338 | S: Maintained |
679655da | 6339 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6340 | |
48fc267e SK |
6341 | PADATA PARALLEL EXECUTION MECHANISM |
6342 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6343 | L: [email protected] |
6344 | S: Maintained | |
6345 | F: kernel/padata.c | |
6346 | F: include/linux/padata.h | |
6347 | F: Documentation/padata.txt | |
6348 | ||
709ee531 | 6349 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6350 | M: Harald Welte <[email protected]> |
d0944853 | 6351 | L: [email protected] |
709ee531 | 6352 | S: Maintained |
679655da | 6353 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6354 | |
368dd5ac | 6355 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6356 | M: David Howells <[email protected]> |
6357 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6358 | L: [email protected] (moderated for non-subscribers) |
6359 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6360 | S: Maintained | |
679655da JP |
6361 | F: Documentation/mn10300/ |
6362 | F: arch/mn10300/ | |
4fa97181 | 6363 | |
1da177e4 | 6364 | PARALLEL PORT SUPPORT |
3dd1a329 | 6365 | L: [email protected] (subscribers-only) |
5fdc2abe | 6366 | S: Orphan |
679655da JP |
6367 | F: drivers/parport/ |
6368 | F: include/linux/parport*.h | |
6369 | F: drivers/char/ppdev.c | |
c117ab84 | 6370 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6371 | |
4cdf6bc2 | 6372 | PARAVIRT_OPS INTERFACE |
d633180c | 6373 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6374 | M: Chris Wright <[email protected]> |
6375 | M: Alok Kataria <[email protected]> | |
6376 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6377 | L: [email protected] |
4cdf6bc2 | 6378 | S: Supported |
679655da JP |
6379 | F: Documentation/ia64/paravirt_ops.txt |
6380 | F: arch/*/kernel/paravirt* | |
6381 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6382 | |
e2d1d6c0 | 6383 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6384 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6385 | L: [email protected] (subscribers-only) |
6386 | W: http://www.torque.net/linux-pp.html | |
6387 | S: Maintained | |
679655da JP |
6388 | F: Documentation/blockdev/paride.txt |
6389 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6390 | |
6391 | PARISC ARCHITECTURE | |
b8828770 | 6392 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6393 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6394 | L: [email protected] |
6395 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6396 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6399 | S: Maintained |
679655da | 6400 | F: arch/parisc/ |
2b6bac9e | 6401 | F: Documentation/parisc/ |
679655da | 6402 | F: drivers/parisc/ |
2b6bac9e HD |
6403 | F: drivers/char/agp/parisc-agp.c |
6404 | F: drivers/input/serio/gscps2.c | |
6405 | F: drivers/parport/parport_gsc.* | |
6406 | F: drivers/tty/serial/8250/8250_gsc.c | |
6407 | F: drivers/video/sti* | |
6408 | F: drivers/video/console/sti* | |
6409 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6410 | |
1662d32c | 6411 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6412 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6413 | L: [email protected] |
6414 | S: Maintained | |
679655da JP |
6415 | F: Documentation/hwmon/pc87360 |
6416 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6417 | |
6418 | PC8736x GPIO DRIVER | |
8b58be88 | 6419 | M: Jim Cromie <[email protected]> |
1662d32c | 6420 | S: Maintained |
679655da | 6421 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6422 | |
1ad107fd JD |
6423 | PC87427 HARDWARE MONITORING DRIVER |
6424 | M: Jean Delvare <[email protected]> | |
6425 | L: [email protected] | |
6426 | S: Maintained | |
6427 | F: Documentation/hwmon/pc87427 | |
6428 | F: drivers/hwmon/pc87427.c | |
6429 | ||
b26e0ed4 | 6430 | PCA9532 LED DRIVER |
8b58be88 | 6431 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6432 | S: Maintained |
d5ca6918 JP |
6433 | F: drivers/leds/leds-pca9532.c |
6434 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6435 | |
5ce914a8 | 6436 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6437 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6438 | L: [email protected] |
6439 | S: Maintained | |
b4f0b74e | 6440 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6441 | |
3971dae5 | 6442 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6443 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6444 | S: Maintained |
6445 | F: drivers/firmware/pcdp.* | |
6446 | ||
065c6359 | 6447 | PCI ERROR RECOVERY |
6305902c | 6448 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6449 | L: [email protected] |
065c6359 | 6450 | S: Supported |
679655da | 6451 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6452 | |
1da177e4 | 6453 | PCI SUBSYSTEM |
5ac3a6d2 | 6454 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6455 | L: [email protected] |
99662dd1 | 6456 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6457 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6458 | S: Supported |
679655da JP |
6459 | F: Documentation/PCI/ |
6460 | F: drivers/pci/ | |
6461 | F: include/linux/pci* | |
6b49ee49 | 6462 | F: arch/x86/pci/ |
1da177e4 | 6463 | |
0447cfd7 TR |
6464 | PCI DRIVER FOR NVIDIA TEGRA |
6465 | M: Thierry Reding <[email protected]> | |
6466 | L: [email protected] | |
6467 | S: Supported | |
6468 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6469 | F: drivers/pci/host/pci-tegra.c | |
6470 | ||
4af82255 JH |
6471 | PCI DRIVER FOR SAMSUNG EXYNOS |
6472 | M: Jingoo Han <[email protected]> | |
6473 | L: [email protected] | |
6474 | S: Maintained | |
6475 | F: drivers/pci/host/pci-exynos.c | |
6476 | ||
1da177e4 | 6477 | PCMCIA SUBSYSTEM |
4230dfc9 | 6478 | P: Linux PCMCIA Team |
f5df5881 | 6479 | L: [email protected] |
6650e0a5 | 6480 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6481 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6482 | S: Maintained |
679655da JP |
6483 | F: Documentation/pcmcia/ |
6484 | F: drivers/pcmcia/ | |
6485 | F: include/pcmcia/ | |
1da177e4 LT |
6486 | |
6487 | PCNET32 NETWORK DRIVER | |
227fb925 | 6488 | M: Don Fry <[email protected]> |
979b6c13 | 6489 | L: [email protected] |
1da177e4 | 6490 | S: Maintained |
b955f6ca | 6491 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6492 | |
48fc267e SK |
6493 | PCRYPT PARALLEL CRYPTO ENGINE |
6494 | M: Steffen Klassert <[email protected]> | |
6495 | L: [email protected] | |
6496 | S: Maintained | |
6497 | F: crypto/pcrypt.c | |
6498 | F: include/crypto/pcrypt.h | |
6499 | ||
e72df0b8 TH |
6500 | PER-CPU MEMORY ALLOCATOR |
6501 | M: Tejun Heo <[email protected]> | |
6502 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6504 | S: Maintained | |
6505 | F: include/linux/percpu*.h | |
6506 | F: mm/percpu*.c | |
6507 | F: arch/*/include/asm/percpu.h | |
6508 | ||
ad4ecbcb | 6509 | PER-TASK DELAY ACCOUNTING |
185e595f | 6510 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6511 | S: Maintained |
679655da JP |
6512 | F: include/linux/delayacct.h |
6513 | F: kernel/delayacct.c | |
ad4ecbcb | 6514 | |
57c0c15b | 6515 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6516 | M: Peter Zijlstra <[email protected]> |
6517 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6518 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6519 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 6520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6521 | S: Supported |
d53e8365 | 6522 | F: kernel/events/* |
a003236c | 6523 | F: include/linux/perf_event.h |
c117ab84 | 6524 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6525 | F: arch/*/kernel/perf_event*.c |
6526 | F: arch/*/kernel/*/perf_event*.c | |
6527 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6528 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6529 | F: arch/*/kernel/perf_callchain.c |
6530 | F: tools/perf/ | |
6c0b3244 | 6531 | |
dd49d0f5 | 6532 | PERSONALITY HANDLING |
8b58be88 | 6533 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6534 | L: [email protected] |
6535 | S: Maintained | |
679655da | 6536 | F: include/linux/personality.h |
c117ab84 | 6537 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6538 | |
838e7a03 | 6539 | PHONET PROTOCOL |
2a06b40f | 6540 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6541 | S: Supported |
6542 | F: Documentation/networking/phonet.txt | |
6543 | F: include/linux/phonet.h | |
6544 | F: include/net/phonet/ | |
c117ab84 | 6545 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6546 | F: net/phonet/ |
6547 | ||
1da177e4 | 6548 | PHRAM MTD DRIVER |
8b58be88 | 6549 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6550 | L: [email protected] |
6551 | S: Maintained | |
679655da | 6552 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6553 | |
efdbb10e BP |
6554 | PICOLCD HID DRIVER |
6555 | M: Bruno Prémont <[email protected]> | |
6556 | L: [email protected] | |
6557 | S: Maintained | |
6558 | F: drivers/hid/hid-picolcd* | |
6559 | ||
a53bfa07 JI |
6560 | PICOXCELL SUPPORT |
6561 | M: Jamie Iles <[email protected]> | |
6562 | L: [email protected] (moderated for non-subscribers) | |
6563 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6564 | S: Supported | |
14430813 | 6565 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6566 | F: drivers/*/picoxcell* |
6567 | F: drivers/*/*/picoxcell* | |
6568 | ||
2744e8af LW |
6569 | PIN CONTROL SUBSYSTEM |
6570 | M: Linus Walleij <[email protected]> | |
6571 | S: Maintained | |
07f29ba6 | 6572 | F: drivers/pinctrl/ |
8e406fe4 | 6573 | F: include/linux/pinctrl/ |
2744e8af | 6574 | |
2201bbb8 JCPV |
6575 | PIN CONTROLLER - ATMEL AT91 |
6576 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6577 | L: [email protected] (moderated for non-subscribers) | |
6578 | S: Maintained | |
6579 | F: drivers/pinctrl/pinctrl-at91.c | |
6580 | ||
b75e60d6 DA |
6581 | PIN CONTROLLER - SAMSUNG |
6582 | M: Tomasz Figa <[email protected]> | |
6583 | M: Thomas Abraham <[email protected]> | |
6584 | L: [email protected] (moderated for non-subscribers) | |
6585 | L: [email protected] (moderated for non-subscribers) | |
6586 | S: Maintained | |
6587 | F: drivers/pinctrl/pinctrl-exynos.* | |
6588 | F: drivers/pinctrl/pinctrl-s3c* | |
6589 | F: drivers/pinctrl/pinctrl-samsung.* | |
6590 | ||
deda8287 | 6591 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6592 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6593 | L: [email protected] |
6594 | L: [email protected] (moderated for non-subscribers) | |
6595 | W: http://www.st.com/spear | |
6596 | S: Maintained | |
8e406fe4 | 6597 | F: drivers/pinctrl/spear/ |
deda8287 | 6598 | |
249a6771 | 6599 | PKTCDVD DRIVER |
dbd47133 | 6600 | M: Jiri Kosina <[email protected]> |
249a6771 | 6601 | S: Maintained |
679655da JP |
6602 | F: drivers/block/pktcdvd.c |
6603 | F: include/linux/pktcdvd.h | |
c117ab84 | 6604 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6605 | |
b31d8273 G |
6606 | PKUNITY SOC DRIVERS |
6607 | M: Guan Xuetao <[email protected]> | |
6608 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6609 | S: Maintained | |
6610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6611 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6612 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6613 | F: drivers/video/fb-puv3.c |
2809e80b | 6614 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6615 | |
9d2ecfb7 | 6616 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6617 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6618 | L: [email protected] |
6619 | W: http://www.lm-sensors.org/ | |
6620 | W: http://www.roeck-us.net/linux/drivers/ | |
6621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6622 | S: Maintained | |
6623 | F: Documentation/hwmon/pmbus | |
6624 | F: drivers/hwmon/pmbus/ | |
6625 | F: include/linux/i2c/pmbus.h | |
6626 | ||
89a36810 | 6627 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6628 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6629 | L: [email protected] |
6630 | W: http://www.pmc-sierra.com/ | |
6631 | S: Supported | |
6632 | F: drivers/scsi/pmcraid.* | |
6633 | ||
dbf9bfe6 | 6634 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6635 | M: [email protected] |
dbf9bfe6 | 6636 | M: [email protected] |
6637 | L: [email protected] | |
6638 | S: Supported | |
6639 | F: drivers/scsi/pm8001/ | |
6640 | ||
1da177e4 | 6641 | POSIX CLOCKS and TIMERS |
8b58be88 | 6642 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 6643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6644 | S: Supported |
679655da JP |
6645 | F: fs/timerfd.c |
6646 | F: include/linux/timer* | |
6647 | F: kernel/*timer* | |
1da177e4 | 6648 | |
3be86148 | 6649 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
9d5e2a02 | 6650 | M: Anton Vorontsov <[email protected]> |
8b58be88 | 6651 | M: David Woodhouse <[email protected]> |
54e5881d | 6652 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6653 | S: Maintained |
679655da | 6654 | F: include/linux/power_supply.h |
8cd725a1 | 6655 | F: drivers/power/ |
3be86148 | 6656 | |
1da177e4 | 6657 | PNP SUPPORT |
46a1f21a | 6658 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6659 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6660 | S: Maintained |
679655da | 6661 | F: drivers/pnp/ |
1da177e4 | 6662 | |
999445d4 | 6663 | PNXxxxx I2C DRIVER |
8b58be88 | 6664 | M: Vitaly Wool <[email protected]> |
846557d3 | 6665 | L: [email protected] |
999445d4 | 6666 | S: Maintained |
679655da | 6667 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6668 | |
1da177e4 | 6669 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6670 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6671 | L: [email protected] |
6672 | S: Maintained | |
224cf5ad | 6673 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6674 | |
6675 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6676 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6677 | S: Maintained |
679655da | 6678 | F: net/atm/pppoatm.c |
c117ab84 | 6679 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6680 | |
6681 | PPP OVER ETHERNET | |
8b58be88 | 6682 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6683 | S: Maintained |
224cf5ad JK |
6684 | F: drivers/net/ppp/pppoe.c |
6685 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6686 | |
a6d2370b | 6687 | PPP OVER L2TP |
8b58be88 | 6688 | M: James Chapman <[email protected]> |
a6d2370b | 6689 | S: Maintained |
90ca28d1 | 6690 | F: net/l2tp/l2tp_ppp.c |
679655da | 6691 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6692 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6693 | |
eae9d2ba | 6694 | PPS SUPPORT |
8b58be88 | 6695 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6696 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6697 | L: [email protected] (subscribers-only) | |
6698 | S: Maintained | |
cabaaf41 JP |
6699 | F: Documentation/pps/ |
6700 | F: drivers/pps/ | |
6701 | F: include/linux/pps*.h | |
eae9d2ba | 6702 | |
71a6d0af HW |
6703 | PPTP DRIVER |
6704 | M: Dmitry Kozlov <[email protected]> | |
6705 | L: [email protected] | |
6706 | S: Maintained | |
224cf5ad | 6707 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6708 | W: http://sourceforge.net/projects/accel-pptp |
6709 | ||
1da177e4 | 6710 | PREEMPTIBLE KERNEL |
8b58be88 | 6711 | M: Robert Love <[email protected]> |
1da177e4 LT |
6712 | L: [email protected] |
6713 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6714 | S: Supported | |
679655da JP |
6715 | F: Documentation/preempt-locking.txt |
6716 | F: include/linux/preempt.h | |
1da177e4 LT |
6717 | |
6718 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6719 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6720 | L: [email protected] |
9ef80804 | 6721 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6722 | S: Obsolete |
679655da | 6723 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6724 | |
b3277dfa | 6725 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 6726 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6727 | L: [email protected] |
6728 | S: Maintained | |
679655da | 6729 | F: drivers/ata/sata_promise.* |
b3277dfa | 6730 | |
02c18891 | 6731 | PS3 NETWORK SUPPORT |
b809b9ca | 6732 | M: Geoff Levand <[email protected]> |
02c18891 | 6733 | L: [email protected] |
a4724ed6 | 6734 | L: [email protected] |
b809b9ca | 6735 | S: Maintained |
8df158ac | 6736 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6737 | |
f58a9d17 | 6738 | PS3 PLATFORM SUPPORT |
b809b9ca | 6739 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6740 | L: [email protected] |
6741 | L: [email protected] | |
b809b9ca | 6742 | S: Maintained |
679655da JP |
6743 | F: arch/powerpc/boot/ps3* |
6744 | F: arch/powerpc/include/asm/lv1call.h | |
6745 | F: arch/powerpc/include/asm/ps3*.h | |
6746 | F: arch/powerpc/platforms/ps3/ | |
6747 | F: drivers/*/ps3* | |
6748 | F: drivers/ps3/ | |
fec629b8 | 6749 | F: drivers/rtc/rtc-ps3.c |
679655da | 6750 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6751 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6752 | |
cffb4add | 6753 | PS3VRAM DRIVER |
8b58be88 | 6754 | M: Jim Paris <[email protected]> |
a4724ed6 | 6755 | L: [email protected] |
cffb4add | 6756 | S: Maintained |
8a3977cb | 6757 | F: drivers/block/ps3vram.c |
cffb4add | 6758 | |
8defe599 | 6759 | PSTORE FILESYSTEM |
9d5e2a02 | 6760 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6761 | M: Colin Cross <[email protected]> |
6762 | M: Kees Cook <[email protected]> | |
6763 | M: Tony Luck <[email protected]> | |
6764 | S: Maintained | |
6765 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6766 | F: fs/pstore/ | |
6767 | F: include/linux/pstore* | |
04851772 | 6768 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6769 | F: drivers/acpi/apei/erst.c |
6770 | ||
7fbc415d RC |
6771 | PTP HARDWARE CLOCK SUPPORT |
6772 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6773 | L: [email protected] |
7fbc415d RC |
6774 | S: Maintained |
6775 | W: http://linuxptp.sourceforge.net/ | |
6776 | F: Documentation/ABI/testing/sysfs-ptp | |
6777 | F: Documentation/ptp/* | |
0ecb3cdd | 6778 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6779 | F: drivers/net/phy/dp83640* |
6780 | F: drivers/ptp/* | |
6781 | F: include/linux/ptp_cl* | |
6782 | ||
cf94a4d1 | 6783 | PTRACE SUPPORT |
8b58be88 JP |
6784 | M: Roland McGrath <[email protected]> |
6785 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6786 | S: Maintained |
6787 | F: include/asm-generic/syscall.h | |
6788 | F: include/linux/ptrace.h | |
6789 | F: include/linux/regset.h | |
6790 | F: include/linux/tracehook.h | |
c117ab84 | 6791 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6792 | F: kernel/ptrace.c |
6793 | ||
8320204a | 6794 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6795 | M: Mike Isely <[email protected]> |
16e9495d | 6796 | L: [email protected] (subscribers-only) |
661263b5 | 6797 | L: [email protected] |
8320204a | 6798 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6799 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6800 | S: Maintained |
679655da | 6801 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6802 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6803 | |
39532e6c HG |
6804 | PWC WEBCAM DRIVER |
6805 | M: Hans de Goede <[email protected]> | |
6806 | L: [email protected] | |
6807 | T: git git://linuxtv.org/media_tree.git | |
6808 | S: Maintained | |
6809 | F: drivers/media/usb/pwc/* | |
6810 | ||
200efedd | 6811 | PWM SUBSYSTEM |
aa3495f7 TR |
6812 | M: Thierry Reding <[email protected]> |
6813 | L: [email protected] | |
0c2498f1 | 6814 | S: Maintained |
006e854f | 6815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
6816 | F: Documentation/pwm.txt |
6817 | F: Documentation/devicetree/bindings/pwm/ | |
6818 | F: include/linux/pwm.h | |
0c2498f1 | 6819 | F: drivers/pwm/ |
a140b98d TR |
6820 | F: drivers/video/backlight/pwm_bl.c |
6821 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6822 | |
30ec261e | 6823 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6824 | M: Eric Miao <[email protected]> |
6825 | M: Russell King <[email protected]> | |
a323f664 | 6826 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6827 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6828 | T: git git://github.com/hzhuang1/linux.git |
6829 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6830 | S: Maintained |
679655da JP |
6831 | F: arch/arm/mach-pxa/ |
6832 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6833 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6834 | F: drivers/usb/gadget/pxa2* |
6835 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 6836 | F: sound/arm/pxa* |
14430813 | 6837 | F: sound/soc/pxa/ |
1da177e4 | 6838 | |
3f640c61 | 6839 | MMP SUPPORT |
8b58be88 | 6840 | M: Eric Miao <[email protected]> |
a323f664 | 6841 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6842 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6843 | T: git git://github.com/hzhuang1/linux.git |
6844 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6845 | S: Maintained |
3f640c61 | 6846 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6847 | |
272f133a PO |
6848 | PXA MMCI DRIVER |
6849 | S: Orphan | |
6850 | ||
57f63bc8 | 6851 | PXA RTC DRIVER |
8b58be88 | 6852 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6853 | L: [email protected] |
6854 | S: Maintained | |
6855 | ||
52a09a04 | 6856 | QIB DRIVER |
8473c603 | 6857 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6858 | L: [email protected] |
6859 | S: Supported | |
6860 | F: drivers/infiniband/hw/qib/ | |
6861 | ||
5e9772b9 JS |
6862 | QLOGIC QLA1280 SCSI DRIVER |
6863 | M: Michael Reed <[email protected]> | |
6864 | L: [email protected] | |
6865 | S: Maintained | |
6866 | F: drivers/scsi/qla1280.[ch] | |
6867 | ||
1da177e4 | 6868 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6869 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6870 | M: [email protected] |
1da177e4 LT |
6871 | L: [email protected] |
6872 | S: Supported | |
679655da JP |
6873 | F: Documentation/scsi/LICENSE.qla2xxx |
6874 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6875 | |
883c98fe | 6876 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
6877 | M: Vikas Chaudhary <[email protected]> |
6878 | M: [email protected] | |
6879 | L: [email protected] | |
6880 | S: Supported | |
bacfb81b | 6881 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
6882 | F: drivers/scsi/qla4xxx/ |
6883 | ||
5a4faa87 | 6884 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6885 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6886 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6887 | M: [email protected] |
6888 | L: [email protected] | |
6889 | S: Supported | |
679655da | 6890 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6891 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6892 | |
0ec00f03 | 6893 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 6894 | M: Himanshu Madhani <[email protected]> |
195ca382 SC |
6895 | M: Rajesh Borundia <[email protected]> |
6896 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 6897 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6898 | M: Sony Chacko <[email protected]> |
7ad031ee | 6899 | M: Sucheta Chakraborty <[email protected]> |
0ec00f03 AKS |
6900 | M: [email protected] |
6901 | L: [email protected] | |
6902 | S: Supported | |
aa43c215 | 6903 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6904 | |
c4e84bde | 6905 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6906 | M: Shahed Shaikh <[email protected]> |
b997d79a | 6907 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6908 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6909 | M: [email protected] |
c4e84bde RM |
6910 | L: [email protected] |
6911 | S: Supported | |
aa43c215 | 6912 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6913 | |
1da177e4 | 6914 | QNX4 FILESYSTEM |
8b58be88 | 6915 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6916 | W: http://www.alarsen.net/linux/qnx4fs/ |
6917 | S: Maintained | |
80811493 | 6918 | F: fs/qnx4/ |
c117ab84 CEB |
6919 | F: include/uapi/linux/qnx4_fs.h |
6920 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6921 | |
91952bc0 AP |
6922 | QT1010 MEDIA DRIVER |
6923 | M: Antti Palosaari <[email protected]> | |
6924 | L: [email protected] | |
6925 | W: http://linuxtv.org/ | |
6926 | W: http://palosaari.fi/linux/ | |
6927 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6928 | T: git git://linuxtv.org/anttip/media_tree.git | |
6929 | S: Maintained | |
6930 | F: drivers/media/tuners/qt1010* | |
6931 | ||
2ea0ffcb KV |
6932 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
6933 | M: Kalle Valo <[email protected]> | |
6934 | L: [email protected] | |
6935 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
6936 | T: git git://github.com/kvalo/ath.git | |
6937 | S: Supported | |
6938 | F: drivers/net/wireless/ath/ath10k/ | |
6939 | ||
4f4567cf RK |
6940 | QUALCOMM HEXAGON ARCHITECTURE |
6941 | M: Richard Kuo <[email protected]> | |
6942 | L: [email protected] | |
6943 | S: Supported | |
6944 | F: arch/hexagon/ | |
6945 | ||
8e84c258 EK |
6946 | QUALCOMM WCN36XX WIRELESS DRIVER |
6947 | M: Eugene Krasnikov <[email protected]> | |
6948 | L: [email protected] | |
6949 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
6950 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
6951 | S: Supported | |
6952 | F: drivers/net/wireless/ath/wcn36xx/ | |
6953 | ||
35e3540b HV |
6954 | QUICKCAM PARALLEL PORT WEBCAMS |
6955 | M: Hans Verkuil <[email protected]> | |
6956 | L: [email protected] | |
6957 | T: git git://linuxtv.org/media_tree.git | |
6958 | W: http://linuxtv.org | |
6959 | S: Odd Fixes | |
6960 | F: drivers/media/parport/*-qcam* | |
6961 | ||
602adf40 | 6962 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6963 | M: Yehuda Sadeh <[email protected]> |
6964 | M: Sage Weil <[email protected]> | |
6965 | M: Alex Elder <[email protected]> | |
602adf40 | 6966 | M: [email protected] |
09d90327 SW |
6967 | W: http://ceph.com/ |
6968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6969 | S: Supported |
6970 | F: drivers/block/rbd.c | |
6971 | F: drivers/block/rbd_types.h | |
6972 | ||
1da177e4 | 6973 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6974 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6975 | L: [email protected] |
1da177e4 | 6976 | S: Maintained |
679655da | 6977 | F: drivers/video/aty/radeon* |
c117ab84 | 6978 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6979 | |
c6c9b34c HG |
6980 | RADIOSHARK RADIO DRIVER |
6981 | M: Hans de Goede <[email protected]> | |
6982 | L: [email protected] | |
6983 | T: git git://linuxtv.org/media_tree.git | |
6984 | S: Maintained | |
6985 | F: drivers/media/radio/radio-shark.c | |
6986 | ||
6987 | RADIOSHARK2 RADIO DRIVER | |
6988 | M: Hans de Goede <[email protected]> | |
6989 | L: [email protected] | |
6990 | T: git git://linuxtv.org/media_tree.git | |
6991 | S: Maintained | |
6992 | F: drivers/media/radio/radio-shark2.c | |
6993 | F: drivers/media/radio/radio-tea5777.c | |
6994 | ||
1da177e4 | 6995 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6996 | M: Paul Mackerras <[email protected]> |
c69f677c | 6997 | L: [email protected] |
1da177e4 | 6998 | S: Maintained |
679655da | 6999 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 7000 | |
e7839f25 | 7001 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7002 | P: rt2x00 project |
e1a6542f | 7003 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 7004 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 7005 | M: Helmut Schaa <[email protected]> |
95ea3627 | 7006 | L: [email protected] |
83fc9c89 | 7007 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
7008 | W: http://rt2x00.serialmonkey.com/ |
7009 | S: Maintained | |
54e5881d | 7010 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7011 | F: drivers/net/wireless/rt2x00/ |
7012 | ||
9db5579b | 7013 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7014 | M: Nick Piggin <[email protected]> |
9db5579b | 7015 | S: Maintained |
679655da JP |
7016 | F: Documentation/blockdev/ramdisk.txt |
7017 | F: drivers/block/brd.c | |
9db5579b | 7018 | |
9e95ce27 | 7019 | RANDOM NUMBER DRIVER |
330e0a01 | 7020 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 7021 | S: Maintained |
679655da | 7022 | F: drivers/char/random.c |
9e95ce27 | 7023 | |
394b701c | 7024 | RAPIDIO SUBSYSTEM |
8b58be88 | 7025 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 7026 | M: Alexandre Bounine <[email protected]> |
394b701c | 7027 | S: Maintained |
679655da | 7028 | F: drivers/rapidio/ |
394b701c | 7029 | |
e2d1d6c0 | 7030 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7031 | L: [email protected] |
f52a5490 | 7032 | S: Orphan |
679655da | 7033 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7034 | |
7035 | RCUTORTURE MODULE | |
8b58be88 JP |
7036 | M: Josh Triplett <[email protected]> |
7037 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 7038 | S: Supported |
08deed1e | 7039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7040 | F: Documentation/RCU/torture.txt |
4102adab | 7041 | F: kernel/rcu/torture.c |
e2d1d6c0 | 7042 | |
c1f766b5 | 7043 | RDC R-321X SoC |
8b58be88 | 7044 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
7045 | S: Maintained |
7046 | ||
db17f395 | 7047 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7048 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
7049 | L: [email protected] |
7050 | S: Maintained | |
58565a35 | 7051 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7052 | |
a09ed661 | 7053 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 7054 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 7055 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 7056 | S: Supported |
679655da | 7057 | F: net/rds/ |
a09ed661 | 7058 | |
595182bc | 7059 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
7060 | M: Dipankar Sarma <[email protected]> |
7061 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 7062 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7063 | S: Supported |
08deed1e | 7064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7065 | F: Documentation/RCU/ |
9fab9787 | 7066 | X: Documentation/RCU/torture.txt |
f9094d8e | 7067 | F: include/linux/rcu* |
4102adab PM |
7068 | X: include/linux/srcu.h |
7069 | F: kernel/rcu/ | |
7070 | X: kernel/rcu/torture.c | |
595182bc | 7071 | |
0c86edc0 | 7072 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7073 | M: Alessandro Zummo <[email protected]> |
76465493 | 7074 | L: [email protected] |
8a6e2535 | 7075 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7076 | S: Maintained |
679655da JP |
7077 | F: Documentation/rtc.txt |
7078 | F: drivers/rtc/ | |
7079 | F: include/linux/rtc.h | |
c117ab84 | 7080 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7081 | |
1da177e4 | 7082 | REISERFS FILE SYSTEM |
76c4e5ea | 7083 | L: [email protected] |
1da177e4 | 7084 | S: Supported |
679655da | 7085 | F: fs/reiserfs/ |
1da177e4 | 7086 | |
b83a313b | 7087 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7088 | M: Mark Brown <[email protected]> |
b83a313b MB |
7089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7090 | S: Supported | |
7091 | F: drivers/base/regmap/ | |
7092 | F: include/linux/regmap.h | |
7093 | ||
400e64df OBC |
7094 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7095 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 7096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7097 | S: Maintained |
7098 | F: drivers/remoteproc/ | |
7099 | F: Documentation/remoteproc.txt | |
6fc26488 | 7100 | F: include/linux/remoteproc.h |
400e64df | 7101 | |
d8115db5 OBC |
7102 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7103 | M: Ohad Ben-Cohen <[email protected]> | |
7104 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7105 | S: Maintained | |
7106 | F: drivers/rpmsg/ | |
7107 | F: Documentation/rpmsg.txt | |
7108 | F: include/linux/rpmsg.h | |
7109 | ||
e0897645 | 7110 | RFKILL |
8b58be88 | 7111 | M: Johannes Berg <[email protected]> |
19d337df | 7112 | L: [email protected] |
ce466579 JB |
7113 | W: http://wireless.kernel.org/ |
7114 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7115 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7116 | S: Maintained |
505c9247 | 7117 | F: Documentation/rfkill.txt |
80811493 | 7118 | F: net/rfkill/ |
e0897645 | 7119 | |
67e054e9 ML |
7120 | RICOH SMARTMEDIA/XD DRIVER |
7121 | M: Maxim Levitsky <[email protected]> | |
7122 | S: Maintained | |
21c26f50 JP |
7123 | F: drivers/mtd/nand/r852.c |
7124 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7125 | |
92634125 ML |
7126 | RICOH R5C592 MEMORYSTICK DRIVER |
7127 | M: Maxim Levitsky <[email protected]> | |
7128 | S: Maintained | |
7129 | F: drivers/memstick/host/r592.* | |
7130 | ||
27f1d2f9 SA |
7131 | ROCCAT DRIVERS |
7132 | M: Stefan Achatz <[email protected]> | |
7133 | W: http://sourceforge.net/projects/roccat/ | |
7134 | S: Maintained | |
7135 | F: drivers/hid/hid-roccat* | |
7136 | F: include/linux/hid-roccat* | |
7137 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7138 | ||
1da177e4 LT |
7139 | ROCKETPORT DRIVER |
7140 | P: Comtrol Corp. | |
1da177e4 LT |
7141 | W: http://www.comtrol.com |
7142 | S: Maintained | |
679655da | 7143 | F: Documentation/serial/rocket.txt |
c897401b | 7144 | F: drivers/tty/rocket* |
1da177e4 LT |
7145 | |
7146 | ROSE NETWORK LAYER | |
8b58be88 | 7147 | M: Ralf Baechle <[email protected]> |
1da177e4 | 7148 | L: [email protected] |
d34cb28a | 7149 | W: http://www.linux-ax25.org/ |
1da177e4 | 7150 | S: Maintained |
679655da | 7151 | F: include/net/rose.h |
c117ab84 | 7152 | F: include/uapi/linux/rose.h |
679655da | 7153 | F: net/rose/ |
1da177e4 | 7154 | |
91952bc0 AP |
7155 | RTL2830 MEDIA DRIVER |
7156 | M: Antti Palosaari <[email protected]> | |
7157 | L: [email protected] | |
7158 | W: http://linuxtv.org/ | |
7159 | W: http://palosaari.fi/linux/ | |
7160 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7161 | T: git git://linuxtv.org/anttip/media_tree.git | |
7162 | S: Maintained | |
7163 | F: drivers/media/dvb-frontends/rtl2830* | |
7164 | ||
27a0aacf AP |
7165 | RTL2832 MEDIA DRIVER |
7166 | M: Antti Palosaari <[email protected]> | |
7167 | L: [email protected] | |
7168 | W: http://linuxtv.org/ | |
7169 | W: http://palosaari.fi/linux/ | |
7170 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7171 | T: git git://linuxtv.org/anttip/media_tree.git | |
7172 | S: Maintained | |
7173 | F: drivers/media/dvb-frontends/rtl2832* | |
7174 | ||
59840488 | 7175 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7176 | M: "John W. Linville" <[email protected]> |
605bebe2 | 7177 | L: [email protected] |
491b26b4 | 7178 | W: http://wireless.kernel.org/ |
54e5881d | 7179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7180 | S: Maintained |
3cfeb0c3 | 7181 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7182 | |
59840488 | 7183 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7184 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
7185 | M: Hin-Tak Leung <[email protected]> |
7186 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 7187 | L: [email protected] |
491b26b4 | 7188 | W: http://wireless.kernel.org/ |
54e5881d | 7189 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7190 | S: Maintained |
3cfeb0c3 | 7191 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7192 | |
3cf0c8ad LF |
7193 | RTL8192CE WIRELESS DRIVER |
7194 | M: Larry Finger <[email protected]> | |
7195 | M: Chaoming Li <[email protected]> | |
7196 | L: [email protected] | |
491b26b4 | 7197 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7199 | S: Maintained | |
7200 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7201 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7202 | |
9eb8ef74 | 7203 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7204 | M: Antonino Daplas <[email protected]> |
c69f677c | 7205 | L: [email protected] |
ce00f85c | 7206 | S: Maintained |
679655da | 7207 | F: drivers/video/savage/ |
9eb8ef74 | 7208 | |
1da177e4 | 7209 | S390 |
8b58be88 JP |
7210 | M: Martin Schwidefsky <[email protected]> |
7211 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 7212 | M: [email protected] |
d58140cc | 7213 | L: [email protected] |
5238da45 HC |
7214 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7215 | S: Supported | |
679655da | 7216 | F: arch/s390/ |
a968cd3e | 7217 | F: drivers/s390/ |
20d16fef | 7218 | F: block/partitions/ibm.c |
3bfe6858 JN |
7219 | F: Documentation/s390/ |
7220 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7221 | |
7222 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7223 | M: Ursula Braun <[email protected]> |
7224 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7225 | M: [email protected] |
d58140cc | 7226 | L: [email protected] |
5238da45 HC |
7227 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7228 | S: Supported | |
679655da | 7229 | F: drivers/s390/net/ |
5238da45 | 7230 | |
feed9b62 | 7231 | S390 ZCRYPT DRIVER |
5c8d0983 | 7232 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7233 | M: [email protected] |
7234 | L: [email protected] | |
a968cd3e | 7235 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7236 | S: Supported |
d5ca6918 | 7237 | F: drivers/s390/crypto/ |
feed9b62 | 7238 | |
5238da45 | 7239 | S390 ZFCP DRIVER |
d38e19d0 | 7240 | M: Steffen Maier <[email protected]> |
5238da45 | 7241 | M: [email protected] |
d58140cc | 7242 | L: [email protected] |
5238da45 | 7243 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7244 | S: Supported |
679655da | 7245 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7246 | |
dd96df2c | 7247 | S390 IUCV NETWORK LAYER |
8b58be88 | 7248 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7249 | M: [email protected] |
7250 | L: [email protected] | |
7251 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7252 | S: Supported | |
679655da JP |
7253 | F: drivers/s390/net/*iucv* |
7254 | F: include/net/iucv/ | |
7255 | F: net/iucv/ | |
dd96df2c | 7256 | |
4dde7f75 | 7257 | S3C24XX SD/MMC Driver |
8b58be88 | 7258 | M: Ben Dooks <[email protected]> |
efc03ecb | 7259 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7260 | S: Supported |
679655da | 7261 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7262 | |
1f15a229 HV |
7263 | SAA6588 RDS RECEIVER DRIVER |
7264 | M: Hans Verkuil <[email protected]> | |
7265 | L: [email protected] | |
7266 | T: git git://linuxtv.org/media_tree.git | |
7267 | W: http://linuxtv.org | |
7268 | S: Odd Fixes | |
7269 | F: drivers/media/i2c/saa6588* | |
7270 | ||
98ed12e6 | 7271 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7272 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7273 | L: [email protected] |
7274 | W: http://linuxtv.org | |
7275 | T: git git://linuxtv.org/media_tree.git | |
7276 | S: Odd fixes | |
e42bf501 | 7277 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7278 | F: drivers/media/pci/saa7134/ |
7279 | ||
1da177e4 | 7280 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7281 | M: Hans Verkuil <[email protected]> |
661263b5 | 7282 | L: [email protected] |
275ffde4 | 7283 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7284 | S: Maintained |
90d72ac6 MCC |
7285 | F: drivers/media/common/saa7146/ |
7286 | F: drivers/media/pci/saa7146/ | |
7287 | F: include/media/saa7146* | |
1da177e4 | 7288 | |
92304a40 | 7289 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7290 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7291 | L: [email protected] |
7292 | S: Maintained | |
7293 | F: drivers/platform/x86/samsung-laptop.c | |
7294 | ||
4a109cc0 | 7295 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7296 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7297 | L: [email protected] (moderated for non-subscribers) |
7298 | S: Supported | |
14430813 | 7299 | F: sound/soc/samsung/ |
4a109cc0 | 7300 | |
0d89a28b JH |
7301 | SAMSUNG FRAMEBUFFER DRIVER |
7302 | M: Jingoo Han <[email protected]> | |
7303 | L: [email protected] | |
7304 | S: Maintained | |
7305 | F: drivers/video/s3c-fb.c | |
7306 | ||
f69d3a17 SK |
7307 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7308 | M: Sangbeom Kim <[email protected]> | |
7309 | L: [email protected] | |
7310 | S: Supported | |
7311 | F: drivers/mfd/sec*.c | |
7312 | F: drivers/regulator/s2m*.c | |
7313 | F: drivers/regulator/s5m*.c | |
7314 | F: drivers/rtc/rtc-sec.c | |
7315 | F: include/linux/mfd/samsung/ | |
7316 | ||
038f5c4b SN |
7317 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7318 | M: Kyungmin Park <[email protected]> | |
7319 | M: Sylwester Nawrocki <[email protected]> | |
7320 | L: [email protected] | |
7321 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7322 | S: Supported | |
7323 | F: drivers/media/platform/exynos4-is/ | |
7324 | F: include/media/s5p_fimc.h | |
7325 | ||
6fd86ab2 SN |
7326 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7327 | M: Sylwester Nawrocki <[email protected]> | |
7328 | L: [email protected] | |
7329 | L: [email protected] (moderated for non-subscribers) | |
7330 | S: Maintained | |
7331 | F: drivers/media/platform/s3c-camif/ | |
7332 | F: include/media/s3c_camif.h | |
7333 | ||
b84ef24e AH |
7334 | SAMSUNG S5C73M3 CAMERA DRIVER |
7335 | M: Kyungmin Park <[email protected]> | |
7336 | M: Andrzej Hajda <[email protected]> | |
7337 | L: [email protected] | |
7338 | S: Supported | |
7339 | F: drivers/media/i2c/s5c73m3/* | |
7340 | ||
ca749e2a | 7341 | SERIAL DRIVERS |
5e30bbb7 | 7342 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7343 | L: [email protected] |
5e30bbb7 | 7344 | S: Maintained |
14430813 | 7345 | F: drivers/tty/serial/ |
ca749e2a | 7346 | |
aecb7b64 | 7347 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7348 | M: Viresh Kumar <[email protected]> |
337ae47c | 7349 | M: Andy Shevchenko <[email protected]> |
aecb7b64 VK |
7350 | S: Maintained |
7351 | F: include/linux/dw_dmac.h | |
61a76496 | 7352 | F: drivers/dma/dw/ |
aecb7b64 | 7353 | |
f9e37137 SJ |
7354 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7355 | M: Seungwon Jeon <[email protected]> | |
7356 | M: Jaehoon Chung <[email protected]> | |
7357 | L: [email protected] | |
7358 | S: Maintained | |
7359 | F: include/linux/mmc/dw_mmc.h | |
7360 | F: drivers/mmc/host/dw_mmc* | |
7361 | ||
9222d247 | 7362 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7363 | M: John Stultz <[email protected]> |
88606e80 | 7364 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 7365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7366 | S: Supported |
7367 | F: include/linux/clocksource.h | |
7368 | F: include/linux/time.h | |
7369 | F: include/linux/timex.h | |
c117ab84 CEB |
7370 | F: include/uapi/linux/time.h |
7371 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7372 | F: kernel/time/clocksource.c |
7373 | F: kernel/time/time*.c | |
7374 | F: kernel/time/ntp.c | |
7375 | ||
5b3f03f0 | 7376 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7377 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7378 | M: Hans Verkuil <[email protected]> |
7379 | S: Odd Fixes | |
14430813 | 7380 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7381 | |
1da177e4 | 7382 | SC1200 WDT DRIVER |
b300645a | 7383 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7384 | S: Maintained |
679655da | 7385 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7386 | |
7387 | SCHEDULER | |
dd9b238c | 7388 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7389 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 7390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7391 | S: Maintained |
95c0d71d | 7392 | F: kernel/sched/ |
679655da | 7393 | F: include/linux/sched.h |
c117ab84 | 7394 | F: include/uapi/linux/sched.h |
c2eb505b | 7395 | F: include/linux/wait.h |
1da177e4 | 7396 | |
6bcf6737 | 7397 | SCORE ARCHITECTURE |
ed38665e | 7398 | M: Chen Liqin <[email protected]> |
a2681a75 | 7399 | M: Lennox Wu <[email protected]> |
ed38665e | 7400 | W: http://www.sunplus.com |
6bcf6737 | 7401 | S: Supported |
a2681a75 | 7402 | F: arch/score/ |
6bcf6737 | 7403 | |
1da177e4 | 7404 | SCSI CDROM DRIVER |
8b58be88 | 7405 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7406 | L: [email protected] |
7407 | W: http://www.kernel.dk | |
7408 | S: Maintained | |
679655da | 7409 | F: drivers/scsi/sr* |
1da177e4 | 7410 | |
fb50a83d RD |
7411 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7412 | M: David Dillow <[email protected]> | |
7413 | L: [email protected] | |
7414 | S: Supported | |
7415 | W: http://www.openfabrics.org | |
7416 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7418 | F: drivers/infiniband/ulp/srp/ | |
7419 | F: include/scsi/srp.h | |
7420 | ||
1da177e4 | 7421 | SCSI SG DRIVER |
8b58be88 | 7422 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
7423 | L: [email protected] |
7424 | W: http://www.torque.net/sg | |
7425 | S: Maintained | |
679655da JP |
7426 | F: drivers/scsi/sg.c |
7427 | F: include/scsi/sg.h | |
1da177e4 LT |
7428 | |
7429 | SCSI SUBSYSTEM | |
c95286d8 | 7430 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7431 | L: [email protected] |
54e5881d JP |
7432 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7435 | S: Maintained |
679655da JP |
7436 | F: drivers/scsi/ |
7437 | F: include/scsi/ | |
1da177e4 LT |
7438 | |
7439 | SCSI TAPE DRIVER | |
8b58be88 | 7440 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7441 | L: [email protected] |
7442 | S: Maintained | |
679655da | 7443 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7444 | F: drivers/scsi/st.* |
7445 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7446 | |
7447 | SCTP PROTOCOL | |
8b6efb75 | 7448 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7449 | M: Neil Horman <[email protected]> |
1a418796 | 7450 | L: [email protected] |
5f85813c | 7451 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7452 | S: Maintained |
679655da JP |
7453 | F: Documentation/networking/sctp.txt |
7454 | F: include/linux/sctp.h | |
4d58c025 | 7455 | F: include/uapi/linux/sctp.h |
679655da JP |
7456 | F: include/net/sctp/ |
7457 | F: net/sctp/ | |
1da177e4 LT |
7458 | |
7459 | SCx200 CPU SUPPORT | |
8b58be88 | 7460 | M: Jim Cromie <[email protected]> |
1662d32c | 7461 | S: Odd Fixes |
679655da | 7462 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7463 | F: arch/x86/platform/scx200/ |
679655da JP |
7464 | F: drivers/watchdog/scx200_wdt.c |
7465 | F: drivers/i2c/busses/scx200* | |
7466 | F: drivers/mtd/maps/scx200_docflash.c | |
7467 | F: include/linux/scx200.h | |
1662d32c JC |
7468 | |
7469 | SCx200 GPIO DRIVER | |
8b58be88 | 7470 | M: Jim Cromie <[email protected]> |
1662d32c | 7471 | S: Maintained |
679655da JP |
7472 | F: drivers/char/scx200_gpio.c |
7473 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7474 | |
7475 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7476 | M: Jim Cromie <[email protected]> |
1662d32c | 7477 | S: Maintained |
679655da | 7478 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7479 | |
6a36913a | 7480 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7481 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7482 | L: [email protected] (subscribers-only) |
7483 | S: Maintained | |
679655da | 7484 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7485 | |
e7839f25 | 7486 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7487 | M: Chris Ball <[email protected]> |
7a241d6e | 7488 | L: [email protected] |
245feaa6 CB |
7489 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7490 | S: Maintained | |
7a241d6e | 7491 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7492 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7493 | |
3085e9c1 | 7494 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7495 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7496 | L: [email protected] |
7a241d6e | 7497 | L: [email protected] |
e2d1d6c0 | 7498 | S: Maintained |
d4a45787 | 7499 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7500 | |
0d1bb41a | 7501 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7502 | M: Ben Dooks <[email protected]> |
7a241d6e | 7503 | L: [email protected] |
0d1bb41a BD |
7504 | S: Maintained |
7505 | F: drivers/mmc/host/sdhci-s3c.c | |
7506 | ||
c63b3cba | 7507 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7508 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7509 | L: [email protected] |
c63b3cba VK |
7510 | L: [email protected] |
7511 | S: Maintained | |
7512 | F: drivers/mmc/host/sdhci-spear.c | |
7513 | ||
8711cca2 | 7514 | SECURITY SUBSYSTEM |
9b45c0d2 | 7515 | M: James Morris <[email protected]> |
8711cca2 | 7516 | L: [email protected] (suggested Cc:) |
89879a7e | 7517 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7518 | W: http://kernsec.org/ |
8711cca2 | 7519 | S: Supported |
7d2c86b5 | 7520 | F: security/ |
8711cca2 | 7521 | |
1da177e4 | 7522 | SECURITY CONTACT |
8b58be88 | 7523 | M: Security Officers <[email protected]> |
1da177e4 LT |
7524 | S: Supported |
7525 | ||
7526 | SELINUX SECURITY MODULE | |
8b58be88 | 7527 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7528 | M: James Morris <[email protected]> |
8b58be88 | 7529 | M: Eric Paris <[email protected]> |
5a5f2acf | 7530 | M: Paul Moore <[email protected]> |
7d2c86b5 | 7531 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7532 | W: http://selinuxproject.org |
5a5f2acf | 7533 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7534 | S: Supported |
679655da JP |
7535 | F: include/linux/selinux* |
7536 | F: security/selinux/ | |
6bde95ce | 7537 | F: scripts/selinux/ |
1da177e4 | 7538 | |
c1c124e9 JJ |
7539 | APPARMOR SECURITY MODULE |
7540 | M: John Johansen <[email protected]> | |
7541 | L: [email protected] (subscribers-only, general discussion) | |
7542 | W: apparmor.wiki.kernel.org | |
7543 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7544 | S: Supported | |
7545 | F: security/apparmor/ | |
7546 | ||
cef2cf07 | 7547 | SENSABLE PHANTOM |
8b58be88 | 7548 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7549 | S: Maintained |
679655da | 7550 | F: drivers/misc/phantom.c |
c117ab84 | 7551 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7552 | |
4480f15b | 7553 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7554 | M: Tejun Heo <[email protected]> |
1da177e4 | 7555 | L: [email protected] |
3d9b9350 | 7556 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7557 | S: Supported |
d5ca6918 JP |
7558 | F: drivers/ata/ |
7559 | F: include/linux/ata.h | |
7560 | F: include/linux/libata.h | |
1da177e4 | 7561 | |
6733b39a | 7562 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7563 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7564 | L: [email protected] |
0ca43cc0 | 7565 | W: http://www.emulex.com |
3387f656 JP |
7566 | S: Supported |
7567 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7568 | |
6b7c5b94 | 7569 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7570 | M: Sathya Perla <[email protected]> |
7571 | M: Subbu Seetharaman <[email protected]> | |
7572 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7573 | L: [email protected] |
fea3af67 | 7574 | W: http://www.emulex.com |
7d2c86b5 | 7575 | S: Supported |
9aebddd1 | 7576 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7577 | |
8ceee660 | 7578 | SFC NETWORK DRIVER |
c06f51ea | 7579 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
7580 | M: Ben Hutchings <[email protected]> |
7581 | L: [email protected] | |
8ceee660 | 7582 | S: Supported |
874aeea5 | 7583 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7584 | |
e2d1d6c0 | 7585 | SGI GRU DRIVER |
cc883afc | 7586 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 7587 | S: Maintained |
679655da | 7588 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7589 | |
7590 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7591 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7592 | L: [email protected] |
7593 | S: Supported | |
679655da | 7594 | F: Documentation/ia64/serial.txt |
df621252 | 7595 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7596 | F: include/linux/ioc?.h |
e2d1d6c0 | 7597 | |
1da177e4 | 7598 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7599 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7600 | L: [email protected] |
7601 | W: http://linux-visws.sf.net | |
7602 | S: Maintained for 2.6. | |
679655da | 7603 | F: Documentation/sgi-visws.txt |
1da177e4 | 7604 | |
75312619 | 7605 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7606 | M: Cliff Whickman <[email protected]> |
7607 | M: Robin Holt <[email protected]> | |
75312619 | 7608 | S: Maintained |
679655da | 7609 | F: drivers/misc/sgi-xp/ |
75312619 | 7610 | |
49cc629d HV |
7611 | SI470X FM RADIO RECEIVER I2C DRIVER |
7612 | M: Hans Verkuil <[email protected]> | |
7613 | L: [email protected] | |
7614 | T: git git://linuxtv.org/media_tree.git | |
7615 | W: http://linuxtv.org | |
7616 | S: Odd Fixes | |
7617 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7618 | ||
7619 | SI470X FM RADIO RECEIVER USB DRIVER | |
7620 | M: Hans Verkuil <[email protected]> | |
7621 | L: [email protected] | |
7622 | T: git git://linuxtv.org/media_tree.git | |
7623 | W: http://linuxtv.org | |
7624 | S: Maintained | |
7625 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7626 | F: drivers/media/radio/si470x/radio-si470x.h | |
7627 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7628 | ||
c937ca03 EV |
7629 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7630 | M: Eduardo Valentin <[email protected]> | |
7631 | L: [email protected] | |
7632 | T: git git://linuxtv.org/media_tree.git | |
7633 | W: http://linuxtv.org | |
7634 | S: Odd Fixes | |
7635 | F: drivers/media/radio/si4713-i2c.? | |
7636 | ||
7637 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7638 | M: Eduardo Valentin <[email protected]> | |
7639 | L: [email protected] | |
7640 | T: git git://linuxtv.org/media_tree.git | |
7641 | W: http://linuxtv.org | |
7642 | S: Odd Fixes | |
559cdc82 | 7643 | F: drivers/media/radio/radio-si4713.c |
c937ca03 | 7644 | |
beb91d46 | 7645 | SIANO DVB DRIVER |
1b2c14b4 | 7646 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7647 | L: [email protected] |
7648 | W: http://linuxtv.org | |
7649 | T: git git://linuxtv.org/media_tree.git | |
7650 | S: Odd fixes | |
7651 | F: drivers/media/common/siano/ | |
beb91d46 | 7652 | F: drivers/media/usb/siano/ |
beb91d46 | 7653 | F: drivers/media/usb/siano/ |
14430813 | 7654 | F: drivers/media/mmc/siano/ |
beb91d46 | 7655 | |
b618b69c GL |
7656 | SH_VEU V4L2 MEM2MEM DRIVER |
7657 | M: Guennadi Liakhovetski <[email protected]> | |
7658 | L: [email protected] | |
7659 | S: Maintained | |
7660 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7661 | |
7662 | SH_VOU V4L2 OUTPUT DRIVER | |
7663 | M: Guennadi Liakhovetski <[email protected]> | |
7664 | L: [email protected] | |
4290fd1a | 7665 | S: Odd Fixes |
b618b69c GL |
7666 | F: drivers/media/platform/sh_vou.c |
7667 | F: include/media/sh_vou.h | |
7668 | ||
6349d997 | 7669 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7670 | M: Len Brown <[email protected]> |
6349d997 LB |
7671 | L: [email protected] |
7672 | W: http://simplefirmware.org/ | |
7673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7674 | S: Supported |
943fc810 | 7675 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7676 | F: drivers/sfi/ |
7677 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7678 | |
1da177e4 LT |
7679 | SIMTEC EB110ATX (Chalice CATS) |
7680 | P: Ben Dooks | |
b16957c6 BD |
7681 | P: Vincent Sanders <[email protected]> |
7682 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7683 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7684 | S: Supported | |
7685 | ||
7686 | SIMTEC EB2410ITX (BAST) | |
7687 | P: Ben Dooks | |
b16957c6 BD |
7688 | P: Vincent Sanders <[email protected]> |
7689 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7690 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7691 | S: Supported | |
15dba387 JP |
7692 | F: arch/arm/mach-s3c24xx/mach-bast.c |
7693 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
7694 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 7695 | |
4c5adde7 | 7696 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7697 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7698 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7699 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7700 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7701 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 7702 | S: Supported |
14430813 | 7703 | F: arch/arm/mach-davinci/ |
046d0a37 | 7704 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7705 | |
8d4b3f08 | 7706 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7707 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7708 | L: [email protected] |
7709 | L: [email protected] (moderated for non-subscribers) | |
7710 | W: http://linuxtv.org/ | |
7711 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7712 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7713 | S: Maintained |
8d4b3f08 LP |
7714 | F: drivers/media/platform/davinci/ |
7715 | F: include/media/davinci/ | |
7716 | ||
92aab3c0 | 7717 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7718 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7719 | L: [email protected] |
7720 | S: Maintained | |
8c7de408 | 7721 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7722 | |
1da177e4 | 7723 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7724 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7725 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7726 | L: [email protected] |
1da177e4 | 7727 | S: Maintained |
8c7de408 | 7728 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7729 | |
7730 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7731 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7732 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7733 | S: Maintained |
679655da JP |
7734 | F: Documentation/fb/sisfb.txt |
7735 | F: drivers/video/sis/ | |
7736 | F: include/video/sisfb.h | |
1da177e4 LT |
7737 | |
7738 | SIS USB2VGA DRIVER | |
8b58be88 | 7739 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7740 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7741 | S: Maintained | |
679655da | 7742 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7743 | |
415ad26d | 7744 | SLAB ALLOCATOR |
8b58be88 | 7745 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7746 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7747 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7748 | L: [email protected] |
7749 | S: Maintained | |
679655da JP |
7750 | F: include/linux/sl?b*.h |
7751 | F: mm/sl?b.c | |
415ad26d | 7752 | |
9fab9787 PM |
7753 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7754 | M: Lai Jiangshan <[email protected]> | |
7755 | M: "Paul E. McKenney" <[email protected]> | |
7756 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7757 | S: Supported | |
7758 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
7759 | F: include/linux/srcu.h |
7760 | F: kernel/rcu/srcu.c | |
9fab9787 | 7761 | |
66372841 CS |
7762 | SMACK SECURITY MODULE |
7763 | M: Casey Schaufler <[email protected]> | |
7764 | L: [email protected] | |
7765 | W: http://schaufler-ca.com | |
7766 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7767 | S: Maintained | |
7768 | F: Documentation/security/Smack.txt | |
7769 | F: security/smack/ | |
7770 | ||
68ace3e1 KH |
7771 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
7772 | M: Kevin Hilman <[email protected]> | |
7773 | M: Nishanth Menon <[email protected]> | |
7774 | S: Maintained | |
7775 | F: drivers/power/avs/smartreflex.c | |
7776 | F: include/linux/power/smartreflex.h | |
7777 | L: [email protected] | |
7778 | ||
1da177e4 | 7779 | SMC91x ETHERNET DRIVER |
2f82af08 | 7780 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7781 | S: Odd Fixes |
ae150435 | 7782 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7783 | |
e8e31622 SA |
7784 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7785 | M: Sakari Ailus <[email protected]> | |
7786 | L: [email protected] | |
7787 | S: Maintained | |
14430813 | 7788 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
7789 | F: include/media/smiapp.h |
7790 | F: drivers/media/i2c/smiapp-pll.c | |
7791 | F: drivers/media/i2c/smiapp-pll.h | |
7792 | ||
920fa1ff GR |
7793 | SMM665 HARDWARE MONITOR DRIVER |
7794 | M: Guenter Roeck <[email protected]> | |
7795 | L: [email protected] | |
7796 | S: Maintained | |
7797 | F: Documentation/hwmon/smm665 | |
7798 | F: drivers/hwmon/smm665.c | |
7799 | ||
9df7305b | 7800 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7801 | M: Steve Glendinning <[email protected]> |
9df7305b | 7802 | L: [email protected] |
90b24cfb | 7803 | S: Maintained |
9df7305b SG |
7804 | F: Documentation/hwmon/emc2103 |
7805 | F: drivers/hwmon/emc2103.c | |
7806 | ||
a98d506c HG |
7807 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7808 | M: Hans de Goede <[email protected]> | |
7809 | L: [email protected] | |
7810 | S: Supported | |
7811 | F: Documentation/hwmon/sch5627 | |
7812 | F: drivers/hwmon/sch5627.c | |
7813 | ||
6ea884db | 7814 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7815 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7816 | L: [email protected] |
7817 | S: Maintained | |
679655da JP |
7818 | F: Documentation/hwmon/smsc47b397 |
7819 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7820 | |
fd9abb3d | 7821 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7822 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7823 | L: [email protected] |
90b24cfb | 7824 | S: Maintained |
679655da | 7825 | F: include/linux/smsc911x.h |
ae150435 | 7826 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7827 | |
7828 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7829 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 7830 | L: [email protected] |
90b24cfb | 7831 | S: Maintained |
ae150435 | 7832 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7833 | |
3c8a63e2 | 7834 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7835 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 7836 | L: [email protected] |
90b24cfb | 7837 | S: Maintained |
3c8a63e2 SG |
7838 | F: drivers/video/smscufx.c |
7839 | ||
668acf32 | 7840 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7841 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 7842 | L: [email protected] |
275ffde4 | 7843 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7844 | S: Maintained |
90d72ac6 MCC |
7845 | F: include/media/soc* |
7846 | F: drivers/media/i2c/soc_camera/ | |
7847 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7848 | |
e2d1d6c0 | 7849 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7850 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 7851 | S: Maintained |
679655da | 7852 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7853 | |
1da177e4 | 7854 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7855 | M: Neil Brown <[email protected]> |
1da177e4 | 7856 | L: [email protected] |
524418bb | 7857 | S: Supported |
679655da JP |
7858 | F: drivers/md/ |
7859 | F: include/linux/raid/ | |
c117ab84 | 7860 | F: include/uapi/linux/raid/ |
1da177e4 | 7861 | |
1da177e4 | 7862 | SONIC NETWORK DRIVER |
8b58be88 | 7863 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 7864 | L: [email protected] |
1da177e4 | 7865 | S: Maintained |
d9fb9f38 | 7866 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7867 | |
61e115a5 | 7868 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7869 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
7870 | L: [email protected] |
7871 | S: Maintained | |
679655da JP |
7872 | F: drivers/ssb/ |
7873 | F: include/linux/ssb/ | |
61e115a5 | 7874 | |
1da177e4 | 7875 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7876 | M: Mattia Dongili <[email protected]> |
d0944853 | 7877 | L: [email protected] |
5b18167d | 7878 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7879 | S: Maintained |
679655da JP |
7880 | F: Documentation/laptops/sony-laptop.txt |
7881 | F: drivers/char/sonypi.c | |
7882 | F: drivers/platform/x86/sony-laptop.c | |
7883 | F: include/linux/sony-laptop.h | |
1da177e4 | 7884 | |
baf8532a | 7885 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7886 | M: Alex Dubov <[email protected]> |
baf8532a AD |
7887 | W: http://tifmxx.berlios.de/ |
7888 | S: Maintained | |
679655da | 7889 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7890 | |
0ab30494 ML |
7891 | SONY MEMORYSTICK STANDARD SUPPORT |
7892 | M: Maxim Levitsky <[email protected]> | |
7893 | S: Maintained | |
7894 | F: drivers/memstick/core/ms_block.* | |
7895 | ||
1da177e4 | 7896 | SOUND |
8b58be88 JP |
7897 | M: Jaroslav Kysela <[email protected]> |
7898 | M: Takashi Iwai <[email protected]> | |
93711660 | 7899 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 7900 | W: http://www.alsa-project.org/ |
dde7ad8d | 7901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7902 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7903 | S: Maintained |
3126a179 JP |
7904 | F: Documentation/sound/ |
7905 | F: include/sound/ | |
c117ab84 | 7906 | F: include/uapi/sound/ |
679655da | 7907 | F: sound/ |
1da177e4 | 7908 | |
33bbe149 MB |
7909 | SOUND - COMPRESSED AUDIO |
7910 | M: Vinod Koul <[email protected]> | |
7911 | L: [email protected] (moderated for non-subscribers) | |
7912 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
7913 | S: Supported | |
f672f31a | 7914 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 7915 | F: include/sound/compress_driver.h |
f672f31a | 7916 | F: include/uapi/sound/compress_* |
33bbe149 MB |
7917 | F: sound/core/compress_offload.c |
7918 | F: sound/soc/soc-compress.c | |
7919 | ||
bd903bde | 7920 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7921 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 7922 | M: Mark Brown <[email protected]> |
86f14df8 | 7923 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7924 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 7925 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7926 | S: Supported |
2820f615 | 7927 | F: Documentation/sound/alsa/soc/ |
679655da | 7928 | F: sound/soc/ |
e6e55122 | 7929 | F: include/sound/soc* |
eb1a6af3 | 7930 | |
d7f8761b MB |
7931 | SOUND - DMAENGINE HELPERS |
7932 | M: Lars-Peter Clausen <[email protected]> | |
7933 | S: Supported | |
7934 | F: include/sound/dmaengine_pcm.h | |
7935 | F: sound/core/pcm_dmaengine.c | |
7936 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
7937 | ||
473321fc | 7938 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7939 | M: "David S. Miller" <[email protected]> |
1da177e4 | 7940 | L: [email protected] |
8a6e2535 | 7941 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7944 | S: Maintained |
679655da | 7945 | F: arch/sparc/ |
7765b8bb | 7946 | F: drivers/sbus/ |
1da177e4 | 7947 | |
6404fcca DM |
7948 | SPARC SERIAL DRIVERS |
7949 | M: "David S. Miller" <[email protected]> | |
7950 | L: [email protected] | |
08deed1e JP |
7951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7953 | S: Maintained |
6816383a | 7954 | F: include/linux/sunserialcore.h |
df621252 | 7955 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7956 | F: drivers/tty/serial/sunhv.c |
7957 | F: drivers/tty/serial/sunsab.c | |
7958 | F: drivers/tty/serial/sunsab.h | |
7959 | F: drivers/tty/serial/sunsu.c | |
7960 | F: drivers/tty/serial/sunzilog.c | |
7961 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7962 | |
389325b4 CL |
7963 | SPARSE CHECKER |
7964 | M: "Christopher Li" <[email protected]> | |
7965 | L: [email protected] | |
7966 | W: https://sparse.wiki.kernel.org/ | |
7967 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7968 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7969 | S: Maintained | |
7970 | F: include/linux/compiler.h | |
7971 | ||
fc0c195a | 7972 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7973 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7974 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7975 | L: [email protected] |
7976 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7977 | W: http://www.st.com/spear |
7978 | S: Maintained | |
281e192f | 7979 | F: arch/arm/mach-spear/ |
fc0c195a VK |
7980 | |
7981 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7982 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7983 | L: [email protected] |
7984 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7985 | W: http://www.st.com/spear |
7986 | S: Maintained | |
5df33a62 | 7987 | F: drivers/clk/spear/ |
fc0c195a | 7988 | |
e2d1d6c0 | 7989 | SPI SUBSYSTEM |
b02e48f2 | 7990 | M: Mark Brown <[email protected]> |
dfbe403c | 7991 | L: [email protected] |
e7e4e13c | 7992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7993 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7994 | S: Maintained |
679655da JP |
7995 | F: Documentation/spi/ |
7996 | F: drivers/spi/ | |
7997 | F: include/linux/spi/ | |
c117ab84 | 7998 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7999 | |
2752e401 | 8000 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8001 | M: Ishizaki Kou <[email protected]> |
8002 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
8003 | L: [email protected] |
8004 | S: Supported | |
679655da | 8005 | F: Documentation/networking/spider_net.txt |
8df158ac | 8006 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8007 | |
e2d1d6c0 | 8008 | SPU FILE SYSTEM |
8b58be88 | 8009 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
8010 | L: [email protected] |
8011 | L: [email protected] | |
e2d1d6c0 RD |
8012 | W: http://www.ibm.com/developerworks/power/cell/ |
8013 | S: Supported | |
679655da JP |
8014 | F: Documentation/filesystems/spufs.txt |
8015 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8016 | |
fc555841 | 8017 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8018 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
8019 | L: [email protected] (subscribers-only) |
8020 | W: http://squashfs.org.uk | |
8021 | S: Maintained | |
679655da JP |
8022 | F: Documentation/filesystems/squashfs.txt |
8023 | F: fs/squashfs/ | |
fc555841 | 8024 | |
1da177e4 | 8025 | SRM (Alpha) environment access |
8b58be88 | 8026 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 8027 | S: Maintained |
679655da | 8028 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8029 | |
26e9a397 | 8030 | STABLE BRANCH |
879a5a00 | 8031 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 8032 | L: [email protected] |
879a5a00 | 8033 | S: Supported |
7b175c46 | 8034 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8035 | |
26e9a397 | 8036 | STAGING SUBSYSTEM |
879a5a00 | 8037 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 8038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8039 | L: [email protected] |
879a5a00 | 8040 | S: Supported |
679655da | 8041 | F: drivers/staging/ |
dbc6c2cc | 8042 | |
c8c8b105 JP |
8043 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
8044 | M: Henk de Groot <[email protected]> | |
8045 | S: Odd Fixes | |
8046 | F: drivers/staging/wlags49_h2/ | |
8047 | F: drivers/staging/wlags49_h25/ | |
8048 | ||
c9555159 JP |
8049 | STAGING - ASUS OLED |
8050 | M: Jakub Schmidtke <[email protected]> | |
8051 | S: Odd Fixes | |
8052 | F: drivers/staging/asus_oled/ | |
8053 | ||
ebd3d010 JP |
8054 | STAGING - COMEDI |
8055 | M: Ian Abbott <[email protected]> | |
81b884c9 | 8056 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
8057 | S: Odd Fixes |
8058 | F: drivers/staging/comedi/ | |
8059 | ||
8ca572c9 JP |
8060 | STAGING - CRYSTAL HD VIDEO DECODER |
8061 | M: Naren Sankar <[email protected]> | |
8062 | M: Jarod Wilson <[email protected]> | |
8063 | M: Scott Davilla <[email protected]> | |
8064 | M: Manu Abraham <[email protected]> | |
8065 | S: Odd Fixes | |
8066 | F: drivers/staging/crystalhd/ | |
8067 | ||
0f16ffc4 JP |
8068 | STAGING - ECHO CANCELLER |
8069 | M: Steve Underwood <[email protected]> | |
8070 | M: David Rowe <[email protected]> | |
8071 | S: Odd Fixes | |
8072 | F: drivers/staging/echo/ | |
8073 | ||
8dc2bbe7 ME |
8074 | STAGING - ET131X NETWORK DRIVER |
8075 | M: Mark Einon <[email protected]> | |
8076 | S: Odd Fixes | |
8077 | F: drivers/staging/et131x/ | |
8078 | ||
a0138163 JP |
8079 | STAGING - FLARION FT1000 DRIVERS |
8080 | M: Marek Belisko <[email protected]> | |
8081 | S: Odd Fixes | |
8082 | F: drivers/staging/ft1000/ | |
8083 | ||
ec3fab92 JP |
8084 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
8085 | M: David Täht <[email protected]> | |
8086 | S: Odd Fixes | |
8087 | F: drivers/staging/frontier/ | |
8088 | ||
98ded590 HV |
8089 | STAGING - GO7007 MPEG CODEC |
8090 | M: Hans Verkuil <[email protected]> | |
8091 | S: Maintained | |
8092 | F: drivers/staging/media/go7007/ | |
8093 | ||
6c1bb424 | 8094 | STAGING - INDUSTRIAL IO |
030a13d7 | 8095 | M: Jonathan Cameron <[email protected]> |
a0138163 | 8096 | L: [email protected] |
6c1bb424 JP |
8097 | S: Odd Fixes |
8098 | F: drivers/staging/iio/ | |
8099 | ||
a0138163 JP |
8100 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8101 | M: Jarod Wilson <[email protected]> | |
8102 | W: http://www.lirc.org/ | |
8103 | S: Odd Fixes | |
b2b0186d | 8104 | F: drivers/staging/media/lirc/ |
a0138163 | 8105 | |
7c6b6c71 | 8106 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8107 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
8108 | M: Marc Dietrich <[email protected]> |
8109 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 8110 | L: [email protected] |
7c6b6c71 MD |
8111 | S: Maintained |
8112 | F: drivers/staging/nvec/ | |
8113 | ||
a0138163 | 8114 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8115 | M: Jens Frederich <[email protected]> |
8116 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
8117 | M: Jon Nettleton <[email protected]> |
8118 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8119 | S: Maintained |
a0138163 JP |
8120 | F: drivers/staging/olpc_dcon/ |
8121 | ||
94cfdd15 | 8122 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 8123 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
8124 | S: Maintained |
8125 | F: drivers/staging/ozwpan/ | |
8126 | ||
a0138163 | 8127 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8128 | M: Willy Tarreau <[email protected]> |
8129 | S: Odd Fixes | |
8130 | F: drivers/staging/panel/ | |
8131 | ||
a0138163 JP |
8132 | STAGING - REALTEK RTL8712U DRIVERS |
8133 | M: Larry Finger <[email protected]> | |
8134 | M: Florian Schilhabel <[email protected]>. | |
8135 | S: Odd Fixes | |
8136 | F: drivers/staging/rtl8712/ | |
8137 | ||
9629fa86 JP |
8138 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8139 | M: Teddy Wang <[email protected]> | |
8140 | S: Odd Fixes | |
9df0a245 | 8141 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8142 | |
a0138163 | 8143 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8144 | M: Ismael Luceno <[email protected]> |
8145 | S: Supported | |
b2b0186d | 8146 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8147 | |
8148 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8149 | M: William Hubbs <[email protected]> | |
8150 | M: Chris Brannon <[email protected]> | |
d33bce31 | 8151 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
8152 | M: Samuel Thibault <[email protected]> |
8153 | L: [email protected] | |
8154 | W: http://www.linux-speakup.org/ | |
8155 | S: Odd Fixes | |
8156 | F: drivers/staging/speakup/ | |
8157 | ||
8158 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8159 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
8160 | S: Odd Fixes |
8161 | F: drivers/staging/tidspbridge/ | |
8162 | ||
a0138163 JP |
8163 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8164 | M: Al Cho <[email protected]> | |
8165 | S: Odd Fixes | |
8166 | F: drivers/staging/keucr/ | |
8167 | ||
b3e871ce JP |
8168 | STAGING - VIA VT665X DRIVERS |
8169 | M: Forest Bond <[email protected]> | |
8170 | S: Odd Fixes | |
8171 | F: drivers/staging/vt665?/ | |
8172 | ||
81a9a526 JP |
8173 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8174 | M: Pavel Machek <[email protected]> | |
8175 | S: Odd Fixes | |
8176 | F: drivers/staging/winbond/ | |
8177 | ||
709bcb07 | 8178 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8179 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
8180 | S: Odd Fixes |
8181 | F: drivers/staging/xgifb/ | |
8182 | ||
1da177e4 | 8183 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8184 | M: Ion Badulescu <[email protected]> |
b4f90189 | 8185 | S: Odd Fixes |
9bba23b0 | 8186 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8187 | |
e2d1d6c0 | 8188 | SUN3/3X |
8b58be88 | 8189 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
8190 | W: http://sammy.net/sun3/ |
8191 | S: Maintained | |
679655da JP |
8192 | F: arch/m68k/kernel/*sun3* |
8193 | F: arch/m68k/sun3*/ | |
8194 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8195 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8196 | |
2bc9ff01 DK |
8197 | SUNDANCE NETWORK DRIVER |
8198 | M: Denis Kirjanov <[email protected]> | |
8199 | L: [email protected] | |
8200 | S: Maintained | |
8201 | F: drivers/net/ethernet/dlink/sundance.c | |
8202 | ||
2cbb12a4 | 8203 | SUPERH |
8b58be88 | 8204 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 8205 | L: [email protected] |
1da177e4 | 8206 | W: http://www.linux-sh.org |
8a6e2535 | 8207 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 8208 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 8209 | S: Supported |
066069e1 | 8210 | F: Documentation/sh/ |
679655da | 8211 | F: arch/sh/ |
066069e1 | 8212 | F: drivers/sh/ |
1da177e4 | 8213 | |
4480f15b | 8214 | SUSPEND TO RAM |
8b58be88 JP |
8215 | M: Len Brown <[email protected]> |
8216 | M: Pavel Machek <[email protected]> | |
49db1903 | 8217 | M: "Rafael J. Wysocki" <[email protected]> |
bf1c138e | 8218 | L: [email protected] |
e2d1d6c0 | 8219 | S: Supported |
679655da JP |
8220 | F: Documentation/power/ |
8221 | F: arch/x86/kernel/acpi/ | |
8222 | F: drivers/base/power/ | |
8223 | F: kernel/power/ | |
8224 | F: include/linux/suspend.h | |
8225 | F: include/linux/freezer.h | |
8226 | F: include/linux/pm.h | |
1da177e4 LT |
8227 | |
8228 | SVGA HANDLING | |
8b58be88 | 8229 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8230 | L: [email protected] |
8231 | S: Maintained | |
679655da JP |
8232 | F: Documentation/svga.txt |
8233 | F: arch/x86/boot/video* | |
1da177e4 | 8234 | |
6e28b761 KRW |
8235 | SWIOTLB SUBSYSTEM |
8236 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8237 | L: [email protected] | |
8238 | S: Supported | |
8239 | F: lib/swiotlb.c | |
8240 | F: arch/*/kernel/pci-swiotlb.c | |
8241 | F: include/linux/swiotlb.h | |
8242 | ||
db8e35d5 VG |
8243 | SYNOPSYS ARC ARCHITECTURE |
8244 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8245 | S: Supported |
8246 | F: arch/arc/ | |
6659a20a | 8247 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8248 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8249 | |
1da177e4 | 8250 | SYSV FILESYSTEM |
8b58be88 | 8251 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8252 | S: Maintained |
679655da JP |
8253 | F: Documentation/filesystems/sysv-fs.txt |
8254 | F: fs/sysv/ | |
8255 | F: include/linux/sysv_fs.h | |
1da177e4 | 8256 | |
86cfa7fc NB |
8257 | TARGET SUBSYSTEM |
8258 | M: Nicholas A. Bellinger <[email protected]> | |
8259 | L: [email protected] | |
b9f5edc2 | 8260 | L: [email protected] |
86cfa7fc NB |
8261 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8262 | W: http://www.linux-iscsi.org | |
452cf324 | 8263 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8264 | S: Supported |
8265 | F: drivers/target/ | |
8266 | F: include/target/ | |
8267 | F: Documentation/target/ | |
8268 | ||
4e68852d | 8269 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8270 | M: Balbir Singh <[email protected]> |
4e68852d | 8271 | S: Maintained |
679655da JP |
8272 | F: Documentation/accounting/taskstats* |
8273 | F: include/linux/taskstats* | |
8274 | F: kernel/taskstats.c | |
4e68852d | 8275 | |
781b456a | 8276 | TC CLASSIFIER |
f935f3f8 | 8277 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8278 | L: [email protected] |
8279 | S: Maintained | |
679655da | 8280 | F: include/net/pkt_cls.h |
c117ab84 | 8281 | F: include/uapi/linux/pkt_cls.h |
679655da | 8282 | F: net/sched/ |
781b456a | 8283 | |
5067f08a | 8284 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8285 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8286 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8287 | W: http://tcp-lp-mod.sourceforge.net/ |
8288 | S: Maintained | |
679655da | 8289 | F: net/ipv4/tcp_lp.c |
5067f08a | 8290 | |
91952bc0 AP |
8291 | TDA10071 MEDIA DRIVER |
8292 | M: Antti Palosaari <[email protected]> | |
8293 | L: [email protected] | |
8294 | W: http://linuxtv.org/ | |
8295 | W: http://palosaari.fi/linux/ | |
8296 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8297 | T: git git://linuxtv.org/anttip/media_tree.git | |
8298 | S: Maintained | |
8299 | F: drivers/media/dvb-frontends/tda10071* | |
8300 | ||
8301 | TDA18212 MEDIA DRIVER | |
8302 | M: Antti Palosaari <[email protected]> | |
8303 | L: [email protected] | |
8304 | W: http://linuxtv.org/ | |
8305 | W: http://palosaari.fi/linux/ | |
8306 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8307 | T: git git://linuxtv.org/anttip/media_tree.git | |
8308 | S: Maintained | |
8309 | F: drivers/media/tuners/tda18212* | |
8310 | ||
8311 | TDA18218 MEDIA DRIVER | |
8312 | M: Antti Palosaari <[email protected]> | |
8313 | L: [email protected] | |
8314 | W: http://linuxtv.org/ | |
8315 | W: http://palosaari.fi/linux/ | |
8316 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8317 | T: git git://linuxtv.org/anttip/media_tree.git | |
8318 | S: Maintained | |
8319 | F: drivers/media/tuners/tda18218* | |
8320 | ||
3b2f6aba MK |
8321 | TDA18271 MEDIA DRIVER |
8322 | M: Michael Krufky <[email protected]> | |
8323 | L: [email protected] | |
8324 | W: http://linuxtv.org/ | |
8325 | W: http://github.com/mkrufky | |
8326 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8327 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8328 | S: Maintained | |
8329 | F: drivers/media/tuners/tda18271* | |
8330 | ||
e48307a9 MK |
8331 | TDA827x MEDIA DRIVER |
8332 | M: Michael Krufky <[email protected]> | |
8333 | L: [email protected] | |
8334 | W: http://linuxtv.org/ | |
8335 | W: http://github.com/mkrufky | |
8336 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8337 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8338 | S: Maintained | |
8339 | F: drivers/media/tuners/tda8290.* | |
8340 | ||
66cf9212 MK |
8341 | TDA8290 MEDIA DRIVER |
8342 | M: Michael Krufky <[email protected]> | |
8343 | L: [email protected] | |
8344 | W: http://linuxtv.org/ | |
8345 | W: http://github.com/mkrufky | |
8346 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8347 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8348 | S: Maintained | |
8349 | F: drivers/media/tuners/tda8290.* | |
8350 | ||
4b9fba30 HV |
8351 | TDA9840 MEDIA DRIVER |
8352 | M: Hans Verkuil <[email protected]> | |
8353 | L: [email protected] | |
8354 | T: git git://linuxtv.org/media_tree.git | |
8355 | W: http://linuxtv.org | |
8356 | S: Maintained | |
8357 | F: drivers/media/i2c/tda9840* | |
8358 | ||
2cb654fd | 8359 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8360 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8361 | L: [email protected] |
8362 | W: http://linuxtv.org | |
8363 | T: git git://linuxtv.org/media_tree.git | |
8364 | S: Odd fixes | |
8365 | F: drivers/media/tuners/tea5761.* | |
8366 | ||
8367 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8368 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8369 | L: [email protected] |
8370 | W: http://linuxtv.org | |
8371 | T: git git://linuxtv.org/media_tree.git | |
8372 | S: Maintained | |
8373 | F: drivers/media/tuners/tea5767.* | |
8374 | ||
4b9fba30 HV |
8375 | TEA6415C MEDIA DRIVER |
8376 | M: Hans Verkuil <[email protected]> | |
8377 | L: [email protected] | |
8378 | T: git git://linuxtv.org/media_tree.git | |
8379 | W: http://linuxtv.org | |
8380 | S: Maintained | |
8381 | F: drivers/media/i2c/tea6415c* | |
8382 | ||
8383 | TEA6420 MEDIA DRIVER | |
8384 | M: Hans Verkuil <[email protected]> | |
8385 | L: [email protected] | |
8386 | T: git git://linuxtv.org/media_tree.git | |
8387 | W: http://linuxtv.org | |
8388 | S: Maintained | |
8389 | F: drivers/media/i2c/tea6420* | |
8390 | ||
3d249d4c | 8391 | TEAM DRIVER |
dca9ab92 | 8392 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8393 | L: [email protected] |
8394 | S: Supported | |
8395 | F: drivers/net/team/ | |
8396 | F: include/linux/if_team.h | |
c117ab84 | 8397 | F: include/uapi/linux/if_team.h |
3d249d4c | 8398 | |
7d029125 VD |
8399 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8400 | M: Savoir-faire Linux Inc. <[email protected]> | |
8401 | S: Maintained | |
8402 | F: arch/x86/platform/ts5500/ | |
8403 | ||
40ad4a30 SY |
8404 | TECHNOTREND USB IR RECEIVER |
8405 | M: Sean Young <[email protected]> | |
8406 | L: [email protected] | |
8407 | S: Maintained | |
8408 | F: drivers/media/rc/ttusbir.c | |
8409 | ||
adabdb0c | 8410 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8411 | M: Stephen Warren <[email protected]> |
adabdb0c | 8412 | M: Thierry Reding <[email protected]> |
84b9414b | 8413 | L: [email protected] |
fd117cd1 OJ |
8414 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8416 | S: Supported |
bbbe96ed | 8417 | N: [^a-z]tegra |
84b9414b | 8418 | |
adabdb0c SW |
8419 | TEGRA ASOC DRIVER |
8420 | M: Stephen Warren <[email protected]> | |
8421 | S: Supported | |
8422 | F: sound/soc/tegra/ | |
8423 | ||
8424 | TEGRA CLOCK DRIVER | |
8425 | M: Peter De Schrijver <[email protected]> | |
8426 | M: Prashant Gaikwad <[email protected]> | |
8427 | S: Supported | |
8428 | F: drivers/clk/tegra/ | |
8429 | ||
8430 | TEGRA DMA DRIVER | |
8431 | M: Laxman Dewangan <[email protected]> | |
8432 | S: Supported | |
8433 | F: drivers/dma/tegra20-apb-dma.c | |
8434 | ||
8435 | TEGRA GPIO DRIVER | |
8436 | M: Stephen Warren <[email protected]> | |
8437 | S: Supported | |
8438 | F: drivers/gpio/gpio-tegra.c | |
8439 | ||
8440 | TEGRA I2C DRIVER | |
8441 | M: Laxman Dewangan <[email protected]> | |
8442 | S: Supported | |
8443 | F: drivers/i2c/busses/i2c-tegra.c | |
8444 | ||
8445 | TEGRA IOMMU DRIVERS | |
8446 | M: Hiroshi Doyu <[email protected]> | |
8447 | S: Supported | |
8448 | F: drivers/iommu/tegra* | |
8449 | ||
8450 | TEGRA KBC DRIVER | |
8451 | M: Rakesh Iyer <[email protected]> | |
8452 | M: Laxman Dewangan <[email protected]> | |
8453 | S: Supported | |
8454 | F: drivers/input/keyboard/tegra-kbc.c | |
8455 | ||
8456 | TEGRA PINCTRL DRIVER | |
8457 | M: Stephen Warren <[email protected]> | |
8458 | S: Supported | |
8459 | F: drivers/pinctrl/pinctrl-tegra* | |
8460 | ||
8461 | TEGRA PWM DRIVER | |
8462 | M: Thierry Reding <[email protected]> | |
8463 | S: Supported | |
8464 | F: drivers/pwm/pwm-tegra.c | |
8465 | ||
8466 | TEGRA SERIAL DRIVER | |
8467 | M: Laxman Dewangan <[email protected]> | |
8468 | S: Supported | |
8469 | F: drivers/tty/serial/serial-tegra.c | |
8470 | ||
8471 | TEGRA SPI DRIVER | |
8472 | M: Laxman Dewangan <[email protected]> | |
8473 | S: Supported | |
8474 | F: drivers/spi/spi-tegra* | |
8475 | ||
1a348ccc | 8476 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8477 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8478 | L: [email protected] |
8479 | S: Supported | |
ef7f5429 | 8480 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8481 | |
4e68852d | 8482 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8483 | M: Mark Gross <[email protected]> |
4e68852d | 8484 | S: Supported |
679655da | 8485 | F: drivers/char/tlclk.c |
4e68852d | 8486 | |
4480f15b | 8487 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8488 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8489 | M: Max Filippov <[email protected]> |
8490 | L: [email protected] | |
4e68852d | 8491 | S: Maintained |
679655da | 8492 | F: arch/xtensa/ |
4e68852d | 8493 | |
d3fb6955 ZR |
8494 | THERMAL |
8495 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8496 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8497 | L: [email protected] |
8498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8500 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8501 | S: Supported |
8502 | F: drivers/thermal/ | |
8503 | F: include/linux/thermal.h | |
cfaf7179 | 8504 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8505 | |
30ba2fbd VD |
8506 | THINGM BLINK(1) USB RGB LED DRIVER |
8507 | M: Vivien Didelot <[email protected]> | |
8508 | S: Maintained | |
8509 | F: drivers/hid/hid-thingm.c | |
8510 | ||
4e68852d | 8511 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8512 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8513 | L: [email protected] |
d0944853 | 8514 | L: [email protected] |
4e68852d AC |
8515 | W: http://ibm-acpi.sourceforge.net |
8516 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8517 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8518 | S: Maintained |
679655da | 8519 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8520 | |
1b46f2a2 EV |
8521 | TI BANDGAP AND THERMAL DRIVER |
8522 | M: Eduardo Valentin <[email protected]> | |
8523 | L: [email protected] | |
794b2e25 EV |
8524 | S: Supported |
8525 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8526 | |
4020f2d7 | 8527 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8528 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8529 | S: Maintained |
679655da JP |
8530 | F: drivers/misc/tifm* |
8531 | F: drivers/mmc/host/tifm_sd.c | |
8532 | F: include/linux/tifm.h | |
4020f2d7 | 8533 | |
152ad442 SR |
8534 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8535 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8536 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8537 | L: [email protected] (moderated for non-subscribers) |
8538 | S: Maintained | |
8539 | F: sound/soc/codecs/lm49453* | |
d392dead | 8540 | F: sound/soc/codecs/isabelle* |
152ad442 | 8541 | |
0edd807d KM |
8542 | TI LP855x BACKLIGHT DRIVER |
8543 | M: Milo Kim <[email protected]> | |
8544 | S: Maintained | |
8545 | F: Documentation/backlight/lp855x-driver.txt | |
8546 | F: drivers/video/backlight/lp855x_bl.c | |
8547 | F: include/linux/platform_data/lp855x.h | |
8548 | ||
faf13f6d KM |
8549 | TI LP8727 CHARGER DRIVER |
8550 | M: Milo Kim <[email protected]> | |
8551 | S: Maintained | |
8552 | F: drivers/power/lp8727_charger.c | |
8553 | F: include/linux/platform_data/lp8727.h | |
8554 | ||
22f1229f KM |
8555 | TI LP8788 MFD DRIVER |
8556 | M: Milo Kim <[email protected]> | |
8557 | S: Maintained | |
8558 | F: drivers/iio/adc/lp8788_adc.c | |
8559 | F: drivers/leds/leds-lp8788.c | |
8560 | F: drivers/mfd/lp8788*.c | |
8561 | F: drivers/power/lp8788-charger.c | |
8562 | F: drivers/regulator/lp8788-*.c | |
8563 | F: include/linux/mfd/lp8788*.h | |
8564 | ||
dd5e8e6b | 8565 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8566 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8567 | L: [email protected] (moderated for non-subscribers) |
8568 | S: Maintained | |
8569 | F: sound/soc/codecs/twl4030* | |
8570 | ||
90921014 | 8571 | TI WILINK WIRELESS DRIVERS |
d6158a55 | 8572 | M: Luciano Coelho <[email protected]> |
90921014 LC |
8573 | L: [email protected] |
8574 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8575 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8577 | S: Maintained | |
8578 | F: drivers/net/wireless/ti/ | |
8579 | F: include/linux/wl12xx.h | |
8580 | ||
e86eaa3a | 8581 | TIPC NETWORK LAYER |
8b58be88 JP |
8582 | M: Jon Maloy <[email protected]> |
8583 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8584 | L: [email protected] (core kernel code) |
8585 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8586 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8587 | S: Maintained |
c117ab84 | 8588 | F: include/uapi/linux/tipc*.h |
679655da | 8589 | F: net/tipc/ |
e86eaa3a | 8590 | |
867e359b CM |
8591 | TILE ARCHITECTURE |
8592 | M: Chris Metcalf <[email protected]> | |
8593 | W: http://www.tilera.com/scm/ | |
8594 | S: Supported | |
8595 | F: arch/tile/ | |
6b940606 | 8596 | F: drivers/char/tile-srom.c |
5c770755 | 8597 | F: drivers/edac/tile_edac.c |
6b940606 CM |
8598 | F: drivers/net/ethernet/tile/ |
8599 | F: drivers/rtc/rtc-tile.c | |
8600 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 8601 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
8602 | F: drivers/usb/host/*-tilegx.c |
8603 | F: include/linux/usb/tilegx.h | |
867e359b | 8604 | |
1da177e4 | 8605 | TLAN NETWORK DRIVER |
8b58be88 | 8606 | M: Samuel Chessman <[email protected]> |
88c07dde | 8607 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8608 | W: http://sourceforge.net/projects/tlan/ |
8609 | S: Maintained | |
679655da | 8610 | F: Documentation/networking/tlan.txt |
b544dbac | 8611 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8612 | |
d74db3b2 | 8613 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8614 | M: Kentaro Takeda <[email protected]> |
8615 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8616 | L: [email protected] (subscribers-only, for developers in English) |
8617 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8618 | L: [email protected] (subscribers-only, for developers in Japanese) |
8619 | L: [email protected] (subscribers-only, for users in Japanese) | |
8620 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8621 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8622 | S: Maintained |
679655da | 8623 | F: security/tomoyo/ |
d74db3b2 | 8624 | |
9caeb532 | 8625 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8626 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8627 | L: [email protected] |
9caeb532 HRK |
8628 | S: Maintained |
8629 | F: drivers/platform/x86/topstar-laptop.c | |
8630 | ||
1da177e4 | 8631 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8632 | L: [email protected] |
15065531 | 8633 | S: Orphan |
679655da | 8634 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8635 | |
8636 | TOSHIBA SMM DRIVER | |
8b58be88 | 8637 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8638 | L: [email protected] |
8639 | W: http://www.buzzard.org.uk/toshiba/ | |
8640 | S: Maintained | |
679655da JP |
8641 | F: drivers/char/toshiba.c |
8642 | F: include/linux/toshiba.h | |
c117ab84 | 8643 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8644 | |
d719f900 | 8645 | TMIO MMC DRIVER |
d1057c40 | 8646 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 8647 | M: Ian Molton <[email protected]> |
d1057c40 | 8648 | L: [email protected] |
d719f900 | 8649 | S: Maintained |
d1057c40 GL |
8650 | F: drivers/mmc/host/tmio_mmc* |
8651 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8652 | F: include/linux/mmc/tmio.h | |
8653 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8654 | |
917cc4e6 GR |
8655 | TMP401 HARDWARE MONITOR DRIVER |
8656 | M: Guenter Roeck <[email protected]> | |
8657 | L: [email protected] | |
8658 | S: Maintained | |
8659 | F: Documentation/hwmon/tmp401 | |
8660 | F: drivers/hwmon/tmp401.c | |
8661 | ||
98f32602 | 8662 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8663 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8664 | L: [email protected] |
8665 | S: Maintained | |
8666 | F: include/linux/shmem_fs.h | |
8667 | F: mm/shmem.c | |
8668 | ||
45f95b53 | 8669 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8670 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8671 | L: [email protected] |
8672 | W: http://linuxtv.org | |
8673 | T: git git://linuxtv.org/media_tree.git | |
8674 | S: Odd fixes | |
8675 | F: drivers/media/usb/tm6000/ | |
8676 | ||
4e68852d | 8677 | TPM DEVICE DRIVER |
5b88e270 KY |
8678 | M: Leonidas Da Silva Barbosa <[email protected]> |
8679 | M: Ashley Lai <[email protected]> | |
901486b8 | 8680 | M: Peter Huewe <[email protected]> |
cbb2d5e4 | 8681 | M: Rajiv Andrade <[email protected]> |
4e68852d | 8682 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8683 | M: Marcel Selhorst <[email protected]> |
8684 | M: Sirrix AG <[email protected]> | |
7dcce133 | 8685 | W: http://www.sirrix.com |
63a10dfd | 8686 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8687 | S: Maintained |
679655da | 8688 | F: drivers/char/tpm/ |
4e68852d | 8689 | |
d6f005a1 JP |
8690 | TRACING |
8691 | M: Steven Rostedt <[email protected]> | |
8692 | M: Frederic Weisbecker <[email protected]> | |
8693 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8694 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8695 | S: Maintained |
8696 | F: Documentation/trace/ftrace.txt | |
8697 | F: arch/*/*/*/ftrace.h | |
8698 | F: arch/*/kernel/ftrace.c | |
8699 | F: include/*/ftrace.h | |
8700 | F: include/linux/trace*.h | |
8701 | F: include/trace/ | |
8702 | F: kernel/trace/ | |
8703 | ||
1da177e4 | 8704 | TRIVIAL PATCHES |
8b58be88 | 8705 | M: Jiri Kosina <[email protected]> |
54e5881d | 8706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8707 | S: Maintained |
86ef925f | 8708 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8709 | |
4e68852d | 8710 | TTY LAYER |
879a5a00 | 8711 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8712 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8713 | S: Supported |
08deed1e | 8714 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8715 | F: drivers/tty/ |
df621252 | 8716 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8717 | F: include/linux/serial_core.h |
8718 | F: include/linux/serial.h | |
8719 | F: include/linux/tty.h | |
c117ab84 CEB |
8720 | F: include/uapi/linux/serial_core.h |
8721 | F: include/uapi/linux/serial.h | |
8722 | F: include/uapi/linux/tty.h | |
4e68852d | 8723 | |
91952bc0 AP |
8724 | TUA9001 MEDIA DRIVER |
8725 | M: Antti Palosaari <[email protected]> | |
8726 | L: [email protected] | |
8727 | W: http://linuxtv.org/ | |
8728 | W: http://palosaari.fi/linux/ | |
8729 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8730 | T: git git://linuxtv.org/anttip/media_tree.git | |
8731 | S: Maintained | |
8732 | F: drivers/media/tuners/tua9001* | |
8733 | ||
740db6d7 | 8734 | TULIP NETWORK DRIVERS |
8b58be88 | 8735 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8736 | L: [email protected] |
8737 | S: Maintained | |
0f04e2aa | 8738 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8739 | |
8740 | TUN/TAP driver | |
ba57b6f2 | 8741 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8742 | W: http://vtun.sourceforge.net/tun |
8743 | S: Maintained | |
679655da JP |
8744 | F: Documentation/networking/tuntap.txt |
8745 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8746 | |
b454cc66 | 8747 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8748 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8749 | S: Maintained |
679655da JP |
8750 | F: drivers/tc/ |
8751 | F: include/linux/tc.h | |
b454cc66 | 8752 | |
1da177e4 | 8753 | U14-34F SCSI DRIVER |
8b58be88 | 8754 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8755 | L: [email protected] |
8756 | S: Maintained | |
679655da | 8757 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8758 | |
e2d1d6c0 | 8759 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8760 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8761 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8762 | L: [email protected] |
e2966cbe | 8763 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8764 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8765 | S: Maintained | |
679655da JP |
8766 | F: Documentation/filesystems/ubifs.txt |
8767 | F: fs/ubifs/ | |
e2d1d6c0 | 8768 | |
cc2020e6 | 8769 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8770 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8771 | W: http://www.uclinux.org/ |
8772 | L: [email protected] (subscribers-only) | |
8773 | S: Maintained | |
61bc02bb JP |
8774 | F: arch/m68k/*/*_no.* |
8775 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8776 | |
1da177e4 | 8777 | UDF FILESYSTEM |
8b58be88 | 8778 | M: Jan Kara <[email protected]> |
1da177e4 | 8779 | S: Maintained |
679655da JP |
8780 | F: Documentation/filesystems/udf.txt |
8781 | F: fs/udf/ | |
1da177e4 | 8782 | |
cc2020e6 | 8783 | UFS FILESYSTEM |
8b58be88 | 8784 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8785 | S: Maintained |
679655da JP |
8786 | F: Documentation/filesystems/ufs.txt |
8787 | F: fs/ufs/ | |
cc2020e6 | 8788 | |
0a09d3ab DR |
8789 | UHID USERSPACE HID IO DRIVER: |
8790 | M: David Herrmann <[email protected]> | |
8791 | L: [email protected] | |
8792 | S: Maintained | |
8793 | F: drivers/hid/uhid.c | |
c117ab84 | 8794 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8795 | |
18332a80 | 8796 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8797 | L: [email protected] |
10c6c9c9 | 8798 | S: Orphan |
355ffe69 | 8799 | F: drivers/uwb/ |
679655da JP |
8800 | F: include/linux/uwb.h |
8801 | F: include/linux/uwb/ | |
18332a80 | 8802 | |
b31d8273 G |
8803 | UNICORE32 ARCHITECTURE: |
8804 | M: Guan Xuetao <[email protected]> | |
8805 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8806 | S: Maintained | |
8807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8808 | F: arch/unicore32/ | |
8809 | ||
d8379ab1 TF |
8810 | UNIFDEF |
8811 | M: Tony Finch <[email protected]> | |
8812 | W: http://dotat.at/prog/unifdef | |
8813 | S: Maintained | |
8814 | F: scripts/unifdef.c | |
8815 | ||
1da177e4 | 8816 | UNIFORM CDROM DRIVER |
8b58be88 | 8817 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8818 | W: http://www.kernel.dk |
8819 | S: Maintained | |
679655da JP |
8820 | F: Documentation/cdrom/ |
8821 | F: drivers/cdrom/cdrom.c | |
8822 | F: include/linux/cdrom.h | |
c117ab84 | 8823 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8824 | |
9941fa6e VH |
8825 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8826 | M: Vinayak Holikatti <[email protected]> | |
8827 | M: Santosh Y <[email protected]> | |
8828 | L: [email protected] | |
8829 | S: Supported | |
8830 | F: Documentation/scsi/ufs.txt | |
8831 | F: drivers/scsi/ufs/ | |
8832 | ||
e2d1d6c0 | 8833 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8834 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
8835 | W: http://www.linux-mtd.infradead.org/ |
8836 | L: [email protected] | |
e2966cbe | 8837 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8838 | S: Maintained |
80811493 | 8839 | F: drivers/mtd/ubi/ |
679655da | 8840 | F: include/linux/mtd/ubi.h |
c117ab84 | 8841 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8842 | |
76ac66e4 RW |
8843 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8844 | M: Richard Weinberger <[email protected]> | |
8845 | L: [email protected] | |
8846 | S: Maintained | |
8847 | F: drivers/mtd/ubi/fastmap.c | |
8848 | ||
1da177e4 | 8849 | USB ACM DRIVER |
61eee9a7 | 8850 | M: Oliver Neukum <[email protected]> |
6372594a | 8851 | L: [email protected] |
1da177e4 | 8852 | S: Maintained |
679655da JP |
8853 | F: Documentation/usb/acm.txt |
8854 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8855 | |
b7d572e1 PF |
8856 | USB AR5523 WIRELESS DRIVER |
8857 | M: Pontus Fuchs <[email protected]> | |
8858 | L: [email protected] | |
8859 | S: Maintained | |
8860 | F: drivers/net/wireless/ath/ar5523/ | |
8861 | ||
115bb1ff MW |
8862 | USB ATTACHED SCSI |
8863 | M: Matthew Wilcox <[email protected]> | |
8864 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 8865 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
8866 | L: [email protected] |
8867 | L: [email protected] | |
8eae0fb7 | 8868 | S: Maintained |
115bb1ff MW |
8869 | F: drivers/usb/storage/uas.c |
8870 | ||
1da177e4 | 8871 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8872 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8873 | L: [email protected] |
1da177e4 | 8874 | S: Maintained |
679655da | 8875 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8876 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8877 | |
b02b371e | 8878 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8879 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
8880 | L: [email protected] |
8881 | S: Maintained | |
679655da | 8882 | F: drivers/usb/c67x00/ |
b02b371e | 8883 | |
d0374f4f | 8884 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8885 | M: Peter Korsgaard <[email protected]> |
043600a6 | 8886 | L: [email protected] |
d0374f4f PK |
8887 | W: http://www.linux-usb.org/usbnet |
8888 | S: Maintained | |
679655da | 8889 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8890 | |
cc2020e6 | 8891 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8892 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
8893 | L: [email protected] |
8894 | W: http://rio500.sourceforge.net | |
8895 | S: Maintained | |
679655da | 8896 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8897 | |
1da177e4 | 8898 | USB EHCI DRIVER |
578333ab | 8899 | M: Alan Stern <[email protected]> |
795fb7e7 | 8900 | L: [email protected] |
578333ab | 8901 | S: Maintained |
679655da JP |
8902 | F: Documentation/usb/ehci.txt |
8903 | F: drivers/usb/host/ehci* | |
1da177e4 | 8904 | |
69ae9e3e | 8905 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8906 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 8907 | L: [email protected] |
69ae9e3e | 8908 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8909 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8910 | S: Maintained | |
679655da JP |
8911 | F: drivers/usb/gadget/ |
8912 | F: include/linux/usb/gadget* | |
69ae9e3e | 8913 | |
2dea64b4 | 8914 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8915 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 8916 | L: [email protected] |
54e5881d | 8917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8918 | S: Maintained |
c2f01971 | 8919 | F: Documentation/hid/hiddev.txt |
679655da | 8920 | F: drivers/hid/usbhid/ |
1da177e4 | 8921 | |
857aab34 | 8922 | USB/IP DRIVERS |
857aab34 | 8923 | L: [email protected] |
3ff4afe8 | 8924 | S: Orphan |
857aab34 | 8925 | F: drivers/staging/usbip/ |
8926 | ||
959eea21 | 8927 | USB ISP116X DRIVER |
8b58be88 | 8928 | M: Olav Kongas <[email protected]> |
795fb7e7 | 8929 | L: [email protected] |
959eea21 | 8930 | S: Maintained |
679655da JP |
8931 | F: drivers/usb/host/isp116x* |
8932 | F: include/linux/usb/isp116x.h | |
959eea21 | 8933 | |
1da177e4 | 8934 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8935 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8936 | L: [email protected] |
1da177e4 | 8937 | S: Maintained |
679655da | 8938 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8939 | |
8940 | USB MASS STORAGE DRIVER | |
8b58be88 | 8941 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 8942 | L: [email protected] |
8836aeb8 | 8943 | L: [email protected] |
1da177e4 LT |
8944 | S: Maintained |
8945 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8946 | F: drivers/usb/storage/ |
1da177e4 | 8947 | |
af39917d CL |
8948 | USB MIDI DRIVER |
8949 | M: Clemens Ladisch <[email protected]> | |
8950 | L: [email protected] (moderated for non-subscribers) | |
8951 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8952 | S: Maintained | |
8953 | F: sound/usb/midi.* | |
8954 | ||
444ce9d4 JP |
8955 | USB NETWORKING DRIVERS |
8956 | L: [email protected] | |
8957 | S: Odd Fixes | |
8958 | F: drivers/net/usb/ | |
8959 | ||
1da177e4 | 8960 | USB OHCI DRIVER |
578333ab | 8961 | M: Alan Stern <[email protected]> |
795fb7e7 | 8962 | L: [email protected] |
578333ab | 8963 | S: Maintained |
679655da JP |
8964 | F: Documentation/usb/ohci.txt |
8965 | F: drivers/usb/host/ohci* | |
1da177e4 | 8966 | |
ba460e48 | 8967 | USB OPTION-CARD DRIVER |
8b58be88 | 8968 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 8969 | L: [email protected] |
ba460e48 | 8970 | S: Maintained |
679655da | 8971 | F: drivers/usb/serial/option.c |
ba460e48 | 8972 | |
1da177e4 | 8973 | USB PEGASUS DRIVER |
a16b945c | 8974 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8975 | L: [email protected] |
043600a6 | 8976 | L: [email protected] |
052e3128 PM |
8977 | T: git git://github.com/petkan/pegasus.git |
8978 | W: https://github.com/petkan/pegasus | |
1da177e4 | 8979 | S: Maintained |
679655da | 8980 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8981 | |
d3ad558f FB |
8982 | USB PHY LAYER |
8983 | M: Felipe Balbi <[email protected]> | |
8984 | L: [email protected] | |
8985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8986 | S: Maintained | |
8987 | F: drivers/usb/phy/ | |
d3ad558f | 8988 | |
73e4fb3f | 8989 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8990 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 8991 | L: [email protected] |
73e4fb3f | 8992 | S: Supported |
679655da | 8993 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8994 | |
8995 | USB RTL8150 DRIVER | |
a16b945c | 8996 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8997 | L: [email protected] |
043600a6 | 8998 | L: [email protected] |
052e3128 PM |
8999 | T: git git://github.com/petkan/rtl8150.git |
9000 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9001 | S: Maintained |
679655da | 9002 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9003 | |
f896b796 GK |
9004 | USB SERIAL SUBSYSTEM |
9005 | M: Johan Hovold <[email protected]> | |
795fb7e7 | 9006 | L: [email protected] |
4e68852d | 9007 | S: Maintained |
679655da | 9008 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9009 | F: drivers/usb/serial/ |
679655da | 9010 | F: include/linux/usb/serial.h |
1da177e4 | 9011 | |
b3f0db1c SG |
9012 | USB SMSC75XX ETHERNET DRIVER |
9013 | M: Steve Glendinning <[email protected]> | |
9014 | L: [email protected] | |
9015 | S: Maintained | |
9016 | F: drivers/net/usb/smsc75xx.* | |
9017 | ||
2f7ca802 | 9018 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9019 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 9020 | L: [email protected] |
90b24cfb | 9021 | S: Maintained |
679655da | 9022 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9023 | |
f423b9a8 | 9024 | USB SN9C1xx DRIVER |
8b58be88 | 9025 | M: Luca Risolia <[email protected]> |
795fb7e7 | 9026 | L: [email protected] |
661263b5 | 9027 | L: [email protected] |
275ffde4 | 9028 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
9029 | W: http://www.linux-projects.org |
9030 | S: Maintained | |
679655da | 9031 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 9032 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
9033 | |
9034 | USB SUBSYSTEM | |
879a5a00 | 9035 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 9036 | L: [email protected] |
1da177e4 | 9037 | W: http://www.linux-usb.org |
08deed1e | 9038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9039 | S: Supported |
679655da | 9040 | F: Documentation/usb/ |
679655da JP |
9041 | F: drivers/usb/ |
9042 | F: include/linux/usb.h | |
9043 | F: include/linux/usb/ | |
1da177e4 LT |
9044 | |
9045 | USB UHCI DRIVER | |
8b58be88 | 9046 | M: Alan Stern <[email protected]> |
795fb7e7 | 9047 | L: [email protected] |
1da177e4 | 9048 | S: Maintained |
679655da | 9049 | F: drivers/usb/host/uhci* |
1da177e4 | 9050 | |
69ae9e3e | 9051 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9052 | M: Oliver Neukum <[email protected]> |
043600a6 | 9053 | L: [email protected] |
69ae9e3e | 9054 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9055 | S: Maintained |
679655da JP |
9056 | F: drivers/net/usb/usbnet.c |
9057 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9058 | |
c0efd232 | 9059 | USB VIDEO CLASS |
c53ac071 | 9060 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 9061 | L: [email protected] (subscribers-only) |
661263b5 | 9062 | L: [email protected] |
275ffde4 | 9063 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9064 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9065 | S: Maintained |
0c0d06ca | 9066 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9067 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9068 | |
b60b9c45 HV |
9069 | USB VISION DRIVER |
9070 | M: Hans Verkuil <[email protected]> | |
9071 | L: [email protected] | |
9072 | T: git git://linuxtv.org/media_tree.git | |
9073 | W: http://linuxtv.org | |
9074 | S: Odd Fixes | |
9075 | F: drivers/media/usb/usbvision/ | |
9076 | ||
8282da47 LP |
9077 | USB WEBCAM GADGET |
9078 | M: Laurent Pinchart <[email protected]> | |
9079 | L: [email protected] | |
9080 | S: Maintained | |
9081 | F: drivers/usb/gadget/*uvc*.c | |
9082 | F: drivers/usb/gadget/webcam.c | |
9083 | ||
bf164cc0 | 9084 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9085 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
9086 | L: [email protected] |
9087 | S: Maintained | |
679655da | 9088 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9089 | |
eb6bab13 | 9090 | USB XHCI DRIVER |
36d0344c | 9091 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
9092 | L: [email protected] |
9093 | S: Supported | |
36d0344c SS |
9094 | F: drivers/usb/host/xhci* |
9095 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9096 | |
1da177e4 | 9097 | USB ZD1201 DRIVER |
4086b9ca | 9098 | L: [email protected] |
1da177e4 | 9099 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9100 | S: Orphan |
679655da | 9101 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9102 | |
b7eee616 | 9103 | USB ZR364XX DRIVER |
8b58be88 | 9104 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 9105 | L: [email protected] |
661263b5 | 9106 | L: [email protected] |
275ffde4 | 9107 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9108 | W: http://royale.zerezo.com/zr364xx/ |
9109 | S: Maintained | |
679655da | 9110 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9111 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9112 | |
e7839f25 | 9113 | USER-MODE LINUX (UML) |
8b58be88 | 9114 | M: Jeff Dike <[email protected]> |
b15194b7 | 9115 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
9116 | L: [email protected] |
9117 | L: [email protected] | |
9118 | W: http://user-mode-linux.sourceforge.net | |
9119 | S: Maintained | |
61516587 | 9120 | F: Documentation/virtual/uml/ |
679655da | 9121 | F: arch/um/ |
b070989a | 9122 | F: arch/x86/um/ |
679655da JP |
9123 | F: fs/hostfs/ |
9124 | F: fs/hppfs/ | |
b7eee616 | 9125 | |
e5f114e9 | 9126 | USERSPACE I/O (UIO) |
6a534c9d | 9127 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 9128 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 9129 | S: Maintained |
679655da JP |
9130 | F: Documentation/DocBook/uio-howto.tmpl |
9131 | F: drivers/uio/ | |
9132 | F: include/linux/uio*.h | |
e5f114e9 | 9133 | |
256cccbe | 9134 | UTIL-LINUX PACKAGE |
8b58be88 | 9135 | M: Karel Zak <[email protected]> |
256cccbe KZ |
9136 | L: [email protected] |
9137 | W: http://en.wikipedia.org/wiki/Util-linux | |
9138 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9139 | S: Maintained |
9140 | ||
c1fd1c07 | 9141 | UVESAFB DRIVER |
8b58be88 | 9142 | M: Michal Januszewski <[email protected]> |
c69f677c | 9143 | L: [email protected] |
c1fd1c07 MJ |
9144 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9145 | S: Maintained | |
679655da JP |
9146 | F: Documentation/fb/uvesafb.txt |
9147 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9148 | |
4480f15b | 9149 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9150 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 9151 | S: Maintained |
679655da JP |
9152 | F: Documentation/filesystems/vfat.txt |
9153 | F: fs/fat/ | |
1da177e4 | 9154 | |
cba3345c AW |
9155 | VFIO DRIVER |
9156 | M: Alex Williamson <[email protected]> | |
9157 | L: [email protected] | |
9158 | S: Maintained | |
9159 | F: Documentation/vfio.txt | |
9160 | F: drivers/vfio/ | |
9161 | F: include/linux/vfio.h | |
c117ab84 | 9162 | F: include/uapi/linux/vfio.h |
cba3345c | 9163 | |
9e6f3438 PO |
9164 | VIDEOBUF2 FRAMEWORK |
9165 | M: Pawel Osciak <[email protected]> | |
9166 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 9167 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
9168 | L: [email protected] |
9169 | S: Maintained | |
90d72ac6 | 9170 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9171 | F: include/media/videobuf2-* |
9172 | ||
9a82446b AS |
9173 | VIRTIO CONSOLE DRIVER |
9174 | M: Amit Shah <[email protected]> | |
9175 | L: [email protected] | |
9176 | S: Maintained | |
9177 | F: drivers/char/virtio_console.c | |
9178 | F: include/linux/virtio_console.h | |
c117ab84 | 9179 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9180 | |
2426ec8f MT |
9181 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9182 | M: Rusty Russell <[email protected]> | |
9183 | M: "Michael S. Tsirkin" <[email protected]> | |
9184 | L: [email protected] | |
9185 | S: Maintained | |
9186 | F: drivers/virtio/ | |
c893c8d7 | 9187 | F: tools/virtio/ |
2426ec8f MT |
9188 | F: drivers/net/virtio_net.c |
9189 | F: drivers/block/virtio_blk.c | |
9190 | F: include/linux/virtio_*.h | |
916cdabc | 9191 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9192 | |
3a4d5c94 MT |
9193 | VIRTIO HOST (VHOST) |
9194 | M: "Michael S. Tsirkin" <[email protected]> | |
9195 | L: [email protected] | |
c996d8b9 | 9196 | L: [email protected] |
3a4d5c94 MT |
9197 | L: [email protected] |
9198 | S: Maintained | |
9199 | F: drivers/vhost/ | |
c117ab84 | 9200 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9201 | |
1da177e4 | 9202 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9203 | M: Roger Luethi <[email protected]> |
1da177e4 | 9204 | S: Maintained |
f2148a47 | 9205 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9206 | |
f0bf7f61 | 9207 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9208 | M: Bruce Chang <[email protected]> |
8b58be88 | 9209 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
9210 | S: Maintained |
9211 | F: drivers/mmc/host/via-sdmmc.c | |
9212 | ||
69e4a7c2 | 9213 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9214 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 9215 | L: [email protected] |
69e4a7c2 | 9216 | S: Maintained |
c7babebd FTS |
9217 | F: include/linux/via-core.h |
9218 | F: include/linux/via-gpio.h | |
9219 | F: include/linux/via_i2c.h | |
679655da | 9220 | F: drivers/video/via/ |
69e4a7c2 | 9221 | |
01f20734 | 9222 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9223 | M: Francois Romieu <[email protected]> |
01f20734 FR |
9224 | L: [email protected] |
9225 | S: Maintained | |
f2148a47 | 9226 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9227 | |
0b7bc1fa HV |
9228 | VIVI VIRTUAL VIDEO DRIVER |
9229 | M: Hans Verkuil <[email protected]> | |
9230 | L: [email protected] | |
9231 | T: git git://linuxtv.org/media_tree.git | |
9232 | W: http://linuxtv.org | |
9233 | S: Maintained | |
9234 | F: drivers/media/platform/vivi* | |
9235 | ||
be7f8273 | 9236 | VLAN (802.1Q) |
8b58be88 | 9237 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9238 | L: [email protected] |
9239 | S: Maintained | |
679655da JP |
9240 | F: drivers/net/macvlan.c |
9241 | F: include/linux/if_*vlan.h | |
9242 | F: net/8021q/ | |
be7f8273 | 9243 | |
55e331cf | 9244 | VLYNQ BUS |
8b58be88 | 9245 | M: Florian Fainelli <[email protected]> |
8578d7af | 9246 | L: [email protected] (subscribers-only) |
55e331cf FF |
9247 | S: Maintained |
9248 | F: drivers/vlynq/vlynq.c | |
9249 | F: include/linux/vlynq.h | |
9250 | ||
390beae4 MW |
9251 | VME SUBSYSTEM |
9252 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9253 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9254 | M: Greg Kroah-Hartman <[email protected]> |
9255 | L: [email protected] | |
9256 | S: Maintained | |
9257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9258 | F: Documentation/vme_api.txt | |
9259 | F: drivers/staging/vme/ | |
9260 | F: drivers/vme/ | |
9261 | F: include/linux/vme* | |
9262 | ||
4488e09b AK |
9263 | VMWARE HYPERVISOR INTERFACE |
9264 | M: Alok Kataria <[email protected]> | |
9265 | L: [email protected] | |
9266 | S: Supported | |
9267 | F: arch/x86/kernel/cpu/vmware.c | |
9268 | ||
d1a890fa | 9269 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9270 | M: Shreyas Bhatewara <[email protected]> |
9271 | M: "VMware, Inc." <[email protected]> | |
9272 | L: [email protected] | |
9273 | S: Maintained | |
9274 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9275 | |
851b1642 | 9276 | VMware PVSCSI driver |
f2d7e40e | 9277 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9278 | M: VMware PV-Drivers <[email protected]> |
9279 | L: [email protected] | |
9280 | S: Maintained | |
9281 | F: drivers/scsi/vmw_pvscsi.c | |
9282 | F: drivers/scsi/vmw_pvscsi.h | |
9283 | ||
e53e86c7 | 9284 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9285 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9286 | M: Mark Brown <[email protected]> |
e53e86c7 | 9287 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9288 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9290 | S: Supported |
679655da JP |
9291 | F: drivers/regulator/ |
9292 | F: include/linux/regulator/ | |
e53e86c7 | 9293 | |
ab41319e | 9294 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9295 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9296 | L: [email protected] |
9297 | S: Maintained | |
679655da JP |
9298 | F: Documentation/hwmon/vt1211 |
9299 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9300 | |
1de9e371 | 9301 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9302 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9303 | L: [email protected] |
9304 | S: Maintained | |
679655da | 9305 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9306 | |
88095e7b TO |
9307 | VUB300 USB to SDIO/SD/MMC bridge chip |
9308 | M: Tony Olech <[email protected]> | |
9309 | L: [email protected] | |
9310 | L: [email protected] | |
9311 | S: Supported | |
9312 | F: drivers/mmc/host/vub300.c | |
9313 | ||
1da177e4 | 9314 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9315 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9316 | S: Maintained |
679655da JP |
9317 | F: Documentation/w1/ |
9318 | F: drivers/w1/ | |
1da177e4 | 9319 | |
13927079 | 9320 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9321 | M: Marc Hulsman <[email protected]> |
13927079 | 9322 | L: [email protected] |
25845c22 | 9323 | S: Maintained |
679655da JP |
9324 | F: Documentation/hwmon/w83791d |
9325 | F: drivers/hwmon/w83791d.c | |
13927079 | 9326 | |
61db011d | 9327 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9328 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9329 | L: [email protected] |
9330 | S: Maintained | |
679655da JP |
9331 | F: Documentation/hwmon/w83793 |
9332 | F: drivers/hwmon/w83793.c | |
61db011d | 9333 | |
e3760b43 JD |
9334 | W83795 HARDWARE MONITORING DRIVER |
9335 | M: Jean Delvare <[email protected]> | |
9336 | L: [email protected] | |
9337 | S: Maintained | |
9338 | F: drivers/hwmon/w83795.c | |
9339 | ||
1da177e4 | 9340 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9341 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9342 | S: Maintained |
679655da | 9343 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9344 | |
3527761c | 9345 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9346 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9347 | L: [email protected] |
9348 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9349 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9350 | S: Maintained |
679655da JP |
9351 | F: Documentation/watchdog/ |
9352 | F: drivers/watchdog/ | |
9353 | F: include/linux/watchdog.h | |
c117ab84 | 9354 | F: include/uapi/linux/watchdog.h |
3527761c | 9355 | |
1da177e4 | 9356 | WD7000 SCSI DRIVER |
8b58be88 | 9357 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9358 | L: [email protected] |
9359 | S: Maintained | |
679655da | 9360 | F: drivers/scsi/wd7000.c |
1da177e4 | 9361 | |
b22e00f3 DR |
9362 | WIIMOTE HID DRIVER |
9363 | M: David Herrmann <[email protected]> | |
9364 | L: [email protected] | |
9365 | S: Maintained | |
9366 | F: drivers/hid/hid-wiimote* | |
9367 | ||
e258b80e | 9368 | WINBOND CIR DRIVER |
364e9e18 | 9369 | M: David Härdeman <[email protected]> |
e258b80e | 9370 | S: Maintained |
116ab806 | 9371 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9372 | |
8a70da82 | 9373 | WIMAX STACK |
8b58be88 | 9374 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9375 | M: [email protected] |
9376 | L: [email protected] | |
9377 | S: Supported | |
9378 | W: http://linuxwimax.org | |
315987dc | 9379 | F: Documentation/wimax/README.wimax |
315987dc JP |
9380 | F: include/linux/wimax/debug.h |
9381 | F: include/net/wimax.h | |
c117ab84 | 9382 | F: include/uapi/linux/wimax.h |
315987dc | 9383 | F: net/wimax/ |
8a70da82 | 9384 | |
5fc14680 | 9385 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9386 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9387 | S: Maintained |
679655da | 9388 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9389 | |
1da177e4 | 9390 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9391 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9392 | L: [email protected] |
926554c4 | 9393 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9394 | S: Maintained |
679655da | 9395 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9396 | |
febf1dff | 9397 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9398 | M: Mark Brown <[email protected]> |
8b58be88 | 9399 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9400 | L: [email protected] |
9401 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9402 | W: http://opensource.wolfsonmicro.com/node/7 | |
9403 | S: Supported | |
679655da JP |
9404 | F: drivers/input/touchscreen/*wm97* |
9405 | F: include/linux/wm97xx.h | |
febf1dff | 9406 | |
055bcbcb | 9407 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9408 | L: [email protected] |
cf8eda3e | 9409 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9410 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9411 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9412 | S: Supported |
3768f0b1 | 9413 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9414 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9415 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9416 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9417 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9418 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9419 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9420 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9421 | F: drivers/input/misc/wm831x-on.c |
9422 | F: drivers/input/touchscreen/wm831x-ts.c | |
9423 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9424 | F: drivers/mfd/arizona* |
9425 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9426 | F: drivers/power/wm83*.c |
9427 | F: drivers/rtc/rtc-wm83*.c | |
9428 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9429 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9430 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9431 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9432 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9433 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9434 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9435 | F: include/linux/wm97xx.h |
055bcbcb | 9436 | F: include/sound/wm????.h |
9c309598 | 9437 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9438 | F: sound/soc/codecs/wm* |
b75ea16a | 9439 | |
3e6cd7a4 TH |
9440 | WORKQUEUE |
9441 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9442 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9443 | S: Maintained | |
9444 | F: include/linux/workqueue.h | |
9445 | F: kernel/workqueue.c | |
9446 | F: Documentation/workqueue.txt | |
9447 | ||
1da177e4 | 9448 | X.25 NETWORK LAYER |
8bf28059 | 9449 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9450 | L: [email protected] |
8bf28059 | 9451 | S: Odd Fixes |
679655da JP |
9452 | F: Documentation/networking/x25* |
9453 | F: include/net/x25* | |
9454 | F: net/x25/ | |
1da177e4 | 9455 | |
e2d1d6c0 | 9456 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9457 | M: Thomas Gleixner <[email protected]> |
9458 | M: Ingo Molnar <[email protected]> | |
9459 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9460 | M: [email protected] |
75fc2d37 | 9461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9462 | S: Maintained |
679655da JP |
9463 | F: Documentation/x86/ |
9464 | F: arch/x86/ | |
e2d1d6c0 | 9465 | |
d0944853 | 9466 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9467 | M: Matthew Garrett <[email protected]> |
d0944853 | 9468 | L: [email protected] |
28b8e8d4 | 9469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9470 | S: Maintained |
14430813 | 9471 | F: drivers/platform/x86/ |
d0944853 | 9472 | |
c1f5c54b IM |
9473 | X86 MCE INFRASTRUCTURE |
9474 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9475 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9476 | L: [email protected] |
9477 | S: Maintained | |
9478 | F: arch/x86/kernel/cpu/mcheck/* | |
9479 | ||
d6fad502 | 9480 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9481 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9482 | L: [email protected] |
9483 | W: http://linuxtv.org | |
9484 | T: git git://linuxtv.org/media_tree.git | |
9485 | S: Maintained | |
9486 | F: drivers/media/tuners/tuner-xc2028.* | |
9487 | ||
c4468085 | 9488 | XEN HYPERVISOR INTERFACE |
c4468085 | 9489 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
9490 | M: Boris Ostrovsky <[email protected]> |
9491 | M: David Vrabel <[email protected]> | |
11dbb52b | 9492 | L: [email protected] (moderated for non-subscribers) |
c4468085 IC |
9493 | S: Supported |
9494 | F: arch/x86/xen/ | |
9495 | F: drivers/*/xen-*front.c | |
9496 | F: drivers/xen/ | |
9497 | F: arch/x86/include/asm/xen/ | |
9498 | F: include/xen/ | |
c117ab84 | 9499 | F: include/uapi/xen/ |
c4468085 | 9500 | |
77bfb479 SS |
9501 | XEN HYPERVISOR ARM |
9502 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9503 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
9504 | S: Supported |
9505 | F: arch/arm/xen/ | |
9506 | F: arch/arm/include/asm/xen/ | |
9507 | ||
b475e83f SS |
9508 | XEN HYPERVISOR ARM64 |
9509 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9510 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
9511 | S: Supported |
9512 | F: arch/arm64/xen/ | |
9513 | F: arch/arm64/include/asm/xen/ | |
9514 | ||
9b57e1a7 IC |
9515 | XEN NETWORK BACKEND DRIVER |
9516 | M: Ian Campbell <[email protected]> | |
8386040b | 9517 | M: Wei Liu <[email protected]> |
11dbb52b | 9518 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
9519 | L: [email protected] |
9520 | S: Supported | |
9521 | F: drivers/net/xen-netback/* | |
9522 | ||
c5f8e29d KRW |
9523 | XEN PCI SUBSYSTEM |
9524 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9525 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9526 | S: Supported |
9527 | F: arch/x86/pci/*xen* | |
9528 | F: drivers/pci/*xen* | |
9529 | ||
9530 | XEN SWIOTLB SUBSYSTEM | |
9531 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9532 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9533 | S: Supported |
9534 | F: arch/x86/xen/*swiotlb* | |
9535 | F: drivers/xen/*swiotlb* | |
9536 | ||
1da177e4 LT |
9537 | XFS FILESYSTEM |
9538 | P: Silicon Graphics Inc | |
ec715cac | 9539 | M: Dave Chinner <[email protected]> |
c8891329 | 9540 | M: Ben Myers <[email protected]> |
18caa67a | 9541 | M: [email protected] |
d7ede1aa | 9542 | L: [email protected] |
1da177e4 | 9543 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9544 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9545 | S: Supported |
679655da JP |
9546 | F: Documentation/filesystems/xfs.txt |
9547 | F: fs/xfs/ | |
1da177e4 | 9548 | |
8a3b7a25 | 9549 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9550 | M: Anirudha Sarangi <[email protected]> |
9551 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9552 | S: Maintained |
9553 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9554 | ||
c9d3d8ec | 9555 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9556 | S: Orphan |
679655da | 9557 | F: drivers/block/xsysace.c |
c9d3d8ec | 9558 | |
238b8721 | 9559 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9560 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9561 | L: [email protected] |
9562 | S: Maintained | |
df621252 | 9563 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9564 | |
1da177e4 | 9565 | YAM DRIVER FOR AX.25 |
8b58be88 | 9566 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9567 | L: [email protected] |
9568 | S: Maintained | |
679655da JP |
9569 | F: drivers/net/hamradio/yam* |
9570 | F: include/linux/yam.h | |
1da177e4 | 9571 | |
af64a5eb | 9572 | YEALINK PHONE DRIVER |
8b58be88 | 9573 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9574 | L: [email protected] |
9575 | S: Maintained | |
679655da JP |
9576 | F: Documentation/input/yealink.txt |
9577 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9578 | |
1da177e4 | 9579 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9580 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9581 | W: http://yaina.de/jreuter/ |
9582 | W: http://www.qsl.net/dl1bke/ | |
9583 | L: [email protected] | |
9584 | S: Maintained | |
679655da JP |
9585 | F: Documentation/networking/z8530drv.txt |
9586 | F: drivers/net/hamradio/*scc.c | |
9587 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9588 | |
0cf31ec1 SJ |
9589 | ZBUD COMPRESSED PAGE ALLOCATOR |
9590 | M: Seth Jennings <[email protected]> | |
9591 | L: [email protected] | |
9592 | S: Maintained | |
9593 | F: mm/zbud.c | |
9594 | F: include/linux/zbud.h | |
9595 | ||
7c0c3afb | 9596 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9597 | M: Daniel Drake <[email protected]> |
9598 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9599 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9600 | L: [email protected] |
7c0c3afb DD |
9601 | L: [email protected] (subscribers-only) |
9602 | S: Maintained | |
679655da | 9603 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9604 | |
1da177e4 | 9605 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9606 | L: [email protected] |
f63145e2 | 9607 | L: [email protected] |
1da177e4 | 9608 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9609 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9610 | S: Odd Fixes | |
90d72ac6 | 9611 | F: drivers/media/pci/zoran/ |
1da177e4 | 9612 | |
8b4a4080 | 9613 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9614 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9615 | S: Maintained |
df621252 | 9616 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9617 | |
0cf31ec1 SJ |
9618 | ZSWAP COMPRESSED SWAP CACHING |
9619 | M: Seth Jennings <[email protected]> | |
9620 | L: [email protected] | |
9621 | S: Maintained | |
9622 | F: mm/zswap.c | |
9623 | ||
1da177e4 | 9624 | THE REST |
8b58be88 | 9625 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9626 | L: [email protected] |
8a6e2535 | 9627 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9629 | S: Buried alive in reporters |
34d03cc1 JP |
9630 | F: * |
9631 | F: */ |