]>
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]> |
ea26d0cf | 240 | M: Rafael J. Wysocki <[email protected]> |
6968e50c | 241 | L: [email protected] |
38e09d83 | 242 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 243 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
aaef292a | 244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux |
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 | |
8b59a454 | 256 | ACPI FAN DRIVER |
8b58be88 | 257 | M: Zhang Rui <[email protected]> |
8b59a454 | 258 | L: [email protected] |
0638bc8d | 259 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 260 | S: Supported |
679655da | 261 | F: drivers/acpi/fan.c |
1da177e4 | 262 | |
8b59a454 | 263 | ACPI THERMAL DRIVER |
8b58be88 | 264 | M: Zhang Rui <[email protected]> |
8b59a454 | 265 | L: [email protected] |
0638bc8d | 266 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 267 | S: Supported |
679655da | 268 | F: drivers/acpi/*thermal* |
998be20f | 269 | |
359acec8 | 270 | ACPI VIDEO DRIVER |
8b58be88 | 271 | M: Zhang Rui <[email protected]> |
8b59a454 | 272 | L: [email protected] |
0638bc8d | 273 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 274 | S: Supported |
679655da | 275 | F: drivers/acpi/video.c |
998be20f | 276 | |
bff431e4 | 277 | ACPI WMI DRIVER |
d0944853 | 278 | L: [email protected] |
5b927259 | 279 | S: Orphan |
679655da | 280 | F: drivers/platform/x86/wmi.c |
bff431e4 | 281 | |
2f39d519 | 282 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 283 | M: Thibaut Varene <[email protected]> |
795fb7e7 JD |
284 | W: http://wiki.parisc-linux.org/AD1889 |
285 | L: [email protected] | |
286 | S: Maintained | |
679655da | 287 | F: sound/pci/ad1889.* |
2f39d519 | 288 | |
527a1a83 MH |
289 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
290 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 291 | L: [email protected] |
a3f531ac | 292 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
293 | S: Supported |
294 | F: drivers/misc/ad525x_dpot.c | |
295 | ||
296 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
297 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 298 | L: [email protected] |
a3f531ac | 299 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
300 | S: Supported |
301 | F: drivers/regulator/ad5398.c | |
302 | ||
303 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
304 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 305 | L: [email protected] |
a3f531ac | 306 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
307 | S: Supported |
308 | F: drivers/input/misc/ad714x.c | |
309 | ||
310 | AD7877 TOUCHSCREEN DRIVER | |
311 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 312 | L: [email protected] |
a3f531ac | 313 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/input/touchscreen/ad7877.c | |
316 | ||
317 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
318 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 319 | L: [email protected] |
a3f531ac | 320 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
321 | S: Supported |
322 | F: drivers/input/touchscreen/ad7879.c | |
323 | ||
1330b0dc JK |
324 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
325 | M: Jiri Kosina <[email protected]> | |
326 | S: Maintained | |
327 | ||
1da177e4 | 328 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 329 | M: Jean Delvare <[email protected]> |
cc0b07ed | 330 | L: [email protected] |
1da177e4 | 331 | S: Maintained |
679655da JP |
332 | F: Documentation/hwmon/adm1025 |
333 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 334 | |
cae2caae | 335 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 336 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
337 | L: [email protected] |
338 | S: Maintained | |
679655da | 339 | F: drivers/hwmon/adm1029.c |
cae2caae | 340 | |
cc0b88cf | 341 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 342 | L: [email protected] |
491b26b4 | 343 | W: http://wireless.kernel.org/ |
e71bcbd0 | 344 | S: Orphan |
679655da | 345 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 346 | |
e8e31622 SA |
347 | ADP1653 FLASH CONTROLLER DRIVER |
348 | M: Sakari Ailus <[email protected]> | |
349 | L: [email protected] | |
350 | S: Maintained | |
351 | F: drivers/media/i2c/adp1653.c | |
352 | F: include/media/adp1653.h | |
353 | ||
527a1a83 MH |
354 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
355 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 356 | L: [email protected] |
a3f531ac | 357 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
358 | S: Supported |
359 | F: drivers/mfd/adp5520.c | |
360 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 361 | F: drivers/leds/leds-adp5520.c |
77278d50 | 362 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
363 | F: drivers/input/keyboard/adp5520-keys.c |
364 | ||
365 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
366 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 367 | L: [email protected] |
a3f531ac | 368 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
369 | S: Supported |
370 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 371 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
372 | |
373 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
374 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 375 | L: [email protected] |
a3f531ac | 376 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
377 | S: Supported |
378 | F: drivers/video/backlight/adp8860_bl.c | |
379 | ||
8c22a8f5 DE |
380 | ADS1015 HARDWARE MONITOR DRIVER |
381 | M: Dirk Eibach <[email protected]> | |
382 | L: [email protected] | |
383 | S: Maintained | |
384 | F: Documentation/hwmon/ads1015 | |
385 | F: drivers/hwmon/ads1015.c | |
386 | F: include/linux/i2c/ads1015.h | |
387 | ||
1da177e4 | 388 | ADT746X FAN DRIVER |
8b58be88 | 389 | M: Colin Leroy <[email protected]> |
1da177e4 | 390 | S: Maintained |
679655da | 391 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 392 | |
b058b859 JD |
393 | ADT7475 HARDWARE MONITOR DRIVER |
394 | M: Jean Delvare <[email protected]> | |
395 | L: [email protected] | |
396 | S: Maintained | |
397 | F: Documentation/hwmon/adt7475 | |
398 | F: drivers/hwmon/adt7475.c | |
399 | ||
527a1a83 MH |
400 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
401 | M: Michael Hennerich <[email protected]> | |
f8bd42b8 | 402 | L: [email protected] |
a3f531ac | 403 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
404 | S: Supported |
405 | F: drivers/input/misc/adxl34x.c | |
406 | ||
8c6af9e1 | 407 | ADVANSYS SCSI DRIVER |
8b58be88 | 408 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
409 | L: [email protected] |
410 | S: Maintained | |
679655da JP |
411 | F: Documentation/scsi/advansys.txt |
412 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 413 | |
1da177e4 | 414 | AEDSP16 DRIVER |
8b58be88 | 415 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 416 | S: Maintained |
679655da | 417 | F: sound/oss/aedsp16.c |
1da177e4 | 418 | |
91952bc0 AP |
419 | AF9013 MEDIA DRIVER |
420 | M: Antti Palosaari <[email protected]> | |
421 | L: [email protected] | |
422 | W: http://linuxtv.org/ | |
423 | W: http://palosaari.fi/linux/ | |
424 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
425 | T: git git://linuxtv.org/anttip/media_tree.git | |
426 | S: Maintained | |
427 | F: drivers/media/dvb-frontends/af9013* | |
428 | ||
429 | AF9033 MEDIA DRIVER | |
430 | M: Antti Palosaari <[email protected]> | |
431 | L: [email protected] | |
432 | W: http://linuxtv.org/ | |
433 | W: http://palosaari.fi/linux/ | |
434 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
435 | T: git git://linuxtv.org/anttip/media_tree.git | |
436 | S: Maintained | |
437 | F: drivers/media/dvb-frontends/af9033* | |
438 | ||
1da177e4 | 439 | AFFS FILE SYSTEM |
6cf515e1 GU |
440 | L: [email protected] |
441 | S: Orphan | |
679655da JP |
442 | F: Documentation/filesystems/affs.txt |
443 | F: fs/affs/ | |
1da177e4 | 444 | |
e2d1d6c0 | 445 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 446 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
447 | L: [email protected] |
448 | S: Supported | |
679655da JP |
449 | F: fs/afs/ |
450 | F: include/net/af_rxrpc.h | |
451 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 452 | |
1da177e4 | 453 | AGPGART DRIVER |
8b58be88 | 454 | M: David Airlie <[email protected]> |
54e5881d | 455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 456 | S: Maintained |
679655da JP |
457 | F: drivers/char/agp/ |
458 | F: include/linux/agp* | |
c117ab84 | 459 | F: include/uapi/linux/agp* |
1da177e4 LT |
460 | |
461 | AHA152X SCSI DRIVER | |
8b58be88 | 462 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
463 | L: [email protected] |
464 | S: Maintained | |
679655da JP |
465 | F: drivers/scsi/aha152x* |
466 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 467 | |
64624d4f | 468 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 469 | M: Hannes Reinecke <[email protected]> |
64624d4f | 470 | L: [email protected] |
1da177e4 | 471 | S: Maintained |
679655da JP |
472 | F: drivers/scsi/aic7xxx/ |
473 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 474 | |
450500ad HV |
475 | AIMSLAB FM RADIO RECEIVER DRIVER |
476 | M: Hans Verkuil <[email protected]> | |
477 | L: [email protected] | |
478 | T: git git://linuxtv.org/media_tree.git | |
479 | W: http://linuxtv.org | |
480 | S: Maintained | |
481 | F: drivers/media/radio/radio-aimslab* | |
482 | ||
e2d1d6c0 | 483 | AIO |
8b58be88 | 484 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
485 | L: [email protected] |
486 | S: Supported | |
679655da JP |
487 | F: fs/aio.c |
488 | F: include/linux/*aio*.h | |
e2d1d6c0 | 489 | |
1da177e4 | 490 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 491 | M: Duncan Sands <[email protected]> |
6372594a | 492 | L: [email protected] |
1da177e4 LT |
493 | W: http://www.linux-usb.org/SpeedTouch/ |
494 | S: Maintained | |
679655da JP |
495 | F: drivers/usb/atm/speedtch.c |
496 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 497 | |
272f133a | 498 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 499 | M: Manuel Lauss <[email protected]> |
08fcb720 | 500 | S: Maintained |
679655da | 501 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 502 | |
4a4e5787 | 503 | ALI1563 I2C DRIVER |
8b58be88 | 504 | M: Rudolf Marek <[email protected]> |
846557d3 | 505 | L: [email protected] |
4a4e5787 | 506 | S: Maintained |
679655da JP |
507 | F: Documentation/i2c/busses/i2c-ali1563 |
508 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 509 | |
1da177e4 | 510 | ALPHA PORT |
8b58be88 | 511 | M: Richard Henderson <[email protected]> |
8b58be88 | 512 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 513 | M: Matt Turner <[email protected]> |
c89f4f9a | 514 | S: Odd Fixes |
a9406699 | 515 | L: [email protected] |
679655da | 516 | F: arch/alpha/ |
1da177e4 | 517 | |
adf9251f TK |
518 | ALTERA UART/JTAG UART SERIAL DRIVERS |
519 | M: Tobias Klauser <[email protected]> | |
520 | L: [email protected] | |
521 | L: [email protected] (moderated for non-subscribers) | |
522 | S: Maintained | |
523 | F: drivers/tty/serial/altera_uart.c | |
524 | F: drivers/tty/serial/altera_jtaguart.c | |
525 | F: include/linux/altera_uart.h | |
526 | F: include/linux/altera_jtaguart.h | |
527 | ||
512d1027 | 528 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 529 | M: Andreas Herrmann <[email protected]> |
512d1027 AH |
530 | L: [email protected] |
531 | S: Maintained | |
532 | F: Documentation/hwmon/fam15h_power | |
533 | F: drivers/hwmon/fam15h_power.c | |
534 | ||
167a675a | 535 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 536 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 537 | L: [email protected] (moderated for non-subscribers) |
167a675a | 538 | S: Supported |
679655da | 539 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 540 | |
f90b8116 | 541 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 542 | P: Andres Salomon <[email protected]> |
67d76710 | 543 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
544 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
545 | S: Supported | |
679655da JP |
546 | F: drivers/char/hw_random/geode-rng.c |
547 | F: drivers/crypto/geode* | |
548 | F: drivers/video/geode/ | |
549 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 550 | |
919ee7dd | 551 | AMD IOMMU (AMD-VI) |
e4110568 | 552 | M: Joerg Roedel <[email protected]> |
919ee7dd | 553 | L: [email protected] |
525b233c | 554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 555 | S: Maintained |
b2c16391 JP |
556 | F: drivers/iommu/amd_iommu*.[ch] |
557 | F: include/linux/amd-iommu.h | |
919ee7dd | 558 | |
e7f5b309 | 559 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 560 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 | 561 | L: [email protected] |
943482d0 | 562 | S: Maintained |
679655da | 563 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 564 | |
284f42b6 | 565 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 566 | M: Michael Hanselmann <[email protected]> |
284f42b6 | 567 | S: Supported |
bd5f47ec | 568 | F: drivers/macintosh/ams/ |
284f42b6 | 569 | |
f94b533d | 570 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
571 | M: Tom Tucker <[email protected]> |
572 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 573 | L: [email protected] |
f94b533d | 574 | S: Maintained |
679655da | 575 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 576 | |
531fca16 HV |
577 | ANALOG DEVICES INC AD9389B DRIVER |
578 | M: Hans Verkuil <[email protected]> | |
579 | L: [email protected] | |
580 | S: Maintained | |
581 | F: drivers/media/i2c/ad9389b* | |
582 | ||
c40ddfa3 HV |
583 | ANALOG DEVICES INC ADV7511 DRIVER |
584 | M: Hans Verkuil <[email protected]> | |
585 | L: [email protected] | |
586 | S: Maintained | |
587 | F: drivers/media/i2c/adv7511* | |
588 | ||
531fca16 HV |
589 | ANALOG DEVICES INC ADV7604 DRIVER |
590 | M: Hans Verkuil <[email protected]> | |
591 | L: [email protected] | |
592 | S: Maintained | |
593 | F: drivers/media/i2c/adv7604* | |
594 | ||
c40ddfa3 HV |
595 | ANALOG DEVICES INC ADV7842 DRIVER |
596 | M: Hans Verkuil <[email protected]> | |
597 | L: [email protected] | |
598 | S: Maintained | |
599 | F: drivers/media/i2c/adv7842* | |
600 | ||
527a1a83 | 601 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 602 | M: Lars-Peter Clausen <[email protected]> |
f8bd42b8 | 603 | L: [email protected] |
4bdef3bd | 604 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 605 | W: http://wiki.analog.com/ |
4bdef3bd | 606 | S: Supported |
39c9d199 | 607 | F: sound/soc/codecs/adau* |
cc52688a | 608 | F: sound/soc/codecs/adav* |
4bdef3bd | 609 | F: sound/soc/codecs/ad1* |
ae48f5ef | 610 | F: sound/soc/codecs/ad7* |
4bdef3bd | 611 | F: sound/soc/codecs/ssm* |
40216ce7 | 612 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 613 | |
527a1a83 MH |
614 | ANALOG DEVICES INC ASOC DRIVERS |
615 | L: [email protected] | |
616 | L: [email protected] (moderated for non-subscribers) | |
617 | W: http://blackfin.uclinux.org/ | |
618 | S: Supported | |
619 | F: sound/soc/blackfin/* | |
620 | ||
42269063 | 621 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 622 | M: Johannes Berg <[email protected]> |
a4724ed6 | 623 | L: [email protected] |
93711660 | 624 | L: [email protected] (moderated for non-subscribers) |
42269063 | 625 | S: Maintained |
679655da | 626 | F: sound/aoa/ |
42269063 | 627 | |
1da177e4 | 628 | APM DRIVER |
81024fc4 JK |
629 | M: Jiri Kosina <[email protected]> |
630 | S: Odd fixes | |
679655da JP |
631 | F: arch/x86/kernel/apm_32.c |
632 | F: include/linux/apm_bios.h | |
c117ab84 | 633 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 634 | F: drivers/char/apm-emulation.c |
1da177e4 | 635 | |
bd7aa4b2 | 636 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 637 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
638 | L: [email protected] |
639 | S: Maintained | |
679655da | 640 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 641 | |
6f2fad74 | 642 | APPLE SMC DRIVER |
d618540f HR |
643 | M: Henrik Rydberg <[email protected]> |
644 | L: [email protected] | |
6f2fad74 | 645 | S: Maintained |
679655da | 646 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 647 | |
1da177e4 | 648 | APPLETALK NETWORK LAYER |
8b58be88 | 649 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 650 | S: Maintained |
679655da JP |
651 | F: drivers/net/appletalk/ |
652 | F: net/appletalk/ | |
1da177e4 | 653 | |
62a37dc7 LP |
654 | APTINA CAMERA SENSOR PLL |
655 | M: Laurent Pinchart <[email protected]> | |
656 | L: [email protected] | |
657 | S: Maintained | |
658 | F: drivers/media/i2c/aptina-pll.* | |
659 | ||
a480167b | 660 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 661 | M: Viresh Kumar <[email protected]> |
a480167b VK |
662 | L: [email protected] |
663 | S: Maintained | |
664 | F: include/linux/pata_arasan_cf_data.h | |
665 | F: drivers/ata/pata_arasan_cf.c | |
666 | ||
1154ea7d | 667 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 668 | M: Jaya Kumar <[email protected]> |
1154ea7d | 669 | S: Maintained |
679655da JP |
670 | F: drivers/video/arcfb.c |
671 | F: drivers/video/fb_defio.c | |
1154ea7d | 672 | |
1da177e4 | 673 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 674 | M: Ian Molton <[email protected]> |
1da177e4 | 675 | S: Maintained |
679655da JP |
676 | F: arch/arm/lib/floppydma.S |
677 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 678 | |
6f96521f WD |
679 | ARM PMU PROFILING AND DEBUGGING |
680 | M: Will Deacon <[email protected]> | |
681 | S: Maintained | |
682 | F: arch/arm/kernel/perf_event* | |
683 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
684 | F: arch/arm/include/asm/pmu.h |
685 | F: arch/arm/kernel/hw_breakpoint.c | |
686 | F: arch/arm/include/asm/hw_breakpoint.h | |
687 | ||
d4275354 | 688 | ARM PORT |
8b58be88 | 689 | M: Russell King <[email protected]> |
efc03ecb | 690 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
691 | W: http://www.arm.linux.org.uk/ |
692 | S: Maintained | |
693 | F: arch/arm/ | |
694 | ||
d323c243 SB |
695 | ARM SUB-ARCHITECTURES |
696 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 697 | S: Maintained |
d323c243 SB |
698 | F: arch/arm/mach-*/ |
699 | F: arch/arm/plat-*/ | |
700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
701 | ||
cefbf4ea RK |
702 | ARM PRIMECELL AACI PL041 DRIVER |
703 | M: Russell King <[email protected]> | |
704 | S: Maintained | |
705 | F: sound/arm/aaci.* | |
706 | ||
707 | ARM PRIMECELL CLCD PL110 DRIVER | |
708 | M: Russell King <[email protected]> | |
709 | S: Maintained | |
710 | F: drivers/video/amba-clcd.* | |
711 | ||
712 | ARM PRIMECELL KMI PL050 DRIVER | |
713 | M: Russell King <[email protected]> | |
714 | S: Maintained | |
715 | F: drivers/input/serio/ambakmi.* | |
716 | F: include/linux/amba/kmi.h | |
717 | ||
2761f5c2 | 718 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
719 | M: Russell King <[email protected]> |
720 | S: Maintained | |
679655da | 721 | F: drivers/mmc/host/mmci.* |
2f748aaa | 722 | F: include/linux/amba/mmci.h |
2761f5c2 | 723 | |
1b4304e5 RK |
724 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
725 | M: Russell King <[email protected]> | |
726 | S: Maintained | |
727 | F: drivers/tty/serial/amba-pl01*.c | |
728 | F: include/linux/amba/serial.h | |
2761f5c2 | 729 | |
cefbf4ea RK |
730 | ARM PRIMECELL BUS SUPPORT |
731 | M: Russell King <[email protected]> | |
732 | S: Maintained | |
733 | F: drivers/amba/ | |
734 | F: include/linux/amba/bus.h | |
735 | ||
2b7a52a4 | 736 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 737 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 738 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
739 | S: Maintained |
740 | ||
9c784f95 | 741 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 742 | M: Sergey Lapin <[email protected]> |
efc03ecb | 743 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
744 | S: Maintained |
745 | ||
2b7a52a4 | 746 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 747 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 748 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
749 | S: Maintained |
750 | ||
1b106699 MR |
751 | ARM/Allwinner A1X SoC support |
752 | M: Maxime Ripard <[email protected]> | |
753 | L: [email protected] (moderated for non-subscribers) | |
754 | S: Maintained | |
755 | F: arch/arm/mach-sunxi/ | |
756 | ||
c1fc8675 | 757 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 758 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
759 | M: Nicolas Ferre <[email protected]> |
760 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 761 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 762 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
763 | W: http://www.linux4sam.org |
764 | S: Supported | |
765 | F: arch/arm/mach-at91/ | |
d4a89c7d | 766 | |
986cf2e9 RH |
767 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
768 | M: Rob Herring <[email protected]> | |
769 | L: [email protected] (moderated for non-subscribers) | |
770 | S: Maintained | |
771 | F: arch/arm/mach-highbank/ | |
772 | ||
d94f944e | 773 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 774 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
775 | S: Maintained |
776 | F: arch/arm/mach-cns3xxx/ | |
777 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
778 | ||
386ab516 AS |
779 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
780 | M: Alexander Shiyan <[email protected]> | |
781 | L: [email protected] (moderated for non-subscribers) | |
782 | S: Odd Fixes | |
783 | F: arch/arm/mach-clps711x/ | |
784 | ||
2b7a52a4 | 785 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 786 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 787 | M: Ryan Mallon <[email protected]> |
efc03ecb | 788 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 789 | S: Maintained |
d19d3667 HS |
790 | F: arch/arm/mach-ep93xx/ |
791 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
792 | |
793 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 794 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 795 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
796 | S: Maintained |
797 | ||
d4275354 | 798 | ARM/CLKDEV SUPPORT |
8b58be88 | 799 | M: Russell King <[email protected]> |
efc03ecb | 800 | L: [email protected] (moderated for non-subscribers) |
37417046 | 801 | S: Maintained |
d4275354 | 802 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 803 | F: drivers/clk/clkdev.c |
d4275354 | 804 | |
d48134e7 | 805 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 806 | M: Mike Rapoport <[email protected]> |
efc03ecb | 807 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
808 | S: Maintained |
809 | ||
94150095 HF |
810 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
811 | M: Hubert Feurstein <[email protected]> | |
812 | S: Maintained | |
813 | F: arch/arm/mach-ep93xx/micro9.c | |
814 | ||
1da177e4 | 815 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 816 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
817 | S: Maintained |
818 | ||
881a95f9 | 819 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 820 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 821 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
822 | T: git git://git.berlios.de/gemini-board |
823 | S: Maintained | |
f49afbb5 | 824 | F: arch/arm/mach-gemini/ |
881a95f9 | 825 | |
a990cbd8 BS |
826 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
827 | M: Barry Song <[email protected]> | |
828 | L: [email protected] (moderated for non-subscribers) | |
85529d14 | 829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
830 | S: Maintained |
831 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
832 | F: drivers/dma/sirf-dma.c |
833 | F: drivers/i2c/busses/i2c-sirf.c | |
b3b665b0 | 834 | F: drivers/mmc/host/sdhci-sirf.c |
6f73349d | 835 | F: drivers/pinctrl/sirf/ |
47ac3e44 | 836 | F: drivers/spi/spi-sirf.c |
a990cbd8 | 837 | |
d4275354 | 838 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 839 | M: Russell King <[email protected]> |
efc03ecb | 840 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
841 | W: http://www.arm.linux.org.uk/ |
842 | S: Maintained | |
843 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 844 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 845 | |
a9da4f7e | 846 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
847 | M: Daniel Ribeiro <[email protected]> |
848 | M: Stefan Schmidt <[email protected]> | |
849 | M: Harald Welte <[email protected]> | |
d66f1886 | 850 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
851 | W: http://www.openezx.org/ |
852 | S: Maintained | |
cafc2265 SS |
853 | T: topgit git://git.openezx.org/openezx.git |
854 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 855 | |
6a915af9 | 856 | ARM/FARADAY FA526 PORT |
162500b3 | 857 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 858 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 859 | S: Maintained |
1fa7e547 | 860 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 861 | F: arch/arm/mm/*-fa* |
6a915af9 | 862 | |
d4275354 | 863 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 864 | M: Russell King <[email protected]> |
efc03ecb | 865 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
866 | W: http://www.arm.linux.org.uk/ |
867 | S: Maintained | |
868 | F: arch/arm/include/asm/hardware/dec21285.h | |
869 | F: arch/arm/mach-footbridge/ | |
870 | ||
86183a5f | 871 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 872 | M: Sascha Hauer <[email protected]> |
efc03ecb | 873 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 874 | S: Maintained |
1fa7e547 | 875 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 876 | F: arch/arm/mach-imx/ |
e5dafa22 | 877 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 878 | |
8bcb9765 SG |
879 | ARM/FREESCALE IMX6 |
880 | M: Shawn Guo <[email protected]> | |
881 | L: [email protected] (moderated for non-subscribers) | |
882 | S: Maintained | |
883 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
884 | F: arch/arm/mach-imx/*imx6* | |
885 | ||
a9866a09 SG |
886 | ARM/FREESCALE MXS ARM ARCHITECTURE |
887 | M: Shawn Guo <[email protected]> | |
888 | L: [email protected] (moderated for non-subscribers) | |
889 | S: Maintained | |
890 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
891 | F: arch/arm/mach-mxs/ | |
892 | ||
2b7a52a4 | 893 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 894 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 895 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
896 | S: Maintained |
897 | ||
90b8fc34 | 898 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 899 | M: Steve Sakoman <[email protected]> |
efc03ecb | 900 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
901 | S: Maintained |
902 | ||
ef47d5f0 | 903 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 904 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
905 | M: Paul Parsons <[email protected]> |
906 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
907 | S: Maintained |
908 | F: arch/arm/mach-pxa/hx4700.c | |
909 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 910 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 911 | |
21f37bc3 | 912 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 913 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
914 | W: www.jlime.com |
915 | S: Maintained | |
084bad91 KE |
916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
917 | F: arch/arm/mach-sa1100/jornada720.c | |
918 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 919 | |
5e767ab9 JMC |
920 | ARM/IGEP MACHINE SUPPORT |
921 | M: Enric Balletbo i Serra <[email protected]> | |
922 | M: Javier Martinez Canillas <[email protected]> | |
923 | L: [email protected] | |
924 | L: [email protected] (moderated for non-subscribers) | |
925 | S: Maintained | |
926 | F: arch/arm/mach-omap2/board-igep0020.c | |
927 | ||
403d2971 MV |
928 | ARM/INCOME PXA270 SUPPORT |
929 | M: Marek Vasut <[email protected]> | |
930 | L: [email protected] (moderated for non-subscribers) | |
931 | S: Maintained | |
ec154082 | 932 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 933 | |
2b7a52a4 | 934 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 935 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 936 | M: Dan Williams <[email protected]> |
efc03ecb | 937 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 938 | S: Maintained |
e2bdb176 DW |
939 | |
940 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 941 | M: Dan Williams <[email protected]> |
efc03ecb | 942 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 943 | S: Maintained |
2b7a52a4 LB |
944 | |
945 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 946 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 947 | M: Dan Williams <[email protected]> |
efc03ecb | 948 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 949 | S: Maintained |
2b7a52a4 LB |
950 | |
951 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 952 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 953 | M: Dan Williams <[email protected]> |
efc03ecb | 954 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 955 | S: Maintained |
2b7a52a4 | 956 | |
2b7a52a4 | 957 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 958 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 959 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
960 | S: Maintained |
961 | ||
dfdd8cc9 KH |
962 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
963 | M: Imre Kaloz <[email protected]> | |
964 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 965 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
966 | S: Maintained |
967 | F: arch/arm/mach-ixp4xx/ | |
968 | ||
838553c5 | 969 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
970 | M: Jonathan Cameron <[email protected]> |
971 | L: [email protected] (moderated for non-subscribers) | |
972 | S: Maintained | |
973 | F: arch/arm/mach-pxa/stargate2.c | |
974 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
975 | ||
2b7a52a4 | 976 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 977 | M: Lennert Buytenhek <[email protected]> |
ab5f8c6e | 978 | M: Dan Williams <[email protected]> |
efc03ecb | 979 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 980 | S: Maintained |
2b7a52a4 LB |
981 | |
982 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 983 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 984 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
985 | S: Maintained |
986 | ||
1154f858 SS |
987 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
988 | M: Santosh Shilimkar <[email protected]> | |
989 | L: [email protected] (moderated for non-subscribers) | |
990 | S: Maintained | |
991 | F: arch/arm/mach-keystone/ | |
992 | ||
2b7a52a4 | 993 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 994 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 995 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
996 | S: Maintained |
997 | ||
3b886171 | 998 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 999 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
1000 | S: Maintained |
1001 | ||
75f41273 TP |
1002 | ARM/Marvell Armada 370 and Armada XP SOC support |
1003 | M: Jason Cooper <[email protected]> | |
1004 | M: Andrew Lunn <[email protected]> | |
1005 | M: Gregory Clement <[email protected]> | |
1006 | L: [email protected] (moderated for non-subscribers) | |
1007 | S: Maintained | |
1008 | F: arch/arm/mach-mvebu/ | |
1009 | ||
4f1312b0 NP |
1010 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1011 | M: Jason Cooper <[email protected]> | |
1012 | M: Andrew Lunn <[email protected]> | |
efc03ecb | 1013 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
1014 | S: Maintained |
1015 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1016 | F: arch/arm/mach-kirkwood/ |
1017 | F: arch/arm/mach-mv78xx0/ | |
1018 | F: arch/arm/mach-orion5x/ | |
1019 | F: arch/arm/plat-orion/ | |
3b886171 | 1020 | |
d69ac131 AC |
1021 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1022 | M: Alexander Clouter <[email protected]> | |
1023 | L: [email protected] (moderated for non-subscribers) | |
1024 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1025 | S: Maintained | |
1026 | F: arch/arm/mach-orion5x/ts78xx-* | |
1027 | ||
adcb079f AB |
1028 | ARM/MICREL KS8695 ARCHITECTURE |
1029 | M: Greg Ungerer <[email protected]> | |
1030 | L: [email protected] (moderated for non-subscribers) | |
14430813 | 1031 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1032 | S: Odd Fixes |
1033 | ||
d78ff0a5 | 1034 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1035 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1036 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1037 | F: arch/arm/mach-pxa/mioa701.c |
1038 | S: Maintained | |
1039 | ||
9624dfe6 | 1040 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1041 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1042 | S: Maintained |
1043 | ||
e0ee9851 | 1044 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1045 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1046 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1047 | M: STEricsson <[email protected]> |
1048 | L: [email protected] (moderated for non-subscribers) | |
1049 | S: Maintained | |
1050 | F: arch/arm/mach-nomadik/ | |
87572880 | 1051 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1052 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1053 | |
9d76295a | 1054 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1055 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1056 | L: [email protected] (subscribers-only) |
1057 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1058 | S: Supported | |
1059 | ||
0c19d21e DW |
1060 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1061 | M: David Brown <[email protected]> | |
b4c9bfab | 1062 | M: Daniel Walker <[email protected]> |
0c19d21e | 1063 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1064 | L: [email protected] |
0c19d21e DW |
1065 | F: arch/arm/mach-msm/ |
1066 | F: drivers/video/msm/ | |
1067 | F: drivers/mmc/host/msm_sdcc.c | |
1068 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1069 | F: drivers/tty/serial/msm_serial.h |
1070 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1071 | F: drivers/*/pm8???-* |
31a12b31 | 1072 | F: drivers/mfd/ssbi/ |
ea91db52 | 1073 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1074 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1075 | S: Maintained |
1076 | ||
8459c159 | 1077 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1078 | M: Dmitry Eremin-Solenikov <[email protected]> |
1079 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1080 | S: Maintained |
1081 | ||
5d783a2d | 1082 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1083 | M: Marek Vasut <[email protected]> |
75280787 | 1084 | L: [email protected] |
b5e4ad57 MV |
1085 | W: http://hackndev.com |
1086 | S: Maintained | |
933d35f0 JP |
1087 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1088 | F: arch/arm/mach-pxa/palmtx.c | |
1089 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1090 | F: arch/arm/mach-pxa/palmt5.c | |
1091 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1092 | F: arch/arm/mach-pxa/palmld.c | |
1093 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1094 | F: arch/arm/mach-pxa/palmte2.c | |
1095 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1096 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1097 | |
b57fe924 | 1098 | ARM/PALM TREO SUPPORT |
8b58be88 | 1099 | M: Tomas Cech <[email protected]> |
75280787 | 1100 | L: [email protected] |
90af5811 TSC |
1101 | W: http://hackndev.com |
1102 | S: Maintained | |
b57fe924 JP |
1103 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1104 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1105 | |
c49e1e63 | 1106 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1107 | M: Sergey Lapin <[email protected]> |
75280787 | 1108 | L: [email protected] |
7d2c86b5 JP |
1109 | W: http://hackndev.com |
1110 | S: Maintained | |
933d35f0 JP |
1111 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1112 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1113 | |
1da177e4 | 1114 | ARM/PLEB SUPPORT |
8b58be88 | 1115 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1116 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1117 | S: Maintained | |
1118 | ||
1119 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1120 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1121 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1122 | W: http://www.arm.linux.org.uk/ |
1123 | S: Maintained | |
1124 | ||
2b7a52a4 | 1125 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1126 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1127 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1128 | S: Maintained |
1129 | ||
d4275354 | 1130 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1131 | M: Russell King <[email protected]> |
efc03ecb | 1132 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1133 | W: http://www.arm.linux.org.uk/ |
1134 | S: Maintained | |
d4275354 RK |
1135 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1136 | F: arch/arm/include/asm/hardware/ioc.h | |
1137 | F: arch/arm/include/asm/hardware/iomd.h | |
1138 | F: arch/arm/include/asm/hardware/memc.h | |
1139 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1140 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1141 | F: drivers/net/ethernet/i825xx/ether1* |
1142 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1143 | F: drivers/scsi/arm/ |
1144 | ||
1da177e4 | 1145 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1146 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
1147 | W: http://www.shark-linux.de/shark.html |
1148 | S: Maintained | |
1149 | ||
b21477f9 | 1150 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1151 | M: Ben Dooks <[email protected]> |
482ce512 | 1152 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1153 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1154 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1155 | W: http://www.fluff.org/ben/linux/ |
1156 | S: Maintained | |
482ce512 | 1157 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1158 | F: arch/arm/mach-s3c24*/ |
1159 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1160 | F: drivers/*/*s3c2410* |
1161 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1162 | F: drivers/spi/spi-s3c* |
1163 | F: sound/soc/samsung/* | |
1da177e4 | 1164 | |
0dcecae2 | 1165 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1166 | M: Kukjin Kim <[email protected]> |
1167 | L: [email protected] (moderated for non-subscribers) | |
1168 | L: [email protected] (moderated for non-subscribers) | |
1169 | S: Maintained | |
1170 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1171 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1172 | N: exynos |
f556cb07 | 1173 | |
10ffa964 KP |
1174 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1175 | M: Kyungmin Park <[email protected]> | |
1176 | L: [email protected] (moderated for non-subscribers) | |
1177 | S: Maintained | |
1178 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1179 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1180 | |
3ce4ccb6 KD |
1181 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1182 | M: Kyungmin Park <[email protected]> | |
1183 | M: Kamil Debski <[email protected]> | |
1184 | L: [email protected] | |
1185 | L: [email protected] | |
1186 | S: Maintained | |
1187 | F: drivers/media/platform/s5p-g2d/ | |
1188 | ||
e6a476fd MS |
1189 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1190 | M: Kyungmin Park <[email protected]> | |
1191 | M: Kamil Debski <[email protected]> | |
6305902c | 1192 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1193 | L: [email protected] |
1194 | L: [email protected] | |
1195 | S: Maintained | |
934455d7 | 1196 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1197 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1198 | |
1199 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1200 | M: Kyungmin Park <[email protected]> | |
1201 | M: Tomasz Stanislawski <[email protected]> | |
1202 | L: [email protected] | |
1203 | L: [email protected] | |
1204 | S: Maintained | |
90d72ac6 | 1205 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1206 | |
d48d38e8 | 1207 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1208 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1209 | M: Magnus Damm <[email protected]> |
1210 | L: [email protected] | |
d48d38e8 | 1211 | W: http://oss.renesas.com |
bbff48f5 | 1212 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1214 | S: Supported |
1215 | F: arch/arm/mach-shmobile/ | |
1216 | F: drivers/sh/ | |
1217 | ||
66314223 DN |
1218 | ARM/SOCFPGA ARCHITECTURE |
1219 | M: Dinh Nguyen <[email protected]> | |
1220 | S: Maintained | |
1221 | F: arch/arm/mach-socfpga/ | |
1222 | ||
1223 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1224 | M: Dinh Nguyen <[email protected]> | |
1225 | S: Maintained | |
1226 | F: drivers/clk/socfpga/ | |
1227 | ||
65ebcc11 SK |
1228 | ARM/STI ARCHITECTURE |
1229 | M: Srinivas Kandagatla <[email protected]> | |
1230 | M: Stuart Menefy <[email protected]> | |
1231 | L: [email protected] (moderated for non-subscribers) | |
1232 | L: [email protected] | |
1233 | W: http://www.stlinux.com | |
1234 | S: Maintained | |
1235 | F: arch/arm/mach-sti/ | |
1236 | ||
2b7a52a4 | 1237 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1238 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1239 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1240 | S: Maintained |
1241 | ||
1bbd7089 | 1242 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1243 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1244 | L: [email protected] (moderated for non-subscribers) |
1245 | S: Maintained | |
1246 | ||
2b7a52a4 | 1247 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1248 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1249 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1250 | S: Maintained |
1251 | ||
98ad6e3b | 1252 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1253 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1254 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1255 | W: http://www.mcuos.com |
1256 | S: Maintained | |
4e89e8f6 | 1257 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1258 | F: drivers/input/keyboard/w90p910_keypad.c |
1259 | F: drivers/input/touchscreen/w90p910_ts.c | |
1260 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1261 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1262 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1263 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1264 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1265 | F: drivers/usb/host/ehci-w90x900.c |
1266 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1267 | |
54274d71 | 1268 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1269 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1270 | L: [email protected] (moderated for non-subscribers) |
1271 | S: Supported | |
1272 | F: arch/arm/mach-u300/ | |
1273 | F: drivers/i2c/busses/i2c-stu300.c | |
1274 | F: drivers/rtc/rtc-coh901331.c | |
1275 | F: drivers/watchdog/coh901327_wdt.c | |
1276 | F: drivers/dma/coh901318* | |
87572880 LW |
1277 | F: drivers/mfd/ab3100* |
1278 | F: drivers/rtc/rtc-ab3100.c | |
1279 | F: drivers/rtc/rtc-coh901331.c | |
1280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1281 | |
87572880 | 1282 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1283 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1284 | L: [email protected] (moderated for non-subscribers) |
1285 | S: Maintained | |
1286 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1287 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1288 | F: drivers/dma/ste_dma40* |
e4651a9f | 1289 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1290 | F: drivers/mfd/abx500* |
1291 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1292 | F: drivers/mfd/dbx500* |
1293 | F: drivers/mfd/db8500* | |
1294 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1295 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1296 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1298 | |
d4275354 | 1299 | ARM/VFP SUPPORT |
8b58be88 | 1300 | M: Russell King <[email protected]> |
efc03ecb | 1301 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1302 | W: http://www.arm.linux.org.uk/ |
1303 | S: Maintained | |
1304 | F: arch/arm/vfp/ | |
1305 | ||
e66b6d8e MV |
1306 | ARM/VOIPAC PXA270 SUPPORT |
1307 | M: Marek Vasut <[email protected]> | |
1308 | L: [email protected] (moderated for non-subscribers) | |
1309 | S: Maintained | |
1310 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1311 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1312 | |
04529fe2 TP |
1313 | ARM/VT8500 ARM ARCHITECTURE |
1314 | M: Tony Prisk <[email protected]> | |
1315 | L: [email protected] (moderated for non-subscribers) | |
1316 | S: Maintained | |
1317 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1318 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1319 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1320 | F: drivers/mmc/host/wmt-sdmmc.c |
1321 | F: drivers/pwm/pwm-vt8500.c | |
1322 | F: drivers/rtc/rtc-vt8500.c | |
1323 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1324 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1325 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1326 | F: drivers/video/vt8500lcdfb.* |
1327 | F: drivers/video/wm8505fb* | |
1328 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1329 | |
e66b6d8e MV |
1330 | ARM/ZIPIT Z2 SUPPORT |
1331 | M: Marek Vasut <[email protected]> | |
1332 | L: [email protected] (moderated for non-subscribers) | |
1333 | S: Maintained | |
1334 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1335 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1336 | |
51f29d44 MS |
1337 | ARM/ZYNQ ARCHITECTURE |
1338 | M: Michal Simek <[email protected]> | |
1339 | L: [email protected] (moderated for non-subscribers) | |
1340 | W: http://wiki.xilinx.com | |
1341 | T: git git://git.xilinx.com/linux-xlnx.git | |
1342 | S: Supported | |
1343 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1344 | F: drivers/cpuidle/cpuidle-zynq.c |
51f29d44 | 1345 | |
b8f9879e WD |
1346 | ARM SMMU DRIVER |
1347 | M: Will Deacon <[email protected]> | |
1348 | L: [email protected] (moderated for non-subscribers) | |
1349 | S: Maintained | |
1350 | F: drivers/iommu/arm-smmu.c | |
1351 | ||
38074229 CM |
1352 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1353 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1354 | M: Will Deacon <[email protected]> |
38074229 CM |
1355 | L: [email protected] (moderated for non-subscribers) |
1356 | S: Maintained | |
1357 | F: arch/arm64/ | |
d19766ec | 1358 | F: Documentation/arm64/ |
38074229 | 1359 | |
9d7005f9 LP |
1360 | AS3645A LED FLASH CONTROLLER DRIVER |
1361 | M: Laurent Pinchart <[email protected]> | |
1362 | L: [email protected] | |
1363 | T: git git://linuxtv.org/media_tree.git | |
1364 | S: Maintained | |
1365 | F: drivers/media/i2c/as3645a.c | |
1366 | F: include/media/as3645a.h | |
1367 | ||
d58de038 GJ |
1368 | ASC7621 HARDWARE MONITOR DRIVER |
1369 | M: George Joseph <[email protected]> | |
1370 | L: [email protected] | |
1371 | S: Maintained | |
1372 | F: Documentation/hwmon/asc7621 | |
1373 | F: drivers/hwmon/asc7621.c | |
1374 | ||
b229ece9 | 1375 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1376 | M: Corentin Chary <[email protected]> |
1da177e4 | 1377 | L: [email protected] |
d0944853 | 1378 | L: [email protected] |
76593d6f | 1379 | W: http://acpi4asus.sf.net |
85091b71 | 1380 | S: Maintained |
b229ece9 CC |
1381 | F: drivers/platform/x86/asus*.c |
1382 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1383 | |
953a6479 | 1384 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1385 | M: Dan Williams <[email protected]> |
b3e5f263 | 1386 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1387 | S: Maintained |
679655da JP |
1388 | F: Documentation/crypto/async-tx-api.txt |
1389 | F: crypto/async_tx/ | |
1390 | F: drivers/dma/ | |
1391 | F: include/linux/dmaengine.h | |
1392 | F: include/linux/async_tx.h | |
b3e5f263 | 1393 | |
a1867d36 | 1394 | AT24 EEPROM DRIVER |
14d77c4d | 1395 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1396 | L: [email protected] |
1397 | S: Maintained | |
1398 | F: drivers/misc/eeprom/at24.c | |
1399 | F: include/linux/i2c/at24.h | |
1400 | ||
e7839f25 | 1401 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1402 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1403 | W: http://support.coraid.com/support/linux |
1da177e4 | 1404 | S: Supported |
679655da JP |
1405 | F: Documentation/aoe/ |
1406 | F: drivers/block/aoe/ | |
1da177e4 | 1407 | |
9a10a870 | 1408 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1409 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1410 | L: [email protected] |
1411 | S: Supported | |
1412 | F: drivers/net/wireless/ath/* | |
1413 | ||
fa1c114f | 1414 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1415 | M: Jiri Slaby <[email protected]> |
1416 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1417 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1418 | L: [email protected] |
1419 | L: [email protected] | |
72c706b7 | 1420 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1421 | S: Maintained |
fa451753 | 1422 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1423 | |
12e62d6f KV |
1424 | ATHEROS ATH6KL WIRELESS DRIVER |
1425 | M: Kalle Valo <[email protected]> | |
1426 | L: [email protected] | |
1427 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1428 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1429 | S: Supported |
1430 | F: drivers/net/wireless/ath/ath6kl/ | |
1431 | ||
f078f209 | 1432 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1433 | M: "Luis R. Rodriguez" <[email protected]> |
1434 | M: Jouni Malinen <[email protected]> | |
1435 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1436 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1437 | L: [email protected] |
1438 | L: [email protected] | |
72c706b7 | 1439 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1440 | S: Supported |
fa451753 | 1441 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1442 | |
2be7d22f VK |
1443 | WILOCITY WIL6210 WIRELESS DRIVER |
1444 | M: Vladimir Kondratiev <[email protected]> | |
1445 | L: [email protected] | |
1446 | L: [email protected] | |
1447 | S: Supported | |
1448 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1449 | F: drivers/net/wireless/ath/wil6210/ | |
1450 | ||
1d7e1e6b CL |
1451 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1452 | M: Christian Lamparter <[email protected]> | |
1453 | L: [email protected] | |
1454 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1455 | S: Maintained | |
1456 | F: drivers/net/wireless/ath/carl9170/ | |
1457 | ||
2c2a6172 LT |
1458 | ATK0110 HWMON DRIVER |
1459 | M: Luca Tettamanti <[email protected]> | |
1460 | L: [email protected] | |
1461 | S: Maintained | |
1462 | F: drivers/hwmon/asus_atk0110.c | |
1463 | ||
6f69a6d7 | 1464 | ATI_REMOTE2 DRIVER |
8b58be88 | 1465 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1466 | S: Maintained |
679655da | 1467 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1468 | |
7ae115b4 | 1469 | ATLX ETHERNET DRIVERS |
8b58be88 | 1470 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1471 | M: Chris Snook <[email protected]> |
e443e383 | 1472 | L: [email protected] |
8d5ca6ec JC |
1473 | W: http://sourceforge.net/projects/atl1 |
1474 | W: http://atl1.sourceforge.net | |
1475 | S: Maintained | |
2b133ad6 | 1476 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1477 | |
1da177e4 | 1478 | ATM |
8b58be88 | 1479 | M: Chas Williams <[email protected]> |
476604de | 1480 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1481 | L: [email protected] |
1da177e4 LT |
1482 | W: http://linux-atm.sourceforge.net |
1483 | S: Maintained | |
679655da JP |
1484 | F: drivers/atm/ |
1485 | F: include/linux/atm* | |
c117ab84 | 1486 | F: include/uapi/linux/atm* |
1da177e4 | 1487 | |
04ac2f46 | 1488 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1489 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1490 | S: Maintained |
1491 | F: drivers/mmc/host/atmel-mci.c | |
1492 | F: drivers/mmc/host/atmel-mci-regs.h | |
1493 | ||
a1cfac48 | 1494 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1495 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1496 | S: Supported |
df621252 | 1497 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1498 | |
b414dc16 NF |
1499 | ATMEL DMA DRIVER |
1500 | M: Nicolas Ferre <[email protected]> | |
1501 | L: [email protected] (moderated for non-subscribers) | |
1502 | S: Supported | |
1503 | F: drivers/dma/at_hdmac.c | |
1504 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1505 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1506 | |
888f2804 LD |
1507 | ATMEL I2C DRIVER |
1508 | M: Ludovic Desroches <[email protected]> | |
1509 | L: [email protected] | |
1510 | S: Supported | |
1511 | F: drivers/i2c/busses/i2c-at91.c | |
1512 | ||
15515545 JW |
1513 | ATMEL ISI DRIVER |
1514 | M: Josh Wu <[email protected]> | |
1515 | L: [email protected] | |
1516 | S: Supported | |
f2294c2d | 1517 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1518 | F: include/media/atmel-isi.h |
1519 | ||
8f4c79ce | 1520 | ATMEL LCDFB DRIVER |
8b58be88 | 1521 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1522 | L: [email protected] |
8f4c79ce | 1523 | S: Maintained |
679655da JP |
1524 | F: drivers/video/atmel_lcdfb.c |
1525 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1526 | |
89e5785f | 1527 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1528 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1529 | S: Supported |
9f2f381f | 1530 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1531 | |
754ce4f2 | 1532 | ATMEL SPI DRIVER |
a02875a6 | 1533 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1534 | S: Supported |
9df92e6c | 1535 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1536 | |
e9cb1c5a NF |
1537 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1538 | M: Nicolas Ferre <[email protected]> | |
1539 | L: [email protected] (moderated for non-subscribers) | |
1540 | S: Supported | |
1541 | F: drivers/misc/atmel_tclib.c | |
1542 | F: drivers/clocksource/tcb_clksrc.c | |
1543 | ||
ff2675d6 JW |
1544 | ATMEL TSADCC DRIVER |
1545 | M: Josh Wu <[email protected]> | |
1546 | L: [email protected] | |
1547 | S: Supported | |
1548 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1549 | ||
914a3f3b | 1550 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1551 | M: Nicolas Ferre <[email protected]> |
1552 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1553 | S: Supported |
679655da | 1554 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1555 | |
1da177e4 | 1556 | ATMEL WIRELESS DRIVER |
8b58be88 | 1557 | M: Simon Kelley <[email protected]> |
724c6b35 | 1558 | L: [email protected] |
1da177e4 LT |
1559 | W: http://www.thekelleys.org.uk/atmel |
1560 | W: http://atmelwlandriver.sourceforge.net/ | |
1561 | S: Maintained | |
679655da | 1562 | F: drivers/net/wireless/atmel* |
1da177e4 | 1563 | |
26780d9e BG |
1564 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
1565 | M: Bradley Grove <[email protected]> | |
1566 | L: [email protected] | |
1567 | W: http://www.attotech.com | |
1568 | S: Supported | |
1569 | F: drivers/scsi/esas2r | |
1570 | ||
a92b7b80 | 1571 | AUDIT SUBSYSTEM |
8b58be88 JP |
1572 | M: Al Viro <[email protected]> |
1573 | M: Eric Paris <[email protected]> | |
b9a06207 | 1574 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1575 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1577 | S: Maintained |
679655da | 1578 | F: include/linux/audit.h |
c117ab84 | 1579 | F: include/uapi/linux/audit.h |
679655da | 1580 | F: kernel/audit* |
a92b7b80 | 1581 | |
70e84049 | 1582 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1583 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1584 | W: http://miguelojeda.es/auxdisplay.htm |
1585 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1586 | S: Maintained |
679655da JP |
1587 | F: drivers/auxdisplay/ |
1588 | F: include/linux/cfag12864b.h | |
70e84049 | 1589 | |
5f97f7f9 | 1590 | AVR32 ARCHITECTURE |
e336f61f HCE |
1591 | M: Haavard Skinnemoen <[email protected]> |
1592 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1593 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1594 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1595 | W: http://avrfreaks.net/ |
e336f61f | 1596 | S: Maintained |
679655da | 1597 | F: arch/avr32/ |
5f97f7f9 HS |
1598 | |
1599 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1600 | M: Haavard Skinnemoen <[email protected]> |
1601 | M: Hans-Christian Egtvedt <[email protected]> | |
1602 | S: Maintained | |
679655da | 1603 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1604 | |
1da177e4 | 1605 | AX.25 NETWORK LAYER |
8b58be88 | 1606 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1607 | L: [email protected] |
d34cb28a | 1608 | W: http://www.linux-ax25.org/ |
1da177e4 | 1609 | S: Maintained |
c117ab84 | 1610 | F: include/uapi/linux/ax25.h |
679655da JP |
1611 | F: include/net/ax25.h |
1612 | F: net/ax25/ | |
1da177e4 | 1613 | |
d5269395 | 1614 | AZ6007 DVB DRIVER |
1b2c14b4 | 1615 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1616 | L: [email protected] |
1617 | W: http://linuxtv.org | |
1618 | T: git git://linuxtv.org/media_tree.git | |
1619 | S: Maintained | |
1620 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1621 | ||
6777376e HV |
1622 | AZTECH FM RADIO RECEIVER DRIVER |
1623 | M: Hans Verkuil <[email protected]> | |
1624 | L: [email protected] | |
1625 | T: git git://linuxtv.org/media_tree.git | |
1626 | W: http://linuxtv.org | |
1627 | S: Maintained | |
1628 | F: drivers/media/radio/radio-aztech* | |
1629 | ||
e2d1d6c0 | 1630 | B43 WIRELESS DRIVER |
8b58be88 | 1631 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1632 | L: [email protected] |
ed072f9e | 1633 | L: [email protected] |
491b26b4 | 1634 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1635 | S: Maintained |
679655da | 1636 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1637 | |
1638 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1639 | M: Larry Finger <[email protected]> |
1640 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1641 | L: [email protected] |
ed072f9e | 1642 | L: [email protected] |
491b26b4 | 1643 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1644 | S: Maintained |
679655da | 1645 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1646 | |
300abeb5 | 1647 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1648 | M: Richard Purdie <[email protected]> |
6212de88 | 1649 | M: Jingoo Han <[email protected]> |
300abeb5 | 1650 | S: Maintained |
679655da JP |
1651 | F: drivers/video/backlight/ |
1652 | F: include/linux/backlight.h | |
300abeb5 | 1653 | |
c6c8fea2 SE |
1654 | BATMAN ADVANCED |
1655 | M: Marek Lindner <[email protected]> | |
1656 | M: Simon Wunderlich <[email protected]> | |
cf9ab887 | 1657 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1658 | L: [email protected] |
1659 | W: http://www.open-mesh.org/ | |
1660 | S: Maintained | |
1661 | F: net/batman-adv/ | |
1662 | ||
e2d1d6c0 | 1663 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1664 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1665 | L: [email protected] |
1666 | W: http://www.baycom.org/~tom/ham/ham.html | |
1667 | S: Maintained | |
679655da | 1668 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1669 | |
cafe5635 | 1670 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1671 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1672 | L: [email protected] |
1673 | W: http://bcache.evilpiepirate.org | |
1674 | S: Maintained: | |
1675 | F: drivers/md/bcache/ | |
1676 | ||
e2d1d6c0 | 1677 | BEFS FILE SYSTEM |
55817d3d | 1678 | S: Orphan |
679655da JP |
1679 | F: Documentation/filesystems/befs.txt |
1680 | F: fs/befs/ | |
e2d1d6c0 RD |
1681 | |
1682 | BFS FILE SYSTEM | |
8b58be88 | 1683 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1684 | S: Maintained |
679655da JP |
1685 | F: Documentation/filesystems/bfs.txt |
1686 | F: fs/bfs/ | |
c117ab84 | 1687 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1688 | |
1394f032 | 1689 | BLACKFIN ARCHITECTURE |
8b58be88 | 1690 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1691 | L: [email protected] |
e3b2d3f3 BW |
1692 | W: http://blackfin.uclinux.org |
1693 | S: Supported | |
679655da | 1694 | F: arch/blackfin/ |
566da5b2 | 1695 | |
e190d6b1 | 1696 | BLACKFIN EMAC DRIVER |
49afa609 | 1697 | L: [email protected] |
e190d6b1 BW |
1698 | W: http://blackfin.uclinux.org |
1699 | S: Supported | |
7b35f033 | 1700 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1701 | |
566da5b2 | 1702 | BLACKFIN RTC DRIVER |
8b58be88 | 1703 | M: Mike Frysinger <[email protected]> |
49afa609 | 1704 | L: [email protected] |
566da5b2 MF |
1705 | W: http://blackfin.uclinux.org |
1706 | S: Supported | |
679655da | 1707 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1708 | |
936ed49a | 1709 | BLACKFIN SDH DRIVER |
109ec8c3 | 1710 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1711 | L: [email protected] |
1712 | W: http://blackfin.uclinux.org | |
1713 | S: Supported | |
1714 | F: drivers/mmc/host/bfin_sdh.c | |
1715 | ||
1394f032 | 1716 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1717 | M: Sonic Zhang <[email protected]> |
49afa609 | 1718 | L: [email protected] |
e3b2d3f3 BW |
1719 | W: http://blackfin.uclinux.org |
1720 | S: Supported | |
8460241e | 1721 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1722 | |
1e6d320f | 1723 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1724 | M: Mike Frysinger <[email protected]> |
49afa609 | 1725 | L: [email protected] |
1e6d320f BW |
1726 | W: http://blackfin.uclinux.org |
1727 | S: Supported | |
679655da | 1728 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1729 | |
d24ecfcc | 1730 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1731 | M: Sonic Zhang <[email protected]> |
49afa609 | 1732 | L: [email protected] |
d24ecfcc BW |
1733 | W: http://blackfin.uclinux.org/ |
1734 | S: Supported | |
679655da | 1735 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1736 | |
1e204377 SJ |
1737 | BLACKFIN MEDIA DRIVER |
1738 | M: Scott Jiang <[email protected]> | |
1739 | L: [email protected] | |
1740 | W: http://blackfin.uclinux.org/ | |
1741 | S: Supported | |
1742 | F: drivers/media/platform/blackfin/ | |
1743 | F: drivers/media/i2c/adv7183* | |
1744 | F: drivers/media/i2c/vs6624* | |
1745 | ||
b54cf35a JSM |
1746 | BLINKM RGB LED DRIVER |
1747 | M: Jan-Simon Moeller <[email protected]> | |
1748 | S: Maintained | |
1749 | F: drivers/leds/leds-blinkm.c | |
1750 | ||
1da177e4 | 1751 | BLOCK LAYER |
8b58be88 | 1752 | M: Jens Axboe <[email protected]> |
08deed1e | 1753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1754 | S: Maintained |
679655da | 1755 | F: block/ |
1da177e4 | 1756 | |
2b54aaef | 1757 | BLOCK2MTD DRIVER |
8b58be88 | 1758 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1759 | L: [email protected] |
1760 | S: Maintained | |
679655da | 1761 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1762 | |
63fbd24e | 1763 | BLUETOOTH DRIVERS |
8b58be88 | 1764 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1765 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1766 | M: Johan Hedberg <[email protected]> |
781c2844 | 1767 | L: [email protected] |
63fbd24e | 1768 | W: http://www.bluez.org/ |
22e7a424 MH |
1769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1771 | S: Maintained |
679655da | 1772 | F: drivers/bluetooth/ |
1da177e4 | 1773 | |
63fbd24e | 1774 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1775 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1776 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1777 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1778 | L: [email protected] |
1779 | W: http://www.bluez.org/ | |
22e7a424 MH |
1780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1782 | S: Maintained |
679655da JP |
1783 | F: net/bluetooth/ |
1784 | F: include/net/bluetooth/ | |
1da177e4 LT |
1785 | |
1786 | BONDING DRIVER | |
8b58be88 | 1787 | M: Jay Vosburgh <[email protected]> |
4cd72c6e | 1788 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1789 | L: [email protected] |
ce00f85c JC |
1790 | W: http://sourceforge.net/projects/bonding/ |
1791 | S: Supported | |
679655da | 1792 | F: drivers/net/bonding/ |
c117ab84 | 1793 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1794 | |
39105890 | 1795 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1796 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1797 | L: [email protected] |
1798 | S: Supported | |
adfc5217 | 1799 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1800 | |
948c51e6 | 1801 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1802 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1803 | L: [email protected] |
1804 | S: Supported | |
adfc5217 JK |
1805 | F: drivers/net/ethernet/broadcom/bnx2.* |
1806 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1807 | |
4d9d2cb0 | 1808 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1809 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1810 | L: [email protected] |
1811 | S: Supported | |
adfc5217 | 1812 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1813 | |
af4b8e37 CD |
1814 | BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE |
1815 | M: Christian Daudt <[email protected]> | |
1816 | T: git git://git.github.com/broadcom/bcm11351 | |
1817 | S: Maintained | |
1818 | F: arch/arm/mach-bcm/ | |
1819 | F: arch/arm/boot/dts/bcm113* | |
1820 | F: arch/arm/boot/dts/bcm281* | |
1821 | F: arch/arm/configs/bcm_defconfig | |
1822 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1823 | F: drivers/clocksource/bcm_kona_timer.c | |
1824 | ||
f680f25c SW |
1825 | BROADCOM BCM2835 ARM ARCHICTURE |
1826 | M: Stephen Warren <[email protected]> | |
1827 | L: [email protected] (moderated for non-subscribers) | |
1828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1829 | S: Maintained | |
1830 | F: arch/arm/mach-bcm2835/ | |
1831 | F: arch/arm/boot/dts/bcm2835* | |
1832 | F: arch/arm/configs/bcm2835_defconfig | |
1833 | F: drivers/*/*bcm2835* | |
1834 | ||
948c51e6 | 1835 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1836 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1837 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1838 | L: [email protected] |
1839 | S: Supported | |
adfc5217 | 1840 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1841 | |
a9533e7e HP |
1842 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1843 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1844 | M: Arend van Spriel <[email protected]> |
85d63686 | 1845 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1846 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1847 | L: [email protected] |
5615171c | 1848 | L: [email protected] |
a9533e7e | 1849 | S: Supported |
f62ebdd5 | 1850 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1851 | |
9958d6f9 BPG |
1852 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1853 | M: Bhanu Prakash Gollapudi <[email protected]> | |
1854 | L: [email protected] | |
1855 | S: Supported | |
1856 | F: drivers/scsi/bnx2fc/ | |
1857 | ||
6a6b5ad0 EW |
1858 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1859 | M: Eddie Wai <[email protected]> | |
1860 | L: [email protected] | |
1861 | S: Supported | |
1862 | F: drivers/scsi/bnx2i/ | |
1863 | ||
c9678d86 RM |
1864 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1865 | M: Rafał Miłecki <[email protected]> | |
1866 | L: [email protected] | |
1867 | S: Maintained | |
1868 | F: drivers/bcma/ | |
1869 | F: include/linux/bcma/ | |
1870 | ||
7725ccfd | 1871 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1872 | M: Anil Gurumurthy <[email protected]> |
1873 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1874 | L: [email protected] |
1875 | S: Supported | |
1876 | F: drivers/scsi/bfa/ | |
7725ccfd | 1877 | |
8b230ed8 RM |
1878 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1879 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1880 | L: [email protected] |
1881 | S: Supported | |
f844a0ea | 1882 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1883 | |
5cdf7f76 | 1884 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1885 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1886 | L: [email protected] |
1887 | S: Supported | |
679655da JP |
1888 | F: block/bsg.c |
1889 | F: include/linux/bsg.h | |
c117ab84 | 1890 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1891 | |
af39917d CL |
1892 | BT87X AUDIO DRIVER |
1893 | M: Clemens Ladisch <[email protected]> | |
1894 | L: [email protected] (moderated for non-subscribers) | |
1895 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1896 | S: Maintained | |
1897 | F: Documentation/sound/alsa/Bt87x.txt | |
1898 | F: sound/pci/bt87x.c | |
1899 | ||
ff1d5c2f | 1900 | BT8XXGPIO DRIVER |
eb032b98 | 1901 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1902 | W: http://bu3sch.de/btgpio.php |
1903 | S: Maintained | |
72dbb705 | 1904 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1905 | |
eb1eb04f | 1906 | BTRFS FILE SYSTEM |
9c106405 | 1907 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1908 | L: [email protected] |
1909 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1910 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1912 | S: Maintained |
679655da JP |
1913 | F: Documentation/filesystems/btrfs.txt |
1914 | F: fs/btrfs/ | |
eb1eb04f | 1915 | |
1da177e4 | 1916 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1917 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1918 | L: [email protected] |
96b6aba0 | 1919 | W: http://linuxtv.org |
275ffde4 | 1920 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1921 | S: Odd fixes |
679655da | 1922 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1923 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1924 | |
1f34923c KA |
1925 | BUSLOGIC SCSI DRIVER |
1926 | M: Khalid Aziz <[email protected]> | |
1927 | L: [email protected] | |
1928 | S: Maintained | |
1929 | F: drivers/scsi/BusLogic.* | |
1930 | F: drivers/scsi/FlashPoint.* | |
1931 | ||
af39917d CL |
1932 | C-MEDIA CMI8788 DRIVER |
1933 | M: Clemens Ladisch <[email protected]> | |
1934 | L: [email protected] (moderated for non-subscribers) | |
1935 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1936 | S: Maintained | |
1937 | F: sound/pci/oxygen/ | |
1938 | ||
2141355f MS |
1939 | C6X ARCHITECTURE |
1940 | M: Mark Salter <[email protected]> | |
1941 | M: Aurelien Jacquiot <[email protected]> | |
1942 | L: [email protected] | |
1943 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1944 | S: Maintained | |
1945 | F: arch/c6x/ | |
1946 | ||
a5432f5a | 1947 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1948 | M: David Howells <[email protected]> |
a5432f5a DH |
1949 | L: [email protected] |
1950 | S: Supported | |
1951 | F: Documentation/filesystems/caching/cachefiles.txt | |
1952 | F: fs/cachefiles/ | |
1953 | ||
c815ca39 HV |
1954 | CADET FM/AM RADIO RECEIVER DRIVER |
1955 | M: Hans Verkuil <[email protected]> | |
1956 | L: [email protected] | |
1957 | T: git git://linuxtv.org/media_tree.git | |
1958 | W: http://linuxtv.org | |
1959 | S: Maintained | |
1960 | F: drivers/media/radio/radio-cadet* | |
1961 | ||
77d5140f | 1962 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1963 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1964 | L: [email protected] |
275ffde4 | 1965 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1966 | S: Maintained |
679655da | 1967 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1968 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1969 | |
201b6bab | 1970 | CAIF NETWORK LAYER |
5c574f50 | 1971 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
1972 | L: [email protected] |
1973 | S: Supported | |
1974 | F: Documentation/networking/caif/ | |
1975 | F: drivers/net/caif/ | |
c117ab84 | 1976 | F: include/uapi/linux/caif/ |
201b6bab JP |
1977 | F: include/net/caif/ |
1978 | F: net/caif/ | |
1979 | ||
77dac90f | 1980 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1981 | M: Muli Ben-Yehuda <[email protected]> |
1982 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1983 | L: [email protected] |
1984 | S: Maintained | |
679655da JP |
1985 | F: arch/x86/kernel/pci-calgary_64.c |
1986 | F: arch/x86/kernel/tce_64.c | |
1987 | F: arch/x86/include/asm/calgary.h | |
1988 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1989 | |
e2d1d6c0 | 1990 | CAN NETWORK LAYER |
8d15d386 | 1991 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 1992 | L: [email protected] |
ec78213a | 1993 | W: http://gitorious.org/linux-can |
405cc273 | 1994 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1995 | S: Maintained |
8d15d386 | 1996 | F: net/can/ |
8d15d386 | 1997 | F: include/linux/can/core.h |
c117ab84 CEB |
1998 | F: include/uapi/linux/can.h |
1999 | F: include/uapi/linux/can/bcm.h | |
2000 | F: include/uapi/linux/can/raw.h | |
2001 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2002 | |
4261a204 | 2003 | CAN NETWORK DRIVERS |
8b58be88 | 2004 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 2005 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 2006 | L: [email protected] |
ec78213a | 2007 | W: http://gitorious.org/linux-can |
405cc273 | 2008 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2009 | S: Maintained |
8d15d386 OH |
2010 | F: drivers/net/can/ |
2011 | F: include/linux/can/dev.h | |
8d15d386 | 2012 | F: include/linux/can/platform/ |
c117ab84 CEB |
2013 | F: include/uapi/linux/can/error.h |
2014 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2015 | |
95d16c72 JM |
2016 | CAPABILITIES |
2017 | M: Serge Hallyn <[email protected]> | |
2018 | L: [email protected] | |
6305902c | 2019 | S: Supported |
95d16c72 | 2020 | F: include/linux/capability.h |
c117ab84 | 2021 | F: include/uapi/linux/capability.h |
95d16c72 | 2022 | F: security/capability.c |
6305902c | 2023 | F: security/commoncap.c |
38a94118 | 2024 | F: kernel/capability.c |
95d16c72 | 2025 | |
b8154542 | 2026 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2027 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
2028 | L: [email protected] |
2029 | L: [email protected] | |
b8154542 AB |
2030 | W: http://www.ibm.com/developerworks/power/cell/ |
2031 | S: Supported | |
679655da | 2032 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2033 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2034 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2035 | F: arch/powerpc/oprofile/*cell* |
2036 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2037 | |
9030aaf9 | 2038 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2039 | M: Sage Weil <[email protected]> |
82593f87 | 2040 | L: [email protected] |
09d90327 | 2041 | W: http://ceph.com/ |
fb99f881 | 2042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2043 | S: Supported |
2044 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2045 | F: fs/ceph/ |
2046 | F: net/ceph/ | |
2047 | F: include/linux/ceph/ | |
2048 | F: include/linux/crush/ | |
9030aaf9 | 2049 | |
18332a80 | 2050 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2051 | L: [email protected] |
10c6c9c9 | 2052 | S: Orphan |
679655da JP |
2053 | F: Documentation/usb/WUSB-Design-overview.txt |
2054 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2055 | F: drivers/usb/host/hwa-hc.c |
2056 | F: drivers/usb/host/whci/ | |
679655da JP |
2057 | F: drivers/usb/wusbcore/ |
2058 | F: include/linux/usb/wusb* | |
18332a80 | 2059 | |
70e84049 | 2060 | CFAG12864B LCD DRIVER |
8b58be88 | 2061 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2062 | W: http://miguelojeda.es/auxdisplay.htm |
2063 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2064 | S: Maintained |
679655da JP |
2065 | F: drivers/auxdisplay/cfag12864b.c |
2066 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2067 | |
2068 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2069 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2070 | W: http://miguelojeda.es/auxdisplay.htm |
2071 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2072 | S: Maintained |
679655da JP |
2073 | F: drivers/auxdisplay/cfag12864bfb.c |
2074 | F: include/linux/cfag12864b.h | |
70e84049 | 2075 | |
704232c2 | 2076 | CFG80211 and NL80211 |
8b58be88 | 2077 | M: Johannes Berg <[email protected]> |
704232c2 | 2078 | L: [email protected] |
ce466579 JB |
2079 | W: http://wireless.kernel.org/ |
2080 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2082 | S: Maintained |
c117ab84 | 2083 | F: include/uapi/linux/nl80211.h |
679655da JP |
2084 | F: include/net/cfg80211.h |
2085 | F: net/wireless/* | |
2086 | X: net/wireless/wext* | |
704232c2 | 2087 | |
46e64261 GKH |
2088 | CHAR and MISC DRIVERS |
2089 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2090 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2092 | S: Supported |
46e64261 GKH |
2093 | F: drivers/char/* |
2094 | F: drivers/misc/* | |
2095 | ||
0a920b5b | 2096 | CHECKPATCH |
8b58be88 | 2097 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2098 | M: Joe Perches <[email protected]> |
2099 | S: Maintained | |
679655da | 2100 | F: scripts/checkpatch.pl |
0a920b5b | 2101 | |
f8407f26 HW |
2102 | CHINESE DOCUMENTATION |
2103 | M: Harry Wei <[email protected]> | |
9740153c | 2104 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2105 | L: [email protected] (moderated for non-subscribers) |
2106 | S: Maintained | |
2107 | F: Documentation/zh_CN/ | |
2108 | ||
2721ea2c AS |
2109 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2110 | M: Alexander Shishkin <[email protected]> | |
2111 | L: [email protected] | |
2112 | S: Maintained | |
2113 | F: drivers/usb/chipidea/ | |
2114 | ||
641cb85e | 2115 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2116 | M: Christian Benvenuti <[email protected]> |
001e1c1d | 2117 | M: Sujith Sankar <[email protected]> |
2118 | M: Govindarajulu Varadarajan <[email protected]> | |
5c6652f5 NP |
2119 | M: Neel Patel <[email protected]> |
2120 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2121 | S: Supported |
a6a5580c | 2122 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2123 | |
2b7a52a4 | 2124 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2125 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2126 | L: [email protected] |
2127 | S: Maintained | |
57d0b7a0 | 2128 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2129 | |
2b7a52a4 | 2130 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2131 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2132 | L: [email protected] |
2b7a52a4 | 2133 | S: Maintained |
679655da | 2134 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2135 | |
d9e9d82c | 2136 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2137 | M: Timur Tabi <[email protected]> |
93711660 | 2138 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2139 | S: Odd Fixes |
679655da | 2140 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2141 | |
94574d9a KRW |
2142 | CLEANCACHE API |
2143 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2144 | L: [email protected] | |
2145 | S: Maintained | |
2146 | F: mm/cleancache.c | |
2147 | F: include/linux/cleancache.h | |
2148 | ||
d4275354 | 2149 | CLK API |
8b58be88 | 2150 | M: Russell King <[email protected]> |
37417046 | 2151 | S: Maintained |
d4275354 RK |
2152 | F: include/linux/clk.h |
2153 | ||
9222d247 JS |
2154 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2155 | M: Daniel Lezcano <[email protected]> | |
2156 | M: Thomas Gleixner <[email protected]> | |
2157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | |
2158 | S: Supported | |
2159 | F: drivers/clocksource | |
2160 | ||
5df6d737 | 2161 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2162 | M: Hiral Patel <[email protected]> |
2163 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2164 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2165 | L: [email protected] |
2166 | S: Supported | |
2a99921a | 2167 | F: drivers/scsi/fnic/ |
5df6d737 | 2168 | |
529aa8cb TLSC |
2169 | CMPC ACPI DRIVER |
2170 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2171 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2172 | L: [email protected] |
529aa8cb TLSC |
2173 | S: Supported |
2174 | F: drivers/platform/x86/classmate-laptop.c | |
2175 | ||
74425eee | 2176 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2177 | M: Julia Lawall <[email protected]> |
74425eee | 2178 | M: Gilles Muller <[email protected]> |
26de9c26 | 2179 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2180 | M: Michal Marek <[email protected]> |
26de9c26 | 2181 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2183 | W: http://coccinelle.lip6.fr/ |
2184 | S: Supported | |
4b92b2aa | 2185 | F: Documentation/coccinelle.txt |
74425eee NP |
2186 | F: scripts/coccinelle/ |
2187 | F: scripts/coccicheck | |
2188 | ||
1da177e4 | 2189 | CODA FILE SYSTEM |
8b58be88 | 2190 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2191 | M: [email protected] |
2192 | L: [email protected] | |
2193 | W: http://www.coda.cs.cmu.edu/ | |
2194 | S: Maintained | |
679655da JP |
2195 | F: Documentation/filesystems/coda.txt |
2196 | F: fs/coda/ | |
2197 | F: include/linux/coda*.h | |
c117ab84 | 2198 | F: include/uapi/linux/coda*.h |
1da177e4 | 2199 | |
7704addb | 2200 | COMMON CLK FRAMEWORK |
7704addb MT |
2201 | M: Mike Turquette <[email protected]> |
2202 | L: [email protected] (same as CLK API & CLKDEV) | |
2203 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2204 | S: Maintained | |
60bea3b5 SW |
2205 | F: drivers/clk/ |
2206 | X: drivers/clk/clkdev.c | |
7704addb | 2207 | F: include/linux/clk-pr* |
60bea3b5 | 2208 | F: include/linux/clk/ |
7704addb | 2209 | |
e2d1d6c0 | 2210 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2211 | M: Steve French <[email protected]> |
51223df6 | 2212 | L: [email protected] |
d1f28953 | 2213 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2214 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2215 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2216 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2217 | S: Supported |
679655da JP |
2218 | F: Documentation/filesystems/cifs.txt |
2219 | F: fs/cifs/ | |
e2d1d6c0 | 2220 | |
1da177e4 | 2221 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2222 | M: Scott Murray <[email protected]> |
64dab204 | 2223 | L: [email protected] |
82c4dfc7 | 2224 | S: Maintained |
679655da | 2225 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2226 | |
2227 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2228 | M: Scott Murray <[email protected]> |
64dab204 | 2229 | L: [email protected] |
82c4dfc7 | 2230 | S: Maintained |
679655da | 2231 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2232 | |
2233 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2234 | M: Scott Murray <[email protected]> |
64dab204 | 2235 | L: [email protected] |
82c4dfc7 | 2236 | S: Maintained |
679655da | 2237 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2238 | |
5411552c | 2239 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2240 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2241 | L: [email protected] |
5411552c | 2242 | S: Maintained |
679655da | 2243 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2244 | |
949be0f7 | 2245 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2246 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2247 | L: [email protected] |
2248 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2249 | S: Maintained |
679655da | 2250 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2251 | |
e2d1d6c0 | 2252 | CONFIGFS |
d6351db2 JB |
2253 | M: Joel Becker <[email protected]> |
2254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2255 | S: Supported |
679655da JP |
2256 | F: fs/configfs/ |
2257 | F: include/linux/configfs.h | |
e2d1d6c0 | 2258 | |
acb9c1b2 | 2259 | CONNECTOR |
8b58be88 | 2260 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2261 | L: [email protected] |
2262 | S: Maintained | |
2263 | F: drivers/connector/ | |
2264 | ||
fb3a0fb6 | 2265 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2266 | M: Tejun Heo <[email protected]> |
ad50c159 | 2267 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2268 | L: [email protected] |
12340313 | 2269 | L: [email protected] |
860ca0e6 | 2270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2271 | S: Maintained |
679655da JP |
2272 | F: include/linux/cgroup* |
2273 | F: kernel/cgroup* | |
8ca739e3 | 2274 | F: mm/*cgroup* |
fb3a0fb6 | 2275 | |
bebe4678 | 2276 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2277 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2278 | L: [email protected] |
2279 | S: Maintained | |
679655da JP |
2280 | F: Documentation/hwmon/coretemp |
2281 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2282 | |
1da177e4 | 2283 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2284 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2285 | W: http://www.fi.muni.cz/~kas/cosa/ |
2286 | S: Maintained | |
679655da | 2287 | F: drivers/net/wan/cosa* |
1da177e4 | 2288 | |
4371ee35 | 2289 | CPMAC ETHERNET DRIVER |
8b58be88 | 2290 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2291 | L: [email protected] |
2292 | S: Maintained | |
b544dbac | 2293 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2294 | |
1da177e4 | 2295 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2296 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2297 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2298 | L: [email protected] |
a6c072c7 | 2299 | L: [email protected] |
1da177e4 | 2300 | S: Maintained |
27209d91 VK |
2301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2302 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2303 | F: drivers/cpufreq/ |
2304 | F: include/linux/cpufreq.h | |
1da177e4 | 2305 | |
8a67f0ef VK |
2306 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2307 | M: Viresh Kumar <[email protected]> | |
2308 | M: Sudeep KarkadaNagesha <[email protected]> | |
2309 | L: [email protected] | |
2310 | L: [email protected] | |
2311 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2312 | S: Maintained | |
2313 | F: drivers/cpufreq/arm_big_little.h | |
2314 | F: drivers/cpufreq/arm_big_little.c | |
2315 | F: drivers/cpufreq/arm_big_little_dt.c | |
2316 | ||
14d2c34c LP |
2317 | CPUIDLE DRIVER - ARM BIG LITTLE |
2318 | M: Lorenzo Pieralisi <[email protected]> | |
2319 | M: Daniel Lezcano <[email protected]> | |
2320 | L: [email protected] | |
2321 | L: [email protected] | |
2322 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2323 | S: Maintained | |
2324 | F: drivers/cpuidle/cpuidle-big_little.c | |
2325 | ||
a8e39c35 DL |
2326 | CPUIDLE DRIVERS |
2327 | M: Rafael J. Wysocki <[email protected]> | |
2328 | M: Daniel Lezcano <[email protected]> | |
2329 | L: [email protected] | |
2330 | S: Maintained | |
2331 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2332 | F: drivers/cpuidle/* | |
2333 | F: include/linux/cpuidle.h | |
2334 | ||
1da177e4 | 2335 | CPUID/MSR DRIVER |
8b58be88 | 2336 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2337 | S: Maintained |
679655da JP |
2338 | F: arch/x86/kernel/cpuid.c |
2339 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2340 | |
7fe2f639 DB |
2341 | CPU POWER MONITORING SUBSYSTEM |
2342 | M: Dominik Brodowski <[email protected]> | |
2343 | M: Thomas Renninger <[email protected]> | |
2344 | S: Maintained | |
14430813 | 2345 | F: tools/power/cpupower/ |
7fe2f639 | 2346 | |
ed90fb4a | 2347 | CPUSETS |
f47b89c7 | 2348 | M: Li Zefan <[email protected]> |
ed90fb4a | 2349 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2350 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2351 | S: Maintained |
679655da JP |
2352 | F: Documentation/cgroups/cpusets.txt |
2353 | F: include/linux/cpuset.h | |
2354 | F: kernel/cpuset.c | |
ed90fb4a | 2355 | |
1da177e4 | 2356 | CRAMFS FILESYSTEM |
ce00f85c JC |
2357 | W: http://sourceforge.net/projects/cramfs/ |
2358 | S: Orphan | |
679655da JP |
2359 | F: Documentation/filesystems/cramfs.txt |
2360 | F: fs/cramfs/ | |
1da177e4 LT |
2361 | |
2362 | CRIS PORT | |
8b58be88 JP |
2363 | M: Mikael Starvik <[email protected]> |
2364 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2365 | L: [email protected] |
1da177e4 LT |
2366 | W: http://developer.axis.com |
2367 | S: Maintained | |
679655da | 2368 | F: arch/cris/ |
df621252 | 2369 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2370 | |
2371 | CRYPTO API | |
8b58be88 JP |
2372 | M: Herbert Xu <[email protected]> |
2373 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2374 | L: [email protected] |
54e5881d | 2375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2376 | S: Maintained |
679655da JP |
2377 | F: Documentation/crypto/ |
2378 | F: arch/*/crypto/ | |
2379 | F: crypto/ | |
2380 | F: drivers/crypto/ | |
2381 | F: include/crypto/ | |
1da177e4 | 2382 | |
5b07bd57 | 2383 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2384 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2385 | L: [email protected] |
2386 | S: Maintained | |
51a2228a JP |
2387 | F: crypto/ansi_cprng.c |
2388 | F: crypto/rng.c | |
5b07bd57 | 2389 | |
9b4ffa48 | 2390 | CS5535 Audio ALSA driver |
8b58be88 | 2391 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2392 | S: Maintained |
679655da | 2393 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2394 | |
a910e4a9 SP |
2395 | CW1200 WLAN driver |
2396 | M: Solomon Peachy <[email protected]> | |
2397 | S: Maintained | |
2398 | F: drivers/net/wireless/cw1200/ | |
2399 | ||
6d8425b1 | 2400 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2401 | M: Andy Walls <[email protected]> |
c4240509 | 2402 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2403 | L: [email protected] |
275ffde4 | 2404 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2405 | W: http://linuxtv.org |
30e10993 | 2406 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2407 | S: Maintained |
679655da | 2408 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2409 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2410 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2411 | |
3f101d91 HV |
2412 | CX2341X MPEG ENCODER HELPER MODULE |
2413 | M: Hans Verkuil <[email protected]> | |
2414 | L: [email protected] | |
2415 | T: git git://linuxtv.org/media_tree.git | |
2416 | W: http://linuxtv.org | |
2417 | S: Maintained | |
c368360b | 2418 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2419 | F: include/media/cx2341x* |
2420 | ||
20357578 | 2421 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2422 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2423 | L: [email protected] |
2424 | W: http://linuxtv.org | |
2425 | T: git git://linuxtv.org/media_tree.git | |
2426 | S: Odd fixes | |
2427 | F: Documentation/video4linux/cx88/ | |
2428 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2429 | |
91952bc0 AP |
2430 | CXD2820R MEDIA DRIVER |
2431 | M: Antti Palosaari <[email protected]> | |
2432 | L: [email protected] | |
2433 | W: http://linuxtv.org/ | |
2434 | W: http://palosaari.fi/linux/ | |
2435 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2436 | T: git git://linuxtv.org/anttip/media_tree.git | |
2437 | S: Maintained | |
2438 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2439 | |
e5ec3789 | 2440 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2441 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
2442 | L: [email protected] |
2443 | W: http://www.chelsio.com | |
2444 | S: Supported | |
f7917c00 | 2445 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2446 | |
2447 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2448 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2449 | L: [email protected] |
e5ec3789 SW |
2450 | W: http://www.openfabrics.org |
2451 | S: Supported | |
679655da | 2452 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2453 | |
be4c9bad RD |
2454 | CXGB4 ETHERNET DRIVER (CXGB4) |
2455 | M: Dimitris Michailidis <[email protected]> | |
2456 | L: [email protected] | |
2457 | W: http://www.chelsio.com | |
2458 | S: Supported | |
f7917c00 | 2459 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2460 | |
2461 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2462 | M: Steve Wise <[email protected]> | |
2463 | L: [email protected] | |
2464 | W: http://www.openfabrics.org | |
2465 | S: Supported | |
2466 | F: drivers/infiniband/hw/cxgb4/ | |
2467 | ||
5c20a5c7 CL |
2468 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2469 | M: Casey Leedom <[email protected]> | |
2470 | L: [email protected] | |
2471 | W: http://www.chelsio.com | |
2472 | S: Supported | |
f7917c00 | 2473 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2474 | |
b52b97a3 GC |
2475 | STMMAC ETHERNET DRIVER |
2476 | M: Giuseppe Cavallaro <[email protected]> | |
2477 | L: [email protected] | |
2478 | W: http://www.stlinux.com | |
2479 | S: Supported | |
7ac6653a | 2480 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2481 | |
1da177e4 | 2482 | CYBERPRO FB DRIVER |
8b58be88 | 2483 | M: Russell King <[email protected]> |
efc03ecb | 2484 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2485 | W: http://www.arm.linux.org.uk/ |
2486 | S: Maintained | |
679655da | 2487 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2488 | |
1da177e4 | 2489 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2490 | W: http://www.cyclades.com/ |
d459883e | 2491 | S: Orphan |
c897401b | 2492 | F: drivers/tty/cyclades.c |
679655da | 2493 | F: include/linux/cyclades.h |
c117ab84 | 2494 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2495 | |
2496 | CYCLADES PC300 DRIVER | |
1da177e4 | 2497 | W: http://www.cyclades.com/ |
d459883e | 2498 | S: Orphan |
679655da | 2499 | F: drivers/net/wan/pc300* |
1da177e4 | 2500 | |
402f6ae4 AP |
2501 | CYPRESS_FIRMWARE MEDIA DRIVER |
2502 | M: Antti Palosaari <[email protected]> | |
2503 | L: [email protected] | |
2504 | W: http://linuxtv.org/ | |
2505 | W: http://palosaari.fi/linux/ | |
2506 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2507 | T: git git://linuxtv.org/anttip/media_tree.git | |
2508 | S: Maintained | |
2509 | F: drivers/media/common/cypress_firmware* | |
2510 | ||
e3ae3525 | 2511 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2512 | M: Ferruh Yigit <[email protected]> |
6305902c | 2513 | L: [email protected] |
be9a6f40 | 2514 | S: Supported |
6305902c JP |
2515 | F: drivers/input/touchscreen/cyttsp* |
2516 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2517 | |
1da177e4 | 2518 | DAMA SLAVE for AX.25 |
8b58be88 | 2519 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2520 | W: http://yaina.de/jreuter/ |
2521 | W: http://www.qsl.net/dl1bke/ | |
2522 | L: [email protected] | |
2523 | S: Maintained | |
679655da JP |
2524 | F: net/ax25/af_ax25.c |
2525 | F: net/ax25/ax25_dev.c | |
2526 | F: net/ax25/ax25_ds_* | |
2527 | F: net/ax25/ax25_in.c | |
2528 | F: net/ax25/ax25_out.c | |
2529 | F: net/ax25/ax25_timer.c | |
2530 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2531 | |
e2d1d6c0 | 2532 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2533 | L: [email protected] |
5ff77428 | 2534 | S: Orphan |
679655da | 2535 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2536 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2537 | |
2538 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2539 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2540 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2541 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2542 | S: Maintained |
679655da | 2543 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2544 | |
1da177e4 | 2545 | DC395x SCSI driver |
61eee9a7 | 2546 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2547 | M: Ali Akcaagac <[email protected]> |
2548 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2549 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2550 | L: [email protected] |
1da177e4 LT |
2551 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2552 | S: Maintained | |
679655da JP |
2553 | F: Documentation/scsi/dc395x.txt |
2554 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2555 | |
eb8edb08 | 2556 | DCCP PROTOCOL |
a89d030e | 2557 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2558 | L: [email protected] |
c996d8b9 | 2559 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2560 | S: Maintained |
679655da | 2561 | F: include/linux/dccp.h |
c117ab84 | 2562 | F: include/uapi/linux/dccp.h |
679655da JP |
2563 | F: include/linux/tfrc.h |
2564 | F: net/dccp/ | |
eb8edb08 | 2565 | |
1da177e4 | 2566 | DECnet NETWORK LAYER |
1da177e4 LT |
2567 | W: http://linux-decnet.sourceforge.net |
2568 | L: [email protected] | |
f546444d | 2569 | S: Orphan |
679655da JP |
2570 | F: Documentation/networking/decnet.txt |
2571 | F: net/decnet/ | |
1da177e4 LT |
2572 | |
2573 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2574 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2575 | S: Maintained |
33f810b2 | 2576 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2577 | |
ad8f07cc | 2578 | DELL LAPTOP DRIVER |
8b58be88 | 2579 | M: Matthew Garrett <[email protected]> |
d0944853 | 2580 | L: [email protected] |
ad8f07cc | 2581 | S: Maintained |
679655da | 2582 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2583 | |
1da177e4 | 2584 | DELL LAPTOP SMM DRIVER |
c5471462 | 2585 | S: Orphan |
679655da | 2586 | F: drivers/char/i8k.c |
c117ab84 | 2587 | F: include/uapi/linux/i8k.h |
1da177e4 | 2588 | |
90563ec4 | 2589 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2590 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2591 | S: Maintained |
679655da JP |
2592 | F: Documentation/dcdbas.txt |
2593 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2594 | |
0b3f6109 | 2595 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2596 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2597 | S: Maintained |
36b3a96f | 2598 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2599 | |
5efc75e3 PZ |
2600 | DESIGNWARE USB2 DRD IP DRIVER |
2601 | M: Paul Zimmerman <[email protected]> | |
2602 | L: [email protected] | |
2603 | S: Maintained | |
2604 | F: drivers/staging/dwc2/ | |
2605 | ||
94ab23dd FB |
2606 | DESIGNWARE USB3 DRD IP DRIVER |
2607 | M: Felipe Balbi <[email protected]> | |
2608 | L: [email protected] | |
2609 | L: [email protected] | |
2610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2611 | S: Maintained | |
2612 | F: drivers/usb/dwc3/ | |
2613 | ||
89d07767 KP |
2614 | DEVICE FREQUENCY (DEVFREQ) |
2615 | M: MyungJoo Ham <[email protected]> | |
2616 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2617 | L: [email protected] |
89d07767 KP |
2618 | S: Maintained |
2619 | F: drivers/devfreq/ | |
2620 | ||
1da177e4 | 2621 | DEVICE NUMBER REGISTRY |
8b58be88 | 2622 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2623 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2624 | S: Maintained |
2625 | ||
e2d1d6c0 | 2626 | DEVICE-MAPPER (LVM) |
854ecaad | 2627 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2628 | M: Mike Snitzer <[email protected]> |
854ecaad | 2629 | M: [email protected] |
e2d1d6c0 RD |
2630 | L: [email protected] |
2631 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2632 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2633 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2634 | S: Maintained |
679655da JP |
2635 | F: Documentation/device-mapper/ |
2636 | F: drivers/md/dm* | |
854ecaad | 2637 | F: drivers/md/persistent-data/ |
679655da JP |
2638 | F: include/linux/device-mapper.h |
2639 | F: include/linux/dm-*.h | |
8504eed3 | 2640 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2641 | |
335d7c58 | 2642 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2643 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2644 | L: [email protected] |
2645 | S: Maintained | |
2646 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2647 | ||
e7839f25 | 2648 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2649 | M: Eric Paris <[email protected]> |
3c5119c0 | 2650 | S: Maintained |
679655da JP |
2651 | F: Documentation/filesystems/dnotify.txt |
2652 | F: fs/notify/dnotify/ | |
2653 | F: include/linux/dnotify.h | |
1da177e4 LT |
2654 | |
2655 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2656 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2657 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2658 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2659 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2660 | S: Maintained | |
2661 | ||
4480f15b | 2662 | DISKQUOTA |
8b58be88 | 2663 | M: Jan Kara <[email protected]> |
1da177e4 | 2664 | S: Maintained |
679655da JP |
2665 | F: Documentation/filesystems/quota.txt |
2666 | F: fs/quota/ | |
2667 | F: include/linux/quota*.h | |
c117ab84 | 2668 | F: include/uapi/linux/quota*.h |
1da177e4 | 2669 | |
702686ad BT |
2670 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2671 | M: Bernie Thompson <[email protected]> | |
2672 | L: [email protected] | |
2673 | S: Maintained | |
2674 | W: http://plugable.com/category/projects/udlfb/ | |
2675 | F: drivers/video/udlfb.c | |
2676 | F: include/video/udlfb.h | |
2677 | F: Documentation/fb/udlfb.txt | |
2678 | ||
e7839f25 | 2679 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2680 | M: Christine Caulfield <[email protected]> |
2681 | M: David Teigland <[email protected]> | |
a4644184 | 2682 | L: [email protected] |
5be7b50f | 2683 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2685 | S: Supported |
679655da | 2686 | F: fs/dlm/ |
5be7b50f | 2687 | |
53b6b3e0 SS |
2688 | DMA BUFFER SHARING FRAMEWORK |
2689 | M: Sumit Semwal <[email protected]> | |
2690 | S: Maintained | |
2691 | L: [email protected] | |
2692 | L: [email protected] | |
2693 | L: [email protected] | |
2694 | F: drivers/base/dma-buf* | |
2695 | F: include/linux/dma-buf* | |
2696 | F: Documentation/dma-buf-sharing.txt | |
2697 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2698 | ||
b3e5f263 | 2699 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2700 | M: Vinod Koul <[email protected]> |
ab5f8c6e | 2701 | M: Dan Williams <[email protected]> |
b3e5f263 | 2702 | S: Supported |
679655da JP |
2703 | F: drivers/dma/ |
2704 | F: include/linux/dma* | |
5dbd05d4 VK |
2705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2706 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2707 | |
b825037d | 2708 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2709 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2710 | L: [email protected] |
2711 | S: Maintained | |
679655da JP |
2712 | F: Documentation/hwmon/dme1737 |
2713 | F: drivers/hwmon/dme1737.c | |
b825037d | 2714 | |
5b9c9bf6 | 2715 | DOCKING STATION DRIVER |
8b58be88 | 2716 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2717 | L: [email protected] |
8b59a454 | 2718 | S: Supported |
679655da | 2719 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2720 | |
7d2c86b5 | 2721 | DOCUMENTATION |
5191d566 | 2722 | M: Rob Landley <[email protected]> |
795fb7e7 | 2723 | L: [email protected] |
5191d566 | 2724 | T: TBD |
795fb7e7 | 2725 | S: Maintained |
679655da | 2726 | F: Documentation/ |
abbaeff3 | 2727 | |
1da177e4 | 2728 | DOUBLETALK DRIVER |
8b58be88 | 2729 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2730 | L: [email protected] |
2731 | S: Maintained | |
679655da JP |
2732 | F: drivers/char/dtlk.c |
2733 | F: include/linux/dtlk.h | |
1da177e4 | 2734 | |
e2d1d6c0 | 2735 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2736 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2737 | L: [email protected] |
2738 | W: http://www.adaptec.com/ | |
2739 | S: Maintained | |
679655da JP |
2740 | F: drivers/scsi/dpt* |
2741 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2742 | |
b411b363 | 2743 | DRBD DRIVER |
28b8e8d4 JP |
2744 | P: Philipp Reisner |
2745 | P: Lars Ellenberg | |
2746 | M: [email protected] | |
2747 | L: [email protected] | |
2748 | W: http://www.drbd.org | |
2749 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2750 | T: git git://git.drbd.org/drbd-8.3.git | |
2751 | S: Supported | |
2752 | F: drivers/block/drbd/ | |
2753 | F: lib/lru_cache.c | |
2754 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2755 | |
87544653 | 2756 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2757 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2758 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2759 | S: Supported |
679655da | 2760 | F: Documentation/kobject.txt |
7cfc51b9 | 2761 | F: drivers/base/ |
679655da | 2762 | F: fs/sysfs/ |
87544653 | 2763 | F: fs/debugfs/ |
679655da | 2764 | F: include/linux/kobj* |
87544653 | 2765 | F: include/linux/debugfs.h |
679655da | 2766 | F: lib/kobj* |
1da177e4 LT |
2767 | |
2768 | DRM DRIVERS | |
8b58be88 | 2769 | M: David Airlie <[email protected]> |
4c6a3999 | 2770 | L: [email protected] |
54e5881d | 2771 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2772 | S: Maintained |
679655da | 2773 | F: drivers/gpu/drm/ |
850e9411 | 2774 | F: include/drm/ |
c117ab84 | 2775 | F: include/uapi/drm/ |
1da177e4 | 2776 | |
8daf7473 | 2777 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2778 | M: Daniel Vetter <[email protected]> |
362132d2 | 2779 | L: [email protected] |
8daf7473 | 2780 | L: [email protected] |
38e490fe | 2781 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 | 2782 | S: Supported |
14430813 | 2783 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2784 | F: include/drm/i915* |
c117ab84 | 2785 | F: include/uapi/drm/i915* |
8daf7473 | 2786 | |
398a6d4a KP |
2787 | DRM DRIVERS FOR EXYNOS |
2788 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2789 | M: Joonyoung Shim <[email protected]> |
2790 | M: Seung-Woo Kim <[email protected]> | |
2791 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2792 | L: [email protected] |
25a58030 | 2793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2794 | S: Supported |
14430813 | 2795 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2796 | F: include/drm/exynos* |
c117ab84 | 2797 | F: include/uapi/drm/exynos* |
398a6d4a | 2798 | |
bd3b49f2 | 2799 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2800 | M: Thierry Reding <[email protected]> |
2801 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2802 | L: [email protected] |
2803 | L: [email protected] | |
a5ad7a63 | 2804 | T: git git://anongit.freedesktop.org/tegra/linux.git |
bd3b49f2 | 2805 | S: Maintained |
a5ad7a63 TR |
2806 | F: drivers/gpu/host1x/ |
2807 | F: include/uapi/drm/tegra_drm.h | |
bd3b49f2 TR |
2808 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2809 | ||
598df1ac AK |
2810 | DSBR100 USB FM RADIO DRIVER |
2811 | M: Alexey Klimov <[email protected]> | |
2812 | L: [email protected] | |
2813 | T: git git://linuxtv.org/media_tree.git | |
2814 | S: Maintained | |
2815 | F: drivers/media/radio/dsbr100.c | |
2816 | ||
1da177e4 | 2817 | DSCC4 DRIVER |
8b58be88 | 2818 | M: Francois Romieu <[email protected]> |
01f20734 | 2819 | L: [email protected] |
1da177e4 | 2820 | S: Maintained |
679655da | 2821 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2822 | |
91952bc0 AP |
2823 | DVB_USB_AF9015 MEDIA DRIVER |
2824 | M: Antti Palosaari <[email protected]> | |
2825 | L: [email protected] | |
2826 | W: http://linuxtv.org/ | |
2827 | W: http://palosaari.fi/linux/ | |
2828 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2829 | T: git git://linuxtv.org/anttip/media_tree.git | |
2830 | S: Maintained | |
2831 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2832 | ||
2833 | DVB_USB_AF9035 MEDIA DRIVER | |
2834 | M: Antti Palosaari <[email protected]> | |
2835 | L: [email protected] | |
2836 | W: http://linuxtv.org/ | |
2837 | W: http://palosaari.fi/linux/ | |
2838 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2839 | T: git git://linuxtv.org/anttip/media_tree.git | |
2840 | S: Maintained | |
2841 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2842 | ||
2843 | DVB_USB_ANYSEE MEDIA DRIVER | |
2844 | M: Antti Palosaari <[email protected]> | |
2845 | L: [email protected] | |
2846 | W: http://linuxtv.org/ | |
2847 | W: http://palosaari.fi/linux/ | |
2848 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2849 | T: git git://linuxtv.org/anttip/media_tree.git | |
2850 | S: Maintained | |
2851 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2852 | ||
2853 | DVB_USB_AU6610 MEDIA DRIVER | |
2854 | M: Antti Palosaari <[email protected]> | |
2855 | L: [email protected] | |
2856 | W: http://linuxtv.org/ | |
2857 | W: http://palosaari.fi/linux/ | |
2858 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2859 | T: git git://linuxtv.org/anttip/media_tree.git | |
2860 | S: Maintained | |
2861 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2862 | ||
2863 | DVB_USB_CE6230 MEDIA DRIVER | |
2864 | M: Antti Palosaari <[email protected]> | |
2865 | L: [email protected] | |
2866 | W: http://linuxtv.org/ | |
2867 | W: http://palosaari.fi/linux/ | |
2868 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2869 | T: git git://linuxtv.org/anttip/media_tree.git | |
2870 | S: Maintained | |
2871 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2872 | ||
d099dea2 MK |
2873 | DVB_USB_CXUSB MEDIA DRIVER |
2874 | M: Michael Krufky <[email protected]> | |
2875 | L: [email protected] | |
2876 | W: http://linuxtv.org/ | |
2877 | W: http://github.com/mkrufky | |
2878 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2879 | T: git git://linuxtv.org/media_tree.git | |
2880 | S: Maintained | |
9819da66 | 2881 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2882 | |
91952bc0 | 2883 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2884 | M: Antti Palosaari <[email protected]> |
2885 | L: [email protected] | |
2886 | W: http://linuxtv.org/ | |
2887 | W: http://palosaari.fi/linux/ | |
2888 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2889 | T: git git://linuxtv.org/anttip/media_tree.git | |
2890 | S: Maintained | |
91952bc0 | 2891 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2892 | |
5560983b | 2893 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2894 | M: Antti Palosaari <[email protected]> |
2895 | L: [email protected] | |
2896 | W: http://linuxtv.org/ | |
91952bc0 AP |
2897 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2898 | T: git git://linuxtv.org/anttip/media_tree.git | |
2899 | S: Maintained | |
5560983b | 2900 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2901 | |
8856f5f2 MK |
2902 | DVB_USB_MXL111SF MEDIA DRIVER |
2903 | M: Michael Krufky <[email protected]> | |
2904 | L: [email protected] | |
2905 | W: http://linuxtv.org/ | |
2906 | W: http://github.com/mkrufky | |
2907 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2908 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2909 | S: Maintained | |
2910 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2911 | ||
91952bc0 AP |
2912 | DVB_USB_RTL28XXU MEDIA DRIVER |
2913 | M: Antti Palosaari <[email protected]> | |
2914 | L: [email protected] | |
2915 | W: http://linuxtv.org/ | |
2916 | W: http://palosaari.fi/linux/ | |
2917 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2918 | T: git git://linuxtv.org/anttip/media_tree.git | |
2919 | S: Maintained | |
2920 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2921 | ||
2922 | DVB_USB_V2 MEDIA DRIVER | |
2923 | M: Antti Palosaari <[email protected]> | |
2924 | L: [email protected] | |
2925 | W: http://linuxtv.org/ | |
2926 | W: http://palosaari.fi/linux/ | |
2927 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2928 | T: git git://linuxtv.org/anttip/media_tree.git | |
2929 | S: Maintained | |
2930 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2931 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2932 | ||
ac0ac38f | 2933 | DYNAMIC DEBUG |
5c4a97d1 | 2934 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
2935 | S: Maintained |
2936 | F: lib/dynamic_debug.c | |
2937 | F: include/linux/dynamic_debug.h | |
2938 | ||
789c7048 | 2939 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2940 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2941 | S: Maintained |
df621252 | 2942 | F: drivers/tty/serial/dz.* |
789c7048 | 2943 | |
91952bc0 AP |
2944 | E4000 MEDIA DRIVER |
2945 | M: Antti Palosaari <[email protected]> | |
2946 | L: [email protected] | |
2947 | W: http://linuxtv.org/ | |
2948 | W: http://palosaari.fi/linux/ | |
2949 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2950 | T: git git://linuxtv.org/anttip/media_tree.git | |
2951 | S: Maintained | |
2952 | F: drivers/media/tuners/e4000* | |
2953 | ||
1da177e4 | 2954 | EATA-DMA SCSI DRIVER |
8b58be88 | 2955 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2956 | L: [email protected] |
2957 | L: [email protected] | |
1da177e4 | 2958 | S: Maintained |
679655da | 2959 | F: drivers/scsi/eata* |
1da177e4 LT |
2960 | |
2961 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2962 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2963 | L: [email protected] |
2964 | S: Maintained | |
679655da | 2965 | F: drivers/scsi/eata.c |
1da177e4 LT |
2966 | |
2967 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2968 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2969 | L: [email protected] |
2970 | L: [email protected] | |
1da177e4 | 2971 | S: Maintained |
679655da | 2972 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2973 | |
2974 | EBTABLES | |
8b58be88 | 2975 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 2976 | L: [email protected] |
1da177e4 LT |
2977 | W: http://ebtables.sourceforge.net/ |
2978 | S: Maintained | |
679655da | 2979 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2980 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2981 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2982 | |
91952bc0 AP |
2983 | EC100 MEDIA DRIVER |
2984 | M: Antti Palosaari <[email protected]> | |
2985 | L: [email protected] | |
2986 | W: http://linuxtv.org/ | |
2987 | W: http://palosaari.fi/linux/ | |
2988 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2989 | T: git git://linuxtv.org/anttip/media_tree.git | |
2990 | S: Maintained | |
2991 | F: drivers/media/dvb-frontends/ec100* | |
2992 | ||
237fead6 | 2993 | ECRYPT FILE SYSTEM |
0de9adf2 | 2994 | M: Tyler Hicks <[email protected]> |
a058bfbb | 2995 | L: [email protected] |
24a923e4 | 2996 | W: http://ecryptfs.org |
6dc7516e | 2997 | W: https://launchpad.net/ecryptfs |
237fead6 | 2998 | S: Supported |
679655da JP |
2999 | F: Documentation/filesystems/ecryptfs.txt |
3000 | F: fs/ecryptfs/ | |
237fead6 | 3001 | |
da9bb1d2 | 3002 | EDAC-CORE |
8b58be88 | 3003 | M: Doug Thompson <[email protected]> |
91445c72 | 3004 | L: [email protected] |
0e438e3f | 3005 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3006 | S: Supported |
679655da | 3007 | F: Documentation/edac.txt |
91445c72 | 3008 | F: drivers/edac/ |
679655da | 3009 | F: include/linux/edac.h |
0e438e3f | 3010 | |
c476c23b | 3011 | EDAC-AMD64 |
8b58be88 | 3012 | M: Doug Thompson <[email protected]> |
487ba8e8 | 3013 | M: Borislav Petkov <[email protected]> |
91445c72 | 3014 | L: [email protected] |
c476c23b | 3015 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3016 | S: Maintained |
c476c23b BP |
3017 | F: drivers/edac/amd64_edac* |
3018 | ||
f65aad41 RB |
3019 | EDAC-CAVIUM |
3020 | M: Ralf Baechle <[email protected]> | |
3021 | M: David Daney <[email protected]> | |
3022 | L: [email protected] | |
3023 | L: [email protected] | |
3024 | W: bluesmoke.sourceforge.net | |
3025 | S: Supported | |
3026 | F: drivers/edac/octeon_edac* | |
3027 | ||
0e438e3f | 3028 | EDAC-E752X |
8b58be88 JP |
3029 | M: Mark Gross <[email protected]> |
3030 | M: Doug Thompson <[email protected]> | |
91445c72 | 3031 | L: [email protected] |
0e438e3f DP |
3032 | W: bluesmoke.sourceforge.net |
3033 | S: Maintained | |
679655da | 3034 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3035 | |
3036 | EDAC-E7XXX | |
8b58be88 | 3037 | M: Doug Thompson <[email protected]> |
91445c72 | 3038 | L: [email protected] |
0e438e3f DP |
3039 | W: bluesmoke.sourceforge.net |
3040 | S: Maintained | |
679655da | 3041 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3042 | |
77c5f5d2 | 3043 | EDAC-GHES |
1b2c14b4 | 3044 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
3045 | L: [email protected] |
3046 | W: bluesmoke.sourceforge.net | |
3047 | S: Maintained | |
2caa67a6 | 3048 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3049 | |
6bc78404 | 3050 | EDAC-I82443BXGX |
8b58be88 | 3051 | M: Tim Small <[email protected]> |
91445c72 | 3052 | L: [email protected] |
6bc78404 DT |
3053 | W: bluesmoke.sourceforge.net |
3054 | S: Maintained | |
679655da | 3055 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3056 | |
3057 | EDAC-I3000 | |
8b58be88 | 3058 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3059 | L: [email protected] |
6bc78404 DT |
3060 | W: bluesmoke.sourceforge.net |
3061 | S: Maintained | |
679655da | 3062 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3063 | |
3064 | EDAC-I5000 | |
8b58be88 | 3065 | M: Doug Thompson <[email protected]> |
91445c72 | 3066 | L: [email protected] |
ba9a5918 DT |
3067 | W: bluesmoke.sourceforge.net |
3068 | S: Maintained | |
679655da | 3069 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3070 | |
44c12cb2 | 3071 | EDAC-I5400 |
1b2c14b4 | 3072 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3073 | L: [email protected] |
44c12cb2 MCC |
3074 | W: bluesmoke.sourceforge.net |
3075 | S: Maintained | |
679655da | 3076 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3077 | |
3c9c92b6 | 3078 | EDAC-I7300 |
1b2c14b4 | 3079 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3080 | L: [email protected] |
3081 | W: bluesmoke.sourceforge.net | |
3082 | S: Maintained | |
3083 | F: drivers/edac/i7300_edac.c | |
3084 | ||
67c89316 | 3085 | EDAC-I7CORE |
1b2c14b4 | 3086 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3087 | L: [email protected] |
3088 | W: bluesmoke.sourceforge.net | |
3089 | S: Maintained | |
70aff0ce | 3090 | F: drivers/edac/i7core_edac.c |
67c89316 | 3091 | |
ba9a5918 | 3092 | EDAC-I82975X |
8b58be88 | 3093 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3094 | M: "Arvind R." <[email protected]> |
91445c72 | 3095 | L: [email protected] |
ba9a5918 DT |
3096 | W: bluesmoke.sourceforge.net |
3097 | S: Maintained | |
679655da | 3098 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
3099 | |
3100 | EDAC-PASEMI | |
8b58be88 | 3101 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3102 | L: [email protected] |
6bc78404 DT |
3103 | W: bluesmoke.sourceforge.net |
3104 | S: Maintained | |
679655da | 3105 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3106 | |
0e438e3f | 3107 | EDAC-R82600 |
8b58be88 | 3108 | M: Tim Small <[email protected]> |
91445c72 | 3109 | L: [email protected] |
0e438e3f DP |
3110 | W: bluesmoke.sourceforge.net |
3111 | S: Maintained | |
679655da | 3112 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3113 | |
4d096ca7 | 3114 | EDAC-SBRIDGE |
1b2c14b4 | 3115 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3116 | L: [email protected] |
3117 | W: bluesmoke.sourceforge.net | |
3118 | S: Maintained | |
3119 | F: drivers/edac/sb_edac.c | |
3120 | ||
af39917d CL |
3121 | EDIROL UA-101/UA-1000 DRIVER |
3122 | M: Clemens Ladisch <[email protected]> | |
3123 | L: [email protected] (moderated for non-subscribers) | |
3124 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3125 | S: Maintained | |
3126 | F: sound/usb/misc/ua101.c | |
3127 | ||
1f7df953 MF |
3128 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3129 | M: Matt Fleming <[email protected]> | |
3130 | L: [email protected] | |
78bef24e | 3131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3132 | S: Maintained |
3133 | F: Documentation/x86/efi-stub.txt | |
3134 | F: arch/ia64/kernel/efi.c | |
3135 | F: arch/x86/boot/compressed/eboot.[ch] | |
3136 | F: arch/x86/include/asm/efi.h | |
3137 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3138 | F: drivers/firmware/efi/* |
1f7df953 MF |
3139 | F: include/linux/efi*.h |
3140 | ||
d68772b7 MF |
3141 | EFI VARIABLE FILESYSTEM |
3142 | M: Matthew Garrett <[email protected]> | |
3143 | M: Jeremy Kerr <[email protected]> | |
3144 | M: Matt Fleming <[email protected]> | |
3145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3146 | L: [email protected] | |
3147 | S: Maintained | |
3148 | F: fs/efivarfs/ | |
3149 | ||
85a00d9b PJ |
3150 | EFIFB FRAMEBUFFER DRIVER |
3151 | L: [email protected] | |
3152 | M: Peter Jones <[email protected]> | |
3153 | S: Maintained | |
3154 | F: drivers/video/efifb.c | |
3155 | ||
0bee8d28 JT |
3156 | EFS FILESYSTEM |
3157 | W: http://aeschi.ch.eu.org/efs/ | |
3158 | S: Orphan | |
679655da | 3159 | F: fs/efs/ |
0bee8d28 | 3160 | |
4480f15b | 3161 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3162 | M: Hoang-Nam Nguyen <[email protected]> |
3163 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3164 | L: [email protected] |
fab97220 | 3165 | S: Supported |
679655da | 3166 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3167 | |
aa8a9e25 | 3168 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3169 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3170 | L: [email protected] |
3171 | S: Maintained | |
9aa32835 | 3172 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3173 | |
f0319efe | 3174 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3175 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3176 | L: [email protected] |
3177 | W: http://linuxtv.org | |
3178 | T: git git://linuxtv.org/media_tree.git | |
3179 | S: Maintained | |
3180 | F: drivers/media/usb/em28xx/ | |
3181 | ||
3e3a7d66 | 3182 | EMBEDDED LINUX |
8b58be88 JP |
3183 | M: Paul Gortmaker <[email protected]> |
3184 | M: Matt Mackall <[email protected]> | |
3185 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3186 | L: [email protected] |
3187 | S: Maintained | |
3188 | ||
3a1c1d44 | 3189 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3190 | M: James Smart <[email protected]> |
ce00f85c JC |
3191 | L: [email protected] |
3192 | W: http://sourceforge.net/projects/lpfcxxxx | |
3193 | S: Supported | |
679655da | 3194 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3195 | |
5f5bac82 | 3196 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3197 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3198 | S: Maintained |
3199 | F: drivers/misc/cb710/ | |
3200 | F: drivers/mmc/host/cb710-mmc.* | |
3201 | F: include/linux/cb710.h | |
3202 | ||
931e39a1 ML |
3203 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3204 | M: Maxim Levitsky <[email protected]> | |
3205 | S: Maintained | |
2a837449 | 3206 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3207 | |
ec207dcc GS |
3208 | ENHANCED ERROR HANDLING (EEH) |
3209 | M: Gavin Shan <[email protected]> | |
3210 | L: [email protected] | |
3211 | S: Supported | |
3212 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3213 | F: arch/powerpc/kernel/eeh*.c | |
3214 | ||
d5ca9006 | 3215 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3216 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3217 | S: Maintained |
084bad91 | 3218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3219 | F: drivers/video/s1d13xxxfb.c |
3220 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3221 | |
1da177e4 | 3222 | ETHERNET BRIDGE |
adbbf69d | 3223 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3224 | L: [email protected] |
4c325313 | 3225 | L: [email protected] |
c996d8b9 | 3226 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3227 | S: Maintained |
679655da JP |
3228 | F: include/linux/netfilter_bridge/ |
3229 | F: net/bridge/ | |
1da177e4 | 3230 | |
1da177e4 | 3231 | EXT2 FILE SYSTEM |
01971952 | 3232 | M: Jan Kara <[email protected]> |
72be2ccf | 3233 | L: [email protected] |
1da177e4 | 3234 | S: Maintained |
679655da JP |
3235 | F: Documentation/filesystems/ext2.txt |
3236 | F: fs/ext2/ | |
3237 | F: include/linux/ext2* | |
1da177e4 LT |
3238 | |
3239 | EXT3 FILE SYSTEM | |
01971952 | 3240 | M: Jan Kara <[email protected]> |
8b58be88 | 3241 | M: Andrew Morton <[email protected]> |
3c373a5f | 3242 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3243 | L: [email protected] |
3244 | S: Maintained | |
679655da JP |
3245 | F: Documentation/filesystems/ext3.txt |
3246 | F: fs/ext3/ | |
72be2ccf EM |
3247 | |
3248 | EXT4 FILE SYSTEM | |
8b58be88 | 3249 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3250 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3251 | L: [email protected] |
08a225f1 | 3252 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3253 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3254 | S: Maintained |
679655da JP |
3255 | F: Documentation/filesystems/ext4.txt |
3256 | F: fs/ext4/ | |
1da177e4 | 3257 | |
c5532b09 MZ |
3258 | Extended Verification Module (EVM) |
3259 | M: Mimi Zohar <[email protected]> | |
3260 | S: Supported | |
3261 | F: security/integrity/evm/ | |
3262 | ||
df6b3cfe MH |
3263 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3264 | M: MyungJoo Ham <[email protected]> | |
3265 | M: Chanwoo Choi <[email protected]> | |
3266 | L: [email protected] | |
3267 | S: Maintained | |
3268 | F: drivers/extcon/ | |
3269 | F: Documentation/extcon/ | |
3270 | ||
0a79951a JH |
3271 | EXYNOS DP DRIVER |
3272 | M: Jingoo Han <[email protected]> | |
3273 | L: [email protected] | |
3274 | S: Maintained | |
3275 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3276 | F: include/video/exynos_dp* |
0a79951a | 3277 | |
33ad3912 DL |
3278 | EXYNOS MIPI DISPLAY DRIVERS |
3279 | M: Inki Dae <[email protected]> | |
3280 | M: Donghwa Lee <[email protected]> | |
3281 | M: Kyungmin Park <[email protected]> | |
3282 | L: [email protected] | |
3283 | S: Maintained | |
3284 | F: drivers/video/exynos/exynos_mipi* | |
3285 | F: include/video/exynos_mipi* | |
3286 | ||
e53004e2 | 3287 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3288 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3289 | L: [email protected] |
3290 | S: Maintained | |
679655da JP |
3291 | F: Documentation/hwmon/f71805f |
3292 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3293 | |
eea977ed MB |
3294 | FC0011 TUNER DRIVER |
3295 | M: Michael Buesch <[email protected]> | |
3296 | L: [email protected] | |
3297 | S: Maintained | |
ccae7af2 MCC |
3298 | F: drivers/media/tuners/fc0011.h |
3299 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3300 | |
91952bc0 AP |
3301 | FC2580 MEDIA DRIVER |
3302 | M: Antti Palosaari <[email protected]> | |
3303 | L: [email protected] | |
3304 | W: http://linuxtv.org/ | |
3305 | W: http://palosaari.fi/linux/ | |
3306 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3307 | T: git git://linuxtv.org/anttip/media_tree.git | |
3308 | S: Maintained | |
3309 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3310 | |
88b2dbdb EP |
3311 | FANOTIFY |
3312 | M: Eric Paris <[email protected]> | |
3313 | S: Maintained | |
3314 | F: fs/notify/fanotify/ | |
3315 | F: include/linux/fanotify.h | |
c117ab84 | 3316 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3317 | |
1da177e4 | 3318 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3319 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3320 | W: http://www.farsite.co.uk/ |
3321 | S: Supported | |
679655da | 3322 | F: drivers/net/wan/farsync.* |
1da177e4 | 3323 | |
c5408b88 | 3324 | FAULT INJECTION SUPPORT |
8b58be88 | 3325 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3326 | S: Supported |
679655da JP |
3327 | F: Documentation/fault-injection/ |
3328 | F: lib/fault-inject.c | |
c5408b88 | 3329 | |
cae727db RL |
3330 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3331 | M: Robert Love <[email protected]> | |
f4aaea6d | 3332 | L: [email protected] |
cae727db RL |
3333 | W: www.Open-FCoE.org |
3334 | S: Supported | |
3335 | F: drivers/scsi/libfc/ | |
3336 | F: drivers/scsi/fcoe/ | |
3337 | F: include/scsi/fc/ | |
3338 | F: include/scsi/libfc.h | |
3339 | F: include/scsi/libfcoe.h | |
c117ab84 | 3340 | F: include/uapi/scsi/fc/ |
cae727db | 3341 | |
e2d1d6c0 | 3342 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3343 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3344 | L: [email protected] |
1da177e4 | 3345 | S: Maintained |
679655da JP |
3346 | F: include/linux/fcntl.h |
3347 | F: include/linux/fs.h | |
c117ab84 CEB |
3348 | F: include/uapi/linux/fcntl.h |
3349 | F: include/uapi/linux/fs.h | |
679655da JP |
3350 | F: fs/fcntl.c |
3351 | F: fs/locks.c | |
1da177e4 | 3352 | |
e2d1d6c0 | 3353 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3354 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3355 | L: [email protected] |
173acc7c | 3356 | S: Maintained |
679655da | 3357 | F: fs/* |
173acc7c | 3358 | |
b26e0ed4 | 3359 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3360 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3361 | L: [email protected] |
3362 | S: Maintained | |
d5ca6918 JP |
3363 | F: drivers/hwmon/f75375s.c |
3364 | F: include/linux/f75375s.h | |
b26e0ed4 | 3365 | |
a331b0c3 CL |
3366 | FIREWIRE AUDIO DRIVERS |
3367 | M: Clemens Ladisch <[email protected]> | |
3368 | L: [email protected] (moderated for non-subscribers) | |
3369 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3370 | S: Maintained | |
3371 | F: sound/firewire/ | |
3372 | ||
eb86ec51 SR |
3373 | FIREWIRE MEDIA DRIVERS (firedtv) |
3374 | M: Stefan Richter <[email protected]> | |
3375 | L: [email protected] | |
3376 | L: [email protected] | |
3377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3378 | S: Maintained | |
3379 | F: drivers/media/firewire/ | |
3380 | ||
a511ce33 CB |
3381 | FIREWIRE SBP-2 TARGET |
3382 | M: Chris Boot <[email protected]> | |
3383 | L: [email protected] | |
3384 | L: [email protected] | |
3385 | L: [email protected] | |
3386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3387 | S: Maintained | |
3388 | F: drivers/target/sbp/ | |
3389 | ||
7d2c86b5 | 3390 | FIREWIRE SUBSYSTEM |
8b58be88 | 3391 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3392 | L: [email protected] |
958a29cb | 3393 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3395 | S: Maintained |
679655da | 3396 | F: drivers/firewire/ |
8f06ce3b SR |
3397 | F: include/linux/firewire.h |
3398 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3399 | F: tools/firewire/ |
e2d1d6c0 RD |
3400 | |
3401 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3402 | M: Ming Lei <[email protected]> |
3403 | L: [email protected] | |
3404 | S: Maintained | |
679655da JP |
3405 | F: Documentation/firmware_class/ |
3406 | F: drivers/base/firmware*.c | |
3407 | F: include/linux/firmware.h | |
e2d1d6c0 | 3408 | |
f730e3dc | 3409 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3410 | M: Joshua Morris <[email protected]> |
3411 | M: Philip Kelleher <[email protected]> | |
3412 | S: Maintained | |
3413 | F: drivers/block/rsxx/ | |
3414 | ||
8206f664 JK |
3415 | FLOPPY DRIVER |
3416 | M: Jiri Kosina <[email protected]> | |
3417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3418 | S: Odd fixes | |
3419 | F: drivers/block/floppy.c | |
3420 | ||
9c9f32ed AR |
3421 | FMC SUBSYSTEM |
3422 | M: Alessandro Rubini <[email protected]> | |
3423 | W: http://www.ohwr.org/projects/fmc-bus | |
3424 | S: Supported | |
3425 | F: drivers/fmc/ | |
3426 | F: include/linux/fmc*.h | |
3427 | F: include/linux/ipmi-fru.h | |
3428 | K: fmc_d.*register | |
3429 | ||
e2d1d6c0 | 3430 | FPU EMULATOR |
8b58be88 | 3431 | M: Bill Metzenthen <[email protected]> |
e769980f | 3432 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3433 | S: Maintained |
679655da | 3434 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3435 | |
3436 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3437 | L: [email protected] |
c173bfac | 3438 | S: Orphan |
679655da JP |
3439 | F: drivers/net/wan/dlci.c |
3440 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3441 | |
3442 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3443 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3444 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3445 | L: [email protected] |
e2d1d6c0 | 3446 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3447 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3449 | S: Maintained |
679655da | 3450 | F: Documentation/fb/ |
d958c62c | 3451 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3452 | F: drivers/video/ |
3453 | F: include/video/ | |
679655da | 3454 | F: include/linux/fb.h |
c117ab84 CEB |
3455 | F: include/uapi/video/ |
3456 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3457 | |
a57c188e | 3458 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3459 | M: Timur Tabi <[email protected]> |
a57c188e | 3460 | L: [email protected] |
c4ef9bc4 | 3461 | S: Maintained |
a57c188e TT |
3462 | F: drivers/video/fsl-diu-fb.* |
3463 | ||
e2d1d6c0 | 3464 | FREESCALE DMA DRIVER |
8b58be88 JP |
3465 | M: Li Yang <[email protected]> |
3466 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3467 | L: [email protected] |
e2d1d6c0 | 3468 | S: Maintained |
679655da | 3469 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3470 | |
3471 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3472 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3473 | L: [email protected] |
846557d3 | 3474 | L: [email protected] |
0d2b405a | 3475 | S: Maintained |
679655da | 3476 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3477 | |
60e8c5ab | 3478 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3479 | M: Sascha Hauer <[email protected]> |
c69f677c | 3480 | L: [email protected] |
efc03ecb | 3481 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3482 | S: Maintained |
bad985a1 | 3483 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3484 | F: drivers/video/imxfb.c |
60e8c5ab | 3485 | |
4689a6b1 | 3486 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3487 | M: Pantelis Antoniou <[email protected]> |
3488 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3489 | L: [email protected] |
4689a6b1 PA |
3490 | L: [email protected] |
3491 | S: Maintained | |
ec21e2ec | 3492 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3493 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3494 | |
d9e9d82c | 3495 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3496 | L: [email protected] |
c4ef9bc4 | 3497 | S: Orphan |
679655da JP |
3498 | F: arch/powerpc/sysdev/qe_lib/ |
3499 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3500 | |
b55ef929 | 3501 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3502 | M: Li Yang <[email protected]> |
6372594a | 3503 | L: [email protected] |
a4724ed6 | 3504 | L: [email protected] |
a7205b30 | 3505 | S: Maintained |
5429c731 | 3506 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3507 | |
beaf53bf | 3508 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3509 | M: Li Yang <[email protected]> |
beaf53bf | 3510 | L: [email protected] |
a4724ed6 | 3511 | L: [email protected] |
beaf53bf | 3512 | S: Maintained |
ec21e2ec | 3513 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3514 | |
d9e9d82c | 3515 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3516 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3517 | L: [email protected] |
c4ef9bc4 | 3518 | S: Maintained |
df621252 | 3519 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3520 | |
3521 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3522 | M: Timur Tabi <[email protected]> |
93711660 | 3523 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3524 | L: [email protected] |
c4ef9bc4 | 3525 | S: Maintained |
69aefcea JP |
3526 | F: sound/soc/fsl/fsl* |
3527 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3528 | |
1da177e4 | 3529 | FREEVXFS FILESYSTEM |
8b58be88 | 3530 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3531 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3532 | S: Maintained | |
679655da | 3533 | F: fs/freevxfs/ |
1da177e4 | 3534 | |
71038f52 | 3535 | FREEZER |
8b58be88 JP |
3536 | M: Pavel Machek <[email protected]> |
3537 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3538 | L: [email protected] |
71038f52 | 3539 | S: Supported |
679655da JP |
3540 | F: Documentation/power/freezing-of-tasks.txt |
3541 | F: include/linux/freezer.h | |
3542 | F: kernel/freezer.c | |
71038f52 | 3543 | |
839a1f79 KRW |
3544 | FRONTSWAP API |
3545 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3546 | L: [email protected] | |
3547 | S: Maintained | |
3548 | F: mm/frontswap.c | |
3549 | F: include/linux/frontswap.h | |
3550 | ||
a5432f5a | 3551 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3552 | M: David Howells <[email protected]> |
a5432f5a DH |
3553 | L: [email protected] |
3554 | S: Supported | |
3555 | F: Documentation/filesystems/caching/ | |
3556 | F: fs/fscache/ | |
3557 | F: include/linux/fscache*.h | |
3558 | ||
f58ad8f5 JK |
3559 | F2FS FILE SYSTEM |
3560 | M: Jaegeuk Kim <[email protected]> | |
3561 | L: [email protected] | |
3562 | W: http://en.wikipedia.org/wiki/F2FS | |
3563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3564 | S: Maintained | |
3565 | F: Documentation/filesystems/f2fs.txt | |
3566 | F: fs/f2fs/ | |
3567 | F: include/linux/f2fs_fs.h | |
3568 | ||
5ab7ffea | 3569 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3570 | M: David Howells <[email protected]> |
1da177e4 | 3571 | S: Maintained |
679655da | 3572 | F: arch/frv/ |
1da177e4 | 3573 | |
20b93734 | 3574 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3575 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3576 | L: [email protected] |
20b93734 | 3577 | S: Maintained |
679655da | 3578 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3579 | |
4da621b6 HK |
3580 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3581 | M: Kyungmin Park <[email protected]> | |
3582 | M: Heungjun Kim <[email protected]> | |
3583 | L: [email protected] | |
3584 | S: Maintained | |
90d72ac6 | 3585 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3586 | F: include/media/m5mols.h |
3587 | ||
2d24c490 RG |
3588 | FUJITSU TABLET EXTRAS |
3589 | M: Robert Gerlach <[email protected]> | |
3590 | L: [email protected] | |
3591 | S: Maintained | |
3592 | F: drivers/platform/x86/fujitsu-tablet.c | |
3593 | ||
04578f17 | 3594 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3595 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3596 | L: [email protected] |
3597 | W: http://fuse.sourceforge.net/ | |
3598 | S: Maintained | |
679655da | 3599 | F: fs/fuse/ |
c117ab84 | 3600 | F: include/uapi/linux/fuse.h |
04578f17 | 3601 | |
1da177e4 | 3602 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3603 | M: Rik Faith <[email protected]> |
1da177e4 | 3604 | L: [email protected] |
baaea1dc | 3605 | S: Odd Fixes (e.g., new signatures) |
679655da | 3606 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3607 | |
3608 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3609 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3610 | L: [email protected] |
3611 | W: http://www.icp-vortex.com/ | |
3612 | S: Supported | |
679655da | 3613 | F: drivers/scsi/gdt* |
1da177e4 | 3614 | |
3169a1c7 HV |
3615 | GEMTEK FM RADIO RECEIVER DRIVER |
3616 | M: Hans Verkuil <[email protected]> | |
3617 | L: [email protected] | |
3618 | T: git git://linuxtv.org/media_tree.git | |
3619 | W: http://linuxtv.org | |
3620 | S: Maintained | |
3621 | F: drivers/media/radio/radio-gemtek* | |
3622 | ||
1c23af90 | 3623 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3624 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3625 | S: Supported |
679655da JP |
3626 | F: drivers/i2c/busses/i2c-gpio.c |
3627 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3628 | |
92ed1a76 PK |
3629 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3630 | M: Peter Korsgaard <[email protected]> | |
3631 | L: [email protected] | |
3632 | S: Supported | |
e7065e20 JD |
3633 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3634 | F: include/linux/i2c-mux-gpio.h | |
3635 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3636 | |
9251ce95 | 3637 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3638 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3639 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3640 | S: Maintained | |
679655da JP |
3641 | F: drivers/net/wan/c101.c |
3642 | F: drivers/net/wan/hd6457* | |
3643 | F: drivers/net/wan/hdlc* | |
3644 | F: drivers/net/wan/n2.c | |
3645 | F: drivers/net/wan/pc300too.c | |
3646 | F: drivers/net/wan/pci200syn.c | |
3647 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3648 | |
1527aab6 | 3649 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3650 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3651 | L: [email protected] |
3652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3653 | S: Maintained | |
14430813 JP |
3654 | F: include/asm-generic/ |
3655 | F: include/uapi/asm-generic/ | |
1527aab6 | 3656 | |
ccb86a69 | 3657 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3658 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3659 | L: [email protected] |
ccb86a69 MT |
3660 | S: Supported |
3661 | F: drivers/uio/uio_pci_generic.c | |
3662 | ||
5be7b50f | 3663 | GFS2 FILE SYSTEM |
8b58be88 | 3664 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3665 | L: [email protected] |
5be7b50f | 3666 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3667 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3668 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3669 | S: Supported |
679655da JP |
3670 | F: Documentation/filesystems/gfs2*.txt |
3671 | F: fs/gfs2/ | |
c117ab84 | 3672 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3673 | |
0a34eb8f | 3674 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3675 | M: Hansjoerg Lipp <[email protected]> |
3676 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3677 | L: [email protected] |
3678 | W: http://gigaset307x.sourceforge.net/ | |
3679 | S: Maintained | |
679655da JP |
3680 | F: Documentation/isdn/README.gigaset |
3681 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3682 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3683 | |
a0dc00b4 | 3684 | GPIO SUBSYSTEM |
e4651a9f | 3685 | M: Linus Walleij <[email protected]> |
a0dc00b4 | 3686 | S: Maintained |
d15b7179 | 3687 | L: [email protected] |
98909cf0 | 3688 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3689 | F: drivers/gpio/ |
3690 | F: include/linux/gpio* | |
9b692346 | 3691 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3692 | |
71a6d0af HW |
3693 | GRE DEMULTIPLEXER DRIVER |
3694 | M: Dmitry Kozlov <[email protected]> | |
3695 | L: [email protected] | |
3696 | S: Maintained | |
11c26770 JP |
3697 | F: net/ipv4/gre_demux.c |
3698 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3699 | F: include/net/gre.h |
3700 | ||
d4c41139 KG |
3701 | GRETH 10/100/1G Ethernet MAC device driver |
3702 | M: Kristoffer Glembo <[email protected]> | |
3703 | L: [email protected] | |
3704 | S: Maintained | |
a31a96ad | 3705 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3706 | |
e8deeae2 | 3707 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3708 | M: Frank Zago <[email protected]> |
661263b5 | 3709 | L: [email protected] |
275ffde4 | 3710 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3711 | S: Maintained |
0c0d06ca | 3712 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3713 | |
4b3fa3c4 OL |
3714 | GSPCA GL860 SUBDRIVER |
3715 | M: Olivier Lorin <[email protected]> | |
3716 | L: [email protected] | |
275ffde4 | 3717 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3718 | S: Maintained |
0c0d06ca | 3719 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3720 | |
e8deeae2 | 3721 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3722 | M: Erik Andren <[email protected]> |
661263b5 | 3723 | L: [email protected] |
275ffde4 | 3724 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3725 | S: Maintained |
0c0d06ca | 3726 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3727 | |
3728 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3729 | M: Hans de Goede <[email protected]> |
661263b5 | 3730 | L: [email protected] |
275ffde4 | 3731 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3732 | S: Maintained |
0c0d06ca | 3733 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3734 | |
261982f1 | 3735 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3736 | M: Brian Johnson <[email protected]> |
261982f1 | 3737 | L: [email protected] |
275ffde4 | 3738 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3739 | S: Maintained |
0c0d06ca | 3740 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3741 | |
e8deeae2 | 3742 | GSPCA T613 SUBDRIVER |
8b58be88 | 3743 | M: Leandro Costantino <[email protected]> |
661263b5 | 3744 | L: [email protected] |
275ffde4 | 3745 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3746 | S: Maintained |
0c0d06ca | 3747 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3748 | |
3749 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3750 | M: Hans de Goede <[email protected]> |
661263b5 | 3751 | L: [email protected] |
275ffde4 | 3752 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3753 | S: Maintained |
0c0d06ca | 3754 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3755 | |
aa3c598b EG |
3756 | STK1160 USB VIDEO CAPTURE DRIVER |
3757 | M: Ezequiel Garcia <[email protected]> | |
3758 | L: [email protected] | |
275ffde4 | 3759 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3760 | S: Maintained |
3761 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3762 | |
71a6d0af HW |
3763 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3764 | M: Frank Seidel <[email protected]> | |
3765 | L: [email protected] | |
3766 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3767 | S: Maintained | |
3768 | F: drivers/platform/x86/hdaps.c | |
3769 | ||
48fc9e26 HV |
3770 | HDPVR USB VIDEO ENCODER DRIVER |
3771 | M: Hans Verkuil <[email protected]> | |
3772 | L: [email protected] | |
3773 | T: git git://linuxtv.org/media_tree.git | |
3774 | W: http://linuxtv.org | |
3775 | S: Odd Fixes | |
14430813 | 3776 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 3777 | |
71a6d0af HW |
3778 | HWPOISON MEMORY FAILURE HANDLING |
3779 | M: Andi Kleen <[email protected]> | |
3780 | L: [email protected] | |
3781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3782 | S: Maintained | |
3783 | F: mm/memory-failure.c | |
3784 | F: mm/hwpoison-inject.c | |
3785 | ||
3786 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3787 | L: [email protected] | |
3788 | S: Odd Fixes | |
3789 | F: drivers/tty/hvc/ | |
3790 | ||
5b543965 | 3791 | HARDWARE MONITORING |
9e012c1a | 3792 | M: Jean Delvare <[email protected]> |
ca462085 | 3793 | M: Guenter Roeck <[email protected]> |
5b543965 | 3794 | L: [email protected] |
595142e0 | 3795 | W: http://www.lm-sensors.org/ |
9e012c1a | 3796 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3798 | S: Maintained |
047f4ec2 | 3799 | F: Documentation/hwmon/ |
679655da | 3800 | F: drivers/hwmon/ |
047f4ec2 | 3801 | F: include/linux/hwmon*.h |
5b543965 | 3802 | |
844dd05f | 3803 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3804 | M: Matt Mackall <[email protected]> |
3805 | M: Herbert Xu <[email protected]> | |
3806 | S: Odd fixes | |
679655da JP |
3807 | F: Documentation/hw_random.txt |
3808 | F: drivers/char/hw_random/ | |
3809 | F: include/linux/hw_random.h | |
844dd05f | 3810 | |
8b37fcfc OBC |
3811 | HARDWARE SPINLOCK CORE |
3812 | M: Ohad Ben-Cohen <[email protected]> | |
3813 | S: Maintained | |
3814 | F: Documentation/hwspinlock.txt | |
3815 | F: drivers/hwspinlock/hwspinlock_* | |
3816 | F: include/linux/hwspinlock.h | |
3817 | ||
1da177e4 | 3818 | HARMONY SOUND DRIVER |
ac6aecbf | 3819 | L: [email protected] |
1da177e4 | 3820 | S: Maintained |
679655da | 3821 | F: sound/parisc/harmony.* |
1da177e4 | 3822 | |
91952bc0 AP |
3823 | HD29L2 MEDIA DRIVER |
3824 | M: Antti Palosaari <[email protected]> | |
3825 | L: [email protected] | |
3826 | W: http://linuxtv.org/ | |
3827 | W: http://palosaari.fi/linux/ | |
3828 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3829 | T: git git://linuxtv.org/anttip/media_tree.git | |
3830 | S: Maintained | |
3831 | F: drivers/media/dvb-frontends/hd29l2* | |
3832 | ||
e2d1d6c0 | 3833 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3834 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3835 | L: [email protected] |
3836 | S: Maintained | |
679655da JP |
3837 | F: Documentation/blockdev/cpqarray.txt |
3838 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3839 | |
9257aa49 | 3840 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3841 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3842 | L: [email protected] |
3843 | S: Supported | |
3844 | F: Documentation/scsi/hpsa.txt | |
3845 | F: drivers/scsi/hpsa*.[ch] | |
3846 | F: include/linux/cciss*.h | |
c117ab84 | 3847 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3848 | |
e2d1d6c0 | 3849 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3850 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3851 | L: [email protected] |
3852 | S: Supported | |
679655da JP |
3853 | F: Documentation/blockdev/cciss.txt |
3854 | F: drivers/block/cciss* | |
3855 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3856 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3857 | |
1da177e4 | 3858 | HFS FILESYSTEM |
6cf515e1 GU |
3859 | L: [email protected] |
3860 | S: Orphan | |
679655da JP |
3861 | F: Documentation/filesystems/hfs.txt |
3862 | F: fs/hfs/ | |
1da177e4 LT |
3863 | |
3864 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3865 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3866 | L: [email protected] |
3867 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3868 | S: Maintained | |
679655da | 3869 | F: drivers/video/hgafb.c |
1da177e4 | 3870 | |
4480f15b | 3871 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3872 | M: Pavel Machek <[email protected]> |
3873 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3874 | L: [email protected] |
e2d1d6c0 | 3875 | S: Supported |
679655da JP |
3876 | F: arch/x86/power/ |
3877 | F: drivers/base/power/ | |
3878 | F: kernel/power/ | |
3879 | F: include/linux/suspend.h | |
3880 | F: include/linux/freezer.h | |
3881 | F: include/linux/pm.h | |
679655da | 3882 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3883 | |
4ef4caad | 3884 | HID CORE LAYER |
8b58be88 | 3885 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3886 | L: [email protected] |
54e5881d | 3887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3888 | S: Maintained |
679655da JP |
3889 | F: drivers/hid/ |
3890 | F: include/linux/hid* | |
c117ab84 | 3891 | F: include/uapi/linux/hid* |
4ef4caad | 3892 | |
38bed542 | 3893 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3894 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3895 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3896 | S: Maintained |
679655da JP |
3897 | F: Documentation/timers/ |
3898 | F: kernel/hrtimer.c | |
88606e80 TG |
3899 | F: kernel/time/clockevents.c |
3900 | F: kernel/time/tick*.* | |
3901 | F: kernel/time/timer_*.c | |
05ed8490 | 3902 | F: include/linux/clockchips.h |
679655da | 3903 | F: include/linux/hrtimer.h |
38bed542 | 3904 | |
1da177e4 | 3905 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3906 | L: [email protected] |
8b64f2a0 | 3907 | S: Orphan |
679655da JP |
3908 | F: drivers/net/hamradio/dmascc.c |
3909 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3910 | |
ede1e6f8 | 3911 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3912 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3913 | W: http://www.highpoint-tech.com |
3914 | S: Supported | |
679655da JP |
3915 | F: Documentation/scsi/hptiop.txt |
3916 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3917 | |
1da177e4 | 3918 | HIPPI |
8b58be88 | 3919 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
3920 | L: [email protected] |
3921 | S: Maintained | |
679655da | 3922 | F: include/linux/hippidevice.h |
c117ab84 | 3923 | F: include/uapi/linux/if_hippi.h |
679655da | 3924 | F: net/802/hippi.c |
ff5a3b50 | 3925 | F: drivers/net/hippi/ |
1da177e4 | 3926 | |
ff1d2767 | 3927 | HOST AP DRIVER |
8b58be88 | 3928 | M: Jouni Malinen <[email protected]> |
85d32e7b | 3929 | L: [email protected] (subscribers-only) |
724c6b35 | 3930 | L: [email protected] |
ff1d2767 JM |
3931 | W: http://hostap.epitest.fi/ |
3932 | S: Maintained | |
679655da | 3933 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3934 | |
dd8cd779 | 3935 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3936 | L: [email protected] |
95c70215 | 3937 | S: Orphan |
679655da | 3938 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3939 | |
e2d1d6c0 | 3940 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3941 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3942 | S: Maintained |
7e25d724 | 3943 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3944 | |
7d2c86b5 | 3945 | HPET: High Precision Event Timers driver |
8b58be88 | 3946 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 3947 | S: Maintained |
679655da JP |
3948 | F: Documentation/timers/hpet.txt |
3949 | F: drivers/char/hpet.c | |
3950 | F: include/linux/hpet.h | |
c117ab84 | 3951 | F: include/uapi/linux/hpet.h |
b9b0332f | 3952 | |
e07b5d79 | 3953 | HPET: x86 |
9c5fb19a | 3954 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 3955 | S: Maintained |
679655da JP |
3956 | F: arch/x86/kernel/hpet.c |
3957 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3958 | |
1da177e4 | 3959 | HPFS FILESYSTEM |
8b58be88 | 3960 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
3961 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3962 | S: Maintained | |
679655da | 3963 | F: fs/hpfs/ |
1da177e4 | 3964 | |
7d2c86b5 | 3965 | HSO 3G MODEM DRIVER |
8b58be88 | 3966 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
3967 | W: http://www.pharscape.org |
3968 | S: Maintained | |
679655da | 3969 | F: drivers/net/usb/hso.c |
11cd29b0 | 3970 | |
5a18c343 | 3971 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3972 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
3973 | L: [email protected] |
3974 | S: Maintained | |
679655da | 3975 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3976 | |
1da177e4 | 3977 | HUGETLB FILESYSTEM |
6d49e352 | 3978 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 3979 | S: Maintained |
679655da | 3980 | F: fs/hugetlbfs/ |
1da177e4 | 3981 | |
05183189 S |
3982 | Hyper-V CORE AND DRIVERS |
3983 | M: K. Y. Srinivasan <[email protected]> | |
3984 | M: Haiyang Zhang <[email protected]> | |
3985 | L: [email protected] | |
3986 | S: Maintained | |
a4162747 HZ |
3987 | F: arch/x86/include/asm/mshyperv.h |
3988 | F: arch/x86/include/uapi/asm/hyperv.h | |
3989 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 3990 | F: drivers/hid/hid-hyperv.c |
a4162747 | 3991 | F: drivers/hv/ |
05183189 | 3992 | F: drivers/net/hyperv/ |
a4162747 HZ |
3993 | F: drivers/scsi/storvsc_drv.c |
3994 | F: drivers/video/hyperv_fb.c | |
3995 | F: include/linux/hyperv.h | |
3996 | F: tools/hv/ | |
05183189 | 3997 | |
d85c8a6a JD |
3998 | I2C OVER PARALLEL PORT |
3999 | M: Jean Delvare <[email protected]> | |
4000 | L: [email protected] | |
4001 | S: Maintained | |
4002 | F: Documentation/i2c/busses/i2c-parport | |
4003 | F: Documentation/i2c/busses/i2c-parport-light | |
4004 | F: drivers/i2c/busses/i2c-parport.c | |
4005 | F: drivers/i2c/busses/i2c-parport-light.c | |
4006 | ||
4007 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
4008 | M: Jean Delvare <[email protected]> | |
4009 | L: [email protected] | |
4010 | S: Maintained | |
4011 | F: Documentation/i2c/busses/i2c-ali1535 | |
4012 | F: Documentation/i2c/busses/i2c-ali1563 | |
4013 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4014 | F: Documentation/i2c/busses/i2c-amd756 | |
4015 | F: Documentation/i2c/busses/i2c-amd8111 | |
4016 | F: Documentation/i2c/busses/i2c-i801 | |
4017 | F: Documentation/i2c/busses/i2c-nforce2 | |
4018 | F: Documentation/i2c/busses/i2c-piix4 | |
4019 | F: Documentation/i2c/busses/i2c-sis5595 | |
4020 | F: Documentation/i2c/busses/i2c-sis630 | |
4021 | F: Documentation/i2c/busses/i2c-sis96x | |
4022 | F: Documentation/i2c/busses/i2c-via | |
4023 | F: Documentation/i2c/busses/i2c-viapro | |
4024 | F: drivers/i2c/busses/i2c-ali1535.c | |
4025 | F: drivers/i2c/busses/i2c-ali1563.c | |
4026 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4027 | F: drivers/i2c/busses/i2c-amd756.c | |
4028 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4029 | F: drivers/i2c/busses/i2c-amd8111.c | |
4030 | F: drivers/i2c/busses/i2c-i801.c | |
4031 | F: drivers/i2c/busses/i2c-isch.c | |
4032 | F: drivers/i2c/busses/i2c-nforce2.c | |
4033 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4034 | F: drivers/i2c/busses/i2c-piix4.c | |
4035 | F: drivers/i2c/busses/i2c-sis5595.c | |
4036 | F: drivers/i2c/busses/i2c-sis630.c | |
4037 | F: drivers/i2c/busses/i2c-sis96x.c | |
4038 | F: drivers/i2c/busses/i2c-via.c | |
4039 | F: drivers/i2c/busses/i2c-viapro.c | |
4040 | ||
cb7f07a4 NH |
4041 | I2C/SMBUS ISMT DRIVER |
4042 | M: Seth Heasley <[email protected]> | |
4043 | M: Neil Horman <[email protected]> | |
4044 | L: [email protected] | |
4045 | F: drivers/i2c/busses/i2c-ismt.c | |
4046 | F: Documentation/i2c/busses/i2c-ismt | |
4047 | ||
6ea884db | 4048 | I2C/SMBUS STUB DRIVER |
94877548 | 4049 | M: Jean Delvare <[email protected]> |
846557d3 | 4050 | L: [email protected] |
6ea884db | 4051 | S: Maintained |
8547a5bc | 4052 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4053 | |
5b543965 | 4054 | I2C SUBSYSTEM |
14d77c4d | 4055 | M: Wolfram Sang <[email protected]> |
846557d3 | 4056 | L: [email protected] |
a01064a9 | 4057 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4059 | S: Maintained |
679655da JP |
4060 | F: Documentation/i2c/ |
4061 | F: drivers/i2c/ | |
4062 | F: include/linux/i2c.h | |
03b70d62 | 4063 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4064 | F: include/uapi/linux/i2c.h |
4065 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4066 | |
d85c8a6a JD |
4067 | I2C-TAOS-EVM DRIVER |
4068 | M: Jean Delvare <[email protected]> | |
4069 | L: [email protected] | |
4070 | S: Maintained | |
4071 | F: Documentation/i2c/busses/i2c-taos-evm | |
4072 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4073 | ||
e8c76eed | 4074 | I2C-TINY-USB DRIVER |
8b58be88 | 4075 | M: Till Harbaum <[email protected]> |
846557d3 | 4076 | L: [email protected] |
932d1872 | 4077 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4078 | S: Maintained |
679655da | 4079 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4080 | |
1da177e4 | 4081 | i386 BOOT CODE |
8b58be88 | 4082 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4083 | S: Maintained |
679655da | 4084 | F: arch/x86/boot/ |
1da177e4 LT |
4085 | |
4086 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4087 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4089 | S: Maintained |
4090 | ||
1da177e4 | 4091 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4092 | M: Tony Luck <[email protected]> |
4093 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4094 | L: [email protected] |
6b1c70b1 | 4095 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4096 | S: Maintained |
679655da | 4097 | F: arch/ia64/ |
1da177e4 | 4098 | |
956c203c | 4099 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4100 | M: Marcelo Henrique Cerri <[email protected]> |
4101 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4102 | L: [email protected] |
4103 | S: Supported | |
4104 | F: drivers/crypto/nx/ | |
4105 | ||
0e16aafb SJ |
4106 | IBM Power 842 compression accelerator |
4107 | M: Robert Jennings <[email protected]> | |
4108 | S: Supported | |
4109 | F: drivers/crypto/nx/nx-842.c | |
4110 | F: include/linux/nx842.h | |
4111 | ||
1da177e4 | 4112 | IBM Power Linux RAID adapter |
8b58be88 | 4113 | M: Brian King <[email protected]> |
1da177e4 | 4114 | S: Supported |
679655da | 4115 | F: drivers/scsi/ipr.* |
1da177e4 | 4116 | |
9d348af4 SL |
4117 | IBM Power Virtual Ethernet Device Driver |
4118 | M: Santiago Leon <[email protected]> | |
4119 | L: [email protected] | |
4120 | S: Supported | |
9aa32835 | 4121 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4122 | |
4b7652cc RJ |
4123 | IBM Power Virtual SCSI/FC Device Drivers |
4124 | M: Robert Jennings <[email protected]> | |
4125 | L: [email protected] | |
4126 | S: Supported | |
4127 | F: drivers/scsi/ibmvscsi/ | |
4128 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4129 | ||
1da177e4 LT |
4130 | IBM ServeRAID RAID DRIVER |
4131 | P: Jack Hammer | |
8b58be88 | 4132 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4133 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4134 | S: Supported |
679655da | 4135 | F: drivers/scsi/ips.* |
1da177e4 | 4136 | |
6ed9f9c4 PT |
4137 | ICH LPC AND GPIO DRIVER |
4138 | M: Peter Tyser <[email protected]> | |
4139 | S: Maintained | |
4140 | F: drivers/mfd/lpc_ich.c | |
4141 | F: drivers/gpio/gpio-ich.c | |
4142 | ||
1e7106fc | 4143 | IDE SUBSYSTEM |
8b58be88 | 4144 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4145 | L: [email protected] |
8a6e2535 | 4146 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4148 | S: Maintained |
679655da JP |
4149 | F: Documentation/ide/ |
4150 | F: drivers/ide/ | |
4151 | F: include/linux/ide.h | |
1da177e4 | 4152 | |
6cb8c13d IP |
4153 | IDEAPAD LAPTOP EXTRAS DRIVER |
4154 | M: Ike Panhc <[email protected]> | |
4155 | L: [email protected] | |
4156 | W: http://launchpad.net/ideapad-laptop | |
4157 | S: Maintained | |
4158 | F: drivers/platform/x86/ideapad-laptop.c | |
4159 | ||
1ea4c161 AM |
4160 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4161 | M: Andrey Moiseev <[email protected]> | |
4162 | L: [email protected] | |
4163 | W: https://github.com/o2genum/ideapad-slidebar | |
4164 | S: Maintained | |
4165 | F: drivers/input/misc/ideapad_slidebar.c | |
4166 | ||
0f861e8c | 4167 | IDE/ATAPI DRIVERS |
487ba8e8 | 4168 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4169 | L: [email protected] |
c404c199 | 4170 | S: Maintained |
679655da JP |
4171 | F: Documentation/cdrom/ide-cd |
4172 | F: drivers/ide/ide-cd* | |
1da177e4 | 4173 | |
27471fdb | 4174 | IDLE-I7300 |
8b58be88 | 4175 | M: Andy Henroid <[email protected]> |
bf1c138e | 4176 | L: [email protected] |
27471fdb | 4177 | S: Supported |
679655da | 4178 | F: drivers/idle/i7300_idle.c |
27471fdb | 4179 | |
02cf2286 | 4180 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4181 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4182 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4183 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4184 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4186 | S: Maintained |
4187 | F: net/ieee802154/ | |
68653359 | 4188 | F: net/mac802154/ |
251741b1 | 4189 | F: drivers/net/ieee802154/ |
02cf2286 | 4190 | |
40ad4a30 SY |
4191 | IGUANAWORKS USB IR TRANSCEIVER |
4192 | M: Sean Young <[email protected]> | |
4193 | L: [email protected] | |
4194 | S: Maintained | |
4195 | F: drivers/media/rc/iguanair.c | |
4196 | ||
9545f86e AP |
4197 | IIO SUBSYSTEM AND DRIVERS |
4198 | M: Jonathan Cameron <[email protected]> | |
4199 | L: [email protected] | |
4200 | S: Maintained | |
03e7c251 | 4201 | F: drivers/iio/ |
9545f86e AP |
4202 | F: drivers/staging/iio/ |
4203 | ||
65519263 SG |
4204 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4205 | M: Matthieu Castet <[email protected]> | |
4206 | M: Stanislaw Gruszka <[email protected]> | |
4207 | S: Maintained | |
4208 | F: drivers/usb/atm/ueagle-atm.c | |
4209 | ||
e89ab51f GR |
4210 | INA209 HARDWARE MONITOR DRIVER |
4211 | M: Guenter Roeck <[email protected]> | |
4212 | L: [email protected] | |
4213 | S: Maintained | |
4214 | F: Documentation/hwmon/ina209 | |
4215 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4216 | F: drivers/hwmon/ina209.c | |
4217 | ||
4218 | INA2XX HARDWARE MONITOR DRIVER | |
4219 | M: Guenter Roeck <[email protected]> | |
4220 | L: [email protected] | |
4221 | S: Maintained | |
4222 | F: Documentation/hwmon/ina2xx | |
4223 | F: drivers/hwmon/ina2xx.c | |
4224 | F: include/linux/platform_data/ina2xx.h | |
4225 | ||
14dc124f SIG |
4226 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4227 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4228 | M: Jens Taprogge <[email protected]> | |
4229 | M: Greg Kroah-Hartman <[email protected]> | |
4230 | L: [email protected] | |
4231 | W: http://industrypack.sourceforge.net | |
4232 | S: Maintained | |
4233 | F: drivers/ipack/ | |
4234 | ||
aa7168f4 | 4235 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4236 | M: Mimi Zohar <[email protected]> |
8912176c | 4237 | M: Dmitry Kasatkin <[email protected]> |
aa7168f4 | 4238 | S: Supported |
679655da | 4239 | F: security/integrity/ima/ |
aa7168f4 | 4240 | |
1da177e4 | 4241 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4242 | L: [email protected] |
843393d3 | 4243 | S: Orphan |
679655da | 4244 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4245 | |
4246 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4247 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4248 | M: Sean Hefty <[email protected]> |
4249 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4250 | L: [email protected] |
605841f5 | 4251 | W: http://www.openfabrics.org/ |
8a6e2535 | 4252 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4254 | S: Supported |
679655da JP |
4255 | F: Documentation/infiniband/ |
4256 | F: drivers/infiniband/ | |
c117ab84 | 4257 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4258 | |
c9f04f58 | 4259 | INOTIFY |
8b58be88 JP |
4260 | M: John McCutchan <[email protected]> |
4261 | M: Robert Love <[email protected]> | |
4262 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4263 | S: Maintained |
679655da JP |
4264 | F: Documentation/filesystems/inotify.txt |
4265 | F: fs/notify/inotify/ | |
4266 | F: include/linux/inotify.h | |
c117ab84 | 4267 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4268 | |
e2d1d6c0 | 4269 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4270 | M: Dmitry Torokhov <[email protected]> |
4271 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4272 | L: [email protected] |
8a6e2535 | 4273 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4275 | S: Maintained |
679655da | 4276 | F: drivers/input/ |
f4eea7e2 | 4277 | F: include/linux/input.h |
c117ab84 | 4278 | F: include/uapi/linux/input.h |
f4eea7e2 | 4279 | F: include/linux/input/ |
e2d1d6c0 | 4280 | |
3267a87f HR |
4281 | INPUT MULTITOUCH (MT) PROTOCOL |
4282 | M: Henrik Rydberg <[email protected]> | |
4283 | L: [email protected] | |
7f9c2454 | 4284 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4285 | S: Maintained |
4286 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4287 | F: drivers/input/input-mt.c |
3267a87f HR |
4288 | K: \b(ABS|SYN)_MT_ |
4289 | ||
4ac13e17 DJ |
4290 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4291 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4292 | M: Lukasz Dorau <[email protected]> |
4293 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4294 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4295 | L: [email protected] |
7106891a DJ |
4296 | T: git git://git.code.sf.net/p/intel-sas/isci |
4297 | S: Supported | |
4ac13e17 | 4298 | F: drivers/scsi/isci/ |
4ac13e17 | 4299 | |
26717172 LB |
4300 | INTEL IDLE DRIVER |
4301 | M: Len Brown <[email protected]> | |
bf1c138e | 4302 | L: [email protected] |
08deed1e | 4303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4304 | S: Supported |
4305 | F: drivers/idle/intel_idle.c | |
4306 | ||
9eb8ef74 | 4307 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4308 | M: Maik Broemme <[email protected]> |
c69f677c | 4309 | L: [email protected] |
ce00f85c | 4310 | S: Maintained |
679655da JP |
4311 | F: Documentation/fb/intelfb.txt |
4312 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4313 | |
1da177e4 | 4314 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4315 | M: Antonino Daplas <[email protected]> |
c69f677c | 4316 | L: [email protected] |
ce00f85c | 4317 | S: Maintained |
679655da | 4318 | F: drivers/video/i810/ |
1da177e4 | 4319 | |
f4a9bc4c | 4320 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4321 | M: Sujith Thomas <[email protected]> |
d0944853 | 4322 | L: [email protected] |
f4a9bc4c TS |
4323 | W: http://www.lesswatts.org/projects/acpi/ |
4324 | S: Supported | |
679655da | 4325 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4326 | |
1da177e4 | 4327 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4328 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4329 | S: Maintained |
679655da JP |
4330 | F: arch/x86/kernel/microcode_core.c |
4331 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4332 | |
248a9dc3 | 4333 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4334 | M: Dan Williams <[email protected]> |
1dd8372d | 4335 | S: Maintained |
679655da | 4336 | F: drivers/dma/ioat* |
248a9dc3 | 4337 | |
6c8909b4 | 4338 | INTEL IOMMU (VT-d) |
8b58be88 | 4339 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4340 | L: [email protected] |
54e5881d | 4341 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4342 | S: Supported |
3fb39615 | 4343 | F: drivers/iommu/intel-iommu.c |
679655da | 4344 | F: include/linux/intel-iommu.h |
6c8909b4 | 4345 | |
b3e5f263 | 4346 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4347 | M: Dan Williams <[email protected]> |
1dd8372d | 4348 | S: Odd fixes |
679655da | 4349 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4350 | |
9251ce95 | 4351 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4352 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4353 | S: Maintained |
679655da JP |
4354 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4355 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4356 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4357 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4358 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4359 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4360 | |
844dd05f | 4361 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4362 | M: Deepak Saxena <[email protected]> |
844dd05f | 4363 | S: Maintained |
679655da | 4364 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4365 | |
1bff6529 | 4366 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e) |
8b58be88 JP |
4367 | M: Jeff Kirsher <[email protected]> |
4368 | M: Jesse Brandeburg <[email protected]> | |
4369 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4370 | M: Carolyn Wyborny <[email protected]> |
4371 | M: Don Skidmore <[email protected]> | |
4372 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4373 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4374 | M: Alex Duyck <[email protected]> |
8b58be88 | 4375 | M: John Ronciak <[email protected]> |
f6fde11a | 4376 | M: Tushar Dave <[email protected]> |
dcd01faf | 4377 | L: [email protected] |
f6fde11a | 4378 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4379 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4382 | S: Supported |
0d164401 JK |
4383 | F: Documentation/networking/e100.txt |
4384 | F: Documentation/networking/e1000.txt | |
4385 | F: Documentation/networking/e1000e.txt | |
4386 | F: Documentation/networking/igb.txt | |
4387 | F: Documentation/networking/igbvf.txt | |
4388 | F: Documentation/networking/ixgb.txt | |
4389 | F: Documentation/networking/ixgbe.txt | |
4390 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4391 | F: Documentation/networking/i40e.txt |
dee1ad47 | 4392 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4393 | |
ca907a90 SY |
4394 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4395 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4396 | L: [email protected] |
ca907a90 | 4397 | S: Maintained |
679655da | 4398 | F: Documentation/networking/README.ipw2100 |
679655da | 4399 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4400 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4401 | |
4bd96a7a | 4402 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4403 | M: Richard L Maliszewski <[email protected]> |
4404 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4405 | M: Shane Wang <[email protected]> |
4406 | L: [email protected] | |
4407 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4408 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4409 | S: Supported |
4410 | F: Documentation/intel_txt.txt | |
4411 | F: include/linux/tboot.h | |
4412 | F: arch/x86/kernel/tboot.c | |
4413 | ||
8a70da82 | 4414 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4415 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4416 | M: [email protected] |
4417 | L: [email protected] | |
4418 | S: Supported | |
4419 | W: http://linuxwimax.org | |
679655da JP |
4420 | F: Documentation/wimax/README.i2400m |
4421 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4422 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4423 | |
1c0ce89c SG |
4424 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4425 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4426 | L: [email protected] |
1c0ce89c | 4427 | S: Supported |
efa3144e WYG |
4428 | F: drivers/net/wireless/iwlegacy/ |
4429 | ||
b481de9c | 4430 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4431 | M: Johannes Berg <[email protected]> |
6161b02b | 4432 | M: Emmanuel Grumbach <[email protected]> |
a0bf797f | 4433 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4434 | L: [email protected] |
b481de9c | 4435 | W: http://intellinuxwireless.org |
b62ff718 | 4436 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4437 | S: Supported |
679655da | 4438 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4439 | |
de8fe023 TW |
4440 | INTEL MANAGEMENT ENGINE (mei) |
4441 | M: Tomas Winkler <[email protected]> | |
4442 | L: [email protected] | |
4443 | S: Supported | |
c117ab84 | 4444 | F: include/uapi/linux/mei.h |
de8fe023 | 4445 | F: drivers/misc/mei/* |
e07950a1 | 4446 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4447 | |
cb109a0e | 4448 | IOC3 ETHERNET DRIVER |
8b58be88 | 4449 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4450 | L: [email protected] |
4451 | S: Maintained | |
8862bf1e | 4452 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4453 | |
cb109a0e | 4454 | IOC3 SERIAL DRIVER |
8b58be88 | 4455 | M: Pat Gefre <[email protected]> |
d39e0721 | 4456 | L: [email protected] |
cb109a0e | 4457 | S: Maintained |
df621252 | 4458 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4459 | |
4480f15b | 4460 | IP MASQUERADING |
8b58be88 | 4461 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4462 | S: Maintained |
679655da | 4463 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4464 | |
1202d6ff | 4465 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4466 | M: Francois Romieu <[email protected]> |
4467 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4468 | L: [email protected] |
4469 | S: Maintained | |
7443713a | 4470 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4471 | |
4480f15b | 4472 | IPATH DRIVER |
8473c603 | 4473 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4474 | L: [email protected] |
52a09a04 | 4475 | S: Maintained |
679655da | 4476 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4477 | |
4409ebe9 | 4478 | IPMI SUBSYSTEM |
8b58be88 | 4479 | M: Corey Minyard <[email protected]> |
b0c90653 | 4480 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4481 | W: http://openipmi.sourceforge.net/ |
4482 | S: Supported | |
679655da JP |
4483 | F: Documentation/IPMI.txt |
4484 | F: drivers/char/ipmi/ | |
4485 | F: include/linux/ipmi* | |
c117ab84 | 4486 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4487 | |
e2d1d6c0 | 4488 | IPS SCSI RAID DRIVER |
8b58be88 | 4489 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4490 | L: [email protected] |
4491 | W: http://www.adaptec.com/ | |
4492 | S: Maintained | |
679655da | 4493 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4494 | |
4495 | IPVS | |
8b58be88 JP |
4496 | M: Wensong Zhang <[email protected]> |
4497 | M: Simon Horman <[email protected]> | |
4498 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4499 | L: [email protected] |
e2d1d6c0 | 4500 | L: [email protected] |
1da177e4 | 4501 | S: Maintained |
679655da | 4502 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4503 | F: include/net/ip_vs.h |
c117ab84 | 4504 | F: include/uapi/linux/ip_vs.h |
679655da | 4505 | F: net/netfilter/ipvs/ |
1da177e4 | 4506 | |
e7839f25 | 4507 | IPWIRELESS DRIVER |
8b58be88 JP |
4508 | M: Jiri Kosina <[email protected]> |
4509 | M: David Sterba <[email protected]> | |
92094aa0 | 4510 | S: Odd Fixes |
282361a0 | 4511 | F: drivers/tty/ipwireless/ |
099dc4fb | 4512 | |
e2d1d6c0 | 4513 | IPX NETWORK LAYER |
8b58be88 | 4514 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4515 | L: [email protected] |
4516 | S: Maintained | |
679655da | 4517 | F: include/net/ipx.h |
c117ab84 | 4518 | F: include/uapi/linux/ipx.h |
679655da | 4519 | F: net/ipx/ |
e2d1d6c0 | 4520 | |
1da177e4 | 4521 | IRDA SUBSYSTEM |
8b58be88 | 4522 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4523 | L: [email protected] (subscribers-only) |
ced649ea | 4524 | L: [email protected] |
1da177e4 | 4525 | W: http://irda.sourceforge.net/ |
f353976d | 4526 | S: Maintained |
e0057975 | 4527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4528 | F: Documentation/networking/irda.txt |
4529 | F: drivers/net/irda/ | |
4530 | F: include/net/irda/ | |
4531 | F: net/irda/ | |
1da177e4 | 4532 | |
a800c7cc TG |
4533 | IRQ SUBSYSTEM |
4534 | M: Thomas Gleixner <[email protected]> | |
4535 | S: Maintained | |
75fc2d37 | 4536 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4537 | F: kernel/irq/ |
edd96900 | 4538 | F: drivers/irqchip/ |
a800c7cc | 4539 | |
7ab3a837 GL |
4540 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4541 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4542 | S: Maintained |
4543 | F: Documentation/IRQ-domain.txt | |
4544 | F: include/linux/irqdomain.h | |
4545 | F: kernel/irq/irqdomain.c | |
4546 | ||
e2d1d6c0 | 4547 | ISAPNP |
8b58be88 | 4548 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4549 | S: Maintained |
679655da JP |
4550 | F: Documentation/isapnp.txt |
4551 | F: drivers/pnp/isapnp/ | |
4552 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4553 | |
d39b8420 HV |
4554 | ISA RADIO MODULE |
4555 | M: Hans Verkuil <[email protected]> | |
4556 | L: [email protected] | |
4557 | T: git git://linuxtv.org/media_tree.git | |
4558 | W: http://linuxtv.org | |
4559 | S: Maintained | |
4560 | F: drivers/media/radio/radio-isa* | |
4561 | ||
71a6d0af HW |
4562 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4563 | M: Peter Jones <[email protected]> | |
4564 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4565 | S: Maintained | |
4566 | F: drivers/firmware/iscsi_ibft* | |
4567 | ||
14816b1e | 4568 | ISCSI |
8b58be88 | 4569 | M: Mike Christie <[email protected]> |
14816b1e MC |
4570 | L: [email protected] |
4571 | W: www.open-iscsi.org | |
54e5881d | 4572 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4573 | S: Maintained |
679655da JP |
4574 | F: drivers/scsi/*iscsi* |
4575 | F: include/scsi/*iscsi* | |
14816b1e | 4576 | |
1e65eb42 OG |
4577 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4578 | M: Or Gerlitz <[email protected]> | |
4579 | M: Roi Dayan <[email protected]> | |
4580 | L: [email protected] | |
4581 | S: Supported | |
4582 | W: http://www.openfabrics.org | |
4583 | W: www.open-iscsi.org | |
4584 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4585 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4586 | |
1da177e4 | 4587 | ISDN SUBSYSTEM |
8b58be88 | 4588 | M: Karsten Keil <[email protected]> |
d5d52273 | 4589 | L: [email protected] (subscribers-only) |
3da0ae62 | 4590 | L: [email protected] |
1da177e4 | 4591 | W: http://www.isdn4linux.de |
54e5881d | 4592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4593 | S: Maintained |
679655da JP |
4594 | F: Documentation/isdn/ |
4595 | F: drivers/isdn/ | |
4596 | F: include/linux/isdn.h | |
4597 | F: include/linux/isdn/ | |
c117ab84 CEB |
4598 | F: include/uapi/linux/isdn.h |
4599 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4600 | |
4601 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4602 | M: Armin Schindler <[email protected]> |
d5d52273 | 4603 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4604 | W: http://www.melware.de |
4605 | S: Maintained | |
679655da | 4606 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4607 | |
d624870f JD |
4608 | IT87 HARDWARE MONITORING DRIVER |
4609 | M: Jean Delvare <[email protected]> | |
4610 | L: [email protected] | |
4611 | S: Maintained | |
4612 | F: Documentation/hwmon/it87 | |
4613 | F: drivers/hwmon/it87.c | |
4614 | ||
68620bdd MP |
4615 | IT913X MEDIA DRIVER |
4616 | M: Malcolm Priestley <[email protected]> | |
4617 | L: [email protected] | |
4618 | W: http://linuxtv.org/ | |
4619 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4620 | S: Maintained | |
4621 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4622 | ||
4623 | IT913X FE MEDIA DRIVER | |
4624 | M: Malcolm Priestley <[email protected]> | |
4625 | L: [email protected] | |
4626 | W: http://linuxtv.org/ | |
4627 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4628 | S: Maintained | |
4629 | F: drivers/media/dvb-frontends/it913x-fe* | |
4630 | ||
d7104bff AP |
4631 | IT913X MEDIA DRIVER |
4632 | M: Antti Palosaari <[email protected]> | |
4633 | L: [email protected] | |
4634 | W: http://linuxtv.org/ | |
4635 | W: http://palosaari.fi/linux/ | |
4636 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4637 | T: git git://linuxtv.org/anttip/media_tree.git | |
4638 | S: Maintained | |
9d9fb744 | 4639 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4640 | |
91821ff3 | 4641 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4642 | M: Andy Walls <[email protected]> |
c4240509 | 4643 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4644 | L: [email protected] |
275ffde4 | 4645 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4646 | W: http://www.ivtvdriver.org |
4647 | S: Maintained | |
679655da | 4648 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4649 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4650 | F: include/uapi/linux/ivtv* |
91821ff3 | 4651 | |
68620bdd MP |
4652 | IX2505V MEDIA DRIVER |
4653 | M: Malcolm Priestley <[email protected]> | |
4654 | L: [email protected] | |
4655 | W: http://linuxtv.org/ | |
4656 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4657 | S: Maintained | |
4658 | F: drivers/media/dvb-frontends/ix2505v* | |
4659 | ||
4453d736 GR |
4660 | JC42.4 TEMPERATURE SENSOR DRIVER |
4661 | M: Guenter Roeck <[email protected]> | |
4662 | L: [email protected] | |
4663 | S: Maintained | |
4664 | F: drivers/hwmon/jc42.c | |
4665 | F: Documentation/hwmon/jc42 | |
4666 | ||
e2d1d6c0 | 4667 | JFS FILESYSTEM |
3256f80f | 4668 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4669 | L: [email protected] |
4670 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4672 | S: Maintained |
679655da JP |
4673 | F: Documentation/filesystems/jfs.txt |
4674 | F: fs/jfs/ | |
e2d1d6c0 | 4675 | |
95252236 | 4676 | JME NETWORK DRIVER |
8b58be88 | 4677 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4678 | L: [email protected] |
4679 | S: Maintained | |
63d24a0e | 4680 | F: drivers/net/ethernet/jme.* |
95252236 | 4681 | |
1da177e4 | 4682 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4683 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4684 | L: [email protected] |
4685 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4686 | S: Maintained |
679655da | 4687 | F: fs/jffs2/ |
c117ab84 | 4688 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4689 | |
de456d37 | 4690 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4691 | M: Andrew Morton <[email protected]> |
19003c18 | 4692 | M: Jan Kara <[email protected]> |
72be2ccf | 4693 | L: [email protected] |
ae0718f8 | 4694 | S: Maintained |
d183e11a | 4695 | F: fs/jbd/ |
d183e11a TT |
4696 | F: include/linux/jbd.h |
4697 | ||
4698 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4699 | M: "Theodore Ts'o" <[email protected]> | |
4700 | L: [email protected] | |
4701 | S: Maintained | |
4702 | F: fs/jbd2/ | |
4703 | F: include/linux/jbd2.h | |
ae0718f8 | 4704 | |
fd8b6cb4 | 4705 | JSM Neo PCI based serial card |
9d141cb9 | 4706 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4707 | L: [email protected] |
4708 | S: Maintained | |
df621252 | 4709 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4710 | |
af39917d CL |
4711 | K10TEMP HARDWARE MONITORING DRIVER |
4712 | M: Clemens Ladisch <[email protected]> | |
4713 | L: [email protected] | |
4714 | S: Maintained | |
4715 | F: Documentation/hwmon/k10temp | |
4716 | F: drivers/hwmon/k10temp.c | |
4717 | ||
4660cb35 | 4718 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4719 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4720 | L: [email protected] |
ae0718f8 | 4721 | S: Maintained |
679655da JP |
4722 | F: Documentation/hwmon/k8temp |
4723 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4724 | |
1da177e4 | 4725 | KCONFIG |
76ce94a3 | 4726 | M: Michal Marek <[email protected]> |
347d12d7 | 4727 | L: [email protected] |
76ce94a3 | 4728 | S: Odd Fixes |
679655da JP |
4729 | F: Documentation/kbuild/kconfig-language.txt |
4730 | F: scripts/kconfig/ | |
1da177e4 | 4731 | |
ea6c2089 | 4732 | KDUMP |
8b58be88 JP |
4733 | M: Vivek Goyal <[email protected]> |
4734 | M: Haren Myneni <[email protected]> | |
34633993 | 4735 | L: [email protected] |
ea6c2089 VG |
4736 | W: http://lse.sourceforge.net/kdump/ |
4737 | S: Maintained | |
80811493 | 4738 | F: Documentation/kdump/ |
ea6c2089 | 4739 | |
f41bf02f HV |
4740 | KEENE FM RADIO TRANSMITTER DRIVER |
4741 | M: Hans Verkuil <[email protected]> | |
4742 | L: [email protected] | |
4743 | T: git git://linuxtv.org/media_tree.git | |
4744 | W: http://linuxtv.org | |
4745 | S: Maintained | |
4746 | F: drivers/media/radio/radio-keene* | |
4747 | ||
1da177e4 | 4748 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4749 | M: Ian Kent <[email protected]> |
f694fc97 | 4750 | L: [email protected] |
1da177e4 | 4751 | S: Maintained |
679655da | 4752 | F: fs/autofs4/ |
1da177e4 | 4753 | |
70fb7ba6 | 4754 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4755 | M: Michal Marek <[email protected]> |
08deed1e JP |
4756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4758 | L: [email protected] |
5ce45962 | 4759 | S: Maintained |
679655da JP |
4760 | F: Documentation/kbuild/ |
4761 | F: Makefile | |
4762 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4763 | F: scripts/basic/ |
4764 | F: scripts/mk* | |
4765 | F: scripts/package/ | |
1da177e4 LT |
4766 | |
4767 | KERNEL JANITORS | |
c3000e03 | 4768 | L: [email protected] |
10466f5a | 4769 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4770 | S: Odd Fixes |
1da177e4 | 4771 | |
e8b43555 | 4772 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4773 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4774 | L: [email protected] |
1da177e4 | 4775 | W: http://nfs.sourceforge.net/ |
98fac23f | 4776 | S: Supported |
679655da JP |
4777 | F: fs/nfsd/ |
4778 | F: include/linux/nfsd/ | |
c117ab84 | 4779 | F: include/uapi/linux/nfsd/ |
679655da JP |
4780 | F: fs/lockd/ |
4781 | F: fs/nfs_common/ | |
4782 | F: net/sunrpc/ | |
4783 | F: include/linux/lockd/ | |
4784 | F: include/linux/sunrpc/ | |
c117ab84 | 4785 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4786 | |
426d62e2 | 4787 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4788 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4789 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4790 | L: [email protected] |
c93a64fe | 4791 | W: http://linux-kvm.org |
426d62e2 | 4792 | S: Supported |
c93a64fe PB |
4793 | F: Documentation/*/kvm*.txt |
4794 | F: Documentation/virtual/kvm/ | |
679655da JP |
4795 | F: arch/*/kvm/ |
4796 | F: arch/*/include/asm/kvm* | |
4797 | F: include/linux/kvm* | |
c117ab84 | 4798 | F: include/uapi/linux/kvm* |
679655da | 4799 | F: virt/kvm/ |
426d62e2 | 4800 | |
ad8003d3 | 4801 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4802 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4803 | L: [email protected] |
4804 | W: http://kvm.qumranet.com | |
7de609c8 | 4805 | S: Maintained |
679655da | 4806 | F: arch/x86/include/asm/svm.h |
679655da | 4807 | F: arch/x86/kvm/svm.c |
426d62e2 | 4808 | |
513014b7 | 4809 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4810 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4811 | L: [email protected] |
4812 | W: http://kvm.qumranet.com | |
6a7f972d | 4813 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4814 | S: Supported |
679655da JP |
4815 | F: arch/powerpc/include/asm/kvm* |
4816 | F: arch/powerpc/kvm/ | |
513014b7 | 4817 | |
1fc9d2bf | 4818 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4819 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4820 | L: [email protected] |
4821 | W: http://kvm.qumranet.com | |
920ed9f1 | 4822 | S: Supported |
679655da JP |
4823 | F: Documentation/ia64/kvm.txt |
4824 | F: arch/ia64/include/asm/kvm* | |
4825 | F: arch/ia64/kvm/ | |
920ed9f1 | 4826 | |
85f8fffe | 4827 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4828 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4829 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4830 | M: [email protected] |
4831 | L: [email protected] | |
4832 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4833 | S: Supported | |
679655da JP |
4834 | F: Documentation/s390/kvm.txt |
4835 | F: arch/s390/include/asm/kvm* | |
80811493 | 4836 | F: arch/s390/kvm/ |
a968cd3e | 4837 | F: drivers/s390/kvm/ |
85f8fffe | 4838 | |
a749474d | 4839 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 4840 | M: Christoffer Dall <[email protected]> |
a749474d CD |
4841 | L: [email protected] |
4842 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 4843 | S: Supported |
a749474d CD |
4844 | F: arch/arm/include/uapi/asm/kvm* |
4845 | F: arch/arm/include/asm/kvm* | |
4846 | F: arch/arm/kvm/ | |
4847 | ||
6394a3ec MZ |
4848 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4849 | M: Marc Zyngier <[email protected]> | |
4850 | L: [email protected] (moderated for non-subscribers) | |
4851 | L: [email protected] | |
4852 | S: Maintained | |
4853 | F: arch/arm64/include/uapi/asm/kvm* | |
4854 | F: arch/arm64/include/asm/kvm* | |
4855 | F: arch/arm64/kvm/ | |
4856 | ||
dc009d92 | 4857 | KEXEC |
8b58be88 | 4858 | M: Eric Biederman <[email protected]> |
2f327dad | 4859 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4860 | L: [email protected] |
dc009d92 | 4861 | S: Maintained |
679655da | 4862 | F: include/linux/kexec.h |
c117ab84 | 4863 | F: include/uapi/linux/kexec.h |
679655da | 4864 | F: kernel/kexec.c |
dc009d92 | 4865 | |
e971461f DH |
4866 | KEYS/KEYRINGS: |
4867 | M: David Howells <[email protected]> | |
4868 | L: [email protected] | |
4869 | S: Maintained | |
d410fa4e | 4870 | F: Documentation/security/keys.txt |
e971461f DH |
4871 | F: include/linux/key.h |
4872 | F: include/linux/key-type.h | |
4873 | F: include/keys/ | |
4874 | F: security/keys/ | |
4875 | ||
7f3c68be MZ |
4876 | KEYS-TRUSTED |
4877 | M: David Safford <[email protected]> | |
4878 | M: Mimi Zohar <[email protected]> | |
4879 | L: [email protected] | |
4880 | L: [email protected] | |
4881 | S: Supported | |
d410fa4e | 4882 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4883 | F: include/keys/trusted-type.h |
4884 | F: security/keys/trusted.c | |
4885 | F: security/keys/trusted.h | |
4886 | ||
4887 | KEYS-ENCRYPTED | |
4888 | M: Mimi Zohar <[email protected]> | |
4889 | M: David Safford <[email protected]> | |
4890 | L: [email protected] | |
4891 | L: [email protected] | |
4892 | S: Supported | |
d410fa4e | 4893 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4894 | F: include/keys/encrypted-type.h |
19c90aa6 | 4895 | F: security/keys/encrypted-keys/ |
7f3c68be | 4896 | |
5b778dad | 4897 | KGDB / KDB /debug_core |
8b58be88 | 4898 | M: Jason Wessel <[email protected]> |
4063eb5f | 4899 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4900 | L: [email protected] |
4901 | S: Maintained | |
679655da JP |
4902 | F: Documentation/DocBook/kgdb.tmpl |
4903 | F: drivers/misc/kgdbts.c | |
df621252 | 4904 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4905 | F: include/linux/kdb.h |
679655da | 4906 | F: include/linux/kgdb.h |
4063eb5f | 4907 | F: kernel/debug/ |
e3e2aaf7 | 4908 | |
456db8cc | 4909 | KMEMCHECK |
8b58be88 | 4910 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 4911 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 4912 | S: Maintained |
410d7a97 JP |
4913 | F: Documentation/kmemcheck.txt |
4914 | F: arch/x86/include/asm/kmemcheck.h | |
4915 | F: arch/x86/mm/kmemcheck/ | |
4916 | F: include/linux/kmemcheck.h | |
4917 | F: mm/kmemcheck.c | |
b9ce08c0 | 4918 | |
c3bb4d24 | 4919 | KMEMLEAK |
8b58be88 | 4920 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
4921 | S: Maintained |
4922 | F: Documentation/kmemleak.txt | |
4923 | F: include/linux/kmemleak.h | |
4924 | F: mm/kmemleak.c | |
4925 | F: mm/kmemleak-test.c | |
4926 | ||
89559a61 | 4927 | KPROBES |
8b58be88 JP |
4928 | M: Ananth N Mavinakayanahalli <[email protected]> |
4929 | M: Anil S Keshavamurthy <[email protected]> | |
4930 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 4931 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 4932 | S: Maintained |
679655da JP |
4933 | F: Documentation/kprobes.txt |
4934 | F: include/linux/kprobes.h | |
4935 | F: kernel/kprobes.c | |
89559a61 | 4936 | |
70e84049 | 4937 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4938 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
4939 | W: http://miguelojeda.es/auxdisplay.htm |
4940 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4941 | S: Maintained |
679655da JP |
4942 | F: Documentation/auxdisplay/ks0108 |
4943 | F: drivers/auxdisplay/ks0108.c | |
4944 | F: include/linux/ks0108.h | |
70e84049 | 4945 | |
1da177e4 | 4946 | LAPB module |
1da177e4 | 4947 | L: [email protected] |
bf9915cc | 4948 | S: Orphan |
679655da JP |
4949 | F: Documentation/networking/lapb-module.txt |
4950 | F: include/*/lapb.h | |
4951 | F: net/lapb/ | |
1da177e4 LT |
4952 | |
4953 | LASI 53c700 driver for PARISC | |
8b58be88 | 4954 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4955 | L: [email protected] |
4956 | S: Maintained | |
679655da JP |
4957 | F: Documentation/scsi/53c700.txt |
4958 | F: drivers/scsi/53c700* | |
1da177e4 | 4959 | |
263de9b5 | 4960 | LED SUBSYSTEM |
c772fc26 | 4961 | M: Bryan Wu <[email protected]> |
8b58be88 | 4962 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
4963 | L: [email protected] |
4964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4965 | S: Maintained |
679655da JP |
4966 | F: drivers/leds/ |
4967 | F: include/linux/leds.h | |
263de9b5 | 4968 | |
b0461a44 JD |
4969 | LEGACY EEPROM DRIVER |
4970 | M: Jean Delvare <[email protected]> | |
4971 | S: Maintained | |
4972 | F: Documentation/misc-devices/eeprom | |
4973 | F: drivers/misc/eeprom/eeprom.c | |
4974 | ||
1da177e4 | 4975 | LEGO USB Tower driver |
8b58be88 | 4976 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
4977 | L: [email protected] |
4978 | W: http://legousb.sourceforge.net/ | |
4979 | S: Maintained | |
679655da | 4980 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4981 | |
055616a8 MK |
4982 | LG2160 MEDIA DRIVER |
4983 | M: Michael Krufky <[email protected]> | |
4984 | L: [email protected] | |
4985 | W: http://linuxtv.org/ | |
4986 | W: http://github.com/mkrufky | |
4987 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4988 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4989 | S: Maintained | |
4990 | F: drivers/media/dvb-frontends/lg2160.* | |
4991 | ||
6f0e7725 MK |
4992 | LGDT3305 MEDIA DRIVER |
4993 | M: Michael Krufky <[email protected]> | |
4994 | L: [email protected] | |
4995 | W: http://linuxtv.org/ | |
4996 | W: http://github.com/mkrufky | |
4997 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4998 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4999 | S: Maintained | |
5000 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5001 | ||
568a17ff | 5002 | LGUEST |
8b58be88 | 5003 | M: Rusty Russell <[email protected]> |
a4724ed6 | 5004 | L: [email protected] |
568a17ff | 5005 | W: http://lguest.ozlabs.org/ |
72e91863 | 5006 | S: Odd Fixes |
070f420b | 5007 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5008 | F: arch/x86/lguest/ |
5009 | F: drivers/lguest/ | |
5010 | F: include/linux/lguest*.h | |
070f420b | 5011 | F: tools/lguest/ |
568a17ff | 5012 | |
1da177e4 | 5013 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5014 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
5015 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5016 | S: Supported | |
11c34c7d | 5017 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5018 | |
852bb9f5 | 5019 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5020 | M: Benjamin Herrenschmidt <[email protected]> |
5021 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 5022 | W: http://www.penguinppc.org/ |
a4724ed6 | 5023 | L: [email protected] |
8a6e2535 | 5024 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5025 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5026 | S: Supported |
11c34c7d JP |
5027 | F: Documentation/powerpc/ |
5028 | F: arch/powerpc/ | |
1da177e4 LT |
5029 | |
5030 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5031 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 5032 | W: http://www.penguinppc.org/ |
a4724ed6 | 5033 | L: [email protected] |
1da177e4 | 5034 | S: Maintained |
11c34c7d JP |
5035 | F: arch/powerpc/platforms/powermac/ |
5036 | F: drivers/macintosh/ | |
1da177e4 | 5037 | |
77a76369 | 5038 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5039 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 5040 | L: [email protected] |
a149507b | 5041 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5042 | S: Maintained |
11c34c7d JP |
5043 | F: arch/powerpc/platforms/512x/ |
5044 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5045 | |
5046 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 5047 | M: Josh Boyer <[email protected]> |
8b58be88 | 5048 | M: Matt Porter <[email protected]> |
1da177e4 | 5049 | W: http://www.penguinppc.org/ |
a4724ed6 | 5050 | L: [email protected] |
645609c0 | 5051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 5052 | S: Maintained |
11c34c7d JP |
5053 | F: arch/powerpc/platforms/40x/ |
5054 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5055 | |
260c02a9 | 5056 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5057 | L: [email protected] |
cdeb8994 | 5058 | S: Orphan |
11c34c7d JP |
5059 | F: arch/powerpc/*/*virtex* |
5060 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5061 | |
e93adf1e | 5062 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5063 | M: Vitaly Bordug <[email protected]> |
5064 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5065 | W: http://www.penguinppc.org/ |
a4724ed6 | 5066 | L: [email protected] |
e93adf1e | 5067 | S: Maintained |
a2b1f7c8 | 5068 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5069 | |
1da177e4 | 5070 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5071 | M: Kumar Gala <[email protected]> |
ce00f85c | 5072 | W: http://www.penguinppc.org/ |
a4724ed6 | 5073 | L: [email protected] |
ce00f85c | 5074 | S: Maintained |
11c34c7d | 5075 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5076 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5077 | |
ab06ff3a | 5078 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5079 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5080 | L: [email protected] |
92e19709 | 5081 | S: Maintained |
11c34c7d JP |
5082 | F: arch/powerpc/platforms/pasemi/ |
5083 | F: drivers/*/*pasemi* | |
5084 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5085 | |
1da177e4 | 5086 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5087 | M: Chris Wright <[email protected]> |
1a4520be | 5088 | L: [email protected] |
1da177e4 LT |
5089 | S: Supported |
5090 | ||
a23ce6da HW |
5091 | LIS3LV02D ACCELEROMETER DRIVER |
5092 | M: Eric Piel <[email protected]> | |
5093 | S: Maintained | |
ff606677 JD |
5094 | F: Documentation/misc-devices/lis3lv02d |
5095 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5096 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5097 | |
e2d1d6c0 | 5098 | LLC (802.2) |
8b58be88 | 5099 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5100 | S: Maintained |
679655da | 5101 | F: include/linux/llc.h |
c117ab84 | 5102 | F: include/uapi/linux/llc.h |
679655da JP |
5103 | F: include/net/llc* |
5104 | F: net/llc/ | |
e2d1d6c0 | 5105 | |
4e233cbe AD |
5106 | LM73 HARDWARE MONITOR DRIVER |
5107 | M: Guillaume Ligneul <[email protected]> | |
5108 | L: [email protected] | |
5109 | S: Maintained | |
5110 | F: drivers/hwmon/lm73.c | |
5111 | ||
156e2d1a JD |
5112 | LM78 HARDWARE MONITOR DRIVER |
5113 | M: Jean Delvare <[email protected]> | |
5114 | L: [email protected] | |
5115 | S: Maintained | |
5116 | F: Documentation/hwmon/lm78 | |
5117 | F: drivers/hwmon/lm78.c | |
5118 | ||
1da177e4 | 5119 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5120 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5121 | L: [email protected] |
1da177e4 | 5122 | S: Maintained |
679655da JP |
5123 | F: Documentation/hwmon/lm83 |
5124 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5125 | |
5126 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5127 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5128 | L: [email protected] |
1da177e4 | 5129 | S: Maintained |
679655da JP |
5130 | F: Documentation/hwmon/lm90 |
5131 | F: drivers/hwmon/lm90.c | |
1da177e4 | 5132 | |
917cc4e6 GR |
5133 | LM95234 HARDWARE MONITOR DRIVER |
5134 | M: Guenter Roeck <[email protected]> | |
5135 | L: [email protected] | |
5136 | S: Maintained | |
5137 | F: Documentation/hwmon/lm95234 | |
5138 | F: drivers/hwmon/lm95234.c | |
5139 | ||
68620bdd MP |
5140 | LME2510 MEDIA DRIVER |
5141 | M: Malcolm Priestley <[email protected]> | |
5142 | L: [email protected] | |
5143 | W: http://linuxtv.org/ | |
5144 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5145 | S: Maintained | |
5146 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5147 | ||
512e67f9 | 5148 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5149 | M: Peter Zijlstra <[email protected]> |
5150 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 5151 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5152 | S: Maintained |
679655da JP |
5153 | F: Documentation/lockdep*.txt |
5154 | F: Documentation/lockstat.txt | |
5155 | F: include/linux/lockdep.h | |
5156 | F: kernel/lockdep* | |
512e67f9 | 5157 | |
dde33348 | 5158 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5159 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5160 | L: [email protected] |
5161 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5162 | S: Maintained |
679655da | 5163 | F: Documentation/ldm.txt |
20d16fef | 5164 | F: block/partitions/ldm.* |
1da177e4 | 5165 | |
ef6ada3d JE |
5166 | LogFS |
5167 | M: Joern Engel <[email protected]> | |
756ccb3c | 5168 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5169 | L: [email protected] |
5170 | W: logfs.org | |
5171 | S: Maintained | |
5172 | F: fs/logfs/ | |
5173 | ||
b62d7946 RS |
5174 | LPC32XX MACHINE SUPPORT |
5175 | M: Roland Stigge <[email protected]> | |
5176 | L: [email protected] (moderated for non-subscribers) | |
5177 | S: Maintained | |
5178 | F: arch/arm/mach-lpc32xx/ | |
5179 | ||
c87e34ef | 5180 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5181 | M: Nagalakshmi Nandigama <[email protected]> |
5182 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5183 | M: [email protected] |
cec744fb | 5184 | L: [email protected] |
c87e34ef MED |
5185 | L: [email protected] |
5186 | W: http://www.lsilogic.com/support | |
5187 | S: Supported | |
679655da | 5188 | F: drivers/message/fusion/ |
500c152a | 5189 | F: drivers/scsi/mpt2sas/ |
5190 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5191 | |
1da177e4 | 5192 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5193 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5194 | L: [email protected] |
5195 | S: Maintained | |
679655da | 5196 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5197 | |
e5f5c99a GR |
5198 | LTC4261 HARDWARE MONITOR DRIVER |
5199 | M: Guenter Roeck <[email protected]> | |
5200 | L: [email protected] | |
5201 | S: Maintained | |
5202 | F: Documentation/hwmon/ltc4261 | |
5203 | F: drivers/hwmon/ltc4261.c | |
5204 | ||
81365c31 | 5205 | LTP (Linux Test Project) |
7d1ae8a8 | 5206 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5207 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5208 | M: Cyril Hrubis <[email protected]> |
5209 | M: Caspar Zhang <[email protected]> | |
5210 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5211 | L: [email protected] (subscribers-only) |
5212 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5213 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5214 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5215 | S: Maintained |
5216 | ||
c12a54b3 | 5217 | M32R ARCHITECTURE |
8b58be88 | 5218 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5219 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5220 | L: [email protected] (in Japanese) |
5221 | W: http://www.linux-m32r.org/ | |
5222 | S: Maintained | |
679655da | 5223 | F: arch/m32r/ |
c12a54b3 | 5224 | |
1da177e4 | 5225 | M68K ARCHITECTURE |
8b58be88 | 5226 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5227 | L: [email protected] |
5228 | W: http://www.linux-m68k.org/ | |
54e5881d | 5229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5230 | S: Maintained |
679655da | 5231 | F: arch/m68k/ |
9db35182 | 5232 | F: drivers/zorro/ |
1da177e4 LT |
5233 | |
5234 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5235 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5236 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5237 | L: [email protected] |
1da177e4 | 5238 | S: Maintained |
9db35182 | 5239 | F: arch/m68k/mac/ |
1da177e4 LT |
5240 | |
5241 | M68K ON HP9000/300 | |
8b58be88 | 5242 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5243 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5244 | S: Maintained | |
679655da | 5245 | F: arch/m68k/hp300/ |
1da177e4 | 5246 | |
68620bdd MP |
5247 | M88RS2000 MEDIA DRIVER |
5248 | M: Malcolm Priestley <[email protected]> | |
5249 | L: [email protected] | |
5250 | W: http://linuxtv.org/ | |
5251 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5252 | S: Maintained | |
5253 | F: drivers/media/dvb-frontends/m88rs2000* | |
5254 | ||
07a092fa AK |
5255 | MA901 MASTERKIT USB FM RADIO DRIVER |
5256 | M: Alexey Klimov <[email protected]> | |
5257 | L: [email protected] | |
5258 | T: git git://linuxtv.org/media_tree.git | |
5259 | S: Maintained | |
5260 | F: drivers/media/radio/radio-ma901.c | |
5261 | ||
64a327a7 | 5262 | MAC80211 |
8b58be88 | 5263 | M: Johannes Berg <[email protected]> |
64a327a7 | 5264 | L: [email protected] |
491b26b4 | 5265 | W: http://wireless.kernel.org/ |
ce466579 JB |
5266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5268 | S: Maintained |
679655da JP |
5269 | F: Documentation/networking/mac80211-injection.txt |
5270 | F: include/net/mac80211.h | |
5271 | F: net/mac80211/ | |
64a327a7 | 5272 | |
1036d864 | 5273 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5274 | M: Stefano Brivio <[email protected]> |
5275 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5276 | L: [email protected] |
491b26b4 | 5277 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5279 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5280 | S: Maintained |
679655da | 5281 | F: net/mac80211/rc80211_pid* |
1036d864 | 5282 | |
b863ceb7 | 5283 | MACVLAN DRIVER |
8b58be88 | 5284 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5285 | L: [email protected] |
5286 | S: Maintained | |
679655da JP |
5287 | F: drivers/net/macvlan.c |
5288 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5289 | |
faf1668c | 5290 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5291 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5292 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5293 | L: [email protected] |
1b53dc74 | 5294 | S: Maintained |
faf1668c | 5295 | |
44c14c1d | 5296 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5297 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5298 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5299 | L: [email protected] |
5300 | S: Maintained | |
5301 | F: drivers/net/ethernet/marvell/sk* | |
5302 | ||
74cda169 | 5303 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5304 | L: [email protected] |
8ac3e99e | 5305 | S: Orphan |
679655da | 5306 | F: drivers/net/wireless/libertas/ |
74cda169 | 5307 | |
b60d6975 | 5308 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 5309 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 5310 | L: [email protected] |
f5ca8502 | 5311 | S: Maintained |
527a6266 | 5312 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5313 | F: include/linux/mv643xx.h |
1da177e4 | 5314 | |
370b8ed9 TP |
5315 | MARVELL MVNETA ETHERNET DRIVER |
5316 | M: Thomas Petazzoni <[email protected]> | |
5317 | L: [email protected] | |
5318 | S: Maintained | |
5319 | F: drivers/net/ethernet/marvell/mvneta.* | |
5320 | ||
fcad584d BZ |
5321 | MARVELL MWIFIEX WIRELESS DRIVER |
5322 | M: Bing Zhao <[email protected]> | |
5323 | L: [email protected] | |
5324 | S: Maintained | |
5325 | F: drivers/net/wireless/mwifiex/ | |
5326 | ||
a2c3f656 | 5327 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5328 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5329 | L: [email protected] |
16345910 | 5330 | S: Odd Fixes |
a2c3f656 LB |
5331 | F: drivers/net/wireless/mwl8k.c |
5332 | ||
2a69567b | 5333 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5334 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5335 | S: Odd Fixes |
1fa7e547 | 5336 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5337 | |
1da177e4 | 5338 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5339 | L: [email protected] |
52653199 | 5340 | S: Orphan |
679655da | 5341 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5342 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5343 | |
ca462085 GR |
5344 | MAX16065 HARDWARE MONITOR DRIVER |
5345 | M: Guenter Roeck <[email protected]> | |
5346 | L: [email protected] | |
5347 | S: Maintained | |
5348 | F: Documentation/hwmon/max16065 | |
5349 | F: drivers/hwmon/max16065.c | |
5350 | ||
d20620de | 5351 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5352 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5353 | L: [email protected] |
5354 | S: Maintained | |
679655da JP |
5355 | F: Documentation/hwmon/max6650 |
5356 | F: drivers/hwmon/max6650.c | |
d20620de | 5357 | |
e89ab51f GR |
5358 | MAX6697 HARDWARE MONITOR DRIVER |
5359 | M: Guenter Roeck <[email protected]> | |
5360 | L: [email protected] | |
5361 | S: Maintained | |
5362 | F: Documentation/hwmon/max6697 | |
5363 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5364 | F: drivers/hwmon/max6697.c | |
5365 | F: include/linux/platform_data/max6697.h | |
5366 | ||
9be3c9a5 HV |
5367 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5368 | M: Hans Verkuil <[email protected]> | |
5369 | L: [email protected] | |
5370 | T: git git://linuxtv.org/media_tree.git | |
5371 | W: http://linuxtv.org | |
5372 | S: Maintained | |
5373 | F: drivers/media/radio/radio-maxiradio* | |
5374 | ||
127c49ae | 5375 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5376 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5377 | P: LinuxTV.org Project |
5378 | L: [email protected] | |
5379 | W: http://linuxtv.org | |
8a6e2535 | 5380 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5381 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5382 | S: Maintained |
5383 | F: Documentation/dvb/ | |
5384 | F: Documentation/video4linux/ | |
ffe06198 | 5385 | F: Documentation/DocBook/media/ |
127c49ae | 5386 | F: drivers/media/ |
ffe06198 | 5387 | F: drivers/staging/media/ |
127c49ae | 5388 | F: include/media/ |
6c0f0359 MCC |
5389 | F: include/uapi/linux/dvb/ |
5390 | F: include/uapi/linux/videodev2.h | |
5391 | F: include/uapi/linux/media.h | |
5392 | F: include/uapi/linux/v4l2-* | |
5393 | F: include/uapi/linux/meye.h | |
5394 | F: include/uapi/linux/ivtv* | |
5395 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5396 | |
6149a936 HV |
5397 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5398 | M: Hans Verkuil <[email protected]> | |
5399 | L: [email protected] | |
5400 | T: git git://linuxtv.org/media_tree.git | |
5401 | W: http://linuxtv.org | |
5402 | S: Odd Fixes | |
5403 | F: drivers/media/parport/pms* | |
5404 | ||
757e0108 | 5405 | MEGARAID SCSI DRIVERS |
8b58be88 | 5406 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5407 | L: [email protected] |
ce00f85c JC |
5408 | W: http://megaraid.lsilogic.com |
5409 | S: Maintained | |
679655da JP |
5410 | F: Documentation/scsi/megaraid.txt |
5411 | F: drivers/scsi/megaraid.* | |
5412 | F: drivers/scsi/megaraid/ | |
757e0108 | 5413 | |
2c46c9d5 AV |
5414 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5415 | M: Amir Vadai <[email protected]> | |
5416 | L: [email protected] | |
5417 | S: Supported | |
5418 | W: http://www.mellanox.com | |
5419 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5420 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5421 | ||
70ea91f1 SR |
5422 | MEMORY MANAGEMENT |
5423 | L: [email protected] | |
70ea91f1 SR |
5424 | W: http://www.linux-mm.org |
5425 | S: Maintained | |
679655da | 5426 | F: include/linux/mm.h |
551450bb CS |
5427 | F: include/linux/gfp.h |
5428 | F: include/linux/mmzone.h | |
5429 | F: include/linux/memory_hotplug.h | |
5430 | F: include/linux/vmalloc.h | |
679655da | 5431 | F: mm/ |
70ea91f1 | 5432 | |
938a9204 | 5433 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5434 | M: Johannes Weiner <[email protected]> |
5435 | M: Michal Hocko <[email protected]> | |
185e595f | 5436 | M: Balbir Singh <[email protected]> |
8b58be88 | 5437 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5438 | L: [email protected] |
938a9204 | 5439 | L: [email protected] |
938a9204 | 5440 | S: Maintained |
679655da | 5441 | F: mm/memcontrol.c |
4e4c941c | 5442 | F: mm/page_cgroup.c |
938a9204 | 5443 | |
f4e9ce66 | 5444 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5445 | M: David Woodhouse <[email protected]> |
1da177e4 | 5446 | L: [email protected] |
8a6e2535 JP |
5447 | W: http://www.linux-mtd.infradead.org/ |
5448 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5449 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5450 | S: Maintained |
679655da JP |
5451 | F: drivers/mtd/ |
5452 | F: include/linux/mtd/ | |
c117ab84 | 5453 | F: include/uapi/mtd/ |
1da177e4 | 5454 | |
26c57ef1 JT |
5455 | MEN A21 WATCHDOG DRIVER |
5456 | M: Johannes Thumshirn <[email protected]> | |
5457 | L: [email protected] | |
5458 | S: Supported | |
5459 | F: drivers/watchdog/mena21_wdt.c | |
5460 | ||
12285945 JH |
5461 | METAG ARCHITECTURE |
5462 | M: James Hogan <[email protected]> | |
d668d9ed | 5463 | L: [email protected] |
12285945 JH |
5464 | S: Supported |
5465 | F: arch/metag/ | |
5466 | F: Documentation/metag/ | |
5467 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5468 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5469 | F: drivers/irqchip/irq-metag.c |
5470 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5471 | F: drivers/tty/metag_da.c |
5472 | F: fs/imgdafs/ | |
12285945 | 5473 | |
c6375b0a | 5474 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5475 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5476 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5477 | W: http://www.monstr.eu/fdt/ |
5478 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5479 | S: Supported | |
0a8c7914 | 5480 | F: arch/microblaze/ |
1da177e4 LT |
5481 | |
5482 | MICROTEK X6 SCANNER | |
61eee9a7 | 5483 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5484 | S: Maintained |
679655da | 5485 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5486 | |
5487 | MIPS | |
8b58be88 | 5488 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5489 | L: [email protected] |
6097050d | 5490 | W: http://www.linux-mips.org/ |
b05e988e | 5491 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5492 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5493 | S: Supported |
679655da JP |
5494 | F: Documentation/mips/ |
5495 | F: arch/mips/ | |
1da177e4 | 5496 | |
08b7620a HV |
5497 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5498 | M: Hans Verkuil <[email protected]> | |
5499 | L: [email protected] | |
5500 | T: git git://linuxtv.org/media_tree.git | |
5501 | W: http://linuxtv.org | |
5502 | S: Odd Fixes | |
5503 | F: drivers/media/radio/radio-miropcm20* | |
5504 | ||
e126ba97 EC |
5505 | Mellanox MLX5 core VPI driver |
5506 | M: Eli Cohen <[email protected]> | |
5507 | L: [email protected] | |
5508 | L: [email protected] | |
5509 | W: http://www.mellanox.com | |
5510 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5511 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5512 | T: git://openfabrics.org/~eli/connect-ib.git | |
5513 | S: Supported | |
5514 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5515 | F: include/linux/mlx5/ | |
5516 | ||
5517 | Mellanox MLX5 IB driver | |
5518 | M: Eli Cohen <[email protected]> | |
5519 | L: [email protected] | |
5520 | W: http://www.mellanox.com | |
5521 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5522 | T: git://openfabrics.org/~eli/connect-ib.git | |
5523 | S: Supported | |
5524 | F: include/linux/mlx5/ | |
5525 | F: drivers/infiniband/hw/mlx5/ | |
5526 | ||
1da177e4 | 5527 | MODULE SUPPORT |
8b58be88 | 5528 | M: Rusty Russell <[email protected]> |
1da177e4 | 5529 | S: Maintained |
679655da JP |
5530 | F: include/linux/module.h |
5531 | F: kernel/module.c | |
1da177e4 LT |
5532 | |
5533 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5534 | W: http://popies.net/meye/ |
b7788e13 | 5535 | S: Orphan |
679655da | 5536 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5537 | F: drivers/media/pci/meye/ |
6c0f0359 | 5538 | F: include/uapi/linux/meye.h |
1da177e4 | 5539 | |
b9705b60 | 5540 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5541 | M: Jiri Slaby <[email protected]> |
d735410a | 5542 | S: Maintained |
679655da | 5543 | F: Documentation/serial/moxa-smartio |
c897401b | 5544 | F: drivers/tty/mxser.* |
d735410a | 5545 | |
889b2f87 AK |
5546 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5547 | M: Alexey Klimov <[email protected]> | |
5548 | L: [email protected] | |
5549 | T: git git://linuxtv.org/media_tree.git | |
5550 | S: Maintained | |
5551 | F: drivers/media/radio/radio-mr800.c | |
5552 | ||
8c4c731a | 5553 | MSI LAPTOP SUPPORT |
182ae55c | 5554 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5555 | L: [email protected] |
8c4c731a | 5556 | S: Maintained |
679655da | 5557 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5558 | |
0f1006b1 AA |
5559 | MSI WMI SUPPORT |
5560 | M: Anisse Astier <[email protected]> | |
d0944853 | 5561 | L: [email protected] |
0f1006b1 AA |
5562 | S: Supported |
5563 | F: drivers/platform/x86/msi-wmi.c | |
5564 | ||
62a37dc7 | 5565 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5566 | M: Laurent Pinchart <[email protected]> |
5567 | L: [email protected] | |
5568 | T: git git://linuxtv.org/media_tree.git | |
5569 | S: Maintained | |
5570 | F: drivers/media/i2c/mt9m032.c | |
5571 | F: include/media/mt9m032.h | |
5572 | ||
62a37dc7 | 5573 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5574 | M: Laurent Pinchart <[email protected]> |
5575 | L: [email protected] | |
5576 | T: git git://linuxtv.org/media_tree.git | |
5577 | S: Maintained | |
5578 | F: drivers/media/i2c/mt9p031.c | |
5579 | F: include/media/mt9p031.h | |
5580 | ||
62a37dc7 | 5581 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5582 | M: Laurent Pinchart <[email protected]> |
5583 | L: [email protected] | |
5584 | T: git git://linuxtv.org/media_tree.git | |
5585 | S: Maintained | |
5586 | F: drivers/media/i2c/mt9t001.c | |
5587 | F: include/media/mt9t001.h | |
5588 | ||
62a37dc7 | 5589 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5590 | M: Laurent Pinchart <[email protected]> |
5591 | L: [email protected] | |
5592 | T: git git://linuxtv.org/media_tree.git | |
5593 | S: Maintained | |
5594 | F: drivers/media/i2c/mt9v032.c | |
5595 | F: include/media/mt9v032.h | |
5596 | ||
4e0d13cb | 5597 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5598 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5599 | M: Lee Jones <[email protected]> |
5600 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5601 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5602 | S: Supported |
679655da | 5603 | F: drivers/mfd/ |
55b5940d | 5604 | F: include/linux/mfd/ |
4e0d13cb | 5605 | |
5c4e6f13 | 5606 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5607 | M: Chris Ball <[email protected]> |
b2503a94 | 5608 | L: [email protected] |
245feaa6 CB |
5609 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5610 | S: Maintained | |
679655da JP |
5611 | F: drivers/mmc/ |
5612 | F: include/linux/mmc/ | |
c117ab84 | 5613 | F: include/uapi/linux/mmc/ |
baca2da4 | 5614 | |
15a0580c | 5615 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5616 | S: Orphan |
679655da JP |
5617 | F: drivers/mmc/host/mmc_spi.c |
5618 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5619 | |
1da177e4 | 5620 | MULTISOUND SOUND DRIVER |
8b58be88 | 5621 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5622 | S: Maintained |
679655da JP |
5623 | F: Documentation/sound/oss/MultiSound |
5624 | F: sound/oss/msnd* | |
1da177e4 | 5625 | |
d735410a | 5626 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5627 | S: Orphan |
c897401b | 5628 | F: drivers/tty/isicom.c |
679655da | 5629 | F: include/linux/isicom.h |
d735410a | 5630 | |
550a7375 | 5631 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5632 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5633 | L: [email protected] |
43b416e5 | 5634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5635 | S: Maintained |
679655da | 5636 | F: drivers/usb/musb/ |
550a7375 | 5637 | |
ea0af5f6 MK |
5638 | MXL5007T MEDIA DRIVER |
5639 | M: Michael Krufky <[email protected]> | |
5640 | L: [email protected] | |
5641 | W: http://linuxtv.org/ | |
5642 | W: http://github.com/mkrufky | |
5643 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5644 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5645 | S: Maintained | |
5646 | F: drivers/media/tuners/mxl5007t.* | |
5647 | ||
2d3cf588 | 5648 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5649 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 5650 | L: [email protected] |
205057ae | 5651 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5652 | S: Supported |
93f7848b | 5653 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5654 | |
1da177e4 | 5655 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5656 | S: Orphan |
d9fb9f38 | 5657 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5658 | |
23dc05a3 DM |
5659 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5660 | M: Daniel Mack <[email protected]> | |
5661 | S: Maintained | |
5662 | L: [email protected] | |
5663 | W: http://www.native-instruments.com | |
5664 | F: sound/usb/caiaq/ | |
5665 | ||
1da177e4 | 5666 | NCP FILESYSTEM |
52653199 PV |
5667 | M: Petr Vandrovec <[email protected]> |
5668 | S: Odd Fixes | |
679655da | 5669 | F: fs/ncpfs/ |
1da177e4 LT |
5670 | |
5671 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5672 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5673 | L: [email protected] |
5674 | S: Maintained | |
679655da | 5675 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5676 | |
4aa3eb4c GR |
5677 | NCT6775 HARDWARE MONITOR DRIVER |
5678 | M: Guenter Roeck <[email protected]> | |
5679 | L: [email protected] | |
5680 | S: Maintained | |
5681 | F: Documentation/hwmon/nct6775 | |
5682 | F: drivers/hwmon/nct6775.c | |
5683 | ||
3c2d774c | 5684 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5685 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5686 | L: [email protected] |
e3d33cb1 | 5687 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5688 | S: Supported |
5689 | F: drivers/infiniband/hw/nes/ | |
5690 | ||
be2f2e84 | 5691 | NETEM NETWORK EMULATOR |
adbbf69d | 5692 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5693 | L: [email protected] |
be2f2e84 | 5694 | S: Maintained |
679655da | 5695 | F: net/sched/sch_netem.c |
be2f2e84 | 5696 | |
b2f5a051 | 5697 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5698 | M: Jon Mason <[email protected]> |
4a58448b | 5699 | L: [email protected] |
4a58448b | 5700 | S: Supported |
679655da | 5701 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5702 | F: Documentation/networking/vxge.txt |
86387e1a | 5703 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5704 | |
42010ed0 | 5705 | NETFILTER/IPTABLES |
0e05e192 | 5706 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5707 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5708 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5709 | L: [email protected] |
5710 | L: [email protected] | |
82b98543 | 5711 | L: [email protected] |
1da177e4 LT |
5712 | W: http://www.netfilter.org/ |
5713 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5714 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5715 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5717 | S: Supported |
679655da JP |
5718 | F: include/linux/netfilter* |
5719 | F: include/linux/netfilter/ | |
5720 | F: include/net/netfilter/ | |
c117ab84 CEB |
5721 | F: include/uapi/linux/netfilter* |
5722 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5723 | F: net/*/netfilter.c |
5724 | F: net/*/netfilter/ | |
5725 | F: net/netfilter/ | |
1da177e4 | 5726 | |
4cc67735 | 5727 | NETLABEL |
87a0874c | 5728 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5729 | W: http://netlabel.sf.net |
5730 | L: [email protected] | |
87a0874c | 5731 | S: Maintained |
80811493 | 5732 | F: Documentation/netlabel/ |
679655da JP |
5733 | F: include/net/netlabel.h |
5734 | F: net/netlabel/ | |
4cc67735 | 5735 | |
1da177e4 | 5736 | NETROM NETWORK LAYER |
8b58be88 | 5737 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5738 | L: [email protected] |
d34cb28a | 5739 | W: http://www.linux-ax25.org/ |
1da177e4 | 5740 | S: Maintained |
679655da | 5741 | F: include/net/netrom.h |
c117ab84 | 5742 | F: include/uapi/linux/netrom.h |
679655da | 5743 | F: net/netrom/ |
1da177e4 | 5744 | |
5ddb88c0 | 5745 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5746 | M: Paul Clements <[email protected]> |
1da177e4 | 5747 | S: Maintained |
5e4b269b | 5748 | L: [email protected] |
679655da JP |
5749 | F: Documentation/blockdev/nbd.txt |
5750 | F: drivers/block/nbd.c | |
5751 | F: include/linux/nbd.h | |
c117ab84 | 5752 | F: include/uapi/linux/nbd.h |
1da177e4 | 5753 | |
6e43650c NH |
5754 | NETWORK DROP MONITOR |
5755 | M: Neil Horman <[email protected]> | |
5756 | L: [email protected] | |
5757 | S: Maintained | |
5758 | W: https://fedorahosted.org/dropwatch/ | |
5759 | F: net/core/drop_monitor.c | |
5760 | ||
1da177e4 | 5761 | NETWORKING [GENERAL] |
8b58be88 | 5762 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5763 | L: [email protected] |
b1e8fd54 | 5764 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5765 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5766 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5767 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5768 | S: Maintained |
679655da JP |
5769 | F: net/ |
5770 | F: include/net/ | |
018d21ed JP |
5771 | F: include/linux/in.h |
5772 | F: include/linux/net.h | |
5773 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5774 | F: include/uapi/linux/in.h |
5775 | F: include/uapi/linux/net.h | |
5776 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5777 | |
5778 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5779 | M: "David S. Miller" <[email protected]> |
5780 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5781 | M: James Morris <[email protected]> |
5782 | M: Hideaki YOSHIFUJI <[email protected]> | |
5783 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5784 | L: [email protected] |
08deed1e | 5785 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5786 | S: Maintained |
679655da JP |
5787 | F: net/ipv4/ |
5788 | F: net/ipv6/ | |
5789 | F: include/net/ip* | |
0a14842f | 5790 | F: arch/x86/net/* |
1da177e4 | 5791 | |
73b7656c DM |
5792 | NETWORKING [IPSEC] |
5793 | M: Steffen Klassert <[email protected]> | |
5794 | M: Herbert Xu <[email protected]> | |
5795 | M: "David S. Miller" <[email protected]> | |
5796 | L: [email protected] | |
5797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5798 | S: Maintained | |
5799 | F: net/xfrm/ | |
5800 | F: net/key/ | |
5801 | F: net/ipv4/xfrm* | |
5802 | F: net/ipv6/xfrm* | |
5803 | F: include/uapi/linux/xfrm.h | |
5804 | F: include/net/xfrm.h | |
5805 | ||
10e2ff1c | 5806 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5807 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5808 | L: [email protected] |
5809 | S: Maintained | |
5810 | ||
29f8f632 | 5811 | NETWORKING [WIRELESS] |
8b58be88 | 5812 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5813 | L: [email protected] |
8a6e2535 | 5814 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5816 | S: Maintained |
34b921cf JP |
5817 | F: net/mac80211/ |
5818 | F: net/rfkill/ | |
679655da JP |
5819 | F: net/wireless/ |
5820 | F: include/net/ieee80211* | |
cc8b4a2b | 5821 | F: include/linux/wireless.h |
c117ab84 | 5822 | F: include/uapi/linux/wireless.h |
c984e24d | 5823 | F: include/net/iw_handler.h |
34b921cf | 5824 | F: drivers/net/wireless/ |
29f8f632 | 5825 | |
788873ac JP |
5826 | NETWORKING DRIVERS |
5827 | L: [email protected] | |
5828 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5829 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5832 | S: Odd Fixes |
5833 | F: drivers/net/ | |
018d21ed | 5834 | F: include/linux/if_* |
0b63bf1f JD |
5835 | F: include/linux/netdevice.h |
5836 | F: include/linux/arcdevice.h | |
5837 | F: include/linux/etherdevice.h | |
5838 | F: include/linux/fcdevice.h | |
5839 | F: include/linux/fddidevice.h | |
5840 | F: include/linux/hippidevice.h | |
5841 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5842 | F: include/uapi/linux/if_* |
5843 | F: include/uapi/linux/netdevice.h | |
788873ac | 5844 | |
3d396eb1 | 5845 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5846 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
5847 | M: Sony Chacko <[email protected]> |
5848 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5849 | L: [email protected] |
9c2b5bde | 5850 | W: http://www.qlogic.com |
3d396eb1 | 5851 | S: Supported |
aa43c215 | 5852 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5853 | |
6423d30f AAJ |
5854 | NFC SUBSYSTEM |
5855 | M: Lauro Ramos Venancio <[email protected]> | |
5856 | M: Aloisio Almeida Jr <[email protected]> | |
5857 | M: Samuel Ortiz <[email protected]> | |
5858 | L: [email protected] | |
5adf54de | 5859 | L: [email protected] (moderated for non-subscribers) |
0293ba20 | 5860 | S: Supported |
6423d30f | 5861 | F: net/nfc/ |
55eb94f9 | 5862 | F: include/net/nfc/ |
c117ab84 | 5863 | F: include/uapi/linux/nfc.h |
6423d30f | 5864 | F: drivers/nfc/ |
08eaa1e0 | 5865 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5866 | |
e8b43555 | 5867 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5868 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5869 | L: [email protected] |
5870 | W: http://client.linux-nfs.org | |
5871 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5872 | S: Maintained |
679655da JP |
5873 | F: fs/lockd/ |
5874 | F: fs/nfs/ | |
5875 | F: fs/nfs_common/ | |
5876 | F: net/sunrpc/ | |
5877 | F: include/linux/lockd/ | |
5878 | F: include/linux/nfs* | |
5879 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5880 | F: include/uapi/linux/nfs* |
5881 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5882 | |
85ef9cea | 5883 | NILFS2 FILESYSTEM |
8b58be88 | 5884 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 5885 | L: [email protected] |
85ef9cea | 5886 | W: http://www.nilfs.org/en/ |
af1761f2 | 5887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5888 | S: Supported |
679655da JP |
5889 | F: Documentation/filesystems/nilfs2.txt |
5890 | F: fs/nilfs2/ | |
5891 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5892 | |
1da177e4 | 5893 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5894 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
5895 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5896 | S: Maintained | |
679655da JP |
5897 | F: Documentation/scsi/NinjaSCSI.txt |
5898 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5899 | |
5900 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5901 | M: GOTO Masanori <[email protected]> |
5902 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
5903 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5904 | S: Maintained | |
679655da JP |
5905 | F: Documentation/scsi/NinjaSCSI.txt |
5906 | F: drivers/scsi/nsp32* | |
1da177e4 | 5907 | |
fce8a7bb JM |
5908 | NTB DRIVER |
5909 | M: Jon Mason <[email protected]> | |
5910 | S: Supported | |
2984411f JM |
5911 | W: https://github.com/jonmason/ntb/wiki |
5912 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 5913 | F: drivers/ntb/ |
548c237c | 5914 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
5915 | F: include/linux/ntb.h |
5916 | ||
1da177e4 | 5917 | NTFS FILESYSTEM |
2818ef50 | 5918 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 5919 | L: [email protected] |
2818ef50 | 5920 | W: http://www.tuxera.com/ |
e6f4dee7 | 5921 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5922 | S: Supported |
679655da JP |
5923 | F: Documentation/filesystems/ntfs.txt |
5924 | F: fs/ntfs/ | |
1da177e4 | 5925 | |
9eb8ef74 | 5926 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5927 | M: Antonino Daplas <[email protected]> |
c69f677c | 5928 | L: [email protected] |
ce00f85c | 5929 | S: Maintained |
679655da JP |
5930 | F: drivers/video/riva/ |
5931 | F: drivers/video/nvidia/ | |
1da177e4 | 5932 | |
79461681 MW |
5933 | NVM EXPRESS DRIVER |
5934 | M: Matthew Wilcox <[email protected]> | |
5935 | L: [email protected] | |
5936 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
5937 | S: Supported | |
5be37bf9 | 5938 | F: drivers/block/nvme* |
79461681 MW |
5939 | F: include/linux/nvme.h |
5940 | ||
f5525786 | 5941 | OMAP SUPPORT |
0e24bdd4 | 5942 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
5943 | L: [email protected] |
5944 | W: http://www.muru.com/linux/omap/ | |
5945 | W: http://linux.omap.com/ | |
8a6e2535 | 5946 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5947 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5948 | S: Maintained |
4e04d5a3 | 5949 | F: arch/arm/*omap*/ |
046d0a37 JD |
5950 | F: drivers/i2c/busses/i2c-omap.c |
5951 | F: include/linux/i2c-omap.h | |
f5525786 | 5952 | |
50f29fbd | 5953 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 5954 | M: Benoît Cousson <[email protected]> |
50f29fbd TL |
5955 | M: Tony Lindgren <[email protected]> |
5956 | L: [email protected] | |
d0fb18c5 | 5957 | L: [email protected] |
50f29fbd TL |
5958 | S: Maintained |
5959 | F: arch/arm/boot/dts/*omap* | |
5960 | F: arch/arm/boot/dts/*am3* | |
5961 | ||
f5525786 | 5962 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5963 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
5964 | L: [email protected] |
5965 | S: Maintained | |
5966 | F: arch/arm/*omap*/*clock* | |
5967 | ||
5968 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 5969 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
5970 | L: [email protected] |
5971 | S: Maintained | |
5972 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5973 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5974 | |
d21db568 | 5975 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
5976 | M: Rajendra Nayak <[email protected]> |
5977 | M: Paul Walmsley <[email protected]> | |
5978 | L: [email protected] | |
5979 | S: Maintained | |
d21db568 | 5980 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 5981 | |
f5525786 | 5982 | OMAP AUDIO SUPPORT |
6c284903 | 5983 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 5984 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
5985 | L: [email protected] (subscribers-only) |
5986 | L: [email protected] | |
5987 | S: Maintained | |
5988 | F: sound/soc/omap/ | |
5989 | ||
5990 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5991 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 5992 | L: [email protected] |
f5525786 TL |
5993 | L: [email protected] |
5994 | S: Maintained | |
5995 | F: drivers/video/omap/ | |
5996 | ||
676eec0d | 5997 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5998 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 5999 | L: [email protected] |
676eec0d | 6000 | L: [email protected] |
178ff4c9 | 6001 | S: Maintained |
676eec0d | 6002 | F: drivers/video/omap2/ |
178ff4c9 TV |
6003 | F: Documentation/arm/OMAP/DSS |
6004 | ||
8b37fcfc OBC |
6005 | OMAP HARDWARE SPINLOCK SUPPORT |
6006 | M: Ohad Ben-Cohen <[email protected]> | |
6007 | L: [email protected] | |
6008 | S: Maintained | |
6009 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6010 | F: arch/arm/mach-omap2/hwspinlock.c | |
6011 | ||
f5525786 | 6012 | OMAP MMC SUPPORT |
8b58be88 | 6013 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
6014 | L: [email protected] |
6015 | S: Maintained | |
653f41b5 MC |
6016 | F: drivers/mmc/host/omap.c |
6017 | ||
6018 | OMAP HS MMC SUPPORT | |
14006bfb | 6019 | M: Balaji T K <[email protected]> |
0a4585c6 | 6020 | L: [email protected] |
653f41b5 | 6021 | L: [email protected] |
0a4585c6 | 6022 | S: Maintained |
653f41b5 | 6023 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6024 | |
6025 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6026 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
6027 | S: Maintained |
6028 | F: drivers/char/hw_random/omap-rng.c | |
6029 | ||
f400c82e | 6030 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6031 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6032 | M: Paul Walmsley <[email protected]> |
6033 | L: [email protected] | |
6034 | S: Maintained | |
8fc8b12b | 6035 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6036 | |
6037 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6038 | M: Benoît Cousson <[email protected]> |
f400c82e PW |
6039 | L: [email protected] |
6040 | S: Maintained | |
6041 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6042 | ||
7e8970e1 LP |
6043 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6044 | M: Laurent Pinchart <[email protected]> | |
6045 | L: [email protected] | |
6046 | S: Maintained | |
90d72ac6 | 6047 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6048 | |
f5525786 | 6049 | OMAP USB SUPPORT |
f299470a | 6050 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
6051 | L: [email protected] |
6052 | L: [email protected] | |
43b416e5 | 6053 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6054 | S: Maintained |
a16fbd65 JP |
6055 | F: drivers/usb/*/*omap* |
6056 | F: arch/arm/*omap*/usb* | |
f5525786 | 6057 | |
6d994710 KH |
6058 | OMAP GPIO DRIVER |
6059 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 6060 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
6061 | L: [email protected] |
6062 | S: Maintained | |
6063 | F: drivers/gpio/gpio-omap.c | |
6064 | ||
0ad122d9 | 6065 | OMFS FILESYSTEM |
8b58be88 | 6066 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6067 | L: [email protected] |
6068 | S: Maintained | |
679655da JP |
6069 | F: Documentation/filesystems/omfs.txt |
6070 | F: fs/omfs/ | |
0ad122d9 | 6071 | |
c1986ee9 | 6072 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6073 | M: Harald Welte <[email protected]> |
c1986ee9 | 6074 | S: Maintained |
679655da JP |
6075 | F: drivers/char/pcmcia/cm4000_cs.c |
6076 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6077 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6078 | |
77c44ab1 | 6079 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6080 | M: Harald Welte <[email protected]> |
77c44ab1 | 6081 | S: Maintained |
679655da | 6082 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6083 | |
77d5140f | 6084 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6085 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6086 | L: [email protected] |
275ffde4 | 6087 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6088 | S: Maintained |
90d72ac6 | 6089 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6090 | |
431bca73 | 6091 | ONENAND FLASH DRIVER |
8b58be88 | 6092 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6093 | L: [email protected] |
6094 | S: Maintained | |
679655da JP |
6095 | F: drivers/mtd/onenand/ |
6096 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6097 | |
1da177e4 | 6098 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6099 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6100 | L: [email protected] |
6101 | L: [email protected] | |
6102 | S: Maintained | |
f7269cfc JD |
6103 | F: Documentation/scsi/osst.txt |
6104 | F: drivers/scsi/osst.* | |
6105 | F: drivers/scsi/osst_*.h | |
6106 | F: drivers/scsi/st.h | |
1da177e4 | 6107 | |
e2d1d6c0 | 6108 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6109 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6110 | L: [email protected] |
e2d1d6c0 | 6111 | S: Maintained |
679655da JP |
6112 | F: Documentation/i2c/busses/i2c-ocores |
6113 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6114 | |
860c44c1 | 6115 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6116 | M: Grant Likely <[email protected]> |
f910b831 | 6117 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6118 | L: [email protected] |
860c44c1 | 6119 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6120 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6121 | S: Maintained |
f8828205 | 6122 | F: drivers/of/ |
860c44c1 | 6123 | F: include/linux/of*.h |
f8828205 | 6124 | F: scripts/dtc/ |
860c44c1 | 6125 | K: of_get_property |
d945fa0d | 6126 | K: of_match_table |
860c44c1 | 6127 | |
f8828205 GL |
6128 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6129 | M: Rob Herring <[email protected]> | |
6130 | M: Pawel Moll <[email protected]> | |
6131 | M: Mark Rutland <[email protected]> | |
6132 | M: Stephen Warren <[email protected]> | |
de80963e | 6133 | M: Ian Campbell <[email protected]> |
f8828205 GL |
6134 | L: [email protected] |
6135 | S: Maintained | |
6136 | F: Documentation/devicetree/ | |
6137 | F: arch/*/boot/dts/ | |
6138 | F: include/dt-bindings/ | |
6139 | ||
19f9d392 JB |
6140 | OPENRISC ARCHITECTURE |
6141 | M: Jonas Bonn <[email protected]> | |
6142 | W: http://openrisc.net | |
eab7c1c0 | 6143 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6144 | S: Maintained |
6145 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6146 | F: arch/openrisc/ |
19f9d392 | 6147 | |
ccb1352e JG |
6148 | OPENVSWITCH |
6149 | M: Jesse Gross <[email protected]> | |
6150 | L: [email protected] | |
6151 | W: http://openvswitch.org | |
6152 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6153 | S: Maintained | |
6154 | F: net/openvswitch/ | |
6155 | ||
af39917d CL |
6156 | OPL4 DRIVER |
6157 | M: Clemens Ladisch <[email protected]> | |
6158 | L: [email protected] (moderated for non-subscribers) | |
6159 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6160 | S: Maintained | |
6161 | F: sound/drivers/opl4/ | |
6162 | ||
1da177e4 | 6163 | OPROFILE |
4cf7e718 | 6164 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6165 | L: [email protected] |
6166 | S: Maintained | |
81c4a8a6 | 6167 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6168 | F: arch/*/oprofile/ |
6169 | F: drivers/oprofile/ | |
6170 | F: include/linux/oprofile.h | |
1da177e4 | 6171 | |
e2d1d6c0 | 6172 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6173 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6174 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6175 | L: [email protected] (moderated for non-subscribers) |
6176 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6178 | S: Supported |
679655da JP |
6179 | F: Documentation/filesystems/ocfs2.txt |
6180 | F: Documentation/filesystems/dlmfs.txt | |
6181 | F: fs/ocfs2/ | |
e2d1d6c0 | 6182 | |
1da177e4 | 6183 | ORINOCO DRIVER |
724c6b35 | 6184 | L: [email protected] |
491b26b4 | 6185 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6186 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6187 | S: Orphan |
679655da | 6188 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6189 | |
42c55aa8 | 6190 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6191 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6192 | M: Benny Halevy <[email protected]> |
68274794 BH |
6193 | L: [email protected] |
6194 | W: http://open-osd.org | |
54e5881d | 6195 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6196 | S: Maintained |
42c55aa8 | 6197 | F: drivers/scsi/osd/ |
6b6f0b6c | 6198 | F: include/scsi/osd_* |
42c55aa8 | 6199 | F: fs/exofs/ |
68274794 | 6200 | |
e2d1d6c0 | 6201 | P54 WIRELESS DRIVER |
084cb0fe | 6202 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6203 | L: [email protected] |
084cb0fe | 6204 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6205 | S: Maintained |
679655da | 6206 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6207 | |
f5cd7872 | 6208 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6209 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6210 | L: [email protected] |
6211 | S: Maintained | |
ded19add | 6212 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6213 | |
beb58aa3 | 6214 | PA SEMI SMBUS DRIVER |
8b58be88 | 6215 | M: Olof Johansson <[email protected]> |
846557d3 | 6216 | L: [email protected] |
beb58aa3 | 6217 | S: Maintained |
679655da | 6218 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6219 | |
48fc267e SK |
6220 | PADATA PARALLEL EXECUTION MECHANISM |
6221 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6222 | L: [email protected] |
6223 | S: Maintained | |
6224 | F: kernel/padata.c | |
6225 | F: include/linux/padata.h | |
6226 | F: Documentation/padata.txt | |
6227 | ||
709ee531 | 6228 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6229 | M: Harald Welte <[email protected]> |
d0944853 | 6230 | L: [email protected] |
709ee531 | 6231 | S: Maintained |
679655da | 6232 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6233 | |
368dd5ac | 6234 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6235 | M: David Howells <[email protected]> |
6236 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6237 | L: [email protected] (moderated for non-subscribers) |
6238 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6239 | S: Maintained | |
679655da JP |
6240 | F: Documentation/mn10300/ |
6241 | F: arch/mn10300/ | |
4fa97181 | 6242 | |
1da177e4 | 6243 | PARALLEL PORT SUPPORT |
3dd1a329 | 6244 | L: [email protected] (subscribers-only) |
5fdc2abe | 6245 | S: Orphan |
679655da JP |
6246 | F: drivers/parport/ |
6247 | F: include/linux/parport*.h | |
6248 | F: drivers/char/ppdev.c | |
c117ab84 | 6249 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6250 | |
4cdf6bc2 | 6251 | PARAVIRT_OPS INTERFACE |
d633180c | 6252 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6253 | M: Chris Wright <[email protected]> |
6254 | M: Alok Kataria <[email protected]> | |
6255 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6256 | L: [email protected] |
4cdf6bc2 | 6257 | S: Supported |
679655da JP |
6258 | F: Documentation/ia64/paravirt_ops.txt |
6259 | F: arch/*/kernel/paravirt* | |
6260 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6261 | |
e2d1d6c0 | 6262 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6263 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6264 | L: [email protected] (subscribers-only) |
6265 | W: http://www.torque.net/linux-pp.html | |
6266 | S: Maintained | |
679655da JP |
6267 | F: Documentation/blockdev/paride.txt |
6268 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6269 | |
6270 | PARISC ARCHITECTURE | |
b8828770 | 6271 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6272 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6273 | L: [email protected] |
6274 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6275 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6278 | S: Maintained |
679655da | 6279 | F: arch/parisc/ |
2b6bac9e | 6280 | F: Documentation/parisc/ |
679655da | 6281 | F: drivers/parisc/ |
2b6bac9e HD |
6282 | F: drivers/char/agp/parisc-agp.c |
6283 | F: drivers/input/serio/gscps2.c | |
6284 | F: drivers/parport/parport_gsc.* | |
6285 | F: drivers/tty/serial/8250/8250_gsc.c | |
6286 | F: drivers/video/sti* | |
6287 | F: drivers/video/console/sti* | |
6288 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6289 | |
1662d32c | 6290 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6291 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6292 | L: [email protected] |
6293 | S: Maintained | |
679655da JP |
6294 | F: Documentation/hwmon/pc87360 |
6295 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6296 | |
6297 | PC8736x GPIO DRIVER | |
8b58be88 | 6298 | M: Jim Cromie <[email protected]> |
1662d32c | 6299 | S: Maintained |
679655da | 6300 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6301 | |
1ad107fd JD |
6302 | PC87427 HARDWARE MONITORING DRIVER |
6303 | M: Jean Delvare <[email protected]> | |
6304 | L: [email protected] | |
6305 | S: Maintained | |
6306 | F: Documentation/hwmon/pc87427 | |
6307 | F: drivers/hwmon/pc87427.c | |
6308 | ||
b26e0ed4 | 6309 | PCA9532 LED DRIVER |
8b58be88 | 6310 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6311 | S: Maintained |
d5ca6918 JP |
6312 | F: drivers/leds/leds-pca9532.c |
6313 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6314 | |
5ce914a8 | 6315 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6316 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6317 | L: [email protected] |
6318 | S: Maintained | |
b4f0b74e | 6319 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6320 | |
3971dae5 | 6321 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6322 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6323 | S: Maintained |
6324 | F: drivers/firmware/pcdp.* | |
6325 | ||
065c6359 | 6326 | PCI ERROR RECOVERY |
6305902c | 6327 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6328 | L: [email protected] |
065c6359 | 6329 | S: Supported |
679655da | 6330 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6331 | |
1da177e4 | 6332 | PCI SUBSYSTEM |
5ac3a6d2 | 6333 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6334 | L: [email protected] |
99662dd1 | 6335 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6336 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6337 | S: Supported |
679655da JP |
6338 | F: Documentation/PCI/ |
6339 | F: drivers/pci/ | |
6340 | F: include/linux/pci* | |
1da177e4 | 6341 | |
0447cfd7 TR |
6342 | PCI DRIVER FOR NVIDIA TEGRA |
6343 | M: Thierry Reding <[email protected]> | |
6344 | L: [email protected] | |
6345 | S: Supported | |
6346 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6347 | F: drivers/pci/host/pci-tegra.c | |
6348 | ||
1da177e4 | 6349 | PCMCIA SUBSYSTEM |
4230dfc9 | 6350 | P: Linux PCMCIA Team |
f5df5881 | 6351 | L: [email protected] |
6650e0a5 | 6352 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6354 | S: Maintained |
679655da JP |
6355 | F: Documentation/pcmcia/ |
6356 | F: drivers/pcmcia/ | |
6357 | F: include/pcmcia/ | |
1da177e4 LT |
6358 | |
6359 | PCNET32 NETWORK DRIVER | |
227fb925 | 6360 | M: Don Fry <[email protected]> |
979b6c13 | 6361 | L: [email protected] |
1da177e4 | 6362 | S: Maintained |
b955f6ca | 6363 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6364 | |
48fc267e SK |
6365 | PCRYPT PARALLEL CRYPTO ENGINE |
6366 | M: Steffen Klassert <[email protected]> | |
6367 | L: [email protected] | |
6368 | S: Maintained | |
6369 | F: crypto/pcrypt.c | |
6370 | F: include/crypto/pcrypt.h | |
6371 | ||
e72df0b8 TH |
6372 | PER-CPU MEMORY ALLOCATOR |
6373 | M: Tejun Heo <[email protected]> | |
6374 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6376 | S: Maintained | |
6377 | F: include/linux/percpu*.h | |
6378 | F: mm/percpu*.c | |
6379 | F: arch/*/include/asm/percpu.h | |
6380 | ||
ad4ecbcb | 6381 | PER-TASK DELAY ACCOUNTING |
185e595f | 6382 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6383 | S: Maintained |
679655da JP |
6384 | F: include/linux/delayacct.h |
6385 | F: kernel/delayacct.c | |
ad4ecbcb | 6386 | |
57c0c15b | 6387 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6388 | M: Peter Zijlstra <[email protected]> |
6389 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6390 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6391 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 6392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6393 | S: Supported |
d53e8365 | 6394 | F: kernel/events/* |
a003236c | 6395 | F: include/linux/perf_event.h |
c117ab84 | 6396 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6397 | F: arch/*/kernel/perf_event*.c |
6398 | F: arch/*/kernel/*/perf_event*.c | |
6399 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6400 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6401 | F: arch/*/kernel/perf_callchain.c |
6402 | F: tools/perf/ | |
6c0b3244 | 6403 | |
dd49d0f5 | 6404 | PERSONALITY HANDLING |
8b58be88 | 6405 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6406 | L: [email protected] |
6407 | S: Maintained | |
679655da | 6408 | F: include/linux/personality.h |
c117ab84 | 6409 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6410 | |
838e7a03 | 6411 | PHONET PROTOCOL |
2a06b40f | 6412 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6413 | S: Supported |
6414 | F: Documentation/networking/phonet.txt | |
6415 | F: include/linux/phonet.h | |
6416 | F: include/net/phonet/ | |
c117ab84 | 6417 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6418 | F: net/phonet/ |
6419 | ||
1da177e4 | 6420 | PHRAM MTD DRIVER |
8b58be88 | 6421 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6422 | L: [email protected] |
6423 | S: Maintained | |
679655da | 6424 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6425 | |
efdbb10e BP |
6426 | PICOLCD HID DRIVER |
6427 | M: Bruno Prémont <[email protected]> | |
6428 | L: [email protected] | |
6429 | S: Maintained | |
6430 | F: drivers/hid/hid-picolcd* | |
6431 | ||
a53bfa07 JI |
6432 | PICOXCELL SUPPORT |
6433 | M: Jamie Iles <[email protected]> | |
6434 | L: [email protected] (moderated for non-subscribers) | |
6435 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6436 | S: Supported | |
14430813 | 6437 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6438 | F: drivers/*/picoxcell* |
6439 | F: drivers/*/*/picoxcell* | |
6440 | ||
2744e8af LW |
6441 | PIN CONTROL SUBSYSTEM |
6442 | M: Linus Walleij <[email protected]> | |
6443 | S: Maintained | |
07f29ba6 | 6444 | F: drivers/pinctrl/ |
8e406fe4 | 6445 | F: include/linux/pinctrl/ |
2744e8af | 6446 | |
2201bbb8 JCPV |
6447 | PIN CONTROLLER - ATMEL AT91 |
6448 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6449 | L: [email protected] (moderated for non-subscribers) | |
6450 | S: Maintained | |
6451 | F: drivers/pinctrl/pinctrl-at91.c | |
6452 | ||
b75e60d6 DA |
6453 | PIN CONTROLLER - SAMSUNG |
6454 | M: Tomasz Figa <[email protected]> | |
6455 | M: Thomas Abraham <[email protected]> | |
6456 | L: [email protected] (moderated for non-subscribers) | |
6457 | L: [email protected] (moderated for non-subscribers) | |
6458 | S: Maintained | |
6459 | F: drivers/pinctrl/pinctrl-exynos.* | |
6460 | F: drivers/pinctrl/pinctrl-s3c* | |
6461 | F: drivers/pinctrl/pinctrl-samsung.* | |
6462 | ||
deda8287 | 6463 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6464 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6465 | L: [email protected] |
6466 | L: [email protected] (moderated for non-subscribers) | |
6467 | W: http://www.st.com/spear | |
6468 | S: Maintained | |
8e406fe4 | 6469 | F: drivers/pinctrl/spear/ |
deda8287 | 6470 | |
249a6771 | 6471 | PKTCDVD DRIVER |
dbd47133 | 6472 | M: Jiri Kosina <[email protected]> |
249a6771 | 6473 | S: Maintained |
679655da JP |
6474 | F: drivers/block/pktcdvd.c |
6475 | F: include/linux/pktcdvd.h | |
c117ab84 | 6476 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6477 | |
b31d8273 G |
6478 | PKUNITY SOC DRIVERS |
6479 | M: Guan Xuetao <[email protected]> | |
6480 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6481 | S: Maintained | |
6482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6483 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6484 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6485 | F: drivers/video/fb-puv3.c |
2809e80b | 6486 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6487 | |
9d2ecfb7 | 6488 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6489 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6490 | L: [email protected] |
6491 | W: http://www.lm-sensors.org/ | |
6492 | W: http://www.roeck-us.net/linux/drivers/ | |
6493 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6494 | S: Maintained | |
6495 | F: Documentation/hwmon/pmbus | |
6496 | F: drivers/hwmon/pmbus/ | |
6497 | F: include/linux/i2c/pmbus.h | |
6498 | ||
89a36810 | 6499 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6500 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6501 | L: [email protected] |
6502 | W: http://www.pmc-sierra.com/ | |
6503 | S: Supported | |
6504 | F: drivers/scsi/pmcraid.* | |
6505 | ||
dbf9bfe6 | 6506 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6507 | M: [email protected] |
dbf9bfe6 | 6508 | M: [email protected] |
6509 | L: [email protected] | |
6510 | S: Supported | |
6511 | F: drivers/scsi/pm8001/ | |
6512 | ||
1da177e4 | 6513 | POSIX CLOCKS and TIMERS |
8b58be88 | 6514 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 6515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6516 | S: Supported |
679655da JP |
6517 | F: fs/timerfd.c |
6518 | F: include/linux/timer* | |
6519 | F: kernel/*timer* | |
1da177e4 | 6520 | |
3be86148 | 6521 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
9d5e2a02 | 6522 | M: Anton Vorontsov <[email protected]> |
8b58be88 | 6523 | M: David Woodhouse <[email protected]> |
54e5881d | 6524 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6525 | S: Maintained |
679655da | 6526 | F: include/linux/power_supply.h |
8cd725a1 | 6527 | F: drivers/power/ |
3be86148 | 6528 | |
1da177e4 | 6529 | PNP SUPPORT |
46a1f21a | 6530 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6531 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6532 | S: Maintained |
679655da | 6533 | F: drivers/pnp/ |
1da177e4 | 6534 | |
999445d4 | 6535 | PNXxxxx I2C DRIVER |
8b58be88 | 6536 | M: Vitaly Wool <[email protected]> |
846557d3 | 6537 | L: [email protected] |
999445d4 | 6538 | S: Maintained |
679655da | 6539 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6540 | |
1da177e4 | 6541 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6542 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6543 | L: [email protected] |
6544 | S: Maintained | |
224cf5ad | 6545 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6546 | |
6547 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6548 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6549 | S: Maintained |
679655da | 6550 | F: net/atm/pppoatm.c |
c117ab84 | 6551 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6552 | |
6553 | PPP OVER ETHERNET | |
8b58be88 | 6554 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6555 | S: Maintained |
224cf5ad JK |
6556 | F: drivers/net/ppp/pppoe.c |
6557 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6558 | |
a6d2370b | 6559 | PPP OVER L2TP |
8b58be88 | 6560 | M: James Chapman <[email protected]> |
a6d2370b | 6561 | S: Maintained |
90ca28d1 | 6562 | F: net/l2tp/l2tp_ppp.c |
679655da | 6563 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6564 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6565 | |
eae9d2ba | 6566 | PPS SUPPORT |
8b58be88 | 6567 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6568 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6569 | L: [email protected] (subscribers-only) | |
6570 | S: Maintained | |
cabaaf41 JP |
6571 | F: Documentation/pps/ |
6572 | F: drivers/pps/ | |
6573 | F: include/linux/pps*.h | |
eae9d2ba | 6574 | |
71a6d0af HW |
6575 | PPTP DRIVER |
6576 | M: Dmitry Kozlov <[email protected]> | |
6577 | L: [email protected] | |
6578 | S: Maintained | |
224cf5ad | 6579 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6580 | W: http://sourceforge.net/projects/accel-pptp |
6581 | ||
1da177e4 | 6582 | PREEMPTIBLE KERNEL |
8b58be88 | 6583 | M: Robert Love <[email protected]> |
1da177e4 LT |
6584 | L: [email protected] |
6585 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6586 | S: Supported | |
679655da JP |
6587 | F: Documentation/preempt-locking.txt |
6588 | F: include/linux/preempt.h | |
1da177e4 LT |
6589 | |
6590 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6591 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6592 | L: [email protected] |
9ef80804 | 6593 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6594 | S: Obsolete |
679655da | 6595 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6596 | |
b3277dfa | 6597 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 6598 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6599 | L: [email protected] |
6600 | S: Maintained | |
679655da | 6601 | F: drivers/ata/sata_promise.* |
b3277dfa | 6602 | |
02c18891 | 6603 | PS3 NETWORK SUPPORT |
b809b9ca | 6604 | M: Geoff Levand <[email protected]> |
02c18891 | 6605 | L: [email protected] |
a4724ed6 | 6606 | L: [email protected] |
b809b9ca | 6607 | S: Maintained |
8df158ac | 6608 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6609 | |
f58a9d17 | 6610 | PS3 PLATFORM SUPPORT |
b809b9ca | 6611 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6612 | L: [email protected] |
6613 | L: [email protected] | |
b809b9ca | 6614 | S: Maintained |
679655da JP |
6615 | F: arch/powerpc/boot/ps3* |
6616 | F: arch/powerpc/include/asm/lv1call.h | |
6617 | F: arch/powerpc/include/asm/ps3*.h | |
6618 | F: arch/powerpc/platforms/ps3/ | |
6619 | F: drivers/*/ps3* | |
6620 | F: drivers/ps3/ | |
fec629b8 | 6621 | F: drivers/rtc/rtc-ps3.c |
679655da | 6622 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6623 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6624 | |
cffb4add | 6625 | PS3VRAM DRIVER |
8b58be88 | 6626 | M: Jim Paris <[email protected]> |
a4724ed6 | 6627 | L: [email protected] |
cffb4add | 6628 | S: Maintained |
8a3977cb | 6629 | F: drivers/block/ps3vram.c |
cffb4add | 6630 | |
8defe599 | 6631 | PSTORE FILESYSTEM |
9d5e2a02 | 6632 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6633 | M: Colin Cross <[email protected]> |
6634 | M: Kees Cook <[email protected]> | |
6635 | M: Tony Luck <[email protected]> | |
6636 | S: Maintained | |
6637 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6638 | F: fs/pstore/ | |
6639 | F: include/linux/pstore* | |
04851772 | 6640 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6641 | F: drivers/acpi/apei/erst.c |
6642 | ||
7fbc415d RC |
6643 | PTP HARDWARE CLOCK SUPPORT |
6644 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6645 | L: [email protected] |
7fbc415d RC |
6646 | S: Maintained |
6647 | W: http://linuxptp.sourceforge.net/ | |
6648 | F: Documentation/ABI/testing/sysfs-ptp | |
6649 | F: Documentation/ptp/* | |
0ecb3cdd | 6650 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6651 | F: drivers/net/phy/dp83640* |
6652 | F: drivers/ptp/* | |
6653 | F: include/linux/ptp_cl* | |
6654 | ||
cf94a4d1 | 6655 | PTRACE SUPPORT |
8b58be88 JP |
6656 | M: Roland McGrath <[email protected]> |
6657 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6658 | S: Maintained |
6659 | F: include/asm-generic/syscall.h | |
6660 | F: include/linux/ptrace.h | |
6661 | F: include/linux/regset.h | |
6662 | F: include/linux/tracehook.h | |
c117ab84 | 6663 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6664 | F: kernel/ptrace.c |
6665 | ||
8320204a | 6666 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6667 | M: Mike Isely <[email protected]> |
16e9495d | 6668 | L: [email protected] (subscribers-only) |
661263b5 | 6669 | L: [email protected] |
8320204a | 6670 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6671 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6672 | S: Maintained |
679655da | 6673 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6674 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6675 | |
39532e6c HG |
6676 | PWC WEBCAM DRIVER |
6677 | M: Hans de Goede <[email protected]> | |
6678 | L: [email protected] | |
6679 | T: git git://linuxtv.org/media_tree.git | |
6680 | S: Maintained | |
6681 | F: drivers/media/usb/pwc/* | |
6682 | ||
200efedd | 6683 | PWM SUBSYSTEM |
aa3495f7 TR |
6684 | M: Thierry Reding <[email protected]> |
6685 | L: [email protected] | |
0c2498f1 | 6686 | S: Maintained |
200efedd TR |
6687 | W: http://gitorious.org/linux-pwm |
6688 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6689 | F: Documentation/pwm.txt | |
6690 | F: Documentation/devicetree/bindings/pwm/ | |
6691 | F: include/linux/pwm.h | |
0c2498f1 | 6692 | F: drivers/pwm/ |
a140b98d TR |
6693 | F: drivers/video/backlight/pwm_bl.c |
6694 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6695 | |
30ec261e | 6696 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6697 | M: Eric Miao <[email protected]> |
6698 | M: Russell King <[email protected]> | |
a323f664 | 6699 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6700 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6701 | T: git git://github.com/hzhuang1/linux.git |
6702 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6703 | S: Maintained |
679655da JP |
6704 | F: arch/arm/mach-pxa/ |
6705 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6706 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6707 | F: drivers/usb/gadget/pxa2* |
6708 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 6709 | F: sound/arm/pxa* |
14430813 | 6710 | F: sound/soc/pxa/ |
1da177e4 | 6711 | |
3f640c61 | 6712 | MMP SUPPORT |
8b58be88 | 6713 | M: Eric Miao <[email protected]> |
a323f664 | 6714 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6715 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6716 | T: git git://github.com/hzhuang1/linux.git |
6717 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6718 | S: Maintained |
3f640c61 | 6719 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6720 | |
272f133a PO |
6721 | PXA MMCI DRIVER |
6722 | S: Orphan | |
6723 | ||
57f63bc8 | 6724 | PXA RTC DRIVER |
8b58be88 | 6725 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6726 | L: [email protected] |
6727 | S: Maintained | |
6728 | ||
52a09a04 | 6729 | QIB DRIVER |
8473c603 | 6730 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6731 | L: [email protected] |
6732 | S: Supported | |
6733 | F: drivers/infiniband/hw/qib/ | |
6734 | ||
5e9772b9 JS |
6735 | QLOGIC QLA1280 SCSI DRIVER |
6736 | M: Michael Reed <[email protected]> | |
6737 | L: [email protected] | |
6738 | S: Maintained | |
6739 | F: drivers/scsi/qla1280.[ch] | |
6740 | ||
1da177e4 | 6741 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6742 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6743 | M: [email protected] |
1da177e4 LT |
6744 | L: [email protected] |
6745 | S: Supported | |
679655da JP |
6746 | F: Documentation/scsi/LICENSE.qla2xxx |
6747 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6748 | |
883c98fe | 6749 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
6750 | M: Vikas Chaudhary <[email protected]> |
6751 | M: [email protected] | |
6752 | L: [email protected] | |
6753 | S: Supported | |
bacfb81b | 6754 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
6755 | F: drivers/scsi/qla4xxx/ |
6756 | ||
5a4faa87 | 6757 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6758 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6759 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6760 | M: [email protected] |
6761 | L: [email protected] | |
6762 | S: Supported | |
679655da | 6763 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6764 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6765 | |
0ec00f03 | 6766 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 6767 | M: Himanshu Madhani <[email protected]> |
195ca382 SC |
6768 | M: Rajesh Borundia <[email protected]> |
6769 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 6770 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6771 | M: Sony Chacko <[email protected]> |
7ad031ee | 6772 | M: Sucheta Chakraborty <[email protected]> |
0ec00f03 AKS |
6773 | M: [email protected] |
6774 | L: [email protected] | |
6775 | S: Supported | |
aa43c215 | 6776 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6777 | |
c4e84bde | 6778 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6779 | M: Shahed Shaikh <[email protected]> |
b997d79a | 6780 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6781 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6782 | M: [email protected] |
c4e84bde RM |
6783 | L: [email protected] |
6784 | S: Supported | |
aa43c215 | 6785 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6786 | |
1da177e4 | 6787 | QNX4 FILESYSTEM |
8b58be88 | 6788 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6789 | W: http://www.alarsen.net/linux/qnx4fs/ |
6790 | S: Maintained | |
80811493 | 6791 | F: fs/qnx4/ |
c117ab84 CEB |
6792 | F: include/uapi/linux/qnx4_fs.h |
6793 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6794 | |
91952bc0 AP |
6795 | QT1010 MEDIA DRIVER |
6796 | M: Antti Palosaari <[email protected]> | |
6797 | L: [email protected] | |
6798 | W: http://linuxtv.org/ | |
6799 | W: http://palosaari.fi/linux/ | |
6800 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6801 | T: git git://linuxtv.org/anttip/media_tree.git | |
6802 | S: Maintained | |
6803 | F: drivers/media/tuners/qt1010* | |
6804 | ||
2ea0ffcb KV |
6805 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
6806 | M: Kalle Valo <[email protected]> | |
6807 | L: [email protected] | |
6808 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
6809 | T: git git://github.com/kvalo/ath.git | |
6810 | S: Supported | |
6811 | F: drivers/net/wireless/ath/ath10k/ | |
6812 | ||
4f4567cf RK |
6813 | QUALCOMM HEXAGON ARCHITECTURE |
6814 | M: Richard Kuo <[email protected]> | |
6815 | L: [email protected] | |
6816 | S: Supported | |
6817 | F: arch/hexagon/ | |
6818 | ||
35e3540b HV |
6819 | QUICKCAM PARALLEL PORT WEBCAMS |
6820 | M: Hans Verkuil <[email protected]> | |
6821 | L: [email protected] | |
6822 | T: git git://linuxtv.org/media_tree.git | |
6823 | W: http://linuxtv.org | |
6824 | S: Odd Fixes | |
6825 | F: drivers/media/parport/*-qcam* | |
6826 | ||
602adf40 | 6827 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6828 | M: Yehuda Sadeh <[email protected]> |
6829 | M: Sage Weil <[email protected]> | |
6830 | M: Alex Elder <[email protected]> | |
602adf40 | 6831 | M: [email protected] |
09d90327 SW |
6832 | W: http://ceph.com/ |
6833 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6834 | S: Supported |
6835 | F: drivers/block/rbd.c | |
6836 | F: drivers/block/rbd_types.h | |
6837 | ||
1da177e4 | 6838 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6839 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6840 | L: [email protected] |
1da177e4 | 6841 | S: Maintained |
679655da | 6842 | F: drivers/video/aty/radeon* |
c117ab84 | 6843 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6844 | |
c6c9b34c HG |
6845 | RADIOSHARK RADIO DRIVER |
6846 | M: Hans de Goede <[email protected]> | |
6847 | L: [email protected] | |
6848 | T: git git://linuxtv.org/media_tree.git | |
6849 | S: Maintained | |
6850 | F: drivers/media/radio/radio-shark.c | |
6851 | ||
6852 | RADIOSHARK2 RADIO DRIVER | |
6853 | M: Hans de Goede <[email protected]> | |
6854 | L: [email protected] | |
6855 | T: git git://linuxtv.org/media_tree.git | |
6856 | S: Maintained | |
6857 | F: drivers/media/radio/radio-shark2.c | |
6858 | F: drivers/media/radio/radio-tea5777.c | |
6859 | ||
1da177e4 | 6860 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6861 | M: Paul Mackerras <[email protected]> |
c69f677c | 6862 | L: [email protected] |
1da177e4 | 6863 | S: Maintained |
679655da | 6864 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6865 | |
e7839f25 | 6866 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6867 | P: rt2x00 project |
e1a6542f | 6868 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 6869 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 6870 | M: Helmut Schaa <[email protected]> |
95ea3627 | 6871 | L: [email protected] |
83fc9c89 | 6872 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
6873 | W: http://rt2x00.serialmonkey.com/ |
6874 | S: Maintained | |
54e5881d | 6875 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6876 | F: drivers/net/wireless/rt2x00/ |
6877 | ||
9db5579b | 6878 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6879 | M: Nick Piggin <[email protected]> |
9db5579b | 6880 | S: Maintained |
679655da JP |
6881 | F: Documentation/blockdev/ramdisk.txt |
6882 | F: drivers/block/brd.c | |
9db5579b | 6883 | |
9e95ce27 | 6884 | RANDOM NUMBER DRIVER |
330e0a01 | 6885 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 6886 | S: Maintained |
679655da | 6887 | F: drivers/char/random.c |
9e95ce27 | 6888 | |
394b701c | 6889 | RAPIDIO SUBSYSTEM |
8b58be88 | 6890 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 6891 | M: Alexandre Bounine <[email protected]> |
394b701c | 6892 | S: Maintained |
679655da | 6893 | F: drivers/rapidio/ |
394b701c | 6894 | |
e2d1d6c0 | 6895 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6896 | L: [email protected] |
f52a5490 | 6897 | S: Orphan |
679655da | 6898 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6899 | |
6900 | RCUTORTURE MODULE | |
8b58be88 JP |
6901 | M: Josh Triplett <[email protected]> |
6902 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 6903 | S: Supported |
08deed1e | 6904 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6905 | F: Documentation/RCU/torture.txt |
6906 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6907 | |
c1f766b5 | 6908 | RDC R-321X SoC |
8b58be88 | 6909 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
6910 | S: Maintained |
6911 | ||
db17f395 | 6912 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6913 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
6914 | L: [email protected] |
6915 | S: Maintained | |
58565a35 | 6916 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6917 | |
a09ed661 | 6918 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6919 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 6920 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 6921 | S: Supported |
679655da | 6922 | F: net/rds/ |
a09ed661 | 6923 | |
595182bc | 6924 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6925 | M: Dipankar Sarma <[email protected]> |
6926 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 6927 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6928 | S: Supported |
08deed1e | 6929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6930 | F: Documentation/RCU/ |
9fab9787 | 6931 | X: Documentation/RCU/torture.txt |
f9094d8e | 6932 | F: include/linux/rcu* |
f9094d8e | 6933 | F: kernel/rcu* |
f9094d8e | 6934 | X: kernel/rcutorture.c |
595182bc | 6935 | |
0c86edc0 | 6936 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6937 | M: Alessandro Zummo <[email protected]> |
76465493 | 6938 | L: [email protected] |
8a6e2535 | 6939 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6940 | S: Maintained |
679655da JP |
6941 | F: Documentation/rtc.txt |
6942 | F: drivers/rtc/ | |
6943 | F: include/linux/rtc.h | |
c117ab84 | 6944 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6945 | |
1da177e4 | 6946 | REISERFS FILE SYSTEM |
76c4e5ea | 6947 | L: [email protected] |
1da177e4 | 6948 | S: Supported |
679655da | 6949 | F: fs/reiserfs/ |
1da177e4 | 6950 | |
b83a313b | 6951 | REGISTER MAP ABSTRACTION |
b02e48f2 | 6952 | M: Mark Brown <[email protected]> |
b83a313b MB |
6953 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
6954 | S: Supported | |
6955 | F: drivers/base/regmap/ | |
6956 | F: include/linux/regmap.h | |
6957 | ||
400e64df OBC |
6958 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6959 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 6960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6961 | S: Maintained |
6962 | F: drivers/remoteproc/ | |
6963 | F: Documentation/remoteproc.txt | |
6fc26488 | 6964 | F: include/linux/remoteproc.h |
400e64df | 6965 | |
d8115db5 OBC |
6966 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
6967 | M: Ohad Ben-Cohen <[email protected]> | |
6968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
6969 | S: Maintained | |
6970 | F: drivers/rpmsg/ | |
6971 | F: Documentation/rpmsg.txt | |
6972 | F: include/linux/rpmsg.h | |
6973 | ||
e0897645 | 6974 | RFKILL |
8b58be88 | 6975 | M: Johannes Berg <[email protected]> |
19d337df | 6976 | L: [email protected] |
ce466579 JB |
6977 | W: http://wireless.kernel.org/ |
6978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6980 | S: Maintained |
505c9247 | 6981 | F: Documentation/rfkill.txt |
80811493 | 6982 | F: net/rfkill/ |
e0897645 | 6983 | |
67e054e9 ML |
6984 | RICOH SMARTMEDIA/XD DRIVER |
6985 | M: Maxim Levitsky <[email protected]> | |
6986 | S: Maintained | |
21c26f50 JP |
6987 | F: drivers/mtd/nand/r852.c |
6988 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6989 | |
92634125 ML |
6990 | RICOH R5C592 MEMORYSTICK DRIVER |
6991 | M: Maxim Levitsky <[email protected]> | |
6992 | S: Maintained | |
6993 | F: drivers/memstick/host/r592.* | |
6994 | ||
27f1d2f9 SA |
6995 | ROCCAT DRIVERS |
6996 | M: Stefan Achatz <[email protected]> | |
6997 | W: http://sourceforge.net/projects/roccat/ | |
6998 | S: Maintained | |
6999 | F: drivers/hid/hid-roccat* | |
7000 | F: include/linux/hid-roccat* | |
7001 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7002 | ||
1da177e4 LT |
7003 | ROCKETPORT DRIVER |
7004 | P: Comtrol Corp. | |
1da177e4 LT |
7005 | W: http://www.comtrol.com |
7006 | S: Maintained | |
679655da | 7007 | F: Documentation/serial/rocket.txt |
c897401b | 7008 | F: drivers/tty/rocket* |
1da177e4 LT |
7009 | |
7010 | ROSE NETWORK LAYER | |
8b58be88 | 7011 | M: Ralf Baechle <[email protected]> |
1da177e4 | 7012 | L: [email protected] |
d34cb28a | 7013 | W: http://www.linux-ax25.org/ |
1da177e4 | 7014 | S: Maintained |
679655da | 7015 | F: include/net/rose.h |
c117ab84 | 7016 | F: include/uapi/linux/rose.h |
679655da | 7017 | F: net/rose/ |
1da177e4 | 7018 | |
91952bc0 AP |
7019 | RTL2830 MEDIA DRIVER |
7020 | M: Antti Palosaari <[email protected]> | |
7021 | L: [email protected] | |
7022 | W: http://linuxtv.org/ | |
7023 | W: http://palosaari.fi/linux/ | |
7024 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7025 | T: git git://linuxtv.org/anttip/media_tree.git | |
7026 | S: Maintained | |
7027 | F: drivers/media/dvb-frontends/rtl2830* | |
7028 | ||
27a0aacf AP |
7029 | RTL2832 MEDIA DRIVER |
7030 | M: Antti Palosaari <[email protected]> | |
7031 | L: [email protected] | |
7032 | W: http://linuxtv.org/ | |
7033 | W: http://palosaari.fi/linux/ | |
7034 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7035 | T: git git://linuxtv.org/anttip/media_tree.git | |
7036 | S: Maintained | |
7037 | F: drivers/media/dvb-frontends/rtl2832* | |
7038 | ||
59840488 | 7039 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7040 | M: "John W. Linville" <[email protected]> |
605bebe2 | 7041 | L: [email protected] |
491b26b4 | 7042 | W: http://wireless.kernel.org/ |
54e5881d | 7043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7044 | S: Maintained |
3cfeb0c3 | 7045 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7046 | |
59840488 | 7047 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7048 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
7049 | M: Hin-Tak Leung <[email protected]> |
7050 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 7051 | L: [email protected] |
491b26b4 | 7052 | W: http://wireless.kernel.org/ |
54e5881d | 7053 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7054 | S: Maintained |
3cfeb0c3 | 7055 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7056 | |
3cf0c8ad LF |
7057 | RTL8192CE WIRELESS DRIVER |
7058 | M: Larry Finger <[email protected]> | |
7059 | M: Chaoming Li <[email protected]> | |
7060 | L: [email protected] | |
491b26b4 | 7061 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7063 | S: Maintained | |
7064 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7065 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7066 | |
9eb8ef74 | 7067 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7068 | M: Antonino Daplas <[email protected]> |
c69f677c | 7069 | L: [email protected] |
ce00f85c | 7070 | S: Maintained |
679655da | 7071 | F: drivers/video/savage/ |
9eb8ef74 | 7072 | |
1da177e4 | 7073 | S390 |
8b58be88 JP |
7074 | M: Martin Schwidefsky <[email protected]> |
7075 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 7076 | M: [email protected] |
d58140cc | 7077 | L: [email protected] |
5238da45 HC |
7078 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7079 | S: Supported | |
679655da | 7080 | F: arch/s390/ |
a968cd3e | 7081 | F: drivers/s390/ |
20d16fef | 7082 | F: block/partitions/ibm.c |
3bfe6858 JN |
7083 | F: Documentation/s390/ |
7084 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7085 | |
7086 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7087 | M: Ursula Braun <[email protected]> |
7088 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7089 | M: [email protected] |
d58140cc | 7090 | L: [email protected] |
5238da45 HC |
7091 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7092 | S: Supported | |
679655da | 7093 | F: drivers/s390/net/ |
5238da45 | 7094 | |
feed9b62 | 7095 | S390 ZCRYPT DRIVER |
5c8d0983 | 7096 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7097 | M: [email protected] |
7098 | L: [email protected] | |
a968cd3e | 7099 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7100 | S: Supported |
d5ca6918 | 7101 | F: drivers/s390/crypto/ |
feed9b62 | 7102 | |
5238da45 | 7103 | S390 ZFCP DRIVER |
d38e19d0 | 7104 | M: Steffen Maier <[email protected]> |
5238da45 | 7105 | M: [email protected] |
d58140cc | 7106 | L: [email protected] |
5238da45 | 7107 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7108 | S: Supported |
679655da | 7109 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7110 | |
dd96df2c | 7111 | S390 IUCV NETWORK LAYER |
8b58be88 | 7112 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7113 | M: [email protected] |
7114 | L: [email protected] | |
7115 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7116 | S: Supported | |
679655da JP |
7117 | F: drivers/s390/net/*iucv* |
7118 | F: include/net/iucv/ | |
7119 | F: net/iucv/ | |
dd96df2c | 7120 | |
4dde7f75 | 7121 | S3C24XX SD/MMC Driver |
8b58be88 | 7122 | M: Ben Dooks <[email protected]> |
efc03ecb | 7123 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7124 | S: Supported |
679655da | 7125 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7126 | |
1f15a229 HV |
7127 | SAA6588 RDS RECEIVER DRIVER |
7128 | M: Hans Verkuil <[email protected]> | |
7129 | L: [email protected] | |
7130 | T: git git://linuxtv.org/media_tree.git | |
7131 | W: http://linuxtv.org | |
7132 | S: Odd Fixes | |
7133 | F: drivers/media/i2c/saa6588* | |
7134 | ||
98ed12e6 | 7135 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7136 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7137 | L: [email protected] |
7138 | W: http://linuxtv.org | |
7139 | T: git git://linuxtv.org/media_tree.git | |
7140 | S: Odd fixes | |
e42bf501 | 7141 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7142 | F: drivers/media/pci/saa7134/ |
7143 | ||
1da177e4 | 7144 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7145 | M: Hans Verkuil <[email protected]> |
661263b5 | 7146 | L: [email protected] |
275ffde4 | 7147 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7148 | S: Maintained |
90d72ac6 MCC |
7149 | F: drivers/media/common/saa7146/ |
7150 | F: drivers/media/pci/saa7146/ | |
7151 | F: include/media/saa7146* | |
1da177e4 | 7152 | |
92304a40 | 7153 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7154 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7155 | L: [email protected] |
7156 | S: Maintained | |
7157 | F: drivers/platform/x86/samsung-laptop.c | |
7158 | ||
4a109cc0 | 7159 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7160 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7161 | L: [email protected] (moderated for non-subscribers) |
7162 | S: Supported | |
14430813 | 7163 | F: sound/soc/samsung/ |
4a109cc0 | 7164 | |
0d89a28b JH |
7165 | SAMSUNG FRAMEBUFFER DRIVER |
7166 | M: Jingoo Han <[email protected]> | |
7167 | L: [email protected] | |
7168 | S: Maintained | |
7169 | F: drivers/video/s3c-fb.c | |
7170 | ||
f69d3a17 SK |
7171 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7172 | M: Sangbeom Kim <[email protected]> | |
7173 | L: [email protected] | |
7174 | S: Supported | |
7175 | F: drivers/mfd/sec*.c | |
7176 | F: drivers/regulator/s2m*.c | |
7177 | F: drivers/regulator/s5m*.c | |
7178 | F: drivers/rtc/rtc-sec.c | |
7179 | F: include/linux/mfd/samsung/ | |
7180 | ||
038f5c4b SN |
7181 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7182 | M: Kyungmin Park <[email protected]> | |
7183 | M: Sylwester Nawrocki <[email protected]> | |
7184 | L: [email protected] | |
7185 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7186 | S: Supported | |
7187 | F: drivers/media/platform/exynos4-is/ | |
7188 | F: include/media/s5p_fimc.h | |
7189 | ||
6fd86ab2 SN |
7190 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7191 | M: Sylwester Nawrocki <[email protected]> | |
7192 | L: [email protected] | |
7193 | L: [email protected] (moderated for non-subscribers) | |
7194 | S: Maintained | |
7195 | F: drivers/media/platform/s3c-camif/ | |
7196 | F: include/media/s3c_camif.h | |
7197 | ||
b84ef24e AH |
7198 | SAMSUNG S5C73M3 CAMERA DRIVER |
7199 | M: Kyungmin Park <[email protected]> | |
7200 | M: Andrzej Hajda <[email protected]> | |
7201 | L: [email protected] | |
7202 | S: Supported | |
7203 | F: drivers/media/i2c/s5c73m3/* | |
7204 | ||
ca749e2a | 7205 | SERIAL DRIVERS |
5e30bbb7 | 7206 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7207 | L: [email protected] |
5e30bbb7 | 7208 | S: Maintained |
14430813 | 7209 | F: drivers/tty/serial/ |
ca749e2a | 7210 | |
aecb7b64 | 7211 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7212 | M: Viresh Kumar <[email protected]> |
337ae47c | 7213 | M: Andy Shevchenko <[email protected]> |
aecb7b64 VK |
7214 | S: Maintained |
7215 | F: include/linux/dw_dmac.h | |
61a76496 | 7216 | F: drivers/dma/dw/ |
aecb7b64 | 7217 | |
f9e37137 SJ |
7218 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7219 | M: Seungwon Jeon <[email protected]> | |
7220 | M: Jaehoon Chung <[email protected]> | |
7221 | L: [email protected] | |
7222 | S: Maintained | |
7223 | F: include/linux/mmc/dw_mmc.h | |
7224 | F: drivers/mmc/host/dw_mmc* | |
7225 | ||
9222d247 | 7226 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7227 | M: John Stultz <[email protected]> |
88606e80 | 7228 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 7229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7230 | S: Supported |
7231 | F: include/linux/clocksource.h | |
7232 | F: include/linux/time.h | |
7233 | F: include/linux/timex.h | |
c117ab84 CEB |
7234 | F: include/uapi/linux/time.h |
7235 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7236 | F: kernel/time/clocksource.c |
7237 | F: kernel/time/time*.c | |
7238 | F: kernel/time/ntp.c | |
7239 | ||
5b3f03f0 | 7240 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7241 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7242 | M: Hans Verkuil <[email protected]> |
7243 | S: Odd Fixes | |
14430813 | 7244 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7245 | |
1da177e4 | 7246 | SC1200 WDT DRIVER |
8b58be88 | 7247 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7248 | S: Maintained |
679655da | 7249 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7250 | |
7251 | SCHEDULER | |
dd9b238c | 7252 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7253 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 7254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7255 | S: Maintained |
95c0d71d | 7256 | F: kernel/sched/ |
679655da | 7257 | F: include/linux/sched.h |
c117ab84 | 7258 | F: include/uapi/linux/sched.h |
1da177e4 | 7259 | |
6bcf6737 | 7260 | SCORE ARCHITECTURE |
a2681a75 JP |
7261 | M: Chen Liqin <[email protected]> |
7262 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
7263 | W: http://www.sunplusct.com |
7264 | S: Supported | |
a2681a75 | 7265 | F: arch/score/ |
6bcf6737 | 7266 | |
1da177e4 | 7267 | SCSI CDROM DRIVER |
8b58be88 | 7268 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7269 | L: [email protected] |
7270 | W: http://www.kernel.dk | |
7271 | S: Maintained | |
679655da | 7272 | F: drivers/scsi/sr* |
1da177e4 | 7273 | |
fb50a83d RD |
7274 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7275 | M: David Dillow <[email protected]> | |
7276 | L: [email protected] | |
7277 | S: Supported | |
7278 | W: http://www.openfabrics.org | |
7279 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7281 | F: drivers/infiniband/ulp/srp/ | |
7282 | F: include/scsi/srp.h | |
7283 | ||
1da177e4 | 7284 | SCSI SG DRIVER |
8b58be88 | 7285 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
7286 | L: [email protected] |
7287 | W: http://www.torque.net/sg | |
7288 | S: Maintained | |
679655da JP |
7289 | F: drivers/scsi/sg.c |
7290 | F: include/scsi/sg.h | |
1da177e4 LT |
7291 | |
7292 | SCSI SUBSYSTEM | |
c95286d8 | 7293 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7294 | L: [email protected] |
54e5881d JP |
7295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7296 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7298 | S: Maintained |
679655da JP |
7299 | F: drivers/scsi/ |
7300 | F: include/scsi/ | |
1da177e4 LT |
7301 | |
7302 | SCSI TAPE DRIVER | |
8b58be88 | 7303 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7304 | L: [email protected] |
7305 | S: Maintained | |
679655da | 7306 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7307 | F: drivers/scsi/st.* |
7308 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7309 | |
7310 | SCTP PROTOCOL | |
8b6efb75 | 7311 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7312 | M: Neil Horman <[email protected]> |
1a418796 | 7313 | L: [email protected] |
5f85813c | 7314 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7315 | S: Maintained |
679655da JP |
7316 | F: Documentation/networking/sctp.txt |
7317 | F: include/linux/sctp.h | |
4d58c025 | 7318 | F: include/uapi/linux/sctp.h |
679655da JP |
7319 | F: include/net/sctp/ |
7320 | F: net/sctp/ | |
1da177e4 LT |
7321 | |
7322 | SCx200 CPU SUPPORT | |
8b58be88 | 7323 | M: Jim Cromie <[email protected]> |
1662d32c | 7324 | S: Odd Fixes |
679655da | 7325 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7326 | F: arch/x86/platform/scx200/ |
679655da JP |
7327 | F: drivers/watchdog/scx200_wdt.c |
7328 | F: drivers/i2c/busses/scx200* | |
7329 | F: drivers/mtd/maps/scx200_docflash.c | |
7330 | F: include/linux/scx200.h | |
1662d32c JC |
7331 | |
7332 | SCx200 GPIO DRIVER | |
8b58be88 | 7333 | M: Jim Cromie <[email protected]> |
1662d32c | 7334 | S: Maintained |
679655da JP |
7335 | F: drivers/char/scx200_gpio.c |
7336 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7337 | |
7338 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7339 | M: Jim Cromie <[email protected]> |
1662d32c | 7340 | S: Maintained |
679655da | 7341 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7342 | |
6a36913a | 7343 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7344 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7345 | L: [email protected] (subscribers-only) |
7346 | S: Maintained | |
679655da | 7347 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7348 | |
e7839f25 | 7349 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7350 | M: Chris Ball <[email protected]> |
7a241d6e | 7351 | L: [email protected] |
245feaa6 CB |
7352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7353 | S: Maintained | |
7a241d6e | 7354 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7355 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7356 | |
3085e9c1 | 7357 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7358 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7359 | L: [email protected] |
7a241d6e | 7360 | L: [email protected] |
e2d1d6c0 | 7361 | S: Maintained |
d4a45787 | 7362 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7363 | |
0d1bb41a | 7364 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7365 | M: Ben Dooks <[email protected]> |
7a241d6e | 7366 | L: [email protected] |
0d1bb41a BD |
7367 | S: Maintained |
7368 | F: drivers/mmc/host/sdhci-s3c.c | |
7369 | ||
c63b3cba | 7370 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7371 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7372 | L: [email protected] |
c63b3cba VK |
7373 | L: [email protected] |
7374 | S: Maintained | |
7375 | F: drivers/mmc/host/sdhci-spear.c | |
7376 | ||
8711cca2 | 7377 | SECURITY SUBSYSTEM |
9b45c0d2 | 7378 | M: James Morris <[email protected]> |
8711cca2 | 7379 | L: [email protected] (suggested Cc:) |
89879a7e | 7380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7381 | W: http://kernsec.org/ |
8711cca2 | 7382 | S: Supported |
7d2c86b5 | 7383 | F: security/ |
8711cca2 | 7384 | |
1da177e4 | 7385 | SECURITY CONTACT |
8b58be88 | 7386 | M: Security Officers <[email protected]> |
1da177e4 LT |
7387 | S: Supported |
7388 | ||
7389 | SELINUX SECURITY MODULE | |
8b58be88 | 7390 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7391 | M: James Morris <[email protected]> |
8b58be88 | 7392 | M: Eric Paris <[email protected]> |
5a5f2acf | 7393 | M: Paul Moore <[email protected]> |
7d2c86b5 | 7394 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7395 | W: http://selinuxproject.org |
5a5f2acf | 7396 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7397 | S: Supported |
679655da JP |
7398 | F: include/linux/selinux* |
7399 | F: security/selinux/ | |
6bde95ce | 7400 | F: scripts/selinux/ |
1da177e4 | 7401 | |
c1c124e9 JJ |
7402 | APPARMOR SECURITY MODULE |
7403 | M: John Johansen <[email protected]> | |
7404 | L: [email protected] (subscribers-only, general discussion) | |
7405 | W: apparmor.wiki.kernel.org | |
7406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7407 | S: Supported | |
7408 | F: security/apparmor/ | |
7409 | ||
cef2cf07 | 7410 | SENSABLE PHANTOM |
8b58be88 | 7411 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7412 | S: Maintained |
679655da | 7413 | F: drivers/misc/phantom.c |
c117ab84 | 7414 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7415 | |
4480f15b | 7416 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7417 | M: Tejun Heo <[email protected]> |
1da177e4 | 7418 | L: [email protected] |
3d9b9350 | 7419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7420 | S: Supported |
d5ca6918 JP |
7421 | F: drivers/ata/ |
7422 | F: include/linux/ata.h | |
7423 | F: include/linux/libata.h | |
1da177e4 | 7424 | |
6733b39a | 7425 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7426 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7427 | L: [email protected] |
0ca43cc0 | 7428 | W: http://www.emulex.com |
3387f656 JP |
7429 | S: Supported |
7430 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7431 | |
6b7c5b94 | 7432 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7433 | M: Sathya Perla <[email protected]> |
7434 | M: Subbu Seetharaman <[email protected]> | |
7435 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7436 | L: [email protected] |
fea3af67 | 7437 | W: http://www.emulex.com |
7d2c86b5 | 7438 | S: Supported |
9aebddd1 | 7439 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7440 | |
8ceee660 | 7441 | SFC NETWORK DRIVER |
c06f51ea | 7442 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
7443 | M: Ben Hutchings <[email protected]> |
7444 | L: [email protected] | |
8ceee660 | 7445 | S: Supported |
874aeea5 | 7446 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7447 | |
e2d1d6c0 | 7448 | SGI GRU DRIVER |
cc883afc | 7449 | M: Dimitri Sivanich <[email protected]> |
e2d1d6c0 | 7450 | S: Maintained |
679655da | 7451 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7452 | |
7453 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7454 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7455 | L: [email protected] |
7456 | S: Supported | |
679655da | 7457 | F: Documentation/ia64/serial.txt |
df621252 | 7458 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7459 | F: include/linux/ioc?.h |
e2d1d6c0 | 7460 | |
1da177e4 | 7461 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7462 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7463 | L: [email protected] |
7464 | W: http://linux-visws.sf.net | |
7465 | S: Maintained for 2.6. | |
679655da | 7466 | F: Documentation/sgi-visws.txt |
1da177e4 | 7467 | |
75312619 | 7468 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7469 | M: Cliff Whickman <[email protected]> |
7470 | M: Robin Holt <[email protected]> | |
75312619 | 7471 | S: Maintained |
679655da | 7472 | F: drivers/misc/sgi-xp/ |
75312619 | 7473 | |
49cc629d HV |
7474 | SI470X FM RADIO RECEIVER I2C DRIVER |
7475 | M: Hans Verkuil <[email protected]> | |
7476 | L: [email protected] | |
7477 | T: git git://linuxtv.org/media_tree.git | |
7478 | W: http://linuxtv.org | |
7479 | S: Odd Fixes | |
7480 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7481 | ||
7482 | SI470X FM RADIO RECEIVER USB DRIVER | |
7483 | M: Hans Verkuil <[email protected]> | |
7484 | L: [email protected] | |
7485 | T: git git://linuxtv.org/media_tree.git | |
7486 | W: http://linuxtv.org | |
7487 | S: Maintained | |
7488 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7489 | F: drivers/media/radio/si470x/radio-si470x.h | |
7490 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7491 | ||
c937ca03 EV |
7492 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7493 | M: Eduardo Valentin <[email protected]> | |
7494 | L: [email protected] | |
7495 | T: git git://linuxtv.org/media_tree.git | |
7496 | W: http://linuxtv.org | |
7497 | S: Odd Fixes | |
7498 | F: drivers/media/radio/si4713-i2c.? | |
7499 | ||
7500 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7501 | M: Eduardo Valentin <[email protected]> | |
7502 | L: [email protected] | |
7503 | T: git git://linuxtv.org/media_tree.git | |
7504 | W: http://linuxtv.org | |
7505 | S: Odd Fixes | |
559cdc82 | 7506 | F: drivers/media/radio/radio-si4713.c |
c937ca03 | 7507 | |
beb91d46 | 7508 | SIANO DVB DRIVER |
1b2c14b4 | 7509 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7510 | L: [email protected] |
7511 | W: http://linuxtv.org | |
7512 | T: git git://linuxtv.org/media_tree.git | |
7513 | S: Odd fixes | |
7514 | F: drivers/media/common/siano/ | |
beb91d46 | 7515 | F: drivers/media/usb/siano/ |
beb91d46 | 7516 | F: drivers/media/usb/siano/ |
14430813 | 7517 | F: drivers/media/mmc/siano/ |
beb91d46 | 7518 | |
b618b69c GL |
7519 | SH_VEU V4L2 MEM2MEM DRIVER |
7520 | M: Guennadi Liakhovetski <[email protected]> | |
7521 | L: [email protected] | |
7522 | S: Maintained | |
7523 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7524 | |
7525 | SH_VOU V4L2 OUTPUT DRIVER | |
7526 | M: Guennadi Liakhovetski <[email protected]> | |
7527 | L: [email protected] | |
4290fd1a | 7528 | S: Odd Fixes |
b618b69c GL |
7529 | F: drivers/media/platform/sh_vou.c |
7530 | F: include/media/sh_vou.h | |
7531 | ||
6349d997 | 7532 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7533 | M: Len Brown <[email protected]> |
6349d997 LB |
7534 | L: [email protected] |
7535 | W: http://simplefirmware.org/ | |
7536 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7537 | S: Supported |
943fc810 | 7538 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7539 | F: drivers/sfi/ |
7540 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7541 | |
1da177e4 LT |
7542 | SIMTEC EB110ATX (Chalice CATS) |
7543 | P: Ben Dooks | |
b16957c6 BD |
7544 | P: Vincent Sanders <[email protected]> |
7545 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7546 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7547 | S: Supported | |
7548 | ||
7549 | SIMTEC EB2410ITX (BAST) | |
7550 | P: Ben Dooks | |
b16957c6 BD |
7551 | P: Vincent Sanders <[email protected]> |
7552 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7553 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7554 | S: Supported | |
15dba387 JP |
7555 | F: arch/arm/mach-s3c24xx/mach-bast.c |
7556 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
7557 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 7558 | |
4c5adde7 | 7559 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7560 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7561 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7562 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7563 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7564 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 7565 | S: Supported |
14430813 | 7566 | F: arch/arm/mach-davinci/ |
046d0a37 | 7567 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7568 | |
8d4b3f08 | 7569 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7570 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7571 | L: [email protected] |
7572 | L: [email protected] (moderated for non-subscribers) | |
7573 | W: http://linuxtv.org/ | |
7574 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7575 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7576 | S: Maintained |
8d4b3f08 LP |
7577 | F: drivers/media/platform/davinci/ |
7578 | F: include/media/davinci/ | |
7579 | ||
92aab3c0 | 7580 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7581 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7582 | L: [email protected] |
7583 | S: Maintained | |
8c7de408 | 7584 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7585 | |
1da177e4 | 7586 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7587 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7588 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7589 | L: [email protected] |
1da177e4 | 7590 | S: Maintained |
8c7de408 | 7591 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7592 | |
7593 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7594 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7595 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7596 | S: Maintained |
679655da JP |
7597 | F: Documentation/fb/sisfb.txt |
7598 | F: drivers/video/sis/ | |
7599 | F: include/video/sisfb.h | |
1da177e4 LT |
7600 | |
7601 | SIS USB2VGA DRIVER | |
8b58be88 | 7602 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7603 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7604 | S: Maintained | |
679655da | 7605 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7606 | |
415ad26d | 7607 | SLAB ALLOCATOR |
8b58be88 | 7608 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7609 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7610 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7611 | L: [email protected] |
7612 | S: Maintained | |
679655da JP |
7613 | F: include/linux/sl?b*.h |
7614 | F: mm/sl?b.c | |
415ad26d | 7615 | |
9fab9787 PM |
7616 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7617 | M: Lai Jiangshan <[email protected]> | |
7618 | M: "Paul E. McKenney" <[email protected]> | |
7619 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7620 | S: Supported | |
7621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7622 | F: include/linux/srcu* | |
7623 | F: kernel/srcu* | |
7624 | ||
66372841 CS |
7625 | SMACK SECURITY MODULE |
7626 | M: Casey Schaufler <[email protected]> | |
7627 | L: [email protected] | |
7628 | W: http://schaufler-ca.com | |
7629 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7630 | S: Maintained | |
7631 | F: Documentation/security/Smack.txt | |
7632 | F: security/smack/ | |
7633 | ||
68ace3e1 KH |
7634 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
7635 | M: Kevin Hilman <[email protected]> | |
7636 | M: Nishanth Menon <[email protected]> | |
7637 | S: Maintained | |
7638 | F: drivers/power/avs/smartreflex.c | |
7639 | F: include/linux/power/smartreflex.h | |
7640 | L: [email protected] | |
7641 | ||
1da177e4 | 7642 | SMC91x ETHERNET DRIVER |
2f82af08 | 7643 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7644 | S: Odd Fixes |
ae150435 | 7645 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7646 | |
e8e31622 SA |
7647 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7648 | M: Sakari Ailus <[email protected]> | |
7649 | L: [email protected] | |
7650 | S: Maintained | |
14430813 | 7651 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
7652 | F: include/media/smiapp.h |
7653 | F: drivers/media/i2c/smiapp-pll.c | |
7654 | F: drivers/media/i2c/smiapp-pll.h | |
7655 | ||
920fa1ff GR |
7656 | SMM665 HARDWARE MONITOR DRIVER |
7657 | M: Guenter Roeck <[email protected]> | |
7658 | L: [email protected] | |
7659 | S: Maintained | |
7660 | F: Documentation/hwmon/smm665 | |
7661 | F: drivers/hwmon/smm665.c | |
7662 | ||
9df7305b | 7663 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7664 | M: Steve Glendinning <[email protected]> |
9df7305b | 7665 | L: [email protected] |
90b24cfb | 7666 | S: Maintained |
9df7305b SG |
7667 | F: Documentation/hwmon/emc2103 |
7668 | F: drivers/hwmon/emc2103.c | |
7669 | ||
a98d506c HG |
7670 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7671 | M: Hans de Goede <[email protected]> | |
7672 | L: [email protected] | |
7673 | S: Supported | |
7674 | F: Documentation/hwmon/sch5627 | |
7675 | F: drivers/hwmon/sch5627.c | |
7676 | ||
6ea884db | 7677 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7678 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7679 | L: [email protected] |
7680 | S: Maintained | |
679655da JP |
7681 | F: Documentation/hwmon/smsc47b397 |
7682 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7683 | |
fd9abb3d | 7684 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7685 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7686 | L: [email protected] |
90b24cfb | 7687 | S: Maintained |
679655da | 7688 | F: include/linux/smsc911x.h |
ae150435 | 7689 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7690 | |
7691 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7692 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 7693 | L: [email protected] |
90b24cfb | 7694 | S: Maintained |
ae150435 | 7695 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7696 | |
3c8a63e2 | 7697 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7698 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 7699 | L: [email protected] |
90b24cfb | 7700 | S: Maintained |
3c8a63e2 SG |
7701 | F: drivers/video/smscufx.c |
7702 | ||
668acf32 | 7703 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7704 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 7705 | L: [email protected] |
275ffde4 | 7706 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7707 | S: Maintained |
90d72ac6 MCC |
7708 | F: include/media/soc* |
7709 | F: drivers/media/i2c/soc_camera/ | |
7710 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7711 | |
e2d1d6c0 | 7712 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7713 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 7714 | S: Maintained |
679655da | 7715 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7716 | |
1da177e4 | 7717 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7718 | M: Neil Brown <[email protected]> |
1da177e4 | 7719 | L: [email protected] |
524418bb | 7720 | S: Supported |
679655da JP |
7721 | F: drivers/md/ |
7722 | F: include/linux/raid/ | |
c117ab84 | 7723 | F: include/uapi/linux/raid/ |
1da177e4 | 7724 | |
1da177e4 | 7725 | SONIC NETWORK DRIVER |
8b58be88 | 7726 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 7727 | L: [email protected] |
1da177e4 | 7728 | S: Maintained |
d9fb9f38 | 7729 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7730 | |
61e115a5 | 7731 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7732 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
7733 | L: [email protected] |
7734 | S: Maintained | |
679655da JP |
7735 | F: drivers/ssb/ |
7736 | F: include/linux/ssb/ | |
61e115a5 | 7737 | |
1da177e4 | 7738 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7739 | M: Mattia Dongili <[email protected]> |
d0944853 | 7740 | L: [email protected] |
5b18167d | 7741 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7742 | S: Maintained |
679655da JP |
7743 | F: Documentation/laptops/sony-laptop.txt |
7744 | F: drivers/char/sonypi.c | |
7745 | F: drivers/platform/x86/sony-laptop.c | |
7746 | F: include/linux/sony-laptop.h | |
1da177e4 | 7747 | |
baf8532a | 7748 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7749 | M: Alex Dubov <[email protected]> |
baf8532a AD |
7750 | W: http://tifmxx.berlios.de/ |
7751 | S: Maintained | |
679655da | 7752 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7753 | |
0ab30494 ML |
7754 | SONY MEMORYSTICK STANDARD SUPPORT |
7755 | M: Maxim Levitsky <[email protected]> | |
7756 | S: Maintained | |
7757 | F: drivers/memstick/core/ms_block.* | |
7758 | ||
1da177e4 | 7759 | SOUND |
8b58be88 JP |
7760 | M: Jaroslav Kysela <[email protected]> |
7761 | M: Takashi Iwai <[email protected]> | |
93711660 | 7762 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 7763 | W: http://www.alsa-project.org/ |
dde7ad8d | 7764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7765 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7766 | S: Maintained |
3126a179 JP |
7767 | F: Documentation/sound/ |
7768 | F: include/sound/ | |
c117ab84 | 7769 | F: include/uapi/sound/ |
679655da | 7770 | F: sound/ |
1da177e4 | 7771 | |
33bbe149 MB |
7772 | SOUND - COMPRESSED AUDIO |
7773 | M: Vinod Koul <[email protected]> | |
7774 | L: [email protected] (moderated for non-subscribers) | |
7775 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
7776 | S: Supported | |
f672f31a | 7777 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 7778 | F: include/sound/compress_driver.h |
f672f31a | 7779 | F: include/uapi/sound/compress_* |
33bbe149 MB |
7780 | F: sound/core/compress_offload.c |
7781 | F: sound/soc/soc-compress.c | |
7782 | ||
bd903bde | 7783 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7784 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 7785 | M: Mark Brown <[email protected]> |
86f14df8 | 7786 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7787 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 7788 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7789 | S: Supported |
2820f615 | 7790 | F: Documentation/sound/alsa/soc/ |
679655da | 7791 | F: sound/soc/ |
e6e55122 | 7792 | F: include/sound/soc* |
eb1a6af3 | 7793 | |
473321fc | 7794 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7795 | M: "David S. Miller" <[email protected]> |
1da177e4 | 7796 | L: [email protected] |
8a6e2535 | 7797 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7800 | S: Maintained |
679655da | 7801 | F: arch/sparc/ |
7765b8bb | 7802 | F: drivers/sbus/ |
1da177e4 | 7803 | |
6404fcca DM |
7804 | SPARC SERIAL DRIVERS |
7805 | M: "David S. Miller" <[email protected]> | |
7806 | L: [email protected] | |
08deed1e JP |
7807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7809 | S: Maintained |
6816383a | 7810 | F: include/linux/sunserialcore.h |
df621252 | 7811 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7812 | F: drivers/tty/serial/sunhv.c |
7813 | F: drivers/tty/serial/sunsab.c | |
7814 | F: drivers/tty/serial/sunsab.h | |
7815 | F: drivers/tty/serial/sunsu.c | |
7816 | F: drivers/tty/serial/sunzilog.c | |
7817 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7818 | |
389325b4 CL |
7819 | SPARSE CHECKER |
7820 | M: "Christopher Li" <[email protected]> | |
7821 | L: [email protected] | |
7822 | W: https://sparse.wiki.kernel.org/ | |
7823 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7824 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7825 | S: Maintained | |
7826 | F: include/linux/compiler.h | |
7827 | ||
fc0c195a | 7828 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7829 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7830 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7831 | L: [email protected] |
7832 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7833 | W: http://www.st.com/spear |
7834 | S: Maintained | |
281e192f | 7835 | F: arch/arm/mach-spear/ |
fc0c195a VK |
7836 | |
7837 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7838 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7839 | L: [email protected] |
7840 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7841 | W: http://www.st.com/spear |
7842 | S: Maintained | |
5df33a62 | 7843 | F: drivers/clk/spear/ |
fc0c195a | 7844 | |
e2d1d6c0 | 7845 | SPI SUBSYSTEM |
b02e48f2 | 7846 | M: Mark Brown <[email protected]> |
dfbe403c | 7847 | L: [email protected] |
e7e4e13c | 7848 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7849 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7850 | S: Maintained |
679655da JP |
7851 | F: Documentation/spi/ |
7852 | F: drivers/spi/ | |
7853 | F: include/linux/spi/ | |
c117ab84 | 7854 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7855 | |
2752e401 | 7856 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7857 | M: Ishizaki Kou <[email protected]> |
7858 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
7859 | L: [email protected] |
7860 | S: Supported | |
679655da | 7861 | F: Documentation/networking/spider_net.txt |
8df158ac | 7862 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7863 | |
e2d1d6c0 | 7864 | SPU FILE SYSTEM |
8b58be88 | 7865 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
7866 | L: [email protected] |
7867 | L: [email protected] | |
e2d1d6c0 RD |
7868 | W: http://www.ibm.com/developerworks/power/cell/ |
7869 | S: Supported | |
679655da JP |
7870 | F: Documentation/filesystems/spufs.txt |
7871 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7872 | |
fc555841 | 7873 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7874 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
7875 | L: [email protected] (subscribers-only) |
7876 | W: http://squashfs.org.uk | |
7877 | S: Maintained | |
679655da JP |
7878 | F: Documentation/filesystems/squashfs.txt |
7879 | F: fs/squashfs/ | |
fc555841 | 7880 | |
1da177e4 | 7881 | SRM (Alpha) environment access |
8b58be88 | 7882 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 7883 | S: Maintained |
679655da | 7884 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7885 | |
26e9a397 | 7886 | STABLE BRANCH |
879a5a00 | 7887 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 7888 | L: [email protected] |
879a5a00 | 7889 | S: Supported |
7b175c46 | 7890 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 7891 | |
26e9a397 | 7892 | STAGING SUBSYSTEM |
879a5a00 | 7893 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 7894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7895 | L: [email protected] |
879a5a00 | 7896 | S: Supported |
679655da | 7897 | F: drivers/staging/ |
dbc6c2cc | 7898 | |
c8c8b105 JP |
7899 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7900 | M: Henk de Groot <[email protected]> | |
7901 | S: Odd Fixes | |
7902 | F: drivers/staging/wlags49_h2/ | |
7903 | F: drivers/staging/wlags49_h25/ | |
7904 | ||
c9555159 JP |
7905 | STAGING - ASUS OLED |
7906 | M: Jakub Schmidtke <[email protected]> | |
7907 | S: Odd Fixes | |
7908 | F: drivers/staging/asus_oled/ | |
7909 | ||
ebd3d010 JP |
7910 | STAGING - COMEDI |
7911 | M: Ian Abbott <[email protected]> | |
81b884c9 | 7912 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
7913 | S: Odd Fixes |
7914 | F: drivers/staging/comedi/ | |
7915 | ||
8ca572c9 JP |
7916 | STAGING - CRYSTAL HD VIDEO DECODER |
7917 | M: Naren Sankar <[email protected]> | |
7918 | M: Jarod Wilson <[email protected]> | |
7919 | M: Scott Davilla <[email protected]> | |
7920 | M: Manu Abraham <[email protected]> | |
7921 | S: Odd Fixes | |
7922 | F: drivers/staging/crystalhd/ | |
7923 | ||
0f16ffc4 JP |
7924 | STAGING - ECHO CANCELLER |
7925 | M: Steve Underwood <[email protected]> | |
7926 | M: David Rowe <[email protected]> | |
7927 | S: Odd Fixes | |
7928 | F: drivers/staging/echo/ | |
7929 | ||
8dc2bbe7 ME |
7930 | STAGING - ET131X NETWORK DRIVER |
7931 | M: Mark Einon <[email protected]> | |
7932 | S: Odd Fixes | |
7933 | F: drivers/staging/et131x/ | |
7934 | ||
a0138163 JP |
7935 | STAGING - FLARION FT1000 DRIVERS |
7936 | M: Marek Belisko <[email protected]> | |
7937 | S: Odd Fixes | |
7938 | F: drivers/staging/ft1000/ | |
7939 | ||
ec3fab92 JP |
7940 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7941 | M: David Täht <[email protected]> | |
7942 | S: Odd Fixes | |
7943 | F: drivers/staging/frontier/ | |
7944 | ||
98ded590 HV |
7945 | STAGING - GO7007 MPEG CODEC |
7946 | M: Hans Verkuil <[email protected]> | |
7947 | S: Maintained | |
7948 | F: drivers/staging/media/go7007/ | |
7949 | ||
6c1bb424 JP |
7950 | STAGING - INDUSTRIAL IO |
7951 | M: Jonathan Cameron <[email protected]> | |
a0138163 | 7952 | L: [email protected] |
6c1bb424 JP |
7953 | S: Odd Fixes |
7954 | F: drivers/staging/iio/ | |
7955 | ||
a0138163 JP |
7956 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7957 | M: Jarod Wilson <[email protected]> | |
7958 | W: http://www.lirc.org/ | |
7959 | S: Odd Fixes | |
b2b0186d | 7960 | F: drivers/staging/media/lirc/ |
a0138163 | 7961 | |
7c6b6c71 | 7962 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7963 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
7964 | M: Marc Dietrich <[email protected]> |
7965 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 7966 | L: [email protected] |
7c6b6c71 MD |
7967 | S: Maintained |
7968 | F: drivers/staging/nvec/ | |
7969 | ||
a0138163 | 7970 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
7971 | M: Jens Frederich <[email protected]> |
7972 | M: Daniel Drake <[email protected]> | |
a0138163 JP |
7973 | M: Jon Nettleton <[email protected]> |
7974 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 7975 | S: Maintained |
a0138163 JP |
7976 | F: drivers/staging/olpc_dcon/ |
7977 | ||
94cfdd15 | 7978 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 7979 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
7980 | S: Maintained |
7981 | F: drivers/staging/ozwpan/ | |
7982 | ||
a0138163 | 7983 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7984 | M: Willy Tarreau <[email protected]> |
7985 | S: Odd Fixes | |
7986 | F: drivers/staging/panel/ | |
7987 | ||
a0138163 JP |
7988 | STAGING - REALTEK RTL8712U DRIVERS |
7989 | M: Larry Finger <[email protected]> | |
7990 | M: Florian Schilhabel <[email protected]>. | |
7991 | S: Odd Fixes | |
7992 | F: drivers/staging/rtl8712/ | |
7993 | ||
9629fa86 JP |
7994 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7995 | M: Teddy Wang <[email protected]> | |
7996 | S: Odd Fixes | |
9df0a245 | 7997 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 7998 | |
a0138163 | 7999 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8000 | M: Ismael Luceno <[email protected]> |
8001 | S: Supported | |
b2b0186d | 8002 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8003 | |
8004 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8005 | M: William Hubbs <[email protected]> | |
8006 | M: Chris Brannon <[email protected]> | |
d33bce31 | 8007 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
8008 | M: Samuel Thibault <[email protected]> |
8009 | L: [email protected] | |
8010 | W: http://www.linux-speakup.org/ | |
8011 | S: Odd Fixes | |
8012 | F: drivers/staging/speakup/ | |
8013 | ||
8014 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8015 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
8016 | S: Odd Fixes |
8017 | F: drivers/staging/tidspbridge/ | |
8018 | ||
a0138163 JP |
8019 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8020 | M: Al Cho <[email protected]> | |
8021 | S: Odd Fixes | |
8022 | F: drivers/staging/keucr/ | |
8023 | ||
b3e871ce JP |
8024 | STAGING - VIA VT665X DRIVERS |
8025 | M: Forest Bond <[email protected]> | |
8026 | S: Odd Fixes | |
8027 | F: drivers/staging/vt665?/ | |
8028 | ||
81a9a526 JP |
8029 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8030 | M: Pavel Machek <[email protected]> | |
8031 | S: Odd Fixes | |
8032 | F: drivers/staging/winbond/ | |
8033 | ||
709bcb07 | 8034 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8035 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
8036 | S: Odd Fixes |
8037 | F: drivers/staging/xgifb/ | |
8038 | ||
1da177e4 | 8039 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8040 | M: Ion Badulescu <[email protected]> |
b4f90189 | 8041 | S: Odd Fixes |
9bba23b0 | 8042 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8043 | |
e2d1d6c0 | 8044 | SUN3/3X |
8b58be88 | 8045 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
8046 | W: http://sammy.net/sun3/ |
8047 | S: Maintained | |
679655da JP |
8048 | F: arch/m68k/kernel/*sun3* |
8049 | F: arch/m68k/sun3*/ | |
8050 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8051 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8052 | |
2bc9ff01 DK |
8053 | SUNDANCE NETWORK DRIVER |
8054 | M: Denis Kirjanov <[email protected]> | |
8055 | L: [email protected] | |
8056 | S: Maintained | |
8057 | F: drivers/net/ethernet/dlink/sundance.c | |
8058 | ||
2cbb12a4 | 8059 | SUPERH |
8b58be88 | 8060 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 8061 | L: [email protected] |
1da177e4 | 8062 | W: http://www.linux-sh.org |
8a6e2535 | 8063 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 8064 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 8065 | S: Supported |
066069e1 | 8066 | F: Documentation/sh/ |
679655da | 8067 | F: arch/sh/ |
066069e1 | 8068 | F: drivers/sh/ |
1da177e4 | 8069 | |
4480f15b | 8070 | SUSPEND TO RAM |
8b58be88 JP |
8071 | M: Len Brown <[email protected]> |
8072 | M: Pavel Machek <[email protected]> | |
8073 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 8074 | L: [email protected] |
e2d1d6c0 | 8075 | S: Supported |
679655da JP |
8076 | F: Documentation/power/ |
8077 | F: arch/x86/kernel/acpi/ | |
8078 | F: drivers/base/power/ | |
8079 | F: kernel/power/ | |
8080 | F: include/linux/suspend.h | |
8081 | F: include/linux/freezer.h | |
8082 | F: include/linux/pm.h | |
1da177e4 LT |
8083 | |
8084 | SVGA HANDLING | |
8b58be88 | 8085 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8086 | L: [email protected] |
8087 | S: Maintained | |
679655da JP |
8088 | F: Documentation/svga.txt |
8089 | F: arch/x86/boot/video* | |
1da177e4 | 8090 | |
6e28b761 KRW |
8091 | SWIOTLB SUBSYSTEM |
8092 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8093 | L: [email protected] | |
8094 | S: Supported | |
8095 | F: lib/swiotlb.c | |
8096 | F: arch/*/kernel/pci-swiotlb.c | |
8097 | F: include/linux/swiotlb.h | |
8098 | ||
db8e35d5 VG |
8099 | SYNOPSYS ARC ARCHITECTURE |
8100 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8101 | S: Supported |
8102 | F: arch/arc/ | |
6659a20a | 8103 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8104 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8105 | |
1da177e4 | 8106 | SYSV FILESYSTEM |
8b58be88 | 8107 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8108 | S: Maintained |
679655da JP |
8109 | F: Documentation/filesystems/sysv-fs.txt |
8110 | F: fs/sysv/ | |
8111 | F: include/linux/sysv_fs.h | |
1da177e4 | 8112 | |
86cfa7fc NB |
8113 | TARGET SUBSYSTEM |
8114 | M: Nicholas A. Bellinger <[email protected]> | |
8115 | L: [email protected] | |
b9f5edc2 | 8116 | L: [email protected] |
86cfa7fc NB |
8117 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8118 | W: http://www.linux-iscsi.org | |
452cf324 | 8119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8120 | S: Supported |
8121 | F: drivers/target/ | |
8122 | F: include/target/ | |
8123 | F: Documentation/target/ | |
8124 | ||
4e68852d | 8125 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8126 | M: Balbir Singh <[email protected]> |
4e68852d | 8127 | S: Maintained |
679655da JP |
8128 | F: Documentation/accounting/taskstats* |
8129 | F: include/linux/taskstats* | |
8130 | F: kernel/taskstats.c | |
4e68852d | 8131 | |
781b456a | 8132 | TC CLASSIFIER |
f935f3f8 | 8133 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8134 | L: [email protected] |
8135 | S: Maintained | |
679655da | 8136 | F: include/net/pkt_cls.h |
c117ab84 | 8137 | F: include/uapi/linux/pkt_cls.h |
679655da | 8138 | F: net/sched/ |
781b456a | 8139 | |
5067f08a | 8140 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8141 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8142 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8143 | W: http://tcp-lp-mod.sourceforge.net/ |
8144 | S: Maintained | |
679655da | 8145 | F: net/ipv4/tcp_lp.c |
5067f08a | 8146 | |
91952bc0 AP |
8147 | TDA10071 MEDIA DRIVER |
8148 | M: Antti Palosaari <[email protected]> | |
8149 | L: [email protected] | |
8150 | W: http://linuxtv.org/ | |
8151 | W: http://palosaari.fi/linux/ | |
8152 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8153 | T: git git://linuxtv.org/anttip/media_tree.git | |
8154 | S: Maintained | |
8155 | F: drivers/media/dvb-frontends/tda10071* | |
8156 | ||
8157 | TDA18212 MEDIA DRIVER | |
8158 | M: Antti Palosaari <[email protected]> | |
8159 | L: [email protected] | |
8160 | W: http://linuxtv.org/ | |
8161 | W: http://palosaari.fi/linux/ | |
8162 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8163 | T: git git://linuxtv.org/anttip/media_tree.git | |
8164 | S: Maintained | |
8165 | F: drivers/media/tuners/tda18212* | |
8166 | ||
8167 | TDA18218 MEDIA DRIVER | |
8168 | M: Antti Palosaari <[email protected]> | |
8169 | L: [email protected] | |
8170 | W: http://linuxtv.org/ | |
8171 | W: http://palosaari.fi/linux/ | |
8172 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8173 | T: git git://linuxtv.org/anttip/media_tree.git | |
8174 | S: Maintained | |
8175 | F: drivers/media/tuners/tda18218* | |
8176 | ||
3b2f6aba MK |
8177 | TDA18271 MEDIA DRIVER |
8178 | M: Michael Krufky <[email protected]> | |
8179 | L: [email protected] | |
8180 | W: http://linuxtv.org/ | |
8181 | W: http://github.com/mkrufky | |
8182 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8183 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8184 | S: Maintained | |
8185 | F: drivers/media/tuners/tda18271* | |
8186 | ||
e48307a9 MK |
8187 | TDA827x MEDIA DRIVER |
8188 | M: Michael Krufky <[email protected]> | |
8189 | L: [email protected] | |
8190 | W: http://linuxtv.org/ | |
8191 | W: http://github.com/mkrufky | |
8192 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8193 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8194 | S: Maintained | |
8195 | F: drivers/media/tuners/tda8290.* | |
8196 | ||
66cf9212 MK |
8197 | TDA8290 MEDIA DRIVER |
8198 | M: Michael Krufky <[email protected]> | |
8199 | L: [email protected] | |
8200 | W: http://linuxtv.org/ | |
8201 | W: http://github.com/mkrufky | |
8202 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8203 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8204 | S: Maintained | |
8205 | F: drivers/media/tuners/tda8290.* | |
8206 | ||
4b9fba30 HV |
8207 | TDA9840 MEDIA DRIVER |
8208 | M: Hans Verkuil <[email protected]> | |
8209 | L: [email protected] | |
8210 | T: git git://linuxtv.org/media_tree.git | |
8211 | W: http://linuxtv.org | |
8212 | S: Maintained | |
8213 | F: drivers/media/i2c/tda9840* | |
8214 | ||
2cb654fd | 8215 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8216 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8217 | L: [email protected] |
8218 | W: http://linuxtv.org | |
8219 | T: git git://linuxtv.org/media_tree.git | |
8220 | S: Odd fixes | |
8221 | F: drivers/media/tuners/tea5761.* | |
8222 | ||
8223 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8224 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8225 | L: [email protected] |
8226 | W: http://linuxtv.org | |
8227 | T: git git://linuxtv.org/media_tree.git | |
8228 | S: Maintained | |
8229 | F: drivers/media/tuners/tea5767.* | |
8230 | ||
4b9fba30 HV |
8231 | TEA6415C MEDIA DRIVER |
8232 | M: Hans Verkuil <[email protected]> | |
8233 | L: [email protected] | |
8234 | T: git git://linuxtv.org/media_tree.git | |
8235 | W: http://linuxtv.org | |
8236 | S: Maintained | |
8237 | F: drivers/media/i2c/tea6415c* | |
8238 | ||
8239 | TEA6420 MEDIA DRIVER | |
8240 | M: Hans Verkuil <[email protected]> | |
8241 | L: [email protected] | |
8242 | T: git git://linuxtv.org/media_tree.git | |
8243 | W: http://linuxtv.org | |
8244 | S: Maintained | |
8245 | F: drivers/media/i2c/tea6420* | |
8246 | ||
3d249d4c | 8247 | TEAM DRIVER |
dca9ab92 | 8248 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8249 | L: [email protected] |
8250 | S: Supported | |
8251 | F: drivers/net/team/ | |
8252 | F: include/linux/if_team.h | |
c117ab84 | 8253 | F: include/uapi/linux/if_team.h |
3d249d4c | 8254 | |
7d029125 VD |
8255 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8256 | M: Savoir-faire Linux Inc. <[email protected]> | |
8257 | S: Maintained | |
8258 | F: arch/x86/platform/ts5500/ | |
8259 | ||
40ad4a30 SY |
8260 | TECHNOTREND USB IR RECEIVER |
8261 | M: Sean Young <[email protected]> | |
8262 | L: [email protected] | |
8263 | S: Maintained | |
8264 | F: drivers/media/rc/ttusbir.c | |
8265 | ||
84b9414b | 8266 | TEGRA SUPPORT |
243d58ec | 8267 | M: Stephen Warren <[email protected]> |
84b9414b | 8268 | L: [email protected] |
fd117cd1 OJ |
8269 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8271 | S: Supported |
bbbe96ed | 8272 | N: [^a-z]tegra |
84b9414b | 8273 | |
1a348ccc | 8274 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8275 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8276 | L: [email protected] |
8277 | S: Supported | |
ef7f5429 | 8278 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8279 | |
4e68852d | 8280 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8281 | M: Mark Gross <[email protected]> |
4e68852d | 8282 | S: Supported |
679655da | 8283 | F: drivers/char/tlclk.c |
4e68852d | 8284 | |
4480f15b | 8285 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8286 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8287 | M: Max Filippov <[email protected]> |
8288 | L: [email protected] | |
4e68852d | 8289 | S: Maintained |
679655da | 8290 | F: arch/xtensa/ |
4e68852d | 8291 | |
d3fb6955 ZR |
8292 | THERMAL |
8293 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8294 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8295 | L: [email protected] |
8296 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8298 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8299 | S: Supported |
8300 | F: drivers/thermal/ | |
8301 | F: include/linux/thermal.h | |
cfaf7179 | 8302 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8303 | |
30ba2fbd VD |
8304 | THINGM BLINK(1) USB RGB LED DRIVER |
8305 | M: Vivien Didelot <[email protected]> | |
8306 | S: Maintained | |
8307 | F: drivers/hid/hid-thingm.c | |
8308 | ||
4e68852d | 8309 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8310 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8311 | L: [email protected] |
d0944853 | 8312 | L: [email protected] |
4e68852d AC |
8313 | W: http://ibm-acpi.sourceforge.net |
8314 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8315 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8316 | S: Maintained |
679655da | 8317 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8318 | |
1b46f2a2 EV |
8319 | TI BANDGAP AND THERMAL DRIVER |
8320 | M: Eduardo Valentin <[email protected]> | |
8321 | L: [email protected] | |
794b2e25 EV |
8322 | S: Supported |
8323 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8324 | |
4020f2d7 | 8325 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8326 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8327 | S: Maintained |
679655da JP |
8328 | F: drivers/misc/tifm* |
8329 | F: drivers/mmc/host/tifm_sd.c | |
8330 | F: include/linux/tifm.h | |
4020f2d7 | 8331 | |
152ad442 SR |
8332 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8333 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8334 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8335 | L: [email protected] (moderated for non-subscribers) |
8336 | S: Maintained | |
8337 | F: sound/soc/codecs/lm49453* | |
d392dead | 8338 | F: sound/soc/codecs/isabelle* |
152ad442 | 8339 | |
0edd807d KM |
8340 | TI LP855x BACKLIGHT DRIVER |
8341 | M: Milo Kim <[email protected]> | |
8342 | S: Maintained | |
8343 | F: Documentation/backlight/lp855x-driver.txt | |
8344 | F: drivers/video/backlight/lp855x_bl.c | |
8345 | F: include/linux/platform_data/lp855x.h | |
8346 | ||
faf13f6d KM |
8347 | TI LP8727 CHARGER DRIVER |
8348 | M: Milo Kim <[email protected]> | |
8349 | S: Maintained | |
8350 | F: drivers/power/lp8727_charger.c | |
8351 | F: include/linux/platform_data/lp8727.h | |
8352 | ||
22f1229f KM |
8353 | TI LP8788 MFD DRIVER |
8354 | M: Milo Kim <[email protected]> | |
8355 | S: Maintained | |
8356 | F: drivers/iio/adc/lp8788_adc.c | |
8357 | F: drivers/leds/leds-lp8788.c | |
8358 | F: drivers/mfd/lp8788*.c | |
8359 | F: drivers/power/lp8788-charger.c | |
8360 | F: drivers/regulator/lp8788-*.c | |
8361 | F: include/linux/mfd/lp8788*.h | |
8362 | ||
dd5e8e6b | 8363 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8364 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8365 | L: [email protected] (moderated for non-subscribers) |
8366 | S: Maintained | |
8367 | F: sound/soc/codecs/twl4030* | |
8368 | ||
90921014 | 8369 | TI WILINK WIRELESS DRIVERS |
d6158a55 | 8370 | M: Luciano Coelho <[email protected]> |
90921014 LC |
8371 | L: [email protected] |
8372 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8373 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8375 | S: Maintained | |
8376 | F: drivers/net/wireless/ti/ | |
8377 | F: include/linux/wl12xx.h | |
8378 | ||
e86eaa3a | 8379 | TIPC NETWORK LAYER |
8b58be88 JP |
8380 | M: Jon Maloy <[email protected]> |
8381 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8382 | L: [email protected] (core kernel code) |
8383 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8384 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8385 | S: Maintained |
c117ab84 | 8386 | F: include/uapi/linux/tipc*.h |
679655da | 8387 | F: net/tipc/ |
e86eaa3a | 8388 | |
867e359b CM |
8389 | TILE ARCHITECTURE |
8390 | M: Chris Metcalf <[email protected]> | |
8391 | W: http://www.tilera.com/scm/ | |
8392 | S: Supported | |
8393 | F: arch/tile/ | |
6b940606 | 8394 | F: drivers/char/tile-srom.c |
5c770755 | 8395 | F: drivers/edac/tile_edac.c |
6b940606 CM |
8396 | F: drivers/net/ethernet/tile/ |
8397 | F: drivers/rtc/rtc-tile.c | |
8398 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 8399 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
8400 | F: drivers/usb/host/*-tilegx.c |
8401 | F: include/linux/usb/tilegx.h | |
867e359b | 8402 | |
1da177e4 | 8403 | TLAN NETWORK DRIVER |
8b58be88 | 8404 | M: Samuel Chessman <[email protected]> |
88c07dde | 8405 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8406 | W: http://sourceforge.net/projects/tlan/ |
8407 | S: Maintained | |
679655da | 8408 | F: Documentation/networking/tlan.txt |
b544dbac | 8409 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8410 | |
d74db3b2 | 8411 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8412 | M: Kentaro Takeda <[email protected]> |
8413 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8414 | L: [email protected] (subscribers-only, for developers in English) |
8415 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8416 | L: [email protected] (subscribers-only, for developers in Japanese) |
8417 | L: [email protected] (subscribers-only, for users in Japanese) | |
8418 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8419 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8420 | S: Maintained |
679655da | 8421 | F: security/tomoyo/ |
d74db3b2 | 8422 | |
9caeb532 | 8423 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8424 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8425 | L: [email protected] |
9caeb532 HRK |
8426 | S: Maintained |
8427 | F: drivers/platform/x86/topstar-laptop.c | |
8428 | ||
1da177e4 | 8429 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8430 | L: [email protected] |
15065531 | 8431 | S: Orphan |
679655da | 8432 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8433 | |
8434 | TOSHIBA SMM DRIVER | |
8b58be88 | 8435 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8436 | L: [email protected] |
8437 | W: http://www.buzzard.org.uk/toshiba/ | |
8438 | S: Maintained | |
679655da JP |
8439 | F: drivers/char/toshiba.c |
8440 | F: include/linux/toshiba.h | |
c117ab84 | 8441 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8442 | |
d719f900 | 8443 | TMIO MMC DRIVER |
d1057c40 | 8444 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 8445 | M: Ian Molton <[email protected]> |
d1057c40 | 8446 | L: [email protected] |
d719f900 | 8447 | S: Maintained |
d1057c40 GL |
8448 | F: drivers/mmc/host/tmio_mmc* |
8449 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8450 | F: include/linux/mmc/tmio.h | |
8451 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8452 | |
917cc4e6 GR |
8453 | TMP401 HARDWARE MONITOR DRIVER |
8454 | M: Guenter Roeck <[email protected]> | |
8455 | L: [email protected] | |
8456 | S: Maintained | |
8457 | F: Documentation/hwmon/tmp401 | |
8458 | F: drivers/hwmon/tmp401.c | |
8459 | ||
98f32602 | 8460 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8461 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8462 | L: [email protected] |
8463 | S: Maintained | |
8464 | F: include/linux/shmem_fs.h | |
8465 | F: mm/shmem.c | |
8466 | ||
45f95b53 | 8467 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8468 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8469 | L: [email protected] |
8470 | W: http://linuxtv.org | |
8471 | T: git git://linuxtv.org/media_tree.git | |
8472 | S: Odd fixes | |
8473 | F: drivers/media/usb/tm6000/ | |
8474 | ||
4e68852d | 8475 | TPM DEVICE DRIVER |
5b88e270 KY |
8476 | M: Leonidas Da Silva Barbosa <[email protected]> |
8477 | M: Ashley Lai <[email protected]> | |
cbb2d5e4 | 8478 | M: Rajiv Andrade <[email protected]> |
4e68852d | 8479 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8480 | M: Marcel Selhorst <[email protected]> |
8481 | M: Sirrix AG <[email protected]> | |
7dcce133 | 8482 | W: http://www.sirrix.com |
63a10dfd | 8483 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8484 | S: Maintained |
679655da | 8485 | F: drivers/char/tpm/ |
4e68852d | 8486 | |
d6f005a1 JP |
8487 | TRACING |
8488 | M: Steven Rostedt <[email protected]> | |
8489 | M: Frederic Weisbecker <[email protected]> | |
8490 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8491 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8492 | S: Maintained |
8493 | F: Documentation/trace/ftrace.txt | |
8494 | F: arch/*/*/*/ftrace.h | |
8495 | F: arch/*/kernel/ftrace.c | |
8496 | F: include/*/ftrace.h | |
8497 | F: include/linux/trace*.h | |
8498 | F: include/trace/ | |
8499 | F: kernel/trace/ | |
8500 | ||
1da177e4 | 8501 | TRIVIAL PATCHES |
8b58be88 | 8502 | M: Jiri Kosina <[email protected]> |
54e5881d | 8503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8504 | S: Maintained |
86ef925f | 8505 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8506 | |
4e68852d | 8507 | TTY LAYER |
879a5a00 | 8508 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8509 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8510 | S: Supported |
08deed1e | 8511 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8512 | F: drivers/tty/ |
df621252 | 8513 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8514 | F: include/linux/serial_core.h |
8515 | F: include/linux/serial.h | |
8516 | F: include/linux/tty.h | |
c117ab84 CEB |
8517 | F: include/uapi/linux/serial_core.h |
8518 | F: include/uapi/linux/serial.h | |
8519 | F: include/uapi/linux/tty.h | |
4e68852d | 8520 | |
91952bc0 AP |
8521 | TUA9001 MEDIA DRIVER |
8522 | M: Antti Palosaari <[email protected]> | |
8523 | L: [email protected] | |
8524 | W: http://linuxtv.org/ | |
8525 | W: http://palosaari.fi/linux/ | |
8526 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8527 | T: git git://linuxtv.org/anttip/media_tree.git | |
8528 | S: Maintained | |
8529 | F: drivers/media/tuners/tua9001* | |
8530 | ||
740db6d7 | 8531 | TULIP NETWORK DRIVERS |
8b58be88 | 8532 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8533 | L: [email protected] |
8534 | S: Maintained | |
0f04e2aa | 8535 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8536 | |
8537 | TUN/TAP driver | |
ba57b6f2 | 8538 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8539 | W: http://vtun.sourceforge.net/tun |
8540 | S: Maintained | |
679655da JP |
8541 | F: Documentation/networking/tuntap.txt |
8542 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8543 | |
b454cc66 | 8544 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8545 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8546 | S: Maintained |
679655da JP |
8547 | F: drivers/tc/ |
8548 | F: include/linux/tc.h | |
b454cc66 | 8549 | |
1da177e4 | 8550 | U14-34F SCSI DRIVER |
8b58be88 | 8551 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8552 | L: [email protected] |
8553 | S: Maintained | |
679655da | 8554 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8555 | |
e2d1d6c0 | 8556 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8557 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8558 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8559 | L: [email protected] |
e2966cbe | 8560 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8561 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8562 | S: Maintained | |
679655da JP |
8563 | F: Documentation/filesystems/ubifs.txt |
8564 | F: fs/ubifs/ | |
e2d1d6c0 | 8565 | |
cc2020e6 | 8566 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8567 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8568 | W: http://www.uclinux.org/ |
8569 | L: [email protected] (subscribers-only) | |
8570 | S: Maintained | |
61bc02bb JP |
8571 | F: arch/m68k/*/*_no.* |
8572 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8573 | |
14fadca7 | 8574 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 8575 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
8576 | W: http://uclinux-h8.sourceforge.jp/ |
8577 | S: Supported | |
a7e4fd93 JP |
8578 | F: arch/h8300/ |
8579 | F: drivers/ide/ide-h8300.c | |
644570b8 | 8580 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 8581 | |
1da177e4 | 8582 | UDF FILESYSTEM |
8b58be88 | 8583 | M: Jan Kara <[email protected]> |
1da177e4 | 8584 | S: Maintained |
679655da JP |
8585 | F: Documentation/filesystems/udf.txt |
8586 | F: fs/udf/ | |
1da177e4 | 8587 | |
cc2020e6 | 8588 | UFS FILESYSTEM |
8b58be88 | 8589 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8590 | S: Maintained |
679655da JP |
8591 | F: Documentation/filesystems/ufs.txt |
8592 | F: fs/ufs/ | |
cc2020e6 | 8593 | |
0a09d3ab DR |
8594 | UHID USERSPACE HID IO DRIVER: |
8595 | M: David Herrmann <[email protected]> | |
8596 | L: [email protected] | |
8597 | S: Maintained | |
8598 | F: drivers/hid/uhid.c | |
c117ab84 | 8599 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8600 | |
18332a80 | 8601 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8602 | L: [email protected] |
10c6c9c9 | 8603 | S: Orphan |
355ffe69 | 8604 | F: drivers/uwb/ |
679655da JP |
8605 | F: include/linux/uwb.h |
8606 | F: include/linux/uwb/ | |
18332a80 | 8607 | |
b31d8273 G |
8608 | UNICORE32 ARCHITECTURE: |
8609 | M: Guan Xuetao <[email protected]> | |
8610 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8611 | S: Maintained | |
8612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8613 | F: arch/unicore32/ | |
8614 | ||
d8379ab1 TF |
8615 | UNIFDEF |
8616 | M: Tony Finch <[email protected]> | |
8617 | W: http://dotat.at/prog/unifdef | |
8618 | S: Maintained | |
8619 | F: scripts/unifdef.c | |
8620 | ||
1da177e4 | 8621 | UNIFORM CDROM DRIVER |
8b58be88 | 8622 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8623 | W: http://www.kernel.dk |
8624 | S: Maintained | |
679655da JP |
8625 | F: Documentation/cdrom/ |
8626 | F: drivers/cdrom/cdrom.c | |
8627 | F: include/linux/cdrom.h | |
c117ab84 | 8628 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8629 | |
9941fa6e VH |
8630 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8631 | M: Vinayak Holikatti <[email protected]> | |
8632 | M: Santosh Y <[email protected]> | |
8633 | L: [email protected] | |
8634 | S: Supported | |
8635 | F: Documentation/scsi/ufs.txt | |
8636 | F: drivers/scsi/ufs/ | |
8637 | ||
e2d1d6c0 | 8638 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8639 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
8640 | W: http://www.linux-mtd.infradead.org/ |
8641 | L: [email protected] | |
e2966cbe | 8642 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8643 | S: Maintained |
80811493 | 8644 | F: drivers/mtd/ubi/ |
679655da | 8645 | F: include/linux/mtd/ubi.h |
c117ab84 | 8646 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8647 | |
76ac66e4 RW |
8648 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8649 | M: Richard Weinberger <[email protected]> | |
8650 | L: [email protected] | |
8651 | S: Maintained | |
8652 | F: drivers/mtd/ubi/fastmap.c | |
8653 | ||
1da177e4 | 8654 | USB ACM DRIVER |
61eee9a7 | 8655 | M: Oliver Neukum <[email protected]> |
6372594a | 8656 | L: [email protected] |
1da177e4 | 8657 | S: Maintained |
679655da JP |
8658 | F: Documentation/usb/acm.txt |
8659 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8660 | |
b7d572e1 PF |
8661 | USB AR5523 WIRELESS DRIVER |
8662 | M: Pontus Fuchs <[email protected]> | |
8663 | L: [email protected] | |
8664 | S: Maintained | |
8665 | F: drivers/net/wireless/ath/ar5523/ | |
8666 | ||
115bb1ff MW |
8667 | USB ATTACHED SCSI |
8668 | M: Matthew Wilcox <[email protected]> | |
8669 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 8670 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
8671 | L: [email protected] |
8672 | L: [email protected] | |
8eae0fb7 | 8673 | S: Maintained |
115bb1ff MW |
8674 | F: drivers/usb/storage/uas.c |
8675 | ||
1da177e4 | 8676 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8677 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8678 | L: [email protected] |
1da177e4 | 8679 | S: Maintained |
679655da | 8680 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8681 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8682 | |
b02b371e | 8683 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8684 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
8685 | L: [email protected] |
8686 | S: Maintained | |
679655da | 8687 | F: drivers/usb/c67x00/ |
b02b371e | 8688 | |
d0374f4f | 8689 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8690 | M: Peter Korsgaard <[email protected]> |
043600a6 | 8691 | L: [email protected] |
d0374f4f PK |
8692 | W: http://www.linux-usb.org/usbnet |
8693 | S: Maintained | |
679655da | 8694 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8695 | |
cc2020e6 | 8696 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8697 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
8698 | L: [email protected] |
8699 | W: http://rio500.sourceforge.net | |
8700 | S: Maintained | |
679655da | 8701 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8702 | |
1da177e4 | 8703 | USB EHCI DRIVER |
578333ab | 8704 | M: Alan Stern <[email protected]> |
795fb7e7 | 8705 | L: [email protected] |
578333ab | 8706 | S: Maintained |
679655da JP |
8707 | F: Documentation/usb/ehci.txt |
8708 | F: drivers/usb/host/ehci* | |
1da177e4 | 8709 | |
69ae9e3e | 8710 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8711 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 8712 | L: [email protected] |
69ae9e3e | 8713 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8714 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8715 | S: Maintained | |
679655da JP |
8716 | F: drivers/usb/gadget/ |
8717 | F: include/linux/usb/gadget* | |
69ae9e3e | 8718 | |
2dea64b4 | 8719 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8720 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 8721 | L: [email protected] |
54e5881d | 8722 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8723 | S: Maintained |
c2f01971 | 8724 | F: Documentation/hid/hiddev.txt |
679655da | 8725 | F: drivers/hid/usbhid/ |
1da177e4 | 8726 | |
857aab34 | 8727 | USB/IP DRIVERS |
8728 | M: Matt Mooney <[email protected]> | |
8729 | L: [email protected] | |
8730 | S: Maintained | |
8731 | F: drivers/staging/usbip/ | |
8732 | ||
959eea21 | 8733 | USB ISP116X DRIVER |
8b58be88 | 8734 | M: Olav Kongas <[email protected]> |
795fb7e7 | 8735 | L: [email protected] |
959eea21 | 8736 | S: Maintained |
679655da JP |
8737 | F: drivers/usb/host/isp116x* |
8738 | F: include/linux/usb/isp116x.h | |
959eea21 | 8739 | |
1da177e4 | 8740 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8741 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8742 | L: [email protected] |
1da177e4 | 8743 | S: Maintained |
679655da | 8744 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8745 | |
8746 | USB MASS STORAGE DRIVER | |
8b58be88 | 8747 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 8748 | L: [email protected] |
8836aeb8 | 8749 | L: [email protected] |
1da177e4 LT |
8750 | S: Maintained |
8751 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8752 | F: drivers/usb/storage/ |
1da177e4 | 8753 | |
af39917d CL |
8754 | USB MIDI DRIVER |
8755 | M: Clemens Ladisch <[email protected]> | |
8756 | L: [email protected] (moderated for non-subscribers) | |
8757 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8758 | S: Maintained | |
8759 | F: sound/usb/midi.* | |
8760 | ||
444ce9d4 JP |
8761 | USB NETWORKING DRIVERS |
8762 | L: [email protected] | |
8763 | S: Odd Fixes | |
8764 | F: drivers/net/usb/ | |
8765 | ||
1da177e4 | 8766 | USB OHCI DRIVER |
578333ab | 8767 | M: Alan Stern <[email protected]> |
795fb7e7 | 8768 | L: [email protected] |
578333ab | 8769 | S: Maintained |
679655da JP |
8770 | F: Documentation/usb/ohci.txt |
8771 | F: drivers/usb/host/ohci* | |
1da177e4 | 8772 | |
ba460e48 | 8773 | USB OPTION-CARD DRIVER |
8b58be88 | 8774 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 8775 | L: [email protected] |
ba460e48 | 8776 | S: Maintained |
679655da | 8777 | F: drivers/usb/serial/option.c |
ba460e48 | 8778 | |
1da177e4 | 8779 | USB PEGASUS DRIVER |
a16b945c | 8780 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8781 | L: [email protected] |
043600a6 | 8782 | L: [email protected] |
a16b945c | 8783 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8784 | W: http://pegasus2.sourceforge.net/ |
8785 | S: Maintained | |
679655da | 8786 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8787 | |
d3ad558f FB |
8788 | USB PHY LAYER |
8789 | M: Felipe Balbi <[email protected]> | |
8790 | L: [email protected] | |
8791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8792 | S: Maintained | |
8793 | F: drivers/usb/phy/ | |
d3ad558f | 8794 | |
73e4fb3f | 8795 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8796 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 8797 | L: [email protected] |
73e4fb3f | 8798 | S: Supported |
679655da | 8799 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8800 | |
8801 | USB RTL8150 DRIVER | |
a16b945c | 8802 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8803 | L: [email protected] |
043600a6 | 8804 | L: [email protected] |
a16b945c | 8805 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8806 | W: http://pegasus2.sourceforge.net/ |
8807 | S: Maintained | |
679655da | 8808 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8809 | |
4e68852d | 8810 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8811 | M: William Greathouse <[email protected]> |
795fb7e7 | 8812 | L: [email protected] |
4e68852d | 8813 | S: Maintained |
679655da | 8814 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8815 | |
8816 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8817 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 8818 | L: [email protected] |
4e68852d AC |
8819 | S: Maintained |
8820 | W: http://geocities.com/i0xox0i | |
8821 | W: http://firstlight.net/cvs | |
679655da | 8822 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8823 | |
1da177e4 | 8824 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8825 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
8826 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8827 | S: Maintained | |
679655da | 8828 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8829 | |
8830 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8831 | M: Peter Berger <[email protected]> |
8832 | M: Al Borchers <[email protected]> | |
795fb7e7 | 8833 | L: [email protected] |
1da177e4 | 8834 | S: Maintained |
679655da | 8835 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8836 | |
8837 | USB SERIAL DRIVER | |
879a5a00 | 8838 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8839 | L: [email protected] |
1da177e4 | 8840 | S: Supported |
679655da JP |
8841 | F: Documentation/usb/usb-serial.txt |
8842 | F: drivers/usb/serial/generic.c | |
8843 | F: drivers/usb/serial/usb-serial.c | |
8844 | F: include/linux/usb/serial.h | |
1da177e4 | 8845 | |
1da177e4 | 8846 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8847 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 8848 | L: [email protected] |
1da177e4 | 8849 | S: Maintained |
679655da | 8850 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8851 | |
8852 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8853 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8854 | L: [email protected] |
1da177e4 | 8855 | S: Maintained |
679655da | 8856 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8857 | |
8858 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8859 | M: Support Department <[email protected]> |
795fb7e7 | 8860 | L: [email protected] |
1da177e4 LT |
8861 | W: http://www.connecttech.com |
8862 | S: Supported | |
679655da | 8863 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8864 | |
b3f0db1c SG |
8865 | USB SMSC75XX ETHERNET DRIVER |
8866 | M: Steve Glendinning <[email protected]> | |
8867 | L: [email protected] | |
8868 | S: Maintained | |
8869 | F: drivers/net/usb/smsc75xx.* | |
8870 | ||
2f7ca802 | 8871 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8872 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 8873 | L: [email protected] |
90b24cfb | 8874 | S: Maintained |
679655da | 8875 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8876 | |
f423b9a8 | 8877 | USB SN9C1xx DRIVER |
8b58be88 | 8878 | M: Luca Risolia <[email protected]> |
795fb7e7 | 8879 | L: [email protected] |
661263b5 | 8880 | L: [email protected] |
275ffde4 | 8881 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8882 | W: http://www.linux-projects.org |
8883 | S: Maintained | |
679655da | 8884 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8885 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8886 | |
8887 | USB SUBSYSTEM | |
879a5a00 | 8888 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8889 | L: [email protected] |
1da177e4 | 8890 | W: http://www.linux-usb.org |
08deed1e | 8891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8892 | S: Supported |
679655da | 8893 | F: Documentation/usb/ |
679655da JP |
8894 | F: drivers/usb/ |
8895 | F: include/linux/usb.h | |
8896 | F: include/linux/usb/ | |
1da177e4 LT |
8897 | |
8898 | USB UHCI DRIVER | |
8b58be88 | 8899 | M: Alan Stern <[email protected]> |
795fb7e7 | 8900 | L: [email protected] |
1da177e4 | 8901 | S: Maintained |
679655da | 8902 | F: drivers/usb/host/uhci* |
1da177e4 | 8903 | |
69ae9e3e | 8904 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8905 | M: Oliver Neukum <[email protected]> |
043600a6 | 8906 | L: [email protected] |
69ae9e3e | 8907 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8908 | S: Maintained |
679655da JP |
8909 | F: drivers/net/usb/usbnet.c |
8910 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8911 | |
c0efd232 | 8912 | USB VIDEO CLASS |
c53ac071 | 8913 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 8914 | L: [email protected] (subscribers-only) |
661263b5 | 8915 | L: [email protected] |
275ffde4 | 8916 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8917 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8918 | S: Maintained |
0c0d06ca | 8919 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8920 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8921 | |
b60b9c45 HV |
8922 | USB VISION DRIVER |
8923 | M: Hans Verkuil <[email protected]> | |
8924 | L: [email protected] | |
8925 | T: git git://linuxtv.org/media_tree.git | |
8926 | W: http://linuxtv.org | |
8927 | S: Odd Fixes | |
8928 | F: drivers/media/usb/usbvision/ | |
8929 | ||
8282da47 LP |
8930 | USB WEBCAM GADGET |
8931 | M: Laurent Pinchart <[email protected]> | |
8932 | L: [email protected] | |
8933 | S: Maintained | |
8934 | F: drivers/usb/gadget/*uvc*.c | |
8935 | F: drivers/usb/gadget/webcam.c | |
8936 | ||
bf164cc0 | 8937 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 8938 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
8939 | L: [email protected] |
8940 | S: Maintained | |
679655da | 8941 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8942 | |
eb6bab13 | 8943 | USB XHCI DRIVER |
36d0344c | 8944 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
8945 | L: [email protected] |
8946 | S: Supported | |
36d0344c SS |
8947 | F: drivers/usb/host/xhci* |
8948 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8949 | |
1da177e4 | 8950 | USB ZD1201 DRIVER |
4086b9ca | 8951 | L: [email protected] |
1da177e4 | 8952 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8953 | S: Orphan |
679655da | 8954 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8955 | |
b7eee616 | 8956 | USB ZR364XX DRIVER |
8b58be88 | 8957 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 8958 | L: [email protected] |
661263b5 | 8959 | L: [email protected] |
275ffde4 | 8960 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8961 | W: http://royale.zerezo.com/zr364xx/ |
8962 | S: Maintained | |
679655da | 8963 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8964 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8965 | |
e7839f25 | 8966 | USER-MODE LINUX (UML) |
8b58be88 | 8967 | M: Jeff Dike <[email protected]> |
b15194b7 | 8968 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
8969 | L: [email protected] |
8970 | L: [email protected] | |
8971 | W: http://user-mode-linux.sourceforge.net | |
8972 | S: Maintained | |
61516587 | 8973 | F: Documentation/virtual/uml/ |
679655da | 8974 | F: arch/um/ |
b070989a | 8975 | F: arch/x86/um/ |
679655da JP |
8976 | F: fs/hostfs/ |
8977 | F: fs/hppfs/ | |
b7eee616 | 8978 | |
e5f114e9 | 8979 | USERSPACE I/O (UIO) |
6a534c9d | 8980 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 8981 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 8982 | S: Maintained |
679655da JP |
8983 | F: Documentation/DocBook/uio-howto.tmpl |
8984 | F: drivers/uio/ | |
8985 | F: include/linux/uio*.h | |
e5f114e9 | 8986 | |
256cccbe | 8987 | UTIL-LINUX PACKAGE |
8b58be88 | 8988 | M: Karel Zak <[email protected]> |
256cccbe KZ |
8989 | L: [email protected] |
8990 | W: http://en.wikipedia.org/wiki/Util-linux | |
8991 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8992 | S: Maintained |
8993 | ||
c1fd1c07 | 8994 | UVESAFB DRIVER |
8b58be88 | 8995 | M: Michal Januszewski <[email protected]> |
c69f677c | 8996 | L: [email protected] |
c1fd1c07 MJ |
8997 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8998 | S: Maintained | |
679655da JP |
8999 | F: Documentation/fb/uvesafb.txt |
9000 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9001 | |
4480f15b | 9002 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9003 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 9004 | S: Maintained |
679655da JP |
9005 | F: Documentation/filesystems/vfat.txt |
9006 | F: fs/fat/ | |
1da177e4 | 9007 | |
cba3345c AW |
9008 | VFIO DRIVER |
9009 | M: Alex Williamson <[email protected]> | |
9010 | L: [email protected] | |
9011 | S: Maintained | |
9012 | F: Documentation/vfio.txt | |
9013 | F: drivers/vfio/ | |
9014 | F: include/linux/vfio.h | |
c117ab84 | 9015 | F: include/uapi/linux/vfio.h |
cba3345c | 9016 | |
9e6f3438 PO |
9017 | VIDEOBUF2 FRAMEWORK |
9018 | M: Pawel Osciak <[email protected]> | |
9019 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 9020 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
9021 | L: [email protected] |
9022 | S: Maintained | |
90d72ac6 | 9023 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9024 | F: include/media/videobuf2-* |
9025 | ||
9a82446b AS |
9026 | VIRTIO CONSOLE DRIVER |
9027 | M: Amit Shah <[email protected]> | |
9028 | L: [email protected] | |
9029 | S: Maintained | |
9030 | F: drivers/char/virtio_console.c | |
9031 | F: include/linux/virtio_console.h | |
c117ab84 | 9032 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9033 | |
2426ec8f MT |
9034 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9035 | M: Rusty Russell <[email protected]> | |
9036 | M: "Michael S. Tsirkin" <[email protected]> | |
9037 | L: [email protected] | |
9038 | S: Maintained | |
9039 | F: drivers/virtio/ | |
c893c8d7 | 9040 | F: tools/virtio/ |
2426ec8f MT |
9041 | F: drivers/net/virtio_net.c |
9042 | F: drivers/block/virtio_blk.c | |
9043 | F: include/linux/virtio_*.h | |
916cdabc | 9044 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9045 | |
3a4d5c94 MT |
9046 | VIRTIO HOST (VHOST) |
9047 | M: "Michael S. Tsirkin" <[email protected]> | |
9048 | L: [email protected] | |
c996d8b9 | 9049 | L: [email protected] |
3a4d5c94 MT |
9050 | L: [email protected] |
9051 | S: Maintained | |
9052 | F: drivers/vhost/ | |
c117ab84 | 9053 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9054 | |
1da177e4 | 9055 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9056 | M: Roger Luethi <[email protected]> |
1da177e4 | 9057 | S: Maintained |
f2148a47 | 9058 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9059 | |
f0bf7f61 | 9060 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9061 | M: Bruce Chang <[email protected]> |
8b58be88 | 9062 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
9063 | S: Maintained |
9064 | F: drivers/mmc/host/via-sdmmc.c | |
9065 | ||
69e4a7c2 | 9066 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9067 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 9068 | L: [email protected] |
69e4a7c2 | 9069 | S: Maintained |
c7babebd FTS |
9070 | F: include/linux/via-core.h |
9071 | F: include/linux/via-gpio.h | |
9072 | F: include/linux/via_i2c.h | |
679655da | 9073 | F: drivers/video/via/ |
69e4a7c2 | 9074 | |
01f20734 | 9075 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9076 | M: Francois Romieu <[email protected]> |
01f20734 FR |
9077 | L: [email protected] |
9078 | S: Maintained | |
f2148a47 | 9079 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9080 | |
0b7bc1fa HV |
9081 | VIVI VIRTUAL VIDEO DRIVER |
9082 | M: Hans Verkuil <[email protected]> | |
9083 | L: [email protected] | |
9084 | T: git git://linuxtv.org/media_tree.git | |
9085 | W: http://linuxtv.org | |
9086 | S: Maintained | |
9087 | F: drivers/media/platform/vivi* | |
9088 | ||
be7f8273 | 9089 | VLAN (802.1Q) |
8b58be88 | 9090 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9091 | L: [email protected] |
9092 | S: Maintained | |
679655da JP |
9093 | F: drivers/net/macvlan.c |
9094 | F: include/linux/if_*vlan.h | |
9095 | F: net/8021q/ | |
be7f8273 | 9096 | |
55e331cf | 9097 | VLYNQ BUS |
8b58be88 | 9098 | M: Florian Fainelli <[email protected]> |
8578d7af | 9099 | L: [email protected] (subscribers-only) |
55e331cf FF |
9100 | S: Maintained |
9101 | F: drivers/vlynq/vlynq.c | |
9102 | F: include/linux/vlynq.h | |
9103 | ||
390beae4 MW |
9104 | VME SUBSYSTEM |
9105 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9106 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9107 | M: Greg Kroah-Hartman <[email protected]> |
9108 | L: [email protected] | |
9109 | S: Maintained | |
9110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9111 | F: Documentation/vme_api.txt | |
9112 | F: drivers/staging/vme/ | |
9113 | F: drivers/vme/ | |
9114 | F: include/linux/vme* | |
9115 | ||
4488e09b AK |
9116 | VMWARE HYPERVISOR INTERFACE |
9117 | M: Alok Kataria <[email protected]> | |
9118 | L: [email protected] | |
9119 | S: Supported | |
9120 | F: arch/x86/kernel/cpu/vmware.c | |
9121 | ||
d1a890fa | 9122 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9123 | M: Shreyas Bhatewara <[email protected]> |
9124 | M: "VMware, Inc." <[email protected]> | |
9125 | L: [email protected] | |
9126 | S: Maintained | |
9127 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9128 | |
851b1642 | 9129 | VMware PVSCSI driver |
f2d7e40e | 9130 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9131 | M: VMware PV-Drivers <[email protected]> |
9132 | L: [email protected] | |
9133 | S: Maintained | |
9134 | F: drivers/scsi/vmw_pvscsi.c | |
9135 | F: drivers/scsi/vmw_pvscsi.h | |
9136 | ||
e53e86c7 | 9137 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9138 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9139 | M: Mark Brown <[email protected]> |
e53e86c7 | 9140 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9141 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9142 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9143 | S: Supported |
679655da JP |
9144 | F: drivers/regulator/ |
9145 | F: include/linux/regulator/ | |
e53e86c7 | 9146 | |
ab41319e | 9147 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9148 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9149 | L: [email protected] |
9150 | S: Maintained | |
679655da JP |
9151 | F: Documentation/hwmon/vt1211 |
9152 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9153 | |
1de9e371 | 9154 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9155 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9156 | L: [email protected] |
9157 | S: Maintained | |
679655da | 9158 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9159 | |
88095e7b TO |
9160 | VUB300 USB to SDIO/SD/MMC bridge chip |
9161 | M: Tony Olech <[email protected]> | |
9162 | L: [email protected] | |
9163 | L: [email protected] | |
9164 | S: Supported | |
9165 | F: drivers/mmc/host/vub300.c | |
9166 | ||
1da177e4 | 9167 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9168 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9169 | S: Maintained |
679655da JP |
9170 | F: Documentation/w1/ |
9171 | F: drivers/w1/ | |
1da177e4 | 9172 | |
13927079 | 9173 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9174 | M: Marc Hulsman <[email protected]> |
13927079 | 9175 | L: [email protected] |
25845c22 | 9176 | S: Maintained |
679655da JP |
9177 | F: Documentation/hwmon/w83791d |
9178 | F: drivers/hwmon/w83791d.c | |
13927079 | 9179 | |
61db011d | 9180 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9181 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9182 | L: [email protected] |
9183 | S: Maintained | |
679655da JP |
9184 | F: Documentation/hwmon/w83793 |
9185 | F: drivers/hwmon/w83793.c | |
61db011d | 9186 | |
e3760b43 JD |
9187 | W83795 HARDWARE MONITORING DRIVER |
9188 | M: Jean Delvare <[email protected]> | |
9189 | L: [email protected] | |
9190 | S: Maintained | |
9191 | F: drivers/hwmon/w83795.c | |
9192 | ||
1da177e4 | 9193 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9194 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9195 | S: Maintained |
679655da | 9196 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9197 | |
3527761c | 9198 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9199 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9200 | L: [email protected] |
9201 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9202 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9203 | S: Maintained |
679655da JP |
9204 | F: Documentation/watchdog/ |
9205 | F: drivers/watchdog/ | |
9206 | F: include/linux/watchdog.h | |
c117ab84 | 9207 | F: include/uapi/linux/watchdog.h |
3527761c | 9208 | |
1da177e4 | 9209 | WD7000 SCSI DRIVER |
8b58be88 | 9210 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9211 | L: [email protected] |
9212 | S: Maintained | |
679655da | 9213 | F: drivers/scsi/wd7000.c |
1da177e4 | 9214 | |
b22e00f3 DR |
9215 | WIIMOTE HID DRIVER |
9216 | M: David Herrmann <[email protected]> | |
9217 | L: [email protected] | |
9218 | S: Maintained | |
9219 | F: drivers/hid/hid-wiimote* | |
9220 | ||
e258b80e | 9221 | WINBOND CIR DRIVER |
364e9e18 | 9222 | M: David Härdeman <[email protected]> |
e258b80e | 9223 | S: Maintained |
116ab806 | 9224 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9225 | |
8a70da82 | 9226 | WIMAX STACK |
8b58be88 | 9227 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9228 | M: [email protected] |
9229 | L: [email protected] | |
9230 | S: Supported | |
9231 | W: http://linuxwimax.org | |
315987dc | 9232 | F: Documentation/wimax/README.wimax |
315987dc JP |
9233 | F: include/linux/wimax/debug.h |
9234 | F: include/net/wimax.h | |
c117ab84 | 9235 | F: include/uapi/linux/wimax.h |
315987dc | 9236 | F: net/wimax/ |
8a70da82 | 9237 | |
5fc14680 | 9238 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9239 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9240 | S: Maintained |
679655da | 9241 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9242 | |
1da177e4 | 9243 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9244 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9245 | L: [email protected] |
926554c4 | 9246 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9247 | S: Maintained |
679655da | 9248 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9249 | |
febf1dff | 9250 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9251 | M: Mark Brown <[email protected]> |
8b58be88 | 9252 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9253 | L: [email protected] |
9254 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9255 | W: http://opensource.wolfsonmicro.com/node/7 | |
9256 | S: Supported | |
679655da JP |
9257 | F: drivers/input/touchscreen/*wm97* |
9258 | F: include/linux/wm97xx.h | |
febf1dff | 9259 | |
055bcbcb | 9260 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9261 | L: [email protected] |
cf8eda3e | 9262 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9263 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9264 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9265 | S: Supported |
3768f0b1 | 9266 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9267 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9268 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9269 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9270 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9271 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9272 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9273 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9274 | F: drivers/input/misc/wm831x-on.c |
9275 | F: drivers/input/touchscreen/wm831x-ts.c | |
9276 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9277 | F: drivers/mfd/arizona* |
9278 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9279 | F: drivers/power/wm83*.c |
9280 | F: drivers/rtc/rtc-wm83*.c | |
9281 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9282 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9283 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9284 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9285 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9286 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9287 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9288 | F: include/linux/wm97xx.h |
055bcbcb | 9289 | F: include/sound/wm????.h |
9c309598 | 9290 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9291 | F: sound/soc/codecs/wm* |
b75ea16a | 9292 | |
3e6cd7a4 TH |
9293 | WORKQUEUE |
9294 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9296 | S: Maintained | |
9297 | F: include/linux/workqueue.h | |
9298 | F: kernel/workqueue.c | |
9299 | F: Documentation/workqueue.txt | |
9300 | ||
1da177e4 | 9301 | X.25 NETWORK LAYER |
8bf28059 | 9302 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9303 | L: [email protected] |
8bf28059 | 9304 | S: Odd Fixes |
679655da JP |
9305 | F: Documentation/networking/x25* |
9306 | F: include/net/x25* | |
9307 | F: net/x25/ | |
1da177e4 | 9308 | |
e2d1d6c0 | 9309 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9310 | M: Thomas Gleixner <[email protected]> |
9311 | M: Ingo Molnar <[email protected]> | |
9312 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9313 | M: [email protected] |
75fc2d37 | 9314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9315 | S: Maintained |
679655da JP |
9316 | F: Documentation/x86/ |
9317 | F: arch/x86/ | |
e2d1d6c0 | 9318 | |
d0944853 | 9319 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9320 | M: Matthew Garrett <[email protected]> |
d0944853 | 9321 | L: [email protected] |
28b8e8d4 | 9322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9323 | S: Maintained |
14430813 | 9324 | F: drivers/platform/x86/ |
d0944853 | 9325 | |
c1f5c54b IM |
9326 | X86 MCE INFRASTRUCTURE |
9327 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9328 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9329 | L: [email protected] |
9330 | S: Maintained | |
9331 | F: arch/x86/kernel/cpu/mcheck/* | |
9332 | ||
d6fad502 | 9333 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9334 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9335 | L: [email protected] |
9336 | W: http://linuxtv.org | |
9337 | T: git git://linuxtv.org/media_tree.git | |
9338 | S: Maintained | |
9339 | F: drivers/media/tuners/tuner-xc2028.* | |
9340 | ||
c4468085 | 9341 | XEN HYPERVISOR INTERFACE |
c4468085 | 9342 | M: Konrad Rzeszutek Wilk <[email protected]> |
3eeef8f7 KRW |
9343 | M: Boris Ostrovsky <[email protected]> |
9344 | M: David Vrabel <[email protected]> | |
11dbb52b | 9345 | L: [email protected] (moderated for non-subscribers) |
c4468085 IC |
9346 | S: Supported |
9347 | F: arch/x86/xen/ | |
9348 | F: drivers/*/xen-*front.c | |
9349 | F: drivers/xen/ | |
9350 | F: arch/x86/include/asm/xen/ | |
9351 | F: include/xen/ | |
c117ab84 | 9352 | F: include/uapi/xen/ |
c4468085 | 9353 | |
77bfb479 SS |
9354 | XEN HYPERVISOR ARM |
9355 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9356 | L: [email protected] (moderated for non-subscribers) |
77bfb479 SS |
9357 | S: Supported |
9358 | F: arch/arm/xen/ | |
9359 | F: arch/arm/include/asm/xen/ | |
9360 | ||
b475e83f SS |
9361 | XEN HYPERVISOR ARM64 |
9362 | M: Stefano Stabellini <[email protected]> | |
11dbb52b | 9363 | L: [email protected] (moderated for non-subscribers) |
b475e83f SS |
9364 | S: Supported |
9365 | F: arch/arm64/xen/ | |
9366 | F: arch/arm64/include/asm/xen/ | |
9367 | ||
9b57e1a7 IC |
9368 | XEN NETWORK BACKEND DRIVER |
9369 | M: Ian Campbell <[email protected]> | |
11dbb52b | 9370 | L: [email protected] (moderated for non-subscribers) |
9b57e1a7 IC |
9371 | L: [email protected] |
9372 | S: Supported | |
9373 | F: drivers/net/xen-netback/* | |
9374 | ||
c5f8e29d KRW |
9375 | XEN PCI SUBSYSTEM |
9376 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9377 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9378 | S: Supported |
9379 | F: arch/x86/pci/*xen* | |
9380 | F: drivers/pci/*xen* | |
9381 | ||
9382 | XEN SWIOTLB SUBSYSTEM | |
9383 | M: Konrad Rzeszutek Wilk <[email protected]> | |
11dbb52b | 9384 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9385 | S: Supported |
9386 | F: arch/x86/xen/*swiotlb* | |
9387 | F: drivers/xen/*swiotlb* | |
9388 | ||
1da177e4 LT |
9389 | XFS FILESYSTEM |
9390 | P: Silicon Graphics Inc | |
c8891329 AE |
9391 | M: Ben Myers <[email protected]> |
9392 | M: Alex Elder <[email protected]> | |
18caa67a | 9393 | M: [email protected] |
d7ede1aa | 9394 | L: [email protected] |
1da177e4 | 9395 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9396 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9397 | S: Supported |
679655da JP |
9398 | F: Documentation/filesystems/xfs.txt |
9399 | F: fs/xfs/ | |
1da177e4 | 9400 | |
8a3b7a25 | 9401 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9402 | M: Anirudha Sarangi <[email protected]> |
9403 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9404 | S: Maintained |
9405 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9406 | ||
c9d3d8ec | 9407 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9408 | S: Orphan |
679655da | 9409 | F: drivers/block/xsysace.c |
c9d3d8ec | 9410 | |
238b8721 | 9411 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9412 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9413 | L: [email protected] |
9414 | S: Maintained | |
df621252 | 9415 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9416 | |
1da177e4 | 9417 | YAM DRIVER FOR AX.25 |
8b58be88 | 9418 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9419 | L: [email protected] |
9420 | S: Maintained | |
679655da JP |
9421 | F: drivers/net/hamradio/yam* |
9422 | F: include/linux/yam.h | |
1da177e4 | 9423 | |
af64a5eb | 9424 | YEALINK PHONE DRIVER |
8b58be88 | 9425 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9426 | L: [email protected] |
9427 | S: Maintained | |
679655da JP |
9428 | F: Documentation/input/yealink.txt |
9429 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9430 | |
1da177e4 | 9431 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9432 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9433 | W: http://yaina.de/jreuter/ |
9434 | W: http://www.qsl.net/dl1bke/ | |
9435 | L: [email protected] | |
9436 | S: Maintained | |
679655da JP |
9437 | F: Documentation/networking/z8530drv.txt |
9438 | F: drivers/net/hamradio/*scc.c | |
9439 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9440 | |
0cf31ec1 SJ |
9441 | ZBUD COMPRESSED PAGE ALLOCATOR |
9442 | M: Seth Jennings <[email protected]> | |
9443 | L: [email protected] | |
9444 | S: Maintained | |
9445 | F: mm/zbud.c | |
9446 | F: include/linux/zbud.h | |
9447 | ||
7c0c3afb | 9448 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9449 | M: Daniel Drake <[email protected]> |
9450 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9451 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9452 | L: [email protected] |
7c0c3afb DD |
9453 | L: [email protected] (subscribers-only) |
9454 | S: Maintained | |
679655da | 9455 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9456 | |
1da177e4 | 9457 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9458 | L: [email protected] |
f63145e2 | 9459 | L: [email protected] |
1da177e4 | 9460 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9461 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9462 | S: Odd Fixes | |
90d72ac6 | 9463 | F: drivers/media/pci/zoran/ |
1da177e4 | 9464 | |
8b4a4080 | 9465 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9466 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9467 | S: Maintained |
df621252 | 9468 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9469 | |
0cf31ec1 SJ |
9470 | ZSWAP COMPRESSED SWAP CACHING |
9471 | M: Seth Jennings <[email protected]> | |
9472 | L: [email protected] | |
9473 | S: Maintained | |
9474 | F: mm/zswap.c | |
9475 | ||
1da177e4 | 9476 | THE REST |
8b58be88 | 9477 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9478 | L: [email protected] |
8a6e2535 | 9479 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9480 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9481 | S: Buried alive in reporters |
34d03cc1 JP |
9482 | F: * |
9483 | F: */ |