]>
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 | ||
583 | ANALOG DEVICES INC ADV7604 DRIVER | |
584 | M: Hans Verkuil <[email protected]> | |
585 | L: [email protected] | |
586 | S: Maintained | |
587 | F: drivers/media/i2c/adv7604* | |
588 | ||
527a1a83 | 589 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 590 | M: Lars-Peter Clausen <[email protected]> |
f8bd42b8 | 591 | L: [email protected] |
4bdef3bd | 592 | L: [email protected] (moderated for non-subscribers) |
a3f531ac | 593 | W: http://wiki.analog.com/ |
4bdef3bd | 594 | S: Supported |
39c9d199 | 595 | F: sound/soc/codecs/adau* |
cc52688a | 596 | F: sound/soc/codecs/adav* |
4bdef3bd | 597 | F: sound/soc/codecs/ad1* |
4bdef3bd | 598 | F: sound/soc/codecs/ssm* |
40216ce7 | 599 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 600 | |
527a1a83 MH |
601 | ANALOG DEVICES INC ASOC DRIVERS |
602 | L: [email protected] | |
603 | L: [email protected] (moderated for non-subscribers) | |
604 | W: http://blackfin.uclinux.org/ | |
605 | S: Supported | |
606 | F: sound/soc/blackfin/* | |
607 | ||
42269063 | 608 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 609 | M: Johannes Berg <[email protected]> |
a4724ed6 | 610 | L: [email protected] |
93711660 | 611 | L: [email protected] (moderated for non-subscribers) |
42269063 | 612 | S: Maintained |
679655da | 613 | F: sound/aoa/ |
42269063 | 614 | |
1da177e4 | 615 | APM DRIVER |
81024fc4 JK |
616 | M: Jiri Kosina <[email protected]> |
617 | S: Odd fixes | |
679655da JP |
618 | F: arch/x86/kernel/apm_32.c |
619 | F: include/linux/apm_bios.h | |
c117ab84 | 620 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 621 | F: drivers/char/apm-emulation.c |
1da177e4 | 622 | |
bd7aa4b2 | 623 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 624 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
625 | L: [email protected] |
626 | S: Maintained | |
679655da | 627 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 628 | |
6f2fad74 | 629 | APPLE SMC DRIVER |
d618540f HR |
630 | M: Henrik Rydberg <[email protected]> |
631 | L: [email protected] | |
6f2fad74 | 632 | S: Maintained |
679655da | 633 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 634 | |
1da177e4 | 635 | APPLETALK NETWORK LAYER |
8b58be88 | 636 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 637 | S: Maintained |
679655da JP |
638 | F: drivers/net/appletalk/ |
639 | F: net/appletalk/ | |
1da177e4 | 640 | |
a480167b | 641 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 642 | M: Viresh Kumar <[email protected]> |
a480167b VK |
643 | L: [email protected] |
644 | S: Maintained | |
645 | F: include/linux/pata_arasan_cf_data.h | |
646 | F: drivers/ata/pata_arasan_cf.c | |
647 | ||
1154ea7d | 648 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 649 | M: Jaya Kumar <[email protected]> |
1154ea7d | 650 | S: Maintained |
679655da JP |
651 | F: drivers/video/arcfb.c |
652 | F: drivers/video/fb_defio.c | |
1154ea7d | 653 | |
1da177e4 | 654 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 655 | M: Ian Molton <[email protected]> |
1da177e4 | 656 | S: Maintained |
679655da JP |
657 | F: arch/arm/lib/floppydma.S |
658 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 659 | |
6f96521f WD |
660 | ARM PMU PROFILING AND DEBUGGING |
661 | M: Will Deacon <[email protected]> | |
662 | S: Maintained | |
663 | F: arch/arm/kernel/perf_event* | |
664 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
665 | F: arch/arm/include/asm/pmu.h |
666 | F: arch/arm/kernel/hw_breakpoint.c | |
667 | F: arch/arm/include/asm/hw_breakpoint.h | |
668 | ||
d4275354 | 669 | ARM PORT |
8b58be88 | 670 | M: Russell King <[email protected]> |
efc03ecb | 671 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
672 | W: http://www.arm.linux.org.uk/ |
673 | S: Maintained | |
674 | F: arch/arm/ | |
675 | ||
d323c243 SB |
676 | ARM SUB-ARCHITECTURES |
677 | L: [email protected] (moderated for non-subscribers) | |
56ca9d98 | 678 | S: Maintained |
d323c243 SB |
679 | F: arch/arm/mach-*/ |
680 | F: arch/arm/plat-*/ | |
681 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
682 | ||
cefbf4ea RK |
683 | ARM PRIMECELL AACI PL041 DRIVER |
684 | M: Russell King <[email protected]> | |
685 | S: Maintained | |
686 | F: sound/arm/aaci.* | |
687 | ||
688 | ARM PRIMECELL CLCD PL110 DRIVER | |
689 | M: Russell King <[email protected]> | |
690 | S: Maintained | |
691 | F: drivers/video/amba-clcd.* | |
692 | ||
693 | ARM PRIMECELL KMI PL050 DRIVER | |
694 | M: Russell King <[email protected]> | |
695 | S: Maintained | |
696 | F: drivers/input/serio/ambakmi.* | |
697 | F: include/linux/amba/kmi.h | |
698 | ||
2761f5c2 | 699 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
700 | M: Russell King <[email protected]> |
701 | S: Maintained | |
679655da | 702 | F: drivers/mmc/host/mmci.* |
2f748aaa | 703 | F: include/linux/amba/mmci.h |
2761f5c2 | 704 | |
1b4304e5 RK |
705 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
706 | M: Russell King <[email protected]> | |
707 | S: Maintained | |
708 | F: drivers/tty/serial/amba-pl01*.c | |
709 | F: include/linux/amba/serial.h | |
2761f5c2 | 710 | |
cefbf4ea RK |
711 | ARM PRIMECELL BUS SUPPORT |
712 | M: Russell King <[email protected]> | |
713 | S: Maintained | |
714 | F: drivers/amba/ | |
715 | F: include/linux/amba/bus.h | |
716 | ||
2b7a52a4 | 717 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 718 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 719 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
720 | S: Maintained |
721 | ||
9c784f95 | 722 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 723 | M: Sergey Lapin <[email protected]> |
efc03ecb | 724 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
725 | S: Maintained |
726 | ||
2b7a52a4 | 727 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 728 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 729 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
730 | S: Maintained |
731 | ||
1b106699 MR |
732 | ARM/Allwinner A1X SoC support |
733 | M: Maxime Ripard <[email protected]> | |
734 | L: [email protected] (moderated for non-subscribers) | |
735 | S: Maintained | |
736 | F: arch/arm/mach-sunxi/ | |
737 | ||
c1fc8675 | 738 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 739 | M: Andrew Victor <[email protected]> |
c1fc8675 NF |
740 | M: Nicolas Ferre <[email protected]> |
741 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
efc03ecb | 742 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 | 743 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
744 | W: http://www.linux4sam.org |
745 | S: Supported | |
746 | F: arch/arm/mach-at91/ | |
d4a89c7d | 747 | |
986cf2e9 RH |
748 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
749 | M: Rob Herring <[email protected]> | |
750 | L: [email protected] (moderated for non-subscribers) | |
751 | S: Maintained | |
752 | F: arch/arm/mach-highbank/ | |
753 | ||
d94f944e | 754 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 755 | M: Anton Vorontsov <[email protected]> |
d94f944e AV |
756 | S: Maintained |
757 | F: arch/arm/mach-cns3xxx/ | |
758 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
759 | ||
386ab516 AS |
760 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
761 | M: Alexander Shiyan <[email protected]> | |
762 | L: [email protected] (moderated for non-subscribers) | |
763 | S: Odd Fixes | |
764 | F: arch/arm/mach-clps711x/ | |
765 | ||
2b7a52a4 | 766 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 767 | M: Hartley Sweeten <[email protected]> |
1c5454ee | 768 | M: Ryan Mallon <[email protected]> |
efc03ecb | 769 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 770 | S: Maintained |
d19d3667 HS |
771 | F: arch/arm/mach-ep93xx/ |
772 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
773 | |
774 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 775 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 776 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
777 | S: Maintained |
778 | ||
d4275354 | 779 | ARM/CLKDEV SUPPORT |
8b58be88 | 780 | M: Russell King <[email protected]> |
efc03ecb | 781 | L: [email protected] (moderated for non-subscribers) |
37417046 | 782 | S: Maintained |
d4275354 | 783 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 784 | F: drivers/clk/clkdev.c |
d4275354 | 785 | |
d48134e7 | 786 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 787 | M: Mike Rapoport <[email protected]> |
efc03ecb | 788 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
789 | S: Maintained |
790 | ||
94150095 HF |
791 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
792 | M: Hubert Feurstein <[email protected]> | |
793 | S: Maintained | |
794 | F: arch/arm/mach-ep93xx/micro9.c | |
795 | ||
1da177e4 | 796 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 797 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
798 | S: Maintained |
799 | ||
881a95f9 | 800 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 801 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 802 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
803 | T: git git://git.berlios.de/gemini-board |
804 | S: Maintained | |
f49afbb5 | 805 | F: arch/arm/mach-gemini/ |
881a95f9 | 806 | |
a990cbd8 BS |
807 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
808 | M: Barry Song <[email protected]> | |
809 | L: [email protected] (moderated for non-subscribers) | |
85529d14 | 810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
811 | S: Maintained |
812 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
813 | F: drivers/dma/sirf-dma.c |
814 | F: drivers/i2c/busses/i2c-sirf.c | |
b3b665b0 | 815 | F: drivers/mmc/host/sdhci-sirf.c |
47ac3e44 BS |
816 | F: drivers/pinctrl/pinctrl-sirf.c |
817 | F: drivers/spi/spi-sirf.c | |
a990cbd8 | 818 | |
d4275354 | 819 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 820 | M: Russell King <[email protected]> |
efc03ecb | 821 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
822 | W: http://www.arm.linux.org.uk/ |
823 | S: Maintained | |
824 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 825 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 826 | |
a9da4f7e | 827 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
828 | M: Daniel Ribeiro <[email protected]> |
829 | M: Stefan Schmidt <[email protected]> | |
830 | M: Harald Welte <[email protected]> | |
d66f1886 | 831 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
832 | W: http://www.openezx.org/ |
833 | S: Maintained | |
cafc2265 SS |
834 | T: topgit git://git.openezx.org/openezx.git |
835 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 836 | |
6a915af9 | 837 | ARM/FARADAY FA526 PORT |
162500b3 | 838 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 839 | L: [email protected] (moderated for non-subscribers) |
162500b3 | 840 | S: Maintained |
1fa7e547 | 841 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 842 | F: arch/arm/mm/*-fa* |
6a915af9 | 843 | |
d4275354 | 844 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 845 | M: Russell King <[email protected]> |
efc03ecb | 846 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
847 | W: http://www.arm.linux.org.uk/ |
848 | S: Maintained | |
849 | F: arch/arm/include/asm/hardware/dec21285.h | |
850 | F: arch/arm/mach-footbridge/ | |
851 | ||
86183a5f | 852 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 853 | M: Sascha Hauer <[email protected]> |
efc03ecb | 854 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 855 | S: Maintained |
1fa7e547 | 856 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 857 | F: arch/arm/mach-imx/ |
e5dafa22 | 858 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 859 | |
8bcb9765 SG |
860 | ARM/FREESCALE IMX6 |
861 | M: Shawn Guo <[email protected]> | |
862 | L: [email protected] (moderated for non-subscribers) | |
863 | S: Maintained | |
864 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
865 | F: arch/arm/mach-imx/*imx6* | |
866 | ||
a9866a09 SG |
867 | ARM/FREESCALE MXS ARM ARCHITECTURE |
868 | M: Shawn Guo <[email protected]> | |
869 | L: [email protected] (moderated for non-subscribers) | |
870 | S: Maintained | |
871 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
872 | F: arch/arm/mach-mxs/ | |
873 | ||
2b7a52a4 | 874 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 875 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 876 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
877 | S: Maintained |
878 | ||
90b8fc34 | 879 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 880 | M: Steve Sakoman <[email protected]> |
efc03ecb | 881 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
882 | S: Maintained |
883 | ||
ef47d5f0 | 884 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 885 | M: Philipp Zabel <[email protected]> |
12a93f32 PZ |
886 | M: Paul Parsons <[email protected]> |
887 | L: [email protected] (moderated for non-subscribers) | |
ef47d5f0 PZ |
888 | S: Maintained |
889 | F: arch/arm/mach-pxa/hx4700.c | |
890 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 891 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 892 | |
21f37bc3 | 893 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 894 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
895 | W: www.jlime.com |
896 | S: Maintained | |
084bad91 KE |
897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
898 | F: arch/arm/mach-sa1100/jornada720.c | |
899 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 900 | |
5e767ab9 JMC |
901 | ARM/IGEP MACHINE SUPPORT |
902 | M: Enric Balletbo i Serra <[email protected]> | |
903 | M: Javier Martinez Canillas <[email protected]> | |
904 | L: [email protected] | |
905 | L: [email protected] (moderated for non-subscribers) | |
906 | S: Maintained | |
907 | F: arch/arm/mach-omap2/board-igep0020.c | |
908 | ||
403d2971 MV |
909 | ARM/INCOME PXA270 SUPPORT |
910 | M: Marek Vasut <[email protected]> | |
911 | L: [email protected] (moderated for non-subscribers) | |
912 | S: Maintained | |
ec154082 | 913 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 914 | |
2b7a52a4 | 915 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 916 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 917 | M: Dan Williams <[email protected]> |
efc03ecb | 918 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 919 | S: Maintained |
e2bdb176 DW |
920 | |
921 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
1dd8372d | 922 | M: Dan Williams <[email protected]> |
efc03ecb | 923 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 924 | S: Maintained |
2b7a52a4 LB |
925 | |
926 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 927 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 928 | M: Dan Williams <[email protected]> |
efc03ecb | 929 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 930 | S: Maintained |
2b7a52a4 LB |
931 | |
932 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 933 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 934 | M: Dan Williams <[email protected]> |
efc03ecb | 935 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 936 | S: Maintained |
2b7a52a4 | 937 | |
2b7a52a4 | 938 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 939 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 940 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
941 | S: Maintained |
942 | ||
dfdd8cc9 KH |
943 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
944 | M: Imre Kaloz <[email protected]> | |
945 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 946 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
947 | S: Maintained |
948 | F: arch/arm/mach-ixp4xx/ | |
949 | ||
838553c5 | 950 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
951 | M: Jonathan Cameron <[email protected]> |
952 | L: [email protected] (moderated for non-subscribers) | |
953 | S: Maintained | |
954 | F: arch/arm/mach-pxa/stargate2.c | |
955 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
956 | ||
2b7a52a4 | 957 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 958 | M: Lennert Buytenhek <[email protected]> |
1dd8372d | 959 | M: Dan Williams <[email protected]> |
efc03ecb | 960 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 961 | S: Maintained |
2b7a52a4 LB |
962 | |
963 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 964 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 965 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
966 | S: Maintained |
967 | ||
1154f858 SS |
968 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
969 | M: Santosh Shilimkar <[email protected]> | |
970 | L: [email protected] (moderated for non-subscribers) | |
971 | S: Maintained | |
972 | F: arch/arm/mach-keystone/ | |
973 | ||
2b7a52a4 | 974 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 975 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 976 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
977 | S: Maintained |
978 | ||
3b886171 | 979 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 980 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
981 | S: Maintained |
982 | ||
75f41273 TP |
983 | ARM/Marvell Armada 370 and Armada XP SOC support |
984 | M: Jason Cooper <[email protected]> | |
985 | M: Andrew Lunn <[email protected]> | |
986 | M: Gregory Clement <[email protected]> | |
987 | L: [email protected] (moderated for non-subscribers) | |
988 | S: Maintained | |
989 | F: arch/arm/mach-mvebu/ | |
990 | ||
4f1312b0 NP |
991 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
992 | M: Jason Cooper <[email protected]> | |
993 | M: Andrew Lunn <[email protected]> | |
efc03ecb | 994 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
995 | S: Maintained |
996 | F: arch/arm/mach-dove/ | |
54a246ff NP |
997 | F: arch/arm/mach-kirkwood/ |
998 | F: arch/arm/mach-mv78xx0/ | |
999 | F: arch/arm/mach-orion5x/ | |
1000 | F: arch/arm/plat-orion/ | |
3b886171 | 1001 | |
d69ac131 AC |
1002 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1003 | M: Alexander Clouter <[email protected]> | |
1004 | L: [email protected] (moderated for non-subscribers) | |
1005 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1006 | S: Maintained | |
1007 | F: arch/arm/mach-orion5x/ts78xx-* | |
1008 | ||
adcb079f AB |
1009 | ARM/MICREL KS8695 ARCHITECTURE |
1010 | M: Greg Ungerer <[email protected]> | |
1011 | L: [email protected] (moderated for non-subscribers) | |
1012 | F: arch/arm/mach-ks8695 | |
1013 | S: Odd Fixes | |
1014 | ||
d78ff0a5 | 1015 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1016 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1017 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1018 | F: arch/arm/mach-pxa/mioa701.c |
1019 | S: Maintained | |
1020 | ||
9624dfe6 | 1021 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1022 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1023 | S: Maintained |
1024 | ||
e0ee9851 | 1025 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1026 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1027 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1028 | M: STEricsson <[email protected]> |
1029 | L: [email protected] (moderated for non-subscribers) | |
1030 | S: Maintained | |
1031 | F: arch/arm/mach-nomadik/ | |
1032 | F: arch/arm/plat-nomadik/ | |
87572880 | 1033 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1035 | |
9d76295a | 1036 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1037 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1038 | L: [email protected] (subscribers-only) |
1039 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1040 | S: Supported | |
1041 | ||
0c19d21e DW |
1042 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1043 | M: David Brown <[email protected]> | |
b4c9bfab | 1044 | M: Daniel Walker <[email protected]> |
0c19d21e | 1045 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1046 | L: [email protected] |
0c19d21e DW |
1047 | F: arch/arm/mach-msm/ |
1048 | F: drivers/video/msm/ | |
1049 | F: drivers/mmc/host/msm_sdcc.c | |
1050 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1051 | F: drivers/tty/serial/msm_serial.h |
1052 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1053 | F: drivers/*/pm8???-* |
cd9a8fb5 | 1054 | F: drivers/ssbi/ |
ea91db52 | 1055 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1056 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1057 | S: Maintained |
1058 | ||
8459c159 | 1059 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1060 | M: Dmitry Eremin-Solenikov <[email protected]> |
1061 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1062 | S: Maintained |
1063 | ||
5d783a2d | 1064 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1065 | M: Marek Vasut <[email protected]> |
75280787 | 1066 | L: [email protected] |
b5e4ad57 MV |
1067 | W: http://hackndev.com |
1068 | S: Maintained | |
933d35f0 JP |
1069 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1070 | F: arch/arm/mach-pxa/palmtx.c | |
1071 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1072 | F: arch/arm/mach-pxa/palmt5.c | |
1073 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1074 | F: arch/arm/mach-pxa/palmld.c | |
1075 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1076 | F: arch/arm/mach-pxa/palmte2.c | |
1077 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1078 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1079 | |
b57fe924 | 1080 | ARM/PALM TREO SUPPORT |
8b58be88 | 1081 | M: Tomas Cech <[email protected]> |
75280787 | 1082 | L: [email protected] |
90af5811 TSC |
1083 | W: http://hackndev.com |
1084 | S: Maintained | |
b57fe924 JP |
1085 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1086 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1087 | |
c49e1e63 | 1088 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1089 | M: Sergey Lapin <[email protected]> |
75280787 | 1090 | L: [email protected] |
7d2c86b5 JP |
1091 | W: http://hackndev.com |
1092 | S: Maintained | |
933d35f0 JP |
1093 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1094 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1095 | |
1da177e4 | 1096 | ARM/PLEB SUPPORT |
8b58be88 | 1097 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1098 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1099 | S: Maintained | |
1100 | ||
1101 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1102 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1103 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1104 | W: http://www.arm.linux.org.uk/ |
1105 | S: Maintained | |
1106 | ||
2b7a52a4 | 1107 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1108 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1109 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1110 | S: Maintained |
1111 | ||
d4275354 | 1112 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1113 | M: Russell King <[email protected]> |
efc03ecb | 1114 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1115 | W: http://www.arm.linux.org.uk/ |
1116 | S: Maintained | |
d4275354 RK |
1117 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1118 | F: arch/arm/include/asm/hardware/ioc.h | |
1119 | F: arch/arm/include/asm/hardware/iomd.h | |
1120 | F: arch/arm/include/asm/hardware/memc.h | |
1121 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1122 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1123 | F: drivers/net/ethernet/i825xx/ether1* |
1124 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1125 | F: drivers/scsi/arm/ |
1126 | ||
1da177e4 | 1127 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1128 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
1129 | W: http://www.shark-linux.de/shark.html |
1130 | S: Maintained | |
1131 | ||
b21477f9 | 1132 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1133 | M: Ben Dooks <[email protected]> |
482ce512 | 1134 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1135 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1136 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1137 | W: http://www.fluff.org/ben/linux/ |
1138 | S: Maintained | |
482ce512 | 1139 | F: arch/arm/plat-samsung/ |
b21477f9 | 1140 | F: arch/arm/plat-s3c24xx/ |
769bbb63 HS |
1141 | F: arch/arm/mach-s3c24*/ |
1142 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1143 | F: drivers/*/*s3c2410* |
1144 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1145 | F: drivers/spi/spi-s3c* |
1146 | F: sound/soc/samsung/* | |
1da177e4 | 1147 | |
0dcecae2 | 1148 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1149 | M: Kukjin Kim <[email protected]> |
1150 | L: [email protected] (moderated for non-subscribers) | |
1151 | L: [email protected] (moderated for non-subscribers) | |
1152 | S: Maintained | |
1153 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1154 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1155 | N: exynos |
f556cb07 | 1156 | |
10ffa964 KP |
1157 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1158 | M: Kyungmin Park <[email protected]> | |
1159 | L: [email protected] (moderated for non-subscribers) | |
1160 | S: Maintained | |
1161 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1162 | F: arch/arm/mach-s5pv210/mach-goni.c | |
38f1b4c5 JP |
1163 | F: arch/arm/mach-exynos/mach-universal_c210.c |
1164 | F: arch/arm/mach-exynos/mach-nuri.c | |
10ffa964 | 1165 | |
3ce4ccb6 KD |
1166 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1167 | M: Kyungmin Park <[email protected]> | |
1168 | M: Kamil Debski <[email protected]> | |
1169 | L: [email protected] | |
1170 | L: [email protected] | |
1171 | S: Maintained | |
1172 | F: drivers/media/platform/s5p-g2d/ | |
1173 | ||
e6a476fd MS |
1174 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1175 | M: Kyungmin Park <[email protected]> | |
1176 | M: Kamil Debski <[email protected]> | |
6305902c | 1177 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1178 | L: [email protected] |
1179 | L: [email protected] | |
1180 | S: Maintained | |
934455d7 | 1181 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1182 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1183 | |
1184 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1185 | M: Kyungmin Park <[email protected]> | |
1186 | M: Tomasz Stanislawski <[email protected]> | |
1187 | L: [email protected] | |
1188 | L: [email protected] | |
1189 | S: Maintained | |
90d72ac6 | 1190 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1191 | |
d48d38e8 | 1192 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1193 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1194 | M: Magnus Damm <[email protected]> |
1195 | L: [email protected] | |
d48d38e8 | 1196 | W: http://oss.renesas.com |
bbff48f5 | 1197 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1199 | S: Supported |
1200 | F: arch/arm/mach-shmobile/ | |
1201 | F: drivers/sh/ | |
1202 | ||
66314223 DN |
1203 | ARM/SOCFPGA ARCHITECTURE |
1204 | M: Dinh Nguyen <[email protected]> | |
1205 | S: Maintained | |
1206 | F: arch/arm/mach-socfpga/ | |
1207 | ||
1208 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1209 | M: Dinh Nguyen <[email protected]> | |
1210 | S: Maintained | |
1211 | F: drivers/clk/socfpga/ | |
1212 | ||
65ebcc11 SK |
1213 | ARM/STI ARCHITECTURE |
1214 | M: Srinivas Kandagatla <[email protected]> | |
1215 | M: Stuart Menefy <[email protected]> | |
1216 | L: [email protected] (moderated for non-subscribers) | |
1217 | L: [email protected] | |
1218 | W: http://www.stlinux.com | |
1219 | S: Maintained | |
1220 | F: arch/arm/mach-sti/ | |
1221 | ||
2b7a52a4 | 1222 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1223 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1224 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1225 | S: Maintained |
1226 | ||
1bbd7089 | 1227 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1228 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1229 | L: [email protected] (moderated for non-subscribers) |
1230 | S: Maintained | |
1231 | ||
2b7a52a4 | 1232 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1233 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1234 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1235 | S: Maintained |
1236 | ||
98ad6e3b | 1237 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1238 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1239 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1240 | W: http://www.mcuos.com |
1241 | S: Maintained | |
4e89e8f6 | 1242 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1243 | F: drivers/input/keyboard/w90p910_keypad.c |
1244 | F: drivers/input/touchscreen/w90p910_ts.c | |
1245 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1246 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1247 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1248 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1249 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1250 | F: drivers/usb/host/ehci-w90x900.c |
1251 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1252 | |
54274d71 | 1253 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1254 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1255 | L: [email protected] (moderated for non-subscribers) |
1256 | S: Supported | |
1257 | F: arch/arm/mach-u300/ | |
1258 | F: drivers/i2c/busses/i2c-stu300.c | |
1259 | F: drivers/rtc/rtc-coh901331.c | |
1260 | F: drivers/watchdog/coh901327_wdt.c | |
1261 | F: drivers/dma/coh901318* | |
87572880 LW |
1262 | F: drivers/mfd/ab3100* |
1263 | F: drivers/rtc/rtc-ab3100.c | |
1264 | F: drivers/rtc/rtc-coh901331.c | |
1265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1266 | |
87572880 | 1267 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1268 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1269 | L: [email protected] (moderated for non-subscribers) |
1270 | S: Maintained | |
1271 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1272 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1273 | F: drivers/dma/ste_dma40* |
e4651a9f | 1274 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1275 | F: drivers/mfd/abx500* |
1276 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1277 | F: drivers/mfd/dbx500* |
1278 | F: drivers/mfd/db8500* | |
1279 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1280 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1281 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1283 | |
d4275354 | 1284 | ARM/VFP SUPPORT |
8b58be88 | 1285 | M: Russell King <[email protected]> |
efc03ecb | 1286 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1287 | W: http://www.arm.linux.org.uk/ |
1288 | S: Maintained | |
1289 | F: arch/arm/vfp/ | |
1290 | ||
e66b6d8e MV |
1291 | ARM/VOIPAC PXA270 SUPPORT |
1292 | M: Marek Vasut <[email protected]> | |
1293 | L: [email protected] (moderated for non-subscribers) | |
1294 | S: Maintained | |
1295 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1296 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1297 | |
04529fe2 TP |
1298 | ARM/VT8500 ARM ARCHITECTURE |
1299 | M: Tony Prisk <[email protected]> | |
1300 | L: [email protected] (moderated for non-subscribers) | |
1301 | S: Maintained | |
1302 | F: arch/arm/mach-vt8500/ | |
41fd91b4 TP |
1303 | F: drivers/clocksource/vt8500_timer.c |
1304 | F: drivers/gpio/gpio-vt8500.c | |
560746eb | 1305 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1306 | F: drivers/mmc/host/wmt-sdmmc.c |
1307 | F: drivers/pwm/pwm-vt8500.c | |
1308 | F: drivers/rtc/rtc-vt8500.c | |
1309 | F: drivers/tty/serial/vt8500_serial.c | |
1310 | F: drivers/usb/host/ehci-vt8500.c | |
1311 | F: drivers/usb/host/uhci-platform.c | |
04529fe2 TP |
1312 | F: drivers/video/vt8500lcdfb.* |
1313 | F: drivers/video/wm8505fb* | |
1314 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1315 | |
e66b6d8e MV |
1316 | ARM/ZIPIT Z2 SUPPORT |
1317 | M: Marek Vasut <[email protected]> | |
1318 | L: [email protected] (moderated for non-subscribers) | |
1319 | S: Maintained | |
1320 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1321 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1322 | |
51f29d44 MS |
1323 | ARM/ZYNQ ARCHITECTURE |
1324 | M: Michal Simek <[email protected]> | |
1325 | L: [email protected] (moderated for non-subscribers) | |
1326 | W: http://wiki.xilinx.com | |
1327 | T: git git://git.xilinx.com/linux-xlnx.git | |
1328 | S: Supported | |
1329 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1330 | F: drivers/cpuidle/cpuidle-zynq.c |
51f29d44 | 1331 | |
b8f9879e WD |
1332 | ARM SMMU DRIVER |
1333 | M: Will Deacon <[email protected]> | |
1334 | L: [email protected] (moderated for non-subscribers) | |
1335 | S: Maintained | |
1336 | F: drivers/iommu/arm-smmu.c | |
1337 | ||
38074229 CM |
1338 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1339 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1340 | M: Will Deacon <[email protected]> |
38074229 CM |
1341 | L: [email protected] (moderated for non-subscribers) |
1342 | S: Maintained | |
1343 | F: arch/arm64/ | |
d19766ec | 1344 | F: Documentation/arm64/ |
38074229 | 1345 | |
9d7005f9 LP |
1346 | AS3645A LED FLASH CONTROLLER DRIVER |
1347 | M: Laurent Pinchart <[email protected]> | |
1348 | L: [email protected] | |
1349 | T: git git://linuxtv.org/media_tree.git | |
1350 | S: Maintained | |
1351 | F: drivers/media/i2c/as3645a.c | |
1352 | F: include/media/as3645a.h | |
1353 | ||
d58de038 GJ |
1354 | ASC7621 HARDWARE MONITOR DRIVER |
1355 | M: George Joseph <[email protected]> | |
1356 | L: [email protected] | |
1357 | S: Maintained | |
1358 | F: Documentation/hwmon/asc7621 | |
1359 | F: drivers/hwmon/asc7621.c | |
1360 | ||
b229ece9 | 1361 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1362 | M: Corentin Chary <[email protected]> |
1da177e4 | 1363 | L: [email protected] |
d0944853 | 1364 | L: [email protected] |
76593d6f | 1365 | W: http://acpi4asus.sf.net |
85091b71 | 1366 | S: Maintained |
b229ece9 CC |
1367 | F: drivers/platform/x86/asus*.c |
1368 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1369 | |
953a6479 | 1370 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1dd8372d | 1371 | M: Dan Williams <[email protected]> |
b3e5f263 | 1372 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1373 | S: Maintained |
679655da JP |
1374 | F: Documentation/crypto/async-tx-api.txt |
1375 | F: crypto/async_tx/ | |
1376 | F: drivers/dma/ | |
1377 | F: include/linux/dmaengine.h | |
1378 | F: include/linux/async_tx.h | |
b3e5f263 | 1379 | |
a1867d36 | 1380 | AT24 EEPROM DRIVER |
14d77c4d | 1381 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1382 | L: [email protected] |
1383 | S: Maintained | |
1384 | F: drivers/misc/eeprom/at24.c | |
1385 | F: include/linux/i2c/at24.h | |
1386 | ||
e7839f25 | 1387 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1388 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1389 | W: http://support.coraid.com/support/linux |
1da177e4 | 1390 | S: Supported |
679655da JP |
1391 | F: Documentation/aoe/ |
1392 | F: drivers/block/aoe/ | |
1da177e4 | 1393 | |
9a10a870 | 1394 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1395 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1396 | L: [email protected] |
1397 | S: Supported | |
1398 | F: drivers/net/wireless/ath/* | |
1399 | ||
fa1c114f | 1400 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1401 | M: Jiri Slaby <[email protected]> |
1402 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1403 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1404 | L: [email protected] |
1405 | L: [email protected] | |
72c706b7 | 1406 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1407 | S: Maintained |
fa451753 | 1408 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1409 | |
12e62d6f KV |
1410 | ATHEROS ATH6KL WIRELESS DRIVER |
1411 | M: Kalle Valo <[email protected]> | |
1412 | L: [email protected] | |
1413 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1414 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1415 | S: Supported |
1416 | F: drivers/net/wireless/ath/ath6kl/ | |
1417 | ||
f078f209 | 1418 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1419 | M: "Luis R. Rodriguez" <[email protected]> |
1420 | M: Jouni Malinen <[email protected]> | |
1421 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1422 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1423 | L: [email protected] |
1424 | L: [email protected] | |
72c706b7 | 1425 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1426 | S: Supported |
fa451753 | 1427 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1428 | |
2be7d22f VK |
1429 | WILOCITY WIL6210 WIRELESS DRIVER |
1430 | M: Vladimir Kondratiev <[email protected]> | |
1431 | L: [email protected] | |
1432 | L: [email protected] | |
1433 | S: Supported | |
1434 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1435 | F: drivers/net/wireless/ath/wil6210/ | |
1436 | ||
1d7e1e6b CL |
1437 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1438 | M: Christian Lamparter <[email protected]> | |
1439 | L: [email protected] | |
1440 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1441 | S: Maintained | |
1442 | F: drivers/net/wireless/ath/carl9170/ | |
1443 | ||
2c2a6172 LT |
1444 | ATK0110 HWMON DRIVER |
1445 | M: Luca Tettamanti <[email protected]> | |
1446 | L: [email protected] | |
1447 | S: Maintained | |
1448 | F: drivers/hwmon/asus_atk0110.c | |
1449 | ||
6f69a6d7 | 1450 | ATI_REMOTE2 DRIVER |
8b58be88 | 1451 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1452 | S: Maintained |
679655da | 1453 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1454 | |
7ae115b4 | 1455 | ATLX ETHERNET DRIVERS |
8b58be88 | 1456 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1457 | M: Chris Snook <[email protected]> |
e443e383 | 1458 | L: [email protected] |
8d5ca6ec JC |
1459 | W: http://sourceforge.net/projects/atl1 |
1460 | W: http://atl1.sourceforge.net | |
1461 | S: Maintained | |
2b133ad6 | 1462 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1463 | |
1da177e4 | 1464 | ATM |
8b58be88 | 1465 | M: Chas Williams <[email protected]> |
476604de | 1466 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1467 | L: [email protected] |
1da177e4 LT |
1468 | W: http://linux-atm.sourceforge.net |
1469 | S: Maintained | |
679655da JP |
1470 | F: drivers/atm/ |
1471 | F: include/linux/atm* | |
c117ab84 | 1472 | F: include/uapi/linux/atm* |
1da177e4 | 1473 | |
04ac2f46 | 1474 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1475 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1476 | S: Maintained |
1477 | F: drivers/mmc/host/atmel-mci.c | |
1478 | F: drivers/mmc/host/atmel-mci-regs.h | |
1479 | ||
a1cfac48 | 1480 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1481 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1482 | S: Supported |
df621252 | 1483 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1484 | |
b414dc16 NF |
1485 | ATMEL DMA DRIVER |
1486 | M: Nicolas Ferre <[email protected]> | |
1487 | L: [email protected] (moderated for non-subscribers) | |
1488 | S: Supported | |
1489 | F: drivers/dma/at_hdmac.c | |
1490 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1491 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1492 | |
888f2804 LD |
1493 | ATMEL I2C DRIVER |
1494 | M: Ludovic Desroches <[email protected]> | |
1495 | L: [email protected] | |
1496 | S: Supported | |
1497 | F: drivers/i2c/busses/i2c-at91.c | |
1498 | ||
15515545 JW |
1499 | ATMEL ISI DRIVER |
1500 | M: Josh Wu <[email protected]> | |
1501 | L: [email protected] | |
1502 | S: Supported | |
f2294c2d | 1503 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1504 | F: include/media/atmel-isi.h |
1505 | ||
8f4c79ce | 1506 | ATMEL LCDFB DRIVER |
8b58be88 | 1507 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1508 | L: [email protected] |
8f4c79ce | 1509 | S: Maintained |
679655da JP |
1510 | F: drivers/video/atmel_lcdfb.c |
1511 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1512 | |
89e5785f | 1513 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1514 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1515 | S: Supported |
9f2f381f | 1516 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1517 | |
754ce4f2 | 1518 | ATMEL SPI DRIVER |
a02875a6 | 1519 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1520 | S: Supported |
9df92e6c | 1521 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1522 | |
e9cb1c5a NF |
1523 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1524 | M: Nicolas Ferre <[email protected]> | |
1525 | L: [email protected] (moderated for non-subscribers) | |
1526 | S: Supported | |
1527 | F: drivers/misc/atmel_tclib.c | |
1528 | F: drivers/clocksource/tcb_clksrc.c | |
1529 | ||
ff2675d6 JW |
1530 | ATMEL TSADCC DRIVER |
1531 | M: Josh Wu <[email protected]> | |
1532 | L: [email protected] | |
1533 | S: Supported | |
1534 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1535 | ||
914a3f3b | 1536 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1537 | M: Nicolas Ferre <[email protected]> |
1538 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1539 | S: Supported |
679655da | 1540 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1541 | |
1da177e4 | 1542 | ATMEL WIRELESS DRIVER |
8b58be88 | 1543 | M: Simon Kelley <[email protected]> |
724c6b35 | 1544 | L: [email protected] |
1da177e4 LT |
1545 | W: http://www.thekelleys.org.uk/atmel |
1546 | W: http://atmelwlandriver.sourceforge.net/ | |
1547 | S: Maintained | |
679655da | 1548 | F: drivers/net/wireless/atmel* |
1da177e4 | 1549 | |
a92b7b80 | 1550 | AUDIT SUBSYSTEM |
8b58be88 JP |
1551 | M: Al Viro <[email protected]> |
1552 | M: Eric Paris <[email protected]> | |
b9a06207 | 1553 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1554 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1555 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1556 | S: Maintained |
679655da | 1557 | F: include/linux/audit.h |
c117ab84 | 1558 | F: include/uapi/linux/audit.h |
679655da | 1559 | F: kernel/audit* |
a92b7b80 | 1560 | |
70e84049 | 1561 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1562 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1563 | W: http://miguelojeda.es/auxdisplay.htm |
1564 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1565 | S: Maintained |
679655da JP |
1566 | F: drivers/auxdisplay/ |
1567 | F: include/linux/cfag12864b.h | |
70e84049 | 1568 | |
5f97f7f9 | 1569 | AVR32 ARCHITECTURE |
e336f61f HCE |
1570 | M: Haavard Skinnemoen <[email protected]> |
1571 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1572 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1573 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1574 | W: http://avrfreaks.net/ |
e336f61f | 1575 | S: Maintained |
679655da | 1576 | F: arch/avr32/ |
5f97f7f9 HS |
1577 | |
1578 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1579 | M: Haavard Skinnemoen <[email protected]> |
1580 | M: Hans-Christian Egtvedt <[email protected]> | |
1581 | S: Maintained | |
679655da | 1582 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1583 | |
1da177e4 | 1584 | AX.25 NETWORK LAYER |
8b58be88 | 1585 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1586 | L: [email protected] |
d34cb28a | 1587 | W: http://www.linux-ax25.org/ |
1da177e4 | 1588 | S: Maintained |
c117ab84 | 1589 | F: include/uapi/linux/ax25.h |
679655da JP |
1590 | F: include/net/ax25.h |
1591 | F: net/ax25/ | |
1da177e4 | 1592 | |
d5269395 | 1593 | AZ6007 DVB DRIVER |
1b2c14b4 | 1594 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1595 | L: [email protected] |
1596 | W: http://linuxtv.org | |
1597 | T: git git://linuxtv.org/media_tree.git | |
1598 | S: Maintained | |
1599 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1600 | ||
6777376e HV |
1601 | AZTECH FM RADIO RECEIVER DRIVER |
1602 | M: Hans Verkuil <[email protected]> | |
1603 | L: [email protected] | |
1604 | T: git git://linuxtv.org/media_tree.git | |
1605 | W: http://linuxtv.org | |
1606 | S: Maintained | |
1607 | F: drivers/media/radio/radio-aztech* | |
1608 | ||
e2d1d6c0 | 1609 | B43 WIRELESS DRIVER |
8b58be88 | 1610 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1611 | L: [email protected] |
ed072f9e | 1612 | L: [email protected] |
491b26b4 | 1613 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1614 | S: Maintained |
679655da | 1615 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1616 | |
1617 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1618 | M: Larry Finger <[email protected]> |
1619 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1620 | L: [email protected] |
ed072f9e | 1621 | L: [email protected] |
491b26b4 | 1622 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1623 | S: Maintained |
679655da | 1624 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1625 | |
300abeb5 | 1626 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1627 | M: Richard Purdie <[email protected]> |
6212de88 | 1628 | M: Jingoo Han <[email protected]> |
300abeb5 | 1629 | S: Maintained |
679655da JP |
1630 | F: drivers/video/backlight/ |
1631 | F: include/linux/backlight.h | |
300abeb5 | 1632 | |
c6c8fea2 SE |
1633 | BATMAN ADVANCED |
1634 | M: Marek Lindner <[email protected]> | |
1635 | M: Simon Wunderlich <[email protected]> | |
cf9ab887 | 1636 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1637 | L: [email protected] |
1638 | W: http://www.open-mesh.org/ | |
1639 | S: Maintained | |
1640 | F: net/batman-adv/ | |
1641 | ||
e2d1d6c0 | 1642 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1643 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1644 | L: [email protected] |
1645 | W: http://www.baycom.org/~tom/ham/ham.html | |
1646 | S: Maintained | |
679655da | 1647 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1648 | |
cafe5635 | 1649 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1650 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1651 | L: [email protected] |
1652 | W: http://bcache.evilpiepirate.org | |
1653 | S: Maintained: | |
1654 | F: drivers/md/bcache/ | |
1655 | ||
e2d1d6c0 | 1656 | BEFS FILE SYSTEM |
55817d3d | 1657 | S: Orphan |
679655da JP |
1658 | F: Documentation/filesystems/befs.txt |
1659 | F: fs/befs/ | |
e2d1d6c0 RD |
1660 | |
1661 | BFS FILE SYSTEM | |
8b58be88 | 1662 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1663 | S: Maintained |
679655da JP |
1664 | F: Documentation/filesystems/bfs.txt |
1665 | F: fs/bfs/ | |
c117ab84 | 1666 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1667 | |
1394f032 | 1668 | BLACKFIN ARCHITECTURE |
8b58be88 | 1669 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1670 | L: [email protected] |
e3b2d3f3 BW |
1671 | W: http://blackfin.uclinux.org |
1672 | S: Supported | |
679655da | 1673 | F: arch/blackfin/ |
566da5b2 | 1674 | |
e190d6b1 | 1675 | BLACKFIN EMAC DRIVER |
49afa609 | 1676 | L: [email protected] |
e190d6b1 BW |
1677 | W: http://blackfin.uclinux.org |
1678 | S: Supported | |
7b35f033 | 1679 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1680 | |
566da5b2 | 1681 | BLACKFIN RTC DRIVER |
8b58be88 | 1682 | M: Mike Frysinger <[email protected]> |
49afa609 | 1683 | L: [email protected] |
566da5b2 MF |
1684 | W: http://blackfin.uclinux.org |
1685 | S: Supported | |
679655da | 1686 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1687 | |
936ed49a | 1688 | BLACKFIN SDH DRIVER |
109ec8c3 | 1689 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1690 | L: [email protected] |
1691 | W: http://blackfin.uclinux.org | |
1692 | S: Supported | |
1693 | F: drivers/mmc/host/bfin_sdh.c | |
1694 | ||
1394f032 | 1695 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1696 | M: Sonic Zhang <[email protected]> |
49afa609 | 1697 | L: [email protected] |
e3b2d3f3 BW |
1698 | W: http://blackfin.uclinux.org |
1699 | S: Supported | |
8460241e | 1700 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1701 | |
1e6d320f | 1702 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1703 | M: Mike Frysinger <[email protected]> |
49afa609 | 1704 | L: [email protected] |
1e6d320f BW |
1705 | W: http://blackfin.uclinux.org |
1706 | S: Supported | |
679655da | 1707 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1708 | |
d24ecfcc | 1709 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1710 | M: Sonic Zhang <[email protected]> |
49afa609 | 1711 | L: [email protected] |
d24ecfcc BW |
1712 | W: http://blackfin.uclinux.org/ |
1713 | S: Supported | |
679655da | 1714 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1715 | |
1e204377 SJ |
1716 | BLACKFIN MEDIA DRIVER |
1717 | M: Scott Jiang <[email protected]> | |
1718 | L: [email protected] | |
1719 | W: http://blackfin.uclinux.org/ | |
1720 | S: Supported | |
1721 | F: drivers/media/platform/blackfin/ | |
1722 | F: drivers/media/i2c/adv7183* | |
1723 | F: drivers/media/i2c/vs6624* | |
1724 | ||
b54cf35a JSM |
1725 | BLINKM RGB LED DRIVER |
1726 | M: Jan-Simon Moeller <[email protected]> | |
1727 | S: Maintained | |
1728 | F: drivers/leds/leds-blinkm.c | |
1729 | ||
1da177e4 | 1730 | BLOCK LAYER |
8b58be88 | 1731 | M: Jens Axboe <[email protected]> |
08deed1e | 1732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1733 | S: Maintained |
679655da | 1734 | F: block/ |
1da177e4 | 1735 | |
2b54aaef | 1736 | BLOCK2MTD DRIVER |
8b58be88 | 1737 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1738 | L: [email protected] |
1739 | S: Maintained | |
679655da | 1740 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1741 | |
63fbd24e | 1742 | BLUETOOTH DRIVERS |
8b58be88 | 1743 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1744 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1745 | M: Johan Hedberg <[email protected]> |
781c2844 | 1746 | L: [email protected] |
63fbd24e | 1747 | W: http://www.bluez.org/ |
22e7a424 MH |
1748 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1750 | S: Maintained |
679655da | 1751 | F: drivers/bluetooth/ |
1da177e4 | 1752 | |
63fbd24e | 1753 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1754 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1755 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1756 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1757 | L: [email protected] |
1758 | W: http://www.bluez.org/ | |
22e7a424 MH |
1759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1760 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1761 | S: Maintained |
679655da JP |
1762 | F: net/bluetooth/ |
1763 | F: include/net/bluetooth/ | |
1da177e4 LT |
1764 | |
1765 | BONDING DRIVER | |
8b58be88 | 1766 | M: Jay Vosburgh <[email protected]> |
4cd72c6e | 1767 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1768 | L: [email protected] |
ce00f85c JC |
1769 | W: http://sourceforge.net/projects/bonding/ |
1770 | S: Supported | |
679655da | 1771 | F: drivers/net/bonding/ |
c117ab84 | 1772 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1773 | |
39105890 | 1774 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1775 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1776 | L: [email protected] |
1777 | S: Supported | |
adfc5217 | 1778 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1779 | |
948c51e6 | 1780 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1781 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1782 | L: [email protected] |
1783 | S: Supported | |
adfc5217 JK |
1784 | F: drivers/net/ethernet/broadcom/bnx2.* |
1785 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1786 | |
4d9d2cb0 | 1787 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1788 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1789 | L: [email protected] |
1790 | S: Supported | |
adfc5217 | 1791 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1792 | |
f680f25c SW |
1793 | BROADCOM BCM2835 ARM ARCHICTURE |
1794 | M: Stephen Warren <[email protected]> | |
1795 | L: [email protected] (moderated for non-subscribers) | |
1796 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1797 | S: Maintained | |
1798 | F: arch/arm/mach-bcm2835/ | |
1799 | F: arch/arm/boot/dts/bcm2835* | |
1800 | F: arch/arm/configs/bcm2835_defconfig | |
1801 | F: drivers/*/*bcm2835* | |
1802 | ||
948c51e6 | 1803 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1804 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1805 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1806 | L: [email protected] |
1807 | S: Supported | |
adfc5217 | 1808 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1809 | |
a9533e7e HP |
1810 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1811 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1812 | M: Arend van Spriel <[email protected]> |
85d63686 | 1813 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1814 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1815 | L: [email protected] |
5615171c | 1816 | L: [email protected] |
a9533e7e | 1817 | S: Supported |
f62ebdd5 | 1818 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1819 | |
9958d6f9 BPG |
1820 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1821 | M: Bhanu Prakash Gollapudi <[email protected]> | |
1822 | L: [email protected] | |
1823 | S: Supported | |
1824 | F: drivers/scsi/bnx2fc/ | |
1825 | ||
c9678d86 RM |
1826 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1827 | M: Rafał Miłecki <[email protected]> | |
1828 | L: [email protected] | |
1829 | S: Maintained | |
1830 | F: drivers/bcma/ | |
1831 | F: include/linux/bcma/ | |
1832 | ||
7725ccfd | 1833 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1834 | M: Anil Gurumurthy <[email protected]> |
1835 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1836 | L: [email protected] |
1837 | S: Supported | |
1838 | F: drivers/scsi/bfa/ | |
7725ccfd | 1839 | |
8b230ed8 RM |
1840 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1841 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1842 | L: [email protected] |
1843 | S: Supported | |
f844a0ea | 1844 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1845 | |
5cdf7f76 | 1846 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1847 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1848 | L: [email protected] |
1849 | S: Supported | |
679655da JP |
1850 | F: block/bsg.c |
1851 | F: include/linux/bsg.h | |
c117ab84 | 1852 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1853 | |
af39917d CL |
1854 | BT87X AUDIO DRIVER |
1855 | M: Clemens Ladisch <[email protected]> | |
1856 | L: [email protected] (moderated for non-subscribers) | |
1857 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1858 | S: Maintained | |
1859 | F: Documentation/sound/alsa/Bt87x.txt | |
1860 | F: sound/pci/bt87x.c | |
1861 | ||
ff1d5c2f | 1862 | BT8XXGPIO DRIVER |
eb032b98 | 1863 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1864 | W: http://bu3sch.de/btgpio.php |
1865 | S: Maintained | |
72dbb705 | 1866 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1867 | |
eb1eb04f | 1868 | BTRFS FILE SYSTEM |
9c106405 | 1869 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1870 | L: [email protected] |
1871 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1872 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1874 | S: Maintained |
679655da JP |
1875 | F: Documentation/filesystems/btrfs.txt |
1876 | F: fs/btrfs/ | |
eb1eb04f | 1877 | |
1da177e4 | 1878 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1879 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1880 | L: [email protected] |
96b6aba0 | 1881 | W: http://linuxtv.org |
275ffde4 | 1882 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1883 | S: Odd fixes |
679655da | 1884 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1885 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1886 | |
1f34923c KA |
1887 | BUSLOGIC SCSI DRIVER |
1888 | M: Khalid Aziz <[email protected]> | |
1889 | L: [email protected] | |
1890 | S: Maintained | |
1891 | F: drivers/scsi/BusLogic.* | |
1892 | F: drivers/scsi/FlashPoint.* | |
1893 | ||
af39917d CL |
1894 | C-MEDIA CMI8788 DRIVER |
1895 | M: Clemens Ladisch <[email protected]> | |
1896 | L: [email protected] (moderated for non-subscribers) | |
1897 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1898 | S: Maintained | |
1899 | F: sound/pci/oxygen/ | |
1900 | ||
2141355f MS |
1901 | C6X ARCHITECTURE |
1902 | M: Mark Salter <[email protected]> | |
1903 | M: Aurelien Jacquiot <[email protected]> | |
1904 | L: [email protected] | |
1905 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1906 | S: Maintained | |
1907 | F: arch/c6x/ | |
1908 | ||
a5432f5a | 1909 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1910 | M: David Howells <[email protected]> |
a5432f5a DH |
1911 | L: [email protected] |
1912 | S: Supported | |
1913 | F: Documentation/filesystems/caching/cachefiles.txt | |
1914 | F: fs/cachefiles/ | |
1915 | ||
c815ca39 HV |
1916 | CADET FM/AM RADIO RECEIVER DRIVER |
1917 | M: Hans Verkuil <[email protected]> | |
1918 | L: [email protected] | |
1919 | T: git git://linuxtv.org/media_tree.git | |
1920 | W: http://linuxtv.org | |
1921 | S: Maintained | |
1922 | F: drivers/media/radio/radio-cadet* | |
1923 | ||
77d5140f | 1924 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1925 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1926 | L: [email protected] |
275ffde4 | 1927 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1928 | S: Maintained |
679655da | 1929 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1930 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1931 | |
201b6bab | 1932 | CAIF NETWORK LAYER |
5c574f50 | 1933 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
1934 | L: [email protected] |
1935 | S: Supported | |
1936 | F: Documentation/networking/caif/ | |
1937 | F: drivers/net/caif/ | |
c117ab84 | 1938 | F: include/uapi/linux/caif/ |
201b6bab JP |
1939 | F: include/net/caif/ |
1940 | F: net/caif/ | |
1941 | ||
77dac90f | 1942 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1943 | M: Muli Ben-Yehuda <[email protected]> |
1944 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1945 | L: [email protected] |
1946 | S: Maintained | |
679655da JP |
1947 | F: arch/x86/kernel/pci-calgary_64.c |
1948 | F: arch/x86/kernel/tce_64.c | |
1949 | F: arch/x86/include/asm/calgary.h | |
1950 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1951 | |
e2d1d6c0 | 1952 | CAN NETWORK LAYER |
8d15d386 | 1953 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 1954 | L: [email protected] |
ec78213a | 1955 | W: http://gitorious.org/linux-can |
405cc273 | 1956 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1957 | S: Maintained |
8d15d386 | 1958 | F: net/can/ |
8d15d386 | 1959 | F: include/linux/can/core.h |
c117ab84 CEB |
1960 | F: include/uapi/linux/can.h |
1961 | F: include/uapi/linux/can/bcm.h | |
1962 | F: include/uapi/linux/can/raw.h | |
1963 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 1964 | |
4261a204 | 1965 | CAN NETWORK DRIVERS |
8b58be88 | 1966 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 1967 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 1968 | L: [email protected] |
ec78213a | 1969 | W: http://gitorious.org/linux-can |
405cc273 | 1970 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 1971 | S: Maintained |
8d15d386 OH |
1972 | F: drivers/net/can/ |
1973 | F: include/linux/can/dev.h | |
8d15d386 | 1974 | F: include/linux/can/platform/ |
c117ab84 CEB |
1975 | F: include/uapi/linux/can/error.h |
1976 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 1977 | |
95d16c72 JM |
1978 | CAPABILITIES |
1979 | M: Serge Hallyn <[email protected]> | |
1980 | L: [email protected] | |
6305902c | 1981 | S: Supported |
95d16c72 | 1982 | F: include/linux/capability.h |
c117ab84 | 1983 | F: include/uapi/linux/capability.h |
95d16c72 | 1984 | F: security/capability.c |
6305902c | 1985 | F: security/commoncap.c |
38a94118 | 1986 | F: kernel/capability.c |
95d16c72 | 1987 | |
b8154542 | 1988 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1989 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
1990 | L: [email protected] |
1991 | L: [email protected] | |
b8154542 AB |
1992 | W: http://www.ibm.com/developerworks/power/cell/ |
1993 | S: Supported | |
679655da | 1994 | F: arch/powerpc/include/asm/cell*.h |
679655da | 1995 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 1996 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
1997 | F: arch/powerpc/oprofile/*cell* |
1998 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1999 | |
9030aaf9 | 2000 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2001 | M: Sage Weil <[email protected]> |
82593f87 | 2002 | L: [email protected] |
09d90327 | 2003 | W: http://ceph.com/ |
fb99f881 | 2004 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2005 | S: Supported |
2006 | F: Documentation/filesystems/ceph.txt | |
2007 | F: fs/ceph | |
3d14c5d2 YS |
2008 | F: net/ceph |
2009 | F: include/linux/ceph | |
09d90327 | 2010 | F: include/linux/crush |
9030aaf9 | 2011 | |
18332a80 | 2012 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2013 | L: [email protected] |
10c6c9c9 | 2014 | S: Orphan |
679655da JP |
2015 | F: Documentation/usb/WUSB-Design-overview.txt |
2016 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2017 | F: drivers/usb/host/hwa-hc.c |
2018 | F: drivers/usb/host/whci/ | |
679655da JP |
2019 | F: drivers/usb/wusbcore/ |
2020 | F: include/linux/usb/wusb* | |
18332a80 | 2021 | |
70e84049 | 2022 | CFAG12864B LCD DRIVER |
8b58be88 | 2023 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2024 | W: http://miguelojeda.es/auxdisplay.htm |
2025 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2026 | S: Maintained |
679655da JP |
2027 | F: drivers/auxdisplay/cfag12864b.c |
2028 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2029 | |
2030 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2031 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2032 | W: http://miguelojeda.es/auxdisplay.htm |
2033 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2034 | S: Maintained |
679655da JP |
2035 | F: drivers/auxdisplay/cfag12864bfb.c |
2036 | F: include/linux/cfag12864b.h | |
70e84049 | 2037 | |
704232c2 | 2038 | CFG80211 and NL80211 |
8b58be88 | 2039 | M: Johannes Berg <[email protected]> |
704232c2 | 2040 | L: [email protected] |
ce466579 JB |
2041 | W: http://wireless.kernel.org/ |
2042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2044 | S: Maintained |
c117ab84 | 2045 | F: include/uapi/linux/nl80211.h |
679655da JP |
2046 | F: include/net/cfg80211.h |
2047 | F: net/wireless/* | |
2048 | X: net/wireless/wext* | |
704232c2 | 2049 | |
46e64261 GKH |
2050 | CHAR and MISC DRIVERS |
2051 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2052 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2053 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2054 | S: Supported |
46e64261 GKH |
2055 | F: drivers/char/* |
2056 | F: drivers/misc/* | |
2057 | ||
0a920b5b | 2058 | CHECKPATCH |
8b58be88 | 2059 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2060 | M: Joe Perches <[email protected]> |
2061 | S: Maintained | |
679655da | 2062 | F: scripts/checkpatch.pl |
0a920b5b | 2063 | |
f8407f26 HW |
2064 | CHINESE DOCUMENTATION |
2065 | M: Harry Wei <[email protected]> | |
9740153c | 2066 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2067 | L: [email protected] (moderated for non-subscribers) |
2068 | S: Maintained | |
2069 | F: Documentation/zh_CN/ | |
2070 | ||
2721ea2c AS |
2071 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2072 | M: Alexander Shishkin <[email protected]> | |
2073 | L: [email protected] | |
2074 | S: Maintained | |
2075 | F: drivers/usb/chipidea/ | |
2076 | ||
641cb85e | 2077 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2078 | M: Christian Benvenuti <[email protected]> |
641cb85e | 2079 | M: Roopa Prabhu <[email protected]> |
5c6652f5 NP |
2080 | M: Neel Patel <[email protected]> |
2081 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2082 | S: Supported |
a6a5580c | 2083 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2084 | |
2b7a52a4 | 2085 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2086 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2087 | L: [email protected] |
2088 | S: Maintained | |
57d0b7a0 | 2089 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2090 | |
2b7a52a4 | 2091 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2092 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2093 | L: [email protected] |
2b7a52a4 | 2094 | S: Maintained |
679655da | 2095 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2096 | |
d9e9d82c | 2097 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2098 | M: Timur Tabi <[email protected]> |
93711660 | 2099 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2100 | S: Odd Fixes |
679655da | 2101 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2102 | |
94574d9a KRW |
2103 | CLEANCACHE API |
2104 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2105 | L: [email protected] | |
2106 | S: Maintained | |
2107 | F: mm/cleancache.c | |
2108 | F: include/linux/cleancache.h | |
2109 | ||
d4275354 | 2110 | CLK API |
8b58be88 | 2111 | M: Russell King <[email protected]> |
37417046 | 2112 | S: Maintained |
d4275354 RK |
2113 | F: include/linux/clk.h |
2114 | ||
5df6d737 | 2115 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2116 | M: Hiral Patel <[email protected]> |
2117 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2118 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2119 | L: [email protected] |
2120 | S: Supported | |
2a99921a | 2121 | F: drivers/scsi/fnic/ |
5df6d737 | 2122 | |
529aa8cb TLSC |
2123 | CMPC ACPI DRIVER |
2124 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2125 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2126 | L: [email protected] |
529aa8cb TLSC |
2127 | S: Supported |
2128 | F: drivers/platform/x86/classmate-laptop.c | |
2129 | ||
74425eee | 2130 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2131 | M: Julia Lawall <[email protected]> |
74425eee | 2132 | M: Gilles Muller <[email protected]> |
26de9c26 | 2133 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2134 | M: Michal Marek <[email protected]> |
26de9c26 | 2135 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2136 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2137 | W: http://coccinelle.lip6.fr/ |
2138 | S: Supported | |
4b92b2aa | 2139 | F: Documentation/coccinelle.txt |
74425eee NP |
2140 | F: scripts/coccinelle/ |
2141 | F: scripts/coccicheck | |
2142 | ||
1da177e4 | 2143 | CODA FILE SYSTEM |
8b58be88 | 2144 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2145 | M: [email protected] |
2146 | L: [email protected] | |
2147 | W: http://www.coda.cs.cmu.edu/ | |
2148 | S: Maintained | |
679655da JP |
2149 | F: Documentation/filesystems/coda.txt |
2150 | F: fs/coda/ | |
2151 | F: include/linux/coda*.h | |
c117ab84 | 2152 | F: include/uapi/linux/coda*.h |
1da177e4 | 2153 | |
7704addb | 2154 | COMMON CLK FRAMEWORK |
7704addb MT |
2155 | M: Mike Turquette <[email protected]> |
2156 | L: [email protected] (same as CLK API & CLKDEV) | |
2157 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2158 | S: Maintained | |
60bea3b5 SW |
2159 | F: drivers/clk/ |
2160 | X: drivers/clk/clkdev.c | |
7704addb | 2161 | F: include/linux/clk-pr* |
60bea3b5 | 2162 | F: include/linux/clk/ |
7704addb | 2163 | |
e2d1d6c0 | 2164 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2165 | M: Steve French <[email protected]> |
51223df6 | 2166 | L: [email protected] |
d1f28953 | 2167 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2168 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2169 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2171 | S: Supported |
679655da JP |
2172 | F: Documentation/filesystems/cifs.txt |
2173 | F: fs/cifs/ | |
e2d1d6c0 | 2174 | |
1da177e4 | 2175 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2176 | M: Scott Murray <[email protected]> |
64dab204 | 2177 | L: [email protected] |
82c4dfc7 | 2178 | S: Maintained |
679655da | 2179 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2180 | |
2181 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2182 | M: Scott Murray <[email protected]> |
64dab204 | 2183 | L: [email protected] |
82c4dfc7 | 2184 | S: Maintained |
679655da | 2185 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2186 | |
2187 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2188 | M: Scott Murray <[email protected]> |
64dab204 | 2189 | L: [email protected] |
82c4dfc7 | 2190 | S: Maintained |
679655da | 2191 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2192 | |
5411552c | 2193 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2194 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2195 | L: [email protected] |
5411552c | 2196 | S: Maintained |
679655da | 2197 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2198 | |
949be0f7 | 2199 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2200 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2201 | L: [email protected] |
2202 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2203 | S: Maintained |
679655da | 2204 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2205 | |
e2d1d6c0 | 2206 | CONFIGFS |
d6351db2 JB |
2207 | M: Joel Becker <[email protected]> |
2208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2209 | S: Supported |
679655da JP |
2210 | F: fs/configfs/ |
2211 | F: include/linux/configfs.h | |
e2d1d6c0 | 2212 | |
acb9c1b2 | 2213 | CONNECTOR |
8b58be88 | 2214 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2215 | L: [email protected] |
2216 | S: Maintained | |
2217 | F: drivers/connector/ | |
2218 | ||
fb3a0fb6 | 2219 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2220 | M: Tejun Heo <[email protected]> |
ad50c159 | 2221 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2222 | L: [email protected] |
12340313 | 2223 | L: [email protected] |
860ca0e6 | 2224 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2225 | S: Maintained |
679655da JP |
2226 | F: include/linux/cgroup* |
2227 | F: kernel/cgroup* | |
8ca739e3 | 2228 | F: mm/*cgroup* |
fb3a0fb6 | 2229 | |
bebe4678 | 2230 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2231 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2232 | L: [email protected] |
2233 | S: Maintained | |
679655da JP |
2234 | F: Documentation/hwmon/coretemp |
2235 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2236 | |
1da177e4 | 2237 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2238 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2239 | W: http://www.fi.muni.cz/~kas/cosa/ |
2240 | S: Maintained | |
679655da | 2241 | F: drivers/net/wan/cosa* |
1da177e4 | 2242 | |
4371ee35 | 2243 | CPMAC ETHERNET DRIVER |
8b58be88 | 2244 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2245 | L: [email protected] |
2246 | S: Maintained | |
b544dbac | 2247 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2248 | |
1da177e4 | 2249 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2250 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2251 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2252 | L: [email protected] |
a6c072c7 | 2253 | L: [email protected] |
1da177e4 | 2254 | S: Maintained |
27209d91 VK |
2255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2256 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2257 | F: drivers/cpufreq/ |
2258 | F: include/linux/cpufreq.h | |
1da177e4 | 2259 | |
8a67f0ef VK |
2260 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2261 | M: Viresh Kumar <[email protected]> | |
2262 | M: Sudeep KarkadaNagesha <[email protected]> | |
2263 | L: [email protected] | |
2264 | L: [email protected] | |
2265 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2266 | S: Maintained | |
2267 | F: drivers/cpufreq/arm_big_little.h | |
2268 | F: drivers/cpufreq/arm_big_little.c | |
2269 | F: drivers/cpufreq/arm_big_little_dt.c | |
2270 | ||
a8e39c35 DL |
2271 | CPUIDLE DRIVERS |
2272 | M: Rafael J. Wysocki <[email protected]> | |
2273 | M: Daniel Lezcano <[email protected]> | |
2274 | L: [email protected] | |
2275 | S: Maintained | |
2276 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2277 | F: drivers/cpuidle/* | |
2278 | F: include/linux/cpuidle.h | |
2279 | ||
1da177e4 | 2280 | CPUID/MSR DRIVER |
8b58be88 | 2281 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2282 | S: Maintained |
679655da JP |
2283 | F: arch/x86/kernel/cpuid.c |
2284 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2285 | |
7fe2f639 DB |
2286 | CPU POWER MONITORING SUBSYSTEM |
2287 | M: Dominik Brodowski <[email protected]> | |
2288 | M: Thomas Renninger <[email protected]> | |
2289 | S: Maintained | |
2290 | F: tools/power/cpupower | |
2291 | ||
ed90fb4a | 2292 | CPUSETS |
f47b89c7 | 2293 | M: Li Zefan <[email protected]> |
ed90fb4a | 2294 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2295 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2296 | S: Maintained |
679655da JP |
2297 | F: Documentation/cgroups/cpusets.txt |
2298 | F: include/linux/cpuset.h | |
2299 | F: kernel/cpuset.c | |
ed90fb4a | 2300 | |
1da177e4 | 2301 | CRAMFS FILESYSTEM |
ce00f85c JC |
2302 | W: http://sourceforge.net/projects/cramfs/ |
2303 | S: Orphan | |
679655da JP |
2304 | F: Documentation/filesystems/cramfs.txt |
2305 | F: fs/cramfs/ | |
1da177e4 LT |
2306 | |
2307 | CRIS PORT | |
8b58be88 JP |
2308 | M: Mikael Starvik <[email protected]> |
2309 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2310 | L: [email protected] |
1da177e4 LT |
2311 | W: http://developer.axis.com |
2312 | S: Maintained | |
679655da | 2313 | F: arch/cris/ |
df621252 | 2314 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2315 | |
2316 | CRYPTO API | |
8b58be88 JP |
2317 | M: Herbert Xu <[email protected]> |
2318 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2319 | L: [email protected] |
54e5881d | 2320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2321 | S: Maintained |
679655da JP |
2322 | F: Documentation/crypto/ |
2323 | F: arch/*/crypto/ | |
2324 | F: crypto/ | |
2325 | F: drivers/crypto/ | |
2326 | F: include/crypto/ | |
1da177e4 | 2327 | |
5b07bd57 | 2328 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2329 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2330 | L: [email protected] |
2331 | S: Maintained | |
51a2228a JP |
2332 | F: crypto/ansi_cprng.c |
2333 | F: crypto/rng.c | |
5b07bd57 | 2334 | |
9b4ffa48 | 2335 | CS5535 Audio ALSA driver |
8b58be88 | 2336 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2337 | S: Maintained |
679655da | 2338 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2339 | |
a910e4a9 SP |
2340 | CW1200 WLAN driver |
2341 | M: Solomon Peachy <[email protected]> | |
2342 | S: Maintained | |
2343 | F: drivers/net/wireless/cw1200/ | |
2344 | ||
6d8425b1 | 2345 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2346 | M: Andy Walls <[email protected]> |
c4240509 | 2347 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2348 | L: [email protected] |
275ffde4 | 2349 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2350 | W: http://linuxtv.org |
30e10993 | 2351 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2352 | S: Maintained |
679655da | 2353 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2354 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2355 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2356 | |
3f101d91 HV |
2357 | CX2341X MPEG ENCODER HELPER MODULE |
2358 | M: Hans Verkuil <[email protected]> | |
2359 | L: [email protected] | |
2360 | T: git git://linuxtv.org/media_tree.git | |
2361 | W: http://linuxtv.org | |
2362 | S: Maintained | |
c368360b | 2363 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2364 | F: include/media/cx2341x* |
2365 | ||
20357578 | 2366 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2367 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2368 | L: [email protected] |
2369 | W: http://linuxtv.org | |
2370 | T: git git://linuxtv.org/media_tree.git | |
2371 | S: Odd fixes | |
2372 | F: Documentation/video4linux/cx88/ | |
2373 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2374 | |
91952bc0 AP |
2375 | CXD2820R MEDIA DRIVER |
2376 | M: Antti Palosaari <[email protected]> | |
2377 | L: [email protected] | |
2378 | W: http://linuxtv.org/ | |
2379 | W: http://palosaari.fi/linux/ | |
2380 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2381 | T: git git://linuxtv.org/anttip/media_tree.git | |
2382 | S: Maintained | |
2383 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2384 | |
e5ec3789 | 2385 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2386 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
2387 | L: [email protected] |
2388 | W: http://www.chelsio.com | |
2389 | S: Supported | |
f7917c00 | 2390 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2391 | |
2392 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2393 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2394 | L: [email protected] |
e5ec3789 SW |
2395 | W: http://www.openfabrics.org |
2396 | S: Supported | |
679655da | 2397 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2398 | |
be4c9bad RD |
2399 | CXGB4 ETHERNET DRIVER (CXGB4) |
2400 | M: Dimitris Michailidis <[email protected]> | |
2401 | L: [email protected] | |
2402 | W: http://www.chelsio.com | |
2403 | S: Supported | |
f7917c00 | 2404 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2405 | |
2406 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2407 | M: Steve Wise <[email protected]> | |
2408 | L: [email protected] | |
2409 | W: http://www.openfabrics.org | |
2410 | S: Supported | |
2411 | F: drivers/infiniband/hw/cxgb4/ | |
2412 | ||
5c20a5c7 CL |
2413 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2414 | M: Casey Leedom <[email protected]> | |
2415 | L: [email protected] | |
2416 | W: http://www.chelsio.com | |
2417 | S: Supported | |
f7917c00 | 2418 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2419 | |
b52b97a3 GC |
2420 | STMMAC ETHERNET DRIVER |
2421 | M: Giuseppe Cavallaro <[email protected]> | |
2422 | L: [email protected] | |
2423 | W: http://www.stlinux.com | |
2424 | S: Supported | |
7ac6653a | 2425 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2426 | |
1da177e4 | 2427 | CYBERPRO FB DRIVER |
8b58be88 | 2428 | M: Russell King <[email protected]> |
efc03ecb | 2429 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2430 | W: http://www.arm.linux.org.uk/ |
2431 | S: Maintained | |
679655da | 2432 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2433 | |
1da177e4 | 2434 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2435 | W: http://www.cyclades.com/ |
d459883e | 2436 | S: Orphan |
c897401b | 2437 | F: drivers/tty/cyclades.c |
679655da | 2438 | F: include/linux/cyclades.h |
c117ab84 | 2439 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2440 | |
2441 | CYCLADES PC300 DRIVER | |
1da177e4 | 2442 | W: http://www.cyclades.com/ |
d459883e | 2443 | S: Orphan |
679655da | 2444 | F: drivers/net/wan/pc300* |
1da177e4 | 2445 | |
402f6ae4 AP |
2446 | CYPRESS_FIRMWARE MEDIA DRIVER |
2447 | M: Antti Palosaari <[email protected]> | |
2448 | L: [email protected] | |
2449 | W: http://linuxtv.org/ | |
2450 | W: http://palosaari.fi/linux/ | |
2451 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2452 | T: git git://linuxtv.org/anttip/media_tree.git | |
2453 | S: Maintained | |
2454 | F: drivers/media/common/cypress_firmware* | |
2455 | ||
e3ae3525 | 2456 | CYTTSP TOUCHSCREEN DRIVER |
6305902c JP |
2457 | M: Javier Martinez Canillas <[email protected]> |
2458 | L: [email protected] | |
2459 | S: Maintained | |
2460 | F: drivers/input/touchscreen/cyttsp* | |
2461 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2462 | |
1da177e4 | 2463 | DAMA SLAVE for AX.25 |
8b58be88 | 2464 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2465 | W: http://yaina.de/jreuter/ |
2466 | W: http://www.qsl.net/dl1bke/ | |
2467 | L: [email protected] | |
2468 | S: Maintained | |
679655da JP |
2469 | F: net/ax25/af_ax25.c |
2470 | F: net/ax25/ax25_dev.c | |
2471 | F: net/ax25/ax25_ds_* | |
2472 | F: net/ax25/ax25_in.c | |
2473 | F: net/ax25/ax25_out.c | |
2474 | F: net/ax25/ax25_timer.c | |
2475 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2476 | |
e2d1d6c0 | 2477 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2478 | L: [email protected] |
5ff77428 | 2479 | S: Orphan |
679655da | 2480 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2481 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2482 | |
2483 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2484 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2485 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2486 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2487 | S: Maintained |
679655da | 2488 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2489 | |
1da177e4 | 2490 | DC395x SCSI driver |
61eee9a7 | 2491 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2492 | M: Ali Akcaagac <[email protected]> |
2493 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2494 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2495 | L: [email protected] |
1da177e4 LT |
2496 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2497 | S: Maintained | |
679655da JP |
2498 | F: Documentation/scsi/dc395x.txt |
2499 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2500 | |
eb8edb08 | 2501 | DCCP PROTOCOL |
a89d030e | 2502 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2503 | L: [email protected] |
c996d8b9 | 2504 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2505 | S: Maintained |
679655da | 2506 | F: include/linux/dccp.h |
c117ab84 | 2507 | F: include/uapi/linux/dccp.h |
679655da JP |
2508 | F: include/linux/tfrc.h |
2509 | F: net/dccp/ | |
eb8edb08 | 2510 | |
1da177e4 | 2511 | DECnet NETWORK LAYER |
1da177e4 LT |
2512 | W: http://linux-decnet.sourceforge.net |
2513 | L: [email protected] | |
f546444d | 2514 | S: Orphan |
679655da JP |
2515 | F: Documentation/networking/decnet.txt |
2516 | F: net/decnet/ | |
1da177e4 LT |
2517 | |
2518 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2519 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2520 | S: Maintained |
33f810b2 | 2521 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2522 | |
ad8f07cc | 2523 | DELL LAPTOP DRIVER |
8b58be88 | 2524 | M: Matthew Garrett <[email protected]> |
d0944853 | 2525 | L: [email protected] |
ad8f07cc | 2526 | S: Maintained |
679655da | 2527 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2528 | |
1da177e4 | 2529 | DELL LAPTOP SMM DRIVER |
c5471462 | 2530 | S: Orphan |
679655da | 2531 | F: drivers/char/i8k.c |
c117ab84 | 2532 | F: include/uapi/linux/i8k.h |
1da177e4 | 2533 | |
90563ec4 | 2534 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2535 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2536 | S: Maintained |
679655da JP |
2537 | F: Documentation/dcdbas.txt |
2538 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2539 | |
0b3f6109 | 2540 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2541 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2542 | S: Maintained |
36b3a96f | 2543 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2544 | |
5efc75e3 PZ |
2545 | DESIGNWARE USB2 DRD IP DRIVER |
2546 | M: Paul Zimmerman <[email protected]> | |
2547 | L: [email protected] | |
2548 | S: Maintained | |
2549 | F: drivers/staging/dwc2/ | |
2550 | ||
94ab23dd FB |
2551 | DESIGNWARE USB3 DRD IP DRIVER |
2552 | M: Felipe Balbi <[email protected]> | |
2553 | L: [email protected] | |
2554 | L: [email protected] | |
2555 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2556 | S: Maintained | |
2557 | F: drivers/usb/dwc3/ | |
2558 | ||
89d07767 KP |
2559 | DEVICE FREQUENCY (DEVFREQ) |
2560 | M: MyungJoo Ham <[email protected]> | |
2561 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2562 | L: [email protected] |
89d07767 KP |
2563 | S: Maintained |
2564 | F: drivers/devfreq/ | |
2565 | ||
1da177e4 | 2566 | DEVICE NUMBER REGISTRY |
8b58be88 | 2567 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2568 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2569 | S: Maintained |
2570 | ||
e2d1d6c0 | 2571 | DEVICE-MAPPER (LVM) |
854ecaad | 2572 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2573 | M: Mike Snitzer <[email protected]> |
854ecaad | 2574 | M: [email protected] |
e2d1d6c0 RD |
2575 | L: [email protected] |
2576 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2577 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2578 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2579 | S: Maintained |
679655da JP |
2580 | F: Documentation/device-mapper/ |
2581 | F: drivers/md/dm* | |
854ecaad | 2582 | F: drivers/md/persistent-data/ |
679655da JP |
2583 | F: include/linux/device-mapper.h |
2584 | F: include/linux/dm-*.h | |
8504eed3 | 2585 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2586 | |
335d7c58 | 2587 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2588 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2589 | L: [email protected] |
2590 | S: Maintained | |
2591 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2592 | ||
e7839f25 | 2593 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2594 | M: Eric Paris <[email protected]> |
3c5119c0 | 2595 | S: Maintained |
679655da JP |
2596 | F: Documentation/filesystems/dnotify.txt |
2597 | F: fs/notify/dnotify/ | |
2598 | F: include/linux/dnotify.h | |
1da177e4 LT |
2599 | |
2600 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2601 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2602 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2603 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2604 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2605 | S: Maintained | |
2606 | ||
4480f15b | 2607 | DISKQUOTA |
8b58be88 | 2608 | M: Jan Kara <[email protected]> |
1da177e4 | 2609 | S: Maintained |
679655da JP |
2610 | F: Documentation/filesystems/quota.txt |
2611 | F: fs/quota/ | |
2612 | F: include/linux/quota*.h | |
c117ab84 | 2613 | F: include/uapi/linux/quota*.h |
1da177e4 | 2614 | |
702686ad BT |
2615 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2616 | M: Bernie Thompson <[email protected]> | |
2617 | L: [email protected] | |
2618 | S: Maintained | |
2619 | W: http://plugable.com/category/projects/udlfb/ | |
2620 | F: drivers/video/udlfb.c | |
2621 | F: include/video/udlfb.h | |
2622 | F: Documentation/fb/udlfb.txt | |
2623 | ||
e7839f25 | 2624 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2625 | M: Christine Caulfield <[email protected]> |
2626 | M: David Teigland <[email protected]> | |
a4644184 | 2627 | L: [email protected] |
5be7b50f | 2628 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2630 | S: Supported |
679655da | 2631 | F: fs/dlm/ |
5be7b50f | 2632 | |
53b6b3e0 SS |
2633 | DMA BUFFER SHARING FRAMEWORK |
2634 | M: Sumit Semwal <[email protected]> | |
2635 | S: Maintained | |
2636 | L: [email protected] | |
2637 | L: [email protected] | |
2638 | L: [email protected] | |
2639 | F: drivers/base/dma-buf* | |
2640 | F: include/linux/dma-buf* | |
2641 | F: Documentation/dma-buf-sharing.txt | |
2642 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2643 | ||
b3e5f263 | 2644 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2645 | M: Vinod Koul <[email protected]> |
1dd8372d | 2646 | M: Dan Williams <[email protected]> |
b3e5f263 | 2647 | S: Supported |
679655da JP |
2648 | F: drivers/dma/ |
2649 | F: include/linux/dma* | |
5dbd05d4 VK |
2650 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2651 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2652 | |
b825037d | 2653 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2654 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2655 | L: [email protected] |
2656 | S: Maintained | |
679655da JP |
2657 | F: Documentation/hwmon/dme1737 |
2658 | F: drivers/hwmon/dme1737.c | |
b825037d | 2659 | |
5b9c9bf6 | 2660 | DOCKING STATION DRIVER |
8b58be88 | 2661 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2662 | L: [email protected] |
8b59a454 | 2663 | S: Supported |
679655da | 2664 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2665 | |
7d2c86b5 | 2666 | DOCUMENTATION |
5191d566 | 2667 | M: Rob Landley <[email protected]> |
795fb7e7 | 2668 | L: [email protected] |
5191d566 | 2669 | T: TBD |
795fb7e7 | 2670 | S: Maintained |
679655da | 2671 | F: Documentation/ |
abbaeff3 | 2672 | |
1da177e4 | 2673 | DOUBLETALK DRIVER |
8b58be88 | 2674 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2675 | L: [email protected] |
2676 | S: Maintained | |
679655da JP |
2677 | F: drivers/char/dtlk.c |
2678 | F: include/linux/dtlk.h | |
1da177e4 | 2679 | |
e2d1d6c0 | 2680 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2681 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2682 | L: [email protected] |
2683 | W: http://www.adaptec.com/ | |
2684 | S: Maintained | |
679655da JP |
2685 | F: drivers/scsi/dpt* |
2686 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2687 | |
b411b363 | 2688 | DRBD DRIVER |
28b8e8d4 JP |
2689 | P: Philipp Reisner |
2690 | P: Lars Ellenberg | |
2691 | M: [email protected] | |
2692 | L: [email protected] | |
2693 | W: http://www.drbd.org | |
2694 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2695 | T: git git://git.drbd.org/drbd-8.3.git | |
2696 | S: Supported | |
2697 | F: drivers/block/drbd/ | |
2698 | F: lib/lru_cache.c | |
2699 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2700 | |
87544653 | 2701 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2702 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2703 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2704 | S: Supported |
679655da | 2705 | F: Documentation/kobject.txt |
7cfc51b9 | 2706 | F: drivers/base/ |
679655da | 2707 | F: fs/sysfs/ |
87544653 | 2708 | F: fs/debugfs/ |
679655da | 2709 | F: include/linux/kobj* |
87544653 | 2710 | F: include/linux/debugfs.h |
679655da | 2711 | F: lib/kobj* |
1da177e4 LT |
2712 | |
2713 | DRM DRIVERS | |
8b58be88 | 2714 | M: David Airlie <[email protected]> |
4c6a3999 | 2715 | L: [email protected] |
54e5881d | 2716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2717 | S: Maintained |
679655da | 2718 | F: drivers/gpu/drm/ |
850e9411 | 2719 | F: include/drm/ |
c117ab84 | 2720 | F: include/uapi/drm/ |
1da177e4 | 2721 | |
8daf7473 | 2722 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2723 | M: Daniel Vetter <[email protected]> |
362132d2 | 2724 | L: [email protected] |
8daf7473 | 2725 | L: [email protected] |
38e490fe | 2726 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 CW |
2727 | S: Supported |
2728 | F: drivers/gpu/drm/i915 | |
2729 | F: include/drm/i915* | |
c117ab84 | 2730 | F: include/uapi/drm/i915* |
8daf7473 | 2731 | |
398a6d4a KP |
2732 | DRM DRIVERS FOR EXYNOS |
2733 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2734 | M: Joonyoung Shim <[email protected]> |
2735 | M: Seung-Woo Kim <[email protected]> | |
2736 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2737 | L: [email protected] |
25a58030 | 2738 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a KP |
2739 | S: Supported |
2740 | F: drivers/gpu/drm/exynos | |
2741 | F: include/drm/exynos* | |
c117ab84 | 2742 | F: include/uapi/drm/exynos* |
398a6d4a | 2743 | |
bd3b49f2 | 2744 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2745 | M: Thierry Reding <[email protected]> |
2746 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2747 | L: [email protected] |
2748 | L: [email protected] | |
a5ad7a63 | 2749 | T: git git://anongit.freedesktop.org/tegra/linux.git |
bd3b49f2 | 2750 | S: Maintained |
a5ad7a63 TR |
2751 | F: drivers/gpu/host1x/ |
2752 | F: include/uapi/drm/tegra_drm.h | |
bd3b49f2 TR |
2753 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2754 | ||
598df1ac AK |
2755 | DSBR100 USB FM RADIO DRIVER |
2756 | M: Alexey Klimov <[email protected]> | |
2757 | L: [email protected] | |
2758 | T: git git://linuxtv.org/media_tree.git | |
2759 | S: Maintained | |
2760 | F: drivers/media/radio/dsbr100.c | |
2761 | ||
1da177e4 | 2762 | DSCC4 DRIVER |
8b58be88 | 2763 | M: Francois Romieu <[email protected]> |
01f20734 | 2764 | L: [email protected] |
1da177e4 | 2765 | S: Maintained |
679655da | 2766 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2767 | |
91952bc0 AP |
2768 | DVB_USB_AF9015 MEDIA DRIVER |
2769 | M: Antti Palosaari <[email protected]> | |
2770 | L: [email protected] | |
2771 | W: http://linuxtv.org/ | |
2772 | W: http://palosaari.fi/linux/ | |
2773 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2774 | T: git git://linuxtv.org/anttip/media_tree.git | |
2775 | S: Maintained | |
2776 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2777 | ||
2778 | DVB_USB_AF9035 MEDIA DRIVER | |
2779 | M: Antti Palosaari <[email protected]> | |
2780 | L: [email protected] | |
2781 | W: http://linuxtv.org/ | |
2782 | W: http://palosaari.fi/linux/ | |
2783 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2784 | T: git git://linuxtv.org/anttip/media_tree.git | |
2785 | S: Maintained | |
2786 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2787 | ||
2788 | DVB_USB_ANYSEE MEDIA DRIVER | |
2789 | M: Antti Palosaari <[email protected]> | |
2790 | L: [email protected] | |
2791 | W: http://linuxtv.org/ | |
2792 | W: http://palosaari.fi/linux/ | |
2793 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2794 | T: git git://linuxtv.org/anttip/media_tree.git | |
2795 | S: Maintained | |
2796 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2797 | ||
2798 | DVB_USB_AU6610 MEDIA DRIVER | |
2799 | M: Antti Palosaari <[email protected]> | |
2800 | L: [email protected] | |
2801 | W: http://linuxtv.org/ | |
2802 | W: http://palosaari.fi/linux/ | |
2803 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2804 | T: git git://linuxtv.org/anttip/media_tree.git | |
2805 | S: Maintained | |
2806 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2807 | ||
2808 | DVB_USB_CE6230 MEDIA DRIVER | |
2809 | M: Antti Palosaari <[email protected]> | |
2810 | L: [email protected] | |
2811 | W: http://linuxtv.org/ | |
2812 | W: http://palosaari.fi/linux/ | |
2813 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2814 | T: git git://linuxtv.org/anttip/media_tree.git | |
2815 | S: Maintained | |
2816 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2817 | ||
d099dea2 MK |
2818 | DVB_USB_CXUSB MEDIA DRIVER |
2819 | M: Michael Krufky <[email protected]> | |
2820 | L: [email protected] | |
2821 | W: http://linuxtv.org/ | |
2822 | W: http://github.com/mkrufky | |
2823 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2824 | T: git git://linuxtv.org/media_tree.git | |
2825 | S: Maintained | |
9819da66 | 2826 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2827 | |
91952bc0 | 2828 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2829 | M: Antti Palosaari <[email protected]> |
2830 | L: [email protected] | |
2831 | W: http://linuxtv.org/ | |
2832 | W: http://palosaari.fi/linux/ | |
2833 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2834 | T: git git://linuxtv.org/anttip/media_tree.git | |
2835 | S: Maintained | |
91952bc0 | 2836 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2837 | |
5560983b | 2838 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2839 | M: Antti Palosaari <[email protected]> |
2840 | L: [email protected] | |
2841 | W: http://linuxtv.org/ | |
91952bc0 AP |
2842 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2843 | T: git git://linuxtv.org/anttip/media_tree.git | |
2844 | S: Maintained | |
5560983b | 2845 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2846 | |
8856f5f2 MK |
2847 | DVB_USB_MXL111SF MEDIA DRIVER |
2848 | M: Michael Krufky <[email protected]> | |
2849 | L: [email protected] | |
2850 | W: http://linuxtv.org/ | |
2851 | W: http://github.com/mkrufky | |
2852 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2853 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2854 | S: Maintained | |
2855 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2856 | ||
91952bc0 AP |
2857 | DVB_USB_RTL28XXU MEDIA DRIVER |
2858 | M: Antti Palosaari <[email protected]> | |
2859 | L: [email protected] | |
2860 | W: http://linuxtv.org/ | |
2861 | W: http://palosaari.fi/linux/ | |
2862 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2863 | T: git git://linuxtv.org/anttip/media_tree.git | |
2864 | S: Maintained | |
2865 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2866 | ||
2867 | DVB_USB_V2 MEDIA DRIVER | |
2868 | M: Antti Palosaari <[email protected]> | |
2869 | L: [email protected] | |
2870 | W: http://linuxtv.org/ | |
2871 | W: http://palosaari.fi/linux/ | |
2872 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2873 | T: git git://linuxtv.org/anttip/media_tree.git | |
2874 | S: Maintained | |
2875 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2876 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2877 | ||
ac0ac38f | 2878 | DYNAMIC DEBUG |
5c4a97d1 | 2879 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
2880 | S: Maintained |
2881 | F: lib/dynamic_debug.c | |
2882 | F: include/linux/dynamic_debug.h | |
2883 | ||
789c7048 | 2884 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2885 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2886 | S: Maintained |
df621252 | 2887 | F: drivers/tty/serial/dz.* |
789c7048 | 2888 | |
91952bc0 AP |
2889 | E4000 MEDIA DRIVER |
2890 | M: Antti Palosaari <[email protected]> | |
2891 | L: [email protected] | |
2892 | W: http://linuxtv.org/ | |
2893 | W: http://palosaari.fi/linux/ | |
2894 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2895 | T: git git://linuxtv.org/anttip/media_tree.git | |
2896 | S: Maintained | |
2897 | F: drivers/media/tuners/e4000* | |
2898 | ||
1da177e4 | 2899 | EATA-DMA SCSI DRIVER |
8b58be88 | 2900 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2901 | L: [email protected] |
2902 | L: [email protected] | |
1da177e4 | 2903 | S: Maintained |
679655da | 2904 | F: drivers/scsi/eata* |
1da177e4 LT |
2905 | |
2906 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2907 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2908 | L: [email protected] |
2909 | S: Maintained | |
679655da | 2910 | F: drivers/scsi/eata.c |
1da177e4 LT |
2911 | |
2912 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2913 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2914 | L: [email protected] |
2915 | L: [email protected] | |
1da177e4 | 2916 | S: Maintained |
679655da | 2917 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2918 | |
2919 | EBTABLES | |
8b58be88 | 2920 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 2921 | L: [email protected] |
1da177e4 LT |
2922 | W: http://ebtables.sourceforge.net/ |
2923 | S: Maintained | |
679655da | 2924 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2925 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2926 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2927 | |
91952bc0 AP |
2928 | EC100 MEDIA DRIVER |
2929 | M: Antti Palosaari <[email protected]> | |
2930 | L: [email protected] | |
2931 | W: http://linuxtv.org/ | |
2932 | W: http://palosaari.fi/linux/ | |
2933 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2934 | T: git git://linuxtv.org/anttip/media_tree.git | |
2935 | S: Maintained | |
2936 | F: drivers/media/dvb-frontends/ec100* | |
2937 | ||
237fead6 | 2938 | ECRYPT FILE SYSTEM |
0de9adf2 | 2939 | M: Tyler Hicks <[email protected]> |
a058bfbb | 2940 | L: [email protected] |
24a923e4 | 2941 | W: http://ecryptfs.org |
6dc7516e | 2942 | W: https://launchpad.net/ecryptfs |
237fead6 | 2943 | S: Supported |
679655da JP |
2944 | F: Documentation/filesystems/ecryptfs.txt |
2945 | F: fs/ecryptfs/ | |
237fead6 | 2946 | |
da9bb1d2 | 2947 | EDAC-CORE |
8b58be88 | 2948 | M: Doug Thompson <[email protected]> |
91445c72 | 2949 | L: [email protected] |
0e438e3f | 2950 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2951 | S: Supported |
679655da | 2952 | F: Documentation/edac.txt |
91445c72 | 2953 | F: drivers/edac/ |
679655da | 2954 | F: include/linux/edac.h |
0e438e3f | 2955 | |
c476c23b | 2956 | EDAC-AMD64 |
8b58be88 | 2957 | M: Doug Thompson <[email protected]> |
487ba8e8 | 2958 | M: Borislav Petkov <[email protected]> |
91445c72 | 2959 | L: [email protected] |
c476c23b | 2960 | W: bluesmoke.sourceforge.net |
487ba8e8 | 2961 | S: Maintained |
c476c23b BP |
2962 | F: drivers/edac/amd64_edac* |
2963 | ||
f65aad41 RB |
2964 | EDAC-CAVIUM |
2965 | M: Ralf Baechle <[email protected]> | |
2966 | M: David Daney <[email protected]> | |
2967 | L: [email protected] | |
2968 | L: [email protected] | |
2969 | W: bluesmoke.sourceforge.net | |
2970 | S: Supported | |
2971 | F: drivers/edac/octeon_edac* | |
2972 | ||
0e438e3f | 2973 | EDAC-E752X |
8b58be88 JP |
2974 | M: Mark Gross <[email protected]> |
2975 | M: Doug Thompson <[email protected]> | |
91445c72 | 2976 | L: [email protected] |
0e438e3f DP |
2977 | W: bluesmoke.sourceforge.net |
2978 | S: Maintained | |
679655da | 2979 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2980 | |
2981 | EDAC-E7XXX | |
8b58be88 | 2982 | M: Doug Thompson <[email protected]> |
91445c72 | 2983 | L: [email protected] |
0e438e3f DP |
2984 | W: bluesmoke.sourceforge.net |
2985 | S: Maintained | |
679655da | 2986 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2987 | |
77c5f5d2 | 2988 | EDAC-GHES |
1b2c14b4 | 2989 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
2990 | L: [email protected] |
2991 | W: bluesmoke.sourceforge.net | |
2992 | S: Maintained | |
2993 | F: drivers/edac/ghes-edac.c | |
2994 | ||
6bc78404 | 2995 | EDAC-I82443BXGX |
8b58be88 | 2996 | M: Tim Small <[email protected]> |
91445c72 | 2997 | L: [email protected] |
6bc78404 DT |
2998 | W: bluesmoke.sourceforge.net |
2999 | S: Maintained | |
679655da | 3000 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3001 | |
3002 | EDAC-I3000 | |
8b58be88 | 3003 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 3004 | L: [email protected] |
6bc78404 DT |
3005 | W: bluesmoke.sourceforge.net |
3006 | S: Maintained | |
679655da | 3007 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3008 | |
3009 | EDAC-I5000 | |
8b58be88 | 3010 | M: Doug Thompson <[email protected]> |
91445c72 | 3011 | L: [email protected] |
ba9a5918 DT |
3012 | W: bluesmoke.sourceforge.net |
3013 | S: Maintained | |
679655da | 3014 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3015 | |
44c12cb2 | 3016 | EDAC-I5400 |
1b2c14b4 | 3017 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3018 | L: [email protected] |
44c12cb2 MCC |
3019 | W: bluesmoke.sourceforge.net |
3020 | S: Maintained | |
679655da | 3021 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3022 | |
3c9c92b6 | 3023 | EDAC-I7300 |
1b2c14b4 | 3024 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3025 | L: [email protected] |
3026 | W: bluesmoke.sourceforge.net | |
3027 | S: Maintained | |
3028 | F: drivers/edac/i7300_edac.c | |
3029 | ||
67c89316 | 3030 | EDAC-I7CORE |
1b2c14b4 | 3031 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3032 | L: [email protected] |
3033 | W: bluesmoke.sourceforge.net | |
3034 | S: Maintained | |
70aff0ce | 3035 | F: drivers/edac/i7core_edac.c |
67c89316 | 3036 | |
ba9a5918 | 3037 | EDAC-I82975X |
8b58be88 | 3038 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3039 | M: "Arvind R." <[email protected]> |
91445c72 | 3040 | L: [email protected] |
ba9a5918 DT |
3041 | W: bluesmoke.sourceforge.net |
3042 | S: Maintained | |
679655da | 3043 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
3044 | |
3045 | EDAC-PASEMI | |
8b58be88 | 3046 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3047 | L: [email protected] |
6bc78404 DT |
3048 | W: bluesmoke.sourceforge.net |
3049 | S: Maintained | |
679655da | 3050 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3051 | |
0e438e3f | 3052 | EDAC-R82600 |
8b58be88 | 3053 | M: Tim Small <[email protected]> |
91445c72 | 3054 | L: [email protected] |
0e438e3f DP |
3055 | W: bluesmoke.sourceforge.net |
3056 | S: Maintained | |
679655da | 3057 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3058 | |
4d096ca7 | 3059 | EDAC-SBRIDGE |
1b2c14b4 | 3060 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3061 | L: [email protected] |
3062 | W: bluesmoke.sourceforge.net | |
3063 | S: Maintained | |
3064 | F: drivers/edac/sb_edac.c | |
3065 | ||
af39917d CL |
3066 | EDIROL UA-101/UA-1000 DRIVER |
3067 | M: Clemens Ladisch <[email protected]> | |
3068 | L: [email protected] (moderated for non-subscribers) | |
3069 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3070 | S: Maintained | |
3071 | F: sound/usb/misc/ua101.c | |
3072 | ||
1f7df953 MF |
3073 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3074 | M: Matt Fleming <[email protected]> | |
3075 | L: [email protected] | |
78bef24e | 3076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3077 | S: Maintained |
3078 | F: Documentation/x86/efi-stub.txt | |
3079 | F: arch/ia64/kernel/efi.c | |
3080 | F: arch/x86/boot/compressed/eboot.[ch] | |
3081 | F: arch/x86/include/asm/efi.h | |
3082 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3083 | F: drivers/firmware/efi/* |
1f7df953 MF |
3084 | F: include/linux/efi*.h |
3085 | ||
d68772b7 MF |
3086 | EFI VARIABLE FILESYSTEM |
3087 | M: Matthew Garrett <[email protected]> | |
3088 | M: Jeremy Kerr <[email protected]> | |
3089 | M: Matt Fleming <[email protected]> | |
3090 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3091 | L: [email protected] | |
3092 | S: Maintained | |
3093 | F: fs/efivarfs/ | |
3094 | ||
85a00d9b PJ |
3095 | EFIFB FRAMEBUFFER DRIVER |
3096 | L: [email protected] | |
3097 | M: Peter Jones <[email protected]> | |
3098 | S: Maintained | |
3099 | F: drivers/video/efifb.c | |
3100 | ||
0bee8d28 JT |
3101 | EFS FILESYSTEM |
3102 | W: http://aeschi.ch.eu.org/efs/ | |
3103 | S: Orphan | |
679655da | 3104 | F: fs/efs/ |
0bee8d28 | 3105 | |
4480f15b | 3106 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3107 | M: Hoang-Nam Nguyen <[email protected]> |
3108 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3109 | L: [email protected] |
fab97220 | 3110 | S: Supported |
679655da | 3111 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3112 | |
aa8a9e25 | 3113 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3114 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3115 | L: [email protected] |
3116 | S: Maintained | |
9aa32835 | 3117 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3118 | |
f0319efe | 3119 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3120 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3121 | L: [email protected] |
3122 | W: http://linuxtv.org | |
3123 | T: git git://linuxtv.org/media_tree.git | |
3124 | S: Maintained | |
3125 | F: drivers/media/usb/em28xx/ | |
3126 | ||
3e3a7d66 | 3127 | EMBEDDED LINUX |
8b58be88 JP |
3128 | M: Paul Gortmaker <[email protected]> |
3129 | M: Matt Mackall <[email protected]> | |
3130 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3131 | L: [email protected] |
3132 | S: Maintained | |
3133 | ||
3a1c1d44 | 3134 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3135 | M: James Smart <[email protected]> |
ce00f85c JC |
3136 | L: [email protected] |
3137 | W: http://sourceforge.net/projects/lpfcxxxx | |
3138 | S: Supported | |
679655da | 3139 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3140 | |
5f5bac82 | 3141 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3142 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3143 | S: Maintained |
3144 | F: drivers/misc/cb710/ | |
3145 | F: drivers/mmc/host/cb710-mmc.* | |
3146 | F: include/linux/cb710.h | |
3147 | ||
931e39a1 ML |
3148 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3149 | M: Maxim Levitsky <[email protected]> | |
3150 | S: Maintained | |
2a837449 | 3151 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3152 | |
ec207dcc GS |
3153 | ENHANCED ERROR HANDLING (EEH) |
3154 | M: Gavin Shan <[email protected]> | |
3155 | L: [email protected] | |
3156 | S: Supported | |
3157 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3158 | F: arch/powerpc/kernel/eeh*.c | |
3159 | ||
d5ca9006 | 3160 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3161 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3162 | S: Maintained |
084bad91 | 3163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3164 | F: drivers/video/s1d13xxxfb.c |
3165 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3166 | |
1da177e4 | 3167 | ETHERNET BRIDGE |
adbbf69d | 3168 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3169 | L: [email protected] |
4c325313 | 3170 | L: [email protected] |
c996d8b9 | 3171 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3172 | S: Maintained |
679655da JP |
3173 | F: include/linux/netfilter_bridge/ |
3174 | F: net/bridge/ | |
1da177e4 | 3175 | |
1da177e4 | 3176 | EXT2 FILE SYSTEM |
01971952 | 3177 | M: Jan Kara <[email protected]> |
72be2ccf | 3178 | L: [email protected] |
1da177e4 | 3179 | S: Maintained |
679655da JP |
3180 | F: Documentation/filesystems/ext2.txt |
3181 | F: fs/ext2/ | |
3182 | F: include/linux/ext2* | |
1da177e4 LT |
3183 | |
3184 | EXT3 FILE SYSTEM | |
01971952 | 3185 | M: Jan Kara <[email protected]> |
8b58be88 | 3186 | M: Andrew Morton <[email protected]> |
3c373a5f | 3187 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3188 | L: [email protected] |
3189 | S: Maintained | |
679655da JP |
3190 | F: Documentation/filesystems/ext3.txt |
3191 | F: fs/ext3/ | |
72be2ccf EM |
3192 | |
3193 | EXT4 FILE SYSTEM | |
8b58be88 | 3194 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3195 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3196 | L: [email protected] |
08a225f1 | 3197 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3198 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3199 | S: Maintained |
679655da JP |
3200 | F: Documentation/filesystems/ext4.txt |
3201 | F: fs/ext4/ | |
1da177e4 | 3202 | |
c5532b09 MZ |
3203 | Extended Verification Module (EVM) |
3204 | M: Mimi Zohar <[email protected]> | |
3205 | S: Supported | |
3206 | F: security/integrity/evm/ | |
3207 | ||
df6b3cfe MH |
3208 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3209 | M: MyungJoo Ham <[email protected]> | |
3210 | M: Chanwoo Choi <[email protected]> | |
3211 | L: [email protected] | |
3212 | S: Maintained | |
3213 | F: drivers/extcon/ | |
3214 | F: Documentation/extcon/ | |
3215 | ||
0a79951a JH |
3216 | EXYNOS DP DRIVER |
3217 | M: Jingoo Han <[email protected]> | |
3218 | L: [email protected] | |
3219 | S: Maintained | |
3220 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3221 | F: include/video/exynos_dp* |
0a79951a | 3222 | |
33ad3912 DL |
3223 | EXYNOS MIPI DISPLAY DRIVERS |
3224 | M: Inki Dae <[email protected]> | |
3225 | M: Donghwa Lee <[email protected]> | |
3226 | M: Kyungmin Park <[email protected]> | |
3227 | L: [email protected] | |
3228 | S: Maintained | |
3229 | F: drivers/video/exynos/exynos_mipi* | |
3230 | F: include/video/exynos_mipi* | |
3231 | ||
e53004e2 | 3232 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3233 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3234 | L: [email protected] |
3235 | S: Maintained | |
679655da JP |
3236 | F: Documentation/hwmon/f71805f |
3237 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3238 | |
eea977ed MB |
3239 | FC0011 TUNER DRIVER |
3240 | M: Michael Buesch <[email protected]> | |
3241 | L: [email protected] | |
3242 | S: Maintained | |
ccae7af2 MCC |
3243 | F: drivers/media/tuners/fc0011.h |
3244 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3245 | |
91952bc0 AP |
3246 | FC2580 MEDIA DRIVER |
3247 | M: Antti Palosaari <[email protected]> | |
3248 | L: [email protected] | |
3249 | W: http://linuxtv.org/ | |
3250 | W: http://palosaari.fi/linux/ | |
3251 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3252 | T: git git://linuxtv.org/anttip/media_tree.git | |
3253 | S: Maintained | |
3254 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3255 | |
88b2dbdb EP |
3256 | FANOTIFY |
3257 | M: Eric Paris <[email protected]> | |
3258 | S: Maintained | |
3259 | F: fs/notify/fanotify/ | |
3260 | F: include/linux/fanotify.h | |
c117ab84 | 3261 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3262 | |
1da177e4 | 3263 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3264 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3265 | W: http://www.farsite.co.uk/ |
3266 | S: Supported | |
679655da | 3267 | F: drivers/net/wan/farsync.* |
1da177e4 | 3268 | |
c5408b88 | 3269 | FAULT INJECTION SUPPORT |
8b58be88 | 3270 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3271 | S: Supported |
679655da JP |
3272 | F: Documentation/fault-injection/ |
3273 | F: lib/fault-inject.c | |
c5408b88 | 3274 | |
cae727db RL |
3275 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3276 | M: Robert Love <[email protected]> | |
f4aaea6d | 3277 | L: [email protected] |
cae727db RL |
3278 | W: www.Open-FCoE.org |
3279 | S: Supported | |
3280 | F: drivers/scsi/libfc/ | |
3281 | F: drivers/scsi/fcoe/ | |
3282 | F: include/scsi/fc/ | |
3283 | F: include/scsi/libfc.h | |
3284 | F: include/scsi/libfcoe.h | |
c117ab84 | 3285 | F: include/uapi/scsi/fc/ |
cae727db | 3286 | |
e2d1d6c0 | 3287 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3288 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3289 | L: [email protected] |
1da177e4 | 3290 | S: Maintained |
679655da JP |
3291 | F: include/linux/fcntl.h |
3292 | F: include/linux/fs.h | |
c117ab84 CEB |
3293 | F: include/uapi/linux/fcntl.h |
3294 | F: include/uapi/linux/fs.h | |
679655da JP |
3295 | F: fs/fcntl.c |
3296 | F: fs/locks.c | |
1da177e4 | 3297 | |
e2d1d6c0 | 3298 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3299 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3300 | L: [email protected] |
173acc7c | 3301 | S: Maintained |
679655da | 3302 | F: fs/* |
173acc7c | 3303 | |
b26e0ed4 | 3304 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3305 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3306 | L: [email protected] |
3307 | S: Maintained | |
d5ca6918 JP |
3308 | F: drivers/hwmon/f75375s.c |
3309 | F: include/linux/f75375s.h | |
b26e0ed4 | 3310 | |
a331b0c3 CL |
3311 | FIREWIRE AUDIO DRIVERS |
3312 | M: Clemens Ladisch <[email protected]> | |
3313 | L: [email protected] (moderated for non-subscribers) | |
3314 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3315 | S: Maintained | |
3316 | F: sound/firewire/ | |
3317 | ||
eb86ec51 SR |
3318 | FIREWIRE MEDIA DRIVERS (firedtv) |
3319 | M: Stefan Richter <[email protected]> | |
3320 | L: [email protected] | |
3321 | L: [email protected] | |
3322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3323 | S: Maintained | |
3324 | F: drivers/media/firewire/ | |
3325 | ||
a511ce33 CB |
3326 | FIREWIRE SBP-2 TARGET |
3327 | M: Chris Boot <[email protected]> | |
3328 | L: [email protected] | |
3329 | L: [email protected] | |
3330 | L: [email protected] | |
3331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3332 | S: Maintained | |
3333 | F: drivers/target/sbp/ | |
3334 | ||
7d2c86b5 | 3335 | FIREWIRE SUBSYSTEM |
8b58be88 | 3336 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3337 | L: [email protected] |
958a29cb | 3338 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3340 | S: Maintained |
679655da | 3341 | F: drivers/firewire/ |
8f06ce3b SR |
3342 | F: include/linux/firewire.h |
3343 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3344 | F: tools/firewire/ |
e2d1d6c0 RD |
3345 | |
3346 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3347 | M: Ming Lei <[email protected]> |
3348 | L: [email protected] | |
3349 | S: Maintained | |
679655da JP |
3350 | F: Documentation/firmware_class/ |
3351 | F: drivers/base/firmware*.c | |
3352 | F: include/linux/firmware.h | |
e2d1d6c0 | 3353 | |
f730e3dc | 3354 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3355 | M: Joshua Morris <[email protected]> |
3356 | M: Philip Kelleher <[email protected]> | |
3357 | S: Maintained | |
3358 | F: drivers/block/rsxx/ | |
3359 | ||
8206f664 JK |
3360 | FLOPPY DRIVER |
3361 | M: Jiri Kosina <[email protected]> | |
3362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3363 | S: Odd fixes | |
3364 | F: drivers/block/floppy.c | |
3365 | ||
9c9f32ed AR |
3366 | FMC SUBSYSTEM |
3367 | M: Alessandro Rubini <[email protected]> | |
3368 | W: http://www.ohwr.org/projects/fmc-bus | |
3369 | S: Supported | |
3370 | F: drivers/fmc/ | |
3371 | F: include/linux/fmc*.h | |
3372 | F: include/linux/ipmi-fru.h | |
3373 | K: fmc_d.*register | |
3374 | ||
e2d1d6c0 | 3375 | FPU EMULATOR |
8b58be88 | 3376 | M: Bill Metzenthen <[email protected]> |
e769980f | 3377 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3378 | S: Maintained |
679655da | 3379 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3380 | |
3381 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3382 | L: [email protected] |
c173bfac | 3383 | S: Orphan |
679655da JP |
3384 | F: drivers/net/wan/dlci.c |
3385 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3386 | |
3387 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3388 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3389 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3390 | L: [email protected] |
e2d1d6c0 | 3391 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3392 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3393 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3394 | S: Maintained |
679655da | 3395 | F: Documentation/fb/ |
d958c62c | 3396 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3397 | F: drivers/video/ |
3398 | F: include/video/ | |
679655da | 3399 | F: include/linux/fb.h |
c117ab84 CEB |
3400 | F: include/uapi/video/ |
3401 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3402 | |
a57c188e | 3403 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3404 | M: Timur Tabi <[email protected]> |
a57c188e | 3405 | L: [email protected] |
c4ef9bc4 | 3406 | S: Maintained |
a57c188e TT |
3407 | F: drivers/video/fsl-diu-fb.* |
3408 | ||
e2d1d6c0 | 3409 | FREESCALE DMA DRIVER |
8b58be88 JP |
3410 | M: Li Yang <[email protected]> |
3411 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3412 | L: [email protected] |
e2d1d6c0 | 3413 | S: Maintained |
679655da | 3414 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3415 | |
3416 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3417 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3418 | L: [email protected] |
846557d3 | 3419 | L: [email protected] |
0d2b405a | 3420 | S: Maintained |
679655da | 3421 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3422 | |
60e8c5ab | 3423 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3424 | M: Sascha Hauer <[email protected]> |
c69f677c | 3425 | L: [email protected] |
efc03ecb | 3426 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3427 | S: Maintained |
bad985a1 | 3428 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3429 | F: drivers/video/imxfb.c |
60e8c5ab | 3430 | |
4689a6b1 | 3431 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3432 | M: Pantelis Antoniou <[email protected]> |
3433 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3434 | L: [email protected] |
4689a6b1 PA |
3435 | L: [email protected] |
3436 | S: Maintained | |
ec21e2ec | 3437 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3438 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3439 | |
d9e9d82c | 3440 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3441 | L: [email protected] |
c4ef9bc4 | 3442 | S: Orphan |
679655da JP |
3443 | F: arch/powerpc/sysdev/qe_lib/ |
3444 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3445 | |
b55ef929 | 3446 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3447 | M: Li Yang <[email protected]> |
6372594a | 3448 | L: [email protected] |
a4724ed6 | 3449 | L: [email protected] |
a7205b30 | 3450 | S: Maintained |
5429c731 | 3451 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3452 | |
beaf53bf | 3453 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3454 | M: Li Yang <[email protected]> |
beaf53bf | 3455 | L: [email protected] |
a4724ed6 | 3456 | L: [email protected] |
beaf53bf | 3457 | S: Maintained |
ec21e2ec | 3458 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3459 | |
d9e9d82c | 3460 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3461 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3462 | L: [email protected] |
c4ef9bc4 | 3463 | S: Maintained |
df621252 | 3464 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3465 | |
3466 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3467 | M: Timur Tabi <[email protected]> |
93711660 | 3468 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3469 | L: [email protected] |
c4ef9bc4 | 3470 | S: Maintained |
69aefcea JP |
3471 | F: sound/soc/fsl/fsl* |
3472 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3473 | |
1da177e4 | 3474 | FREEVXFS FILESYSTEM |
8b58be88 | 3475 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3476 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3477 | S: Maintained | |
679655da | 3478 | F: fs/freevxfs/ |
1da177e4 | 3479 | |
71038f52 | 3480 | FREEZER |
8b58be88 JP |
3481 | M: Pavel Machek <[email protected]> |
3482 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3483 | L: [email protected] |
71038f52 | 3484 | S: Supported |
679655da JP |
3485 | F: Documentation/power/freezing-of-tasks.txt |
3486 | F: include/linux/freezer.h | |
3487 | F: kernel/freezer.c | |
71038f52 | 3488 | |
839a1f79 KRW |
3489 | FRONTSWAP API |
3490 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3491 | L: [email protected] | |
3492 | S: Maintained | |
3493 | F: mm/frontswap.c | |
3494 | F: include/linux/frontswap.h | |
3495 | ||
a5432f5a | 3496 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3497 | M: David Howells <[email protected]> |
a5432f5a DH |
3498 | L: [email protected] |
3499 | S: Supported | |
3500 | F: Documentation/filesystems/caching/ | |
3501 | F: fs/fscache/ | |
3502 | F: include/linux/fscache*.h | |
3503 | ||
f58ad8f5 JK |
3504 | F2FS FILE SYSTEM |
3505 | M: Jaegeuk Kim <[email protected]> | |
3506 | L: [email protected] | |
3507 | W: http://en.wikipedia.org/wiki/F2FS | |
3508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3509 | S: Maintained | |
3510 | F: Documentation/filesystems/f2fs.txt | |
3511 | F: fs/f2fs/ | |
3512 | F: include/linux/f2fs_fs.h | |
3513 | ||
5ab7ffea | 3514 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3515 | M: David Howells <[email protected]> |
1da177e4 | 3516 | S: Maintained |
679655da | 3517 | F: arch/frv/ |
1da177e4 | 3518 | |
20b93734 | 3519 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3520 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3521 | L: [email protected] |
20b93734 | 3522 | S: Maintained |
679655da | 3523 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3524 | |
4da621b6 HK |
3525 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3526 | M: Kyungmin Park <[email protected]> | |
3527 | M: Heungjun Kim <[email protected]> | |
3528 | L: [email protected] | |
3529 | S: Maintained | |
90d72ac6 | 3530 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3531 | F: include/media/m5mols.h |
3532 | ||
2d24c490 RG |
3533 | FUJITSU TABLET EXTRAS |
3534 | M: Robert Gerlach <[email protected]> | |
3535 | L: [email protected] | |
3536 | S: Maintained | |
3537 | F: drivers/platform/x86/fujitsu-tablet.c | |
3538 | ||
04578f17 | 3539 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3540 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3541 | L: [email protected] |
3542 | W: http://fuse.sourceforge.net/ | |
3543 | S: Maintained | |
679655da | 3544 | F: fs/fuse/ |
c117ab84 | 3545 | F: include/uapi/linux/fuse.h |
04578f17 | 3546 | |
1da177e4 | 3547 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3548 | M: Rik Faith <[email protected]> |
1da177e4 | 3549 | L: [email protected] |
baaea1dc | 3550 | S: Odd Fixes (e.g., new signatures) |
679655da | 3551 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3552 | |
3553 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3554 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3555 | L: [email protected] |
3556 | W: http://www.icp-vortex.com/ | |
3557 | S: Supported | |
679655da | 3558 | F: drivers/scsi/gdt* |
1da177e4 | 3559 | |
3169a1c7 HV |
3560 | GEMTEK FM RADIO RECEIVER DRIVER |
3561 | M: Hans Verkuil <[email protected]> | |
3562 | L: [email protected] | |
3563 | T: git git://linuxtv.org/media_tree.git | |
3564 | W: http://linuxtv.org | |
3565 | S: Maintained | |
3566 | F: drivers/media/radio/radio-gemtek* | |
3567 | ||
1c23af90 | 3568 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3569 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3570 | S: Supported |
679655da JP |
3571 | F: drivers/i2c/busses/i2c-gpio.c |
3572 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3573 | |
92ed1a76 PK |
3574 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3575 | M: Peter Korsgaard <[email protected]> | |
3576 | L: [email protected] | |
3577 | S: Supported | |
e7065e20 JD |
3578 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3579 | F: include/linux/i2c-mux-gpio.h | |
3580 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3581 | |
9251ce95 | 3582 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3583 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3584 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3585 | S: Maintained | |
679655da JP |
3586 | F: drivers/net/wan/c101.c |
3587 | F: drivers/net/wan/hd6457* | |
3588 | F: drivers/net/wan/hdlc* | |
3589 | F: drivers/net/wan/n2.c | |
3590 | F: drivers/net/wan/pc300too.c | |
3591 | F: drivers/net/wan/pci200syn.c | |
3592 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3593 | |
1527aab6 | 3594 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3595 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3596 | L: [email protected] |
3597 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3598 | S: Maintained | |
3599 | F: include/asm-generic | |
c117ab84 | 3600 | F: include/uapi/asm-generic |
1527aab6 | 3601 | |
ccb86a69 | 3602 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3603 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3604 | L: [email protected] |
ccb86a69 MT |
3605 | S: Supported |
3606 | F: drivers/uio/uio_pci_generic.c | |
3607 | ||
5be7b50f | 3608 | GFS2 FILE SYSTEM |
8b58be88 | 3609 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3610 | L: [email protected] |
5be7b50f | 3611 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3614 | S: Supported |
679655da JP |
3615 | F: Documentation/filesystems/gfs2*.txt |
3616 | F: fs/gfs2/ | |
c117ab84 | 3617 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3618 | |
0a34eb8f | 3619 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3620 | M: Hansjoerg Lipp <[email protected]> |
3621 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3622 | L: [email protected] |
3623 | W: http://gigaset307x.sourceforge.net/ | |
3624 | S: Maintained | |
679655da JP |
3625 | F: Documentation/isdn/README.gigaset |
3626 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3627 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3628 | |
a0dc00b4 | 3629 | GPIO SUBSYSTEM |
e4651a9f | 3630 | M: Linus Walleij <[email protected]> |
a0dc00b4 | 3631 | S: Maintained |
d15b7179 | 3632 | L: [email protected] |
98909cf0 | 3633 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3634 | F: drivers/gpio/ |
3635 | F: include/linux/gpio* | |
9b692346 | 3636 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3637 | |
71a6d0af HW |
3638 | GRE DEMULTIPLEXER DRIVER |
3639 | M: Dmitry Kozlov <[email protected]> | |
3640 | L: [email protected] | |
3641 | S: Maintained | |
3642 | F: net/ipv4/gre.c | |
3643 | F: include/net/gre.h | |
3644 | ||
d4c41139 KG |
3645 | GRETH 10/100/1G Ethernet MAC device driver |
3646 | M: Kristoffer Glembo <[email protected]> | |
3647 | L: [email protected] | |
3648 | S: Maintained | |
a31a96ad | 3649 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3650 | |
e8deeae2 | 3651 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3652 | M: Frank Zago <[email protected]> |
661263b5 | 3653 | L: [email protected] |
275ffde4 | 3654 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3655 | S: Maintained |
0c0d06ca | 3656 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3657 | |
4b3fa3c4 OL |
3658 | GSPCA GL860 SUBDRIVER |
3659 | M: Olivier Lorin <[email protected]> | |
3660 | L: [email protected] | |
275ffde4 | 3661 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3662 | S: Maintained |
0c0d06ca | 3663 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3664 | |
e8deeae2 | 3665 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3666 | M: Erik Andren <[email protected]> |
661263b5 | 3667 | L: [email protected] |
275ffde4 | 3668 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3669 | S: Maintained |
0c0d06ca | 3670 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3671 | |
3672 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3673 | M: Hans de Goede <[email protected]> |
661263b5 | 3674 | L: [email protected] |
275ffde4 | 3675 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3676 | S: Maintained |
0c0d06ca | 3677 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3678 | |
261982f1 | 3679 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3680 | M: Brian Johnson <[email protected]> |
261982f1 | 3681 | L: [email protected] |
275ffde4 | 3682 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3683 | S: Maintained |
0c0d06ca | 3684 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3685 | |
e8deeae2 | 3686 | GSPCA T613 SUBDRIVER |
8b58be88 | 3687 | M: Leandro Costantino <[email protected]> |
661263b5 | 3688 | L: [email protected] |
275ffde4 | 3689 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3690 | S: Maintained |
0c0d06ca | 3691 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3692 | |
3693 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3694 | M: Hans de Goede <[email protected]> |
661263b5 | 3695 | L: [email protected] |
275ffde4 | 3696 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3697 | S: Maintained |
0c0d06ca | 3698 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3699 | |
aa3c598b EG |
3700 | STK1160 USB VIDEO CAPTURE DRIVER |
3701 | M: Ezequiel Garcia <[email protected]> | |
3702 | L: [email protected] | |
275ffde4 | 3703 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3704 | S: Maintained |
3705 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3706 | |
71a6d0af HW |
3707 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3708 | M: Frank Seidel <[email protected]> | |
3709 | L: [email protected] | |
3710 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3711 | S: Maintained | |
3712 | F: drivers/platform/x86/hdaps.c | |
3713 | ||
48fc9e26 HV |
3714 | HDPVR USB VIDEO ENCODER DRIVER |
3715 | M: Hans Verkuil <[email protected]> | |
3716 | L: [email protected] | |
3717 | T: git git://linuxtv.org/media_tree.git | |
3718 | W: http://linuxtv.org | |
3719 | S: Odd Fixes | |
3720 | F: drivers/media/usb/hdpvr | |
3721 | ||
71a6d0af HW |
3722 | HWPOISON MEMORY FAILURE HANDLING |
3723 | M: Andi Kleen <[email protected]> | |
3724 | L: [email protected] | |
3725 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3726 | S: Maintained | |
3727 | F: mm/memory-failure.c | |
3728 | F: mm/hwpoison-inject.c | |
3729 | ||
3730 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3731 | L: [email protected] | |
3732 | S: Odd Fixes | |
3733 | F: drivers/tty/hvc/ | |
3734 | ||
5b543965 | 3735 | HARDWARE MONITORING |
9e012c1a | 3736 | M: Jean Delvare <[email protected]> |
ca462085 | 3737 | M: Guenter Roeck <[email protected]> |
5b543965 | 3738 | L: [email protected] |
595142e0 | 3739 | W: http://www.lm-sensors.org/ |
9e012c1a | 3740 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3741 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3742 | S: Maintained |
047f4ec2 | 3743 | F: Documentation/hwmon/ |
679655da | 3744 | F: drivers/hwmon/ |
047f4ec2 | 3745 | F: include/linux/hwmon*.h |
5b543965 | 3746 | |
844dd05f | 3747 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3748 | M: Matt Mackall <[email protected]> |
3749 | M: Herbert Xu <[email protected]> | |
3750 | S: Odd fixes | |
679655da JP |
3751 | F: Documentation/hw_random.txt |
3752 | F: drivers/char/hw_random/ | |
3753 | F: include/linux/hw_random.h | |
844dd05f | 3754 | |
8b37fcfc OBC |
3755 | HARDWARE SPINLOCK CORE |
3756 | M: Ohad Ben-Cohen <[email protected]> | |
3757 | S: Maintained | |
3758 | F: Documentation/hwspinlock.txt | |
3759 | F: drivers/hwspinlock/hwspinlock_* | |
3760 | F: include/linux/hwspinlock.h | |
3761 | ||
1da177e4 | 3762 | HARMONY SOUND DRIVER |
ac6aecbf | 3763 | L: [email protected] |
1da177e4 | 3764 | S: Maintained |
679655da | 3765 | F: sound/parisc/harmony.* |
1da177e4 | 3766 | |
91952bc0 AP |
3767 | HD29L2 MEDIA DRIVER |
3768 | M: Antti Palosaari <[email protected]> | |
3769 | L: [email protected] | |
3770 | W: http://linuxtv.org/ | |
3771 | W: http://palosaari.fi/linux/ | |
3772 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3773 | T: git git://linuxtv.org/anttip/media_tree.git | |
3774 | S: Maintained | |
3775 | F: drivers/media/dvb-frontends/hd29l2* | |
3776 | ||
e2d1d6c0 | 3777 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3778 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3779 | L: [email protected] |
3780 | S: Maintained | |
679655da JP |
3781 | F: Documentation/blockdev/cpqarray.txt |
3782 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3783 | |
9257aa49 | 3784 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3785 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3786 | L: [email protected] |
3787 | S: Supported | |
3788 | F: Documentation/scsi/hpsa.txt | |
3789 | F: drivers/scsi/hpsa*.[ch] | |
3790 | F: include/linux/cciss*.h | |
c117ab84 | 3791 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3792 | |
e2d1d6c0 | 3793 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3794 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3795 | L: [email protected] |
3796 | S: Supported | |
679655da JP |
3797 | F: Documentation/blockdev/cciss.txt |
3798 | F: drivers/block/cciss* | |
3799 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3800 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3801 | |
1da177e4 | 3802 | HFS FILESYSTEM |
6cf515e1 GU |
3803 | L: [email protected] |
3804 | S: Orphan | |
679655da JP |
3805 | F: Documentation/filesystems/hfs.txt |
3806 | F: fs/hfs/ | |
1da177e4 LT |
3807 | |
3808 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3809 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3810 | L: [email protected] |
3811 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3812 | S: Maintained | |
679655da | 3813 | F: drivers/video/hgafb.c |
1da177e4 | 3814 | |
4480f15b | 3815 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3816 | M: Pavel Machek <[email protected]> |
3817 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3818 | L: [email protected] |
e2d1d6c0 | 3819 | S: Supported |
679655da JP |
3820 | F: arch/x86/power/ |
3821 | F: drivers/base/power/ | |
3822 | F: kernel/power/ | |
3823 | F: include/linux/suspend.h | |
3824 | F: include/linux/freezer.h | |
3825 | F: include/linux/pm.h | |
679655da | 3826 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3827 | |
4ef4caad | 3828 | HID CORE LAYER |
8b58be88 | 3829 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3830 | L: [email protected] |
54e5881d | 3831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3832 | S: Maintained |
679655da JP |
3833 | F: drivers/hid/ |
3834 | F: include/linux/hid* | |
c117ab84 | 3835 | F: include/uapi/linux/hid* |
4ef4caad | 3836 | |
38bed542 | 3837 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3838 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3840 | S: Maintained |
679655da JP |
3841 | F: Documentation/timers/ |
3842 | F: kernel/hrtimer.c | |
88606e80 TG |
3843 | F: kernel/time/clockevents.c |
3844 | F: kernel/time/tick*.* | |
3845 | F: kernel/time/timer_*.c | |
05ed8490 | 3846 | F: include/linux/clockchips.h |
679655da | 3847 | F: include/linux/hrtimer.h |
38bed542 | 3848 | |
1da177e4 | 3849 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3850 | L: [email protected] |
8b64f2a0 | 3851 | S: Orphan |
679655da JP |
3852 | F: drivers/net/hamradio/dmascc.c |
3853 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3854 | |
ede1e6f8 | 3855 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3856 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3857 | W: http://www.highpoint-tech.com |
3858 | S: Supported | |
679655da JP |
3859 | F: Documentation/scsi/hptiop.txt |
3860 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3861 | |
1da177e4 | 3862 | HIPPI |
8b58be88 | 3863 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
3864 | L: [email protected] |
3865 | S: Maintained | |
679655da | 3866 | F: include/linux/hippidevice.h |
c117ab84 | 3867 | F: include/uapi/linux/if_hippi.h |
679655da | 3868 | F: net/802/hippi.c |
ff5a3b50 | 3869 | F: drivers/net/hippi/ |
1da177e4 | 3870 | |
ff1d2767 | 3871 | HOST AP DRIVER |
8b58be88 | 3872 | M: Jouni Malinen <[email protected]> |
85d32e7b | 3873 | L: [email protected] (subscribers-only) |
724c6b35 | 3874 | L: [email protected] |
ff1d2767 JM |
3875 | W: http://hostap.epitest.fi/ |
3876 | S: Maintained | |
679655da | 3877 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3878 | |
dd8cd779 | 3879 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3880 | L: [email protected] |
95c70215 | 3881 | S: Orphan |
679655da | 3882 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3883 | |
e2d1d6c0 | 3884 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3885 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3886 | S: Maintained |
7e25d724 | 3887 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3888 | |
7d2c86b5 | 3889 | HPET: High Precision Event Timers driver |
8b58be88 | 3890 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 3891 | S: Maintained |
679655da JP |
3892 | F: Documentation/timers/hpet.txt |
3893 | F: drivers/char/hpet.c | |
3894 | F: include/linux/hpet.h | |
c117ab84 | 3895 | F: include/uapi/linux/hpet.h |
b9b0332f | 3896 | |
e07b5d79 | 3897 | HPET: x86 |
9c5fb19a | 3898 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 3899 | S: Maintained |
679655da JP |
3900 | F: arch/x86/kernel/hpet.c |
3901 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3902 | |
1da177e4 | 3903 | HPFS FILESYSTEM |
8b58be88 | 3904 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
3905 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3906 | S: Maintained | |
679655da | 3907 | F: fs/hpfs/ |
1da177e4 | 3908 | |
7d2c86b5 | 3909 | HSO 3G MODEM DRIVER |
8b58be88 | 3910 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
3911 | W: http://www.pharscape.org |
3912 | S: Maintained | |
679655da | 3913 | F: drivers/net/usb/hso.c |
11cd29b0 | 3914 | |
5a18c343 | 3915 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3916 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
3917 | L: [email protected] |
3918 | S: Maintained | |
679655da | 3919 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3920 | |
1da177e4 | 3921 | HUGETLB FILESYSTEM |
6d49e352 | 3922 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 3923 | S: Maintained |
679655da | 3924 | F: fs/hugetlbfs/ |
1da177e4 | 3925 | |
05183189 S |
3926 | Hyper-V CORE AND DRIVERS |
3927 | M: K. Y. Srinivasan <[email protected]> | |
3928 | M: Haiyang Zhang <[email protected]> | |
3929 | L: [email protected] | |
3930 | S: Maintained | |
a4162747 HZ |
3931 | F: arch/x86/include/asm/mshyperv.h |
3932 | F: arch/x86/include/uapi/asm/hyperv.h | |
3933 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 3934 | F: drivers/hid/hid-hyperv.c |
a4162747 | 3935 | F: drivers/hv/ |
05183189 | 3936 | F: drivers/net/hyperv/ |
a4162747 HZ |
3937 | F: drivers/scsi/storvsc_drv.c |
3938 | F: drivers/video/hyperv_fb.c | |
3939 | F: include/linux/hyperv.h | |
3940 | F: tools/hv/ | |
05183189 | 3941 | |
d85c8a6a JD |
3942 | I2C OVER PARALLEL PORT |
3943 | M: Jean Delvare <[email protected]> | |
3944 | L: [email protected] | |
3945 | S: Maintained | |
3946 | F: Documentation/i2c/busses/i2c-parport | |
3947 | F: Documentation/i2c/busses/i2c-parport-light | |
3948 | F: drivers/i2c/busses/i2c-parport.c | |
3949 | F: drivers/i2c/busses/i2c-parport-light.c | |
3950 | ||
3951 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
3952 | M: Jean Delvare <[email protected]> | |
3953 | L: [email protected] | |
3954 | S: Maintained | |
3955 | F: Documentation/i2c/busses/i2c-ali1535 | |
3956 | F: Documentation/i2c/busses/i2c-ali1563 | |
3957 | F: Documentation/i2c/busses/i2c-ali15x3 | |
3958 | F: Documentation/i2c/busses/i2c-amd756 | |
3959 | F: Documentation/i2c/busses/i2c-amd8111 | |
3960 | F: Documentation/i2c/busses/i2c-i801 | |
3961 | F: Documentation/i2c/busses/i2c-nforce2 | |
3962 | F: Documentation/i2c/busses/i2c-piix4 | |
3963 | F: Documentation/i2c/busses/i2c-sis5595 | |
3964 | F: Documentation/i2c/busses/i2c-sis630 | |
3965 | F: Documentation/i2c/busses/i2c-sis96x | |
3966 | F: Documentation/i2c/busses/i2c-via | |
3967 | F: Documentation/i2c/busses/i2c-viapro | |
3968 | F: drivers/i2c/busses/i2c-ali1535.c | |
3969 | F: drivers/i2c/busses/i2c-ali1563.c | |
3970 | F: drivers/i2c/busses/i2c-ali15x3.c | |
3971 | F: drivers/i2c/busses/i2c-amd756.c | |
3972 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
3973 | F: drivers/i2c/busses/i2c-amd8111.c | |
3974 | F: drivers/i2c/busses/i2c-i801.c | |
3975 | F: drivers/i2c/busses/i2c-isch.c | |
3976 | F: drivers/i2c/busses/i2c-nforce2.c | |
3977 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
3978 | F: drivers/i2c/busses/i2c-piix4.c | |
3979 | F: drivers/i2c/busses/i2c-sis5595.c | |
3980 | F: drivers/i2c/busses/i2c-sis630.c | |
3981 | F: drivers/i2c/busses/i2c-sis96x.c | |
3982 | F: drivers/i2c/busses/i2c-via.c | |
3983 | F: drivers/i2c/busses/i2c-viapro.c | |
3984 | ||
cb7f07a4 NH |
3985 | I2C/SMBUS ISMT DRIVER |
3986 | M: Seth Heasley <[email protected]> | |
3987 | M: Neil Horman <[email protected]> | |
3988 | L: [email protected] | |
3989 | F: drivers/i2c/busses/i2c-ismt.c | |
3990 | F: Documentation/i2c/busses/i2c-ismt | |
3991 | ||
6ea884db | 3992 | I2C/SMBUS STUB DRIVER |
94877548 | 3993 | M: Jean Delvare <[email protected]> |
846557d3 | 3994 | L: [email protected] |
6ea884db | 3995 | S: Maintained |
8547a5bc | 3996 | F: drivers/i2c/i2c-stub.c |
6ea884db | 3997 | |
5b543965 | 3998 | I2C SUBSYSTEM |
14d77c4d | 3999 | M: Wolfram Sang <[email protected]> |
846557d3 | 4000 | L: [email protected] |
a01064a9 | 4001 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4002 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4003 | S: Maintained |
679655da JP |
4004 | F: Documentation/i2c/ |
4005 | F: drivers/i2c/ | |
4006 | F: include/linux/i2c.h | |
03b70d62 | 4007 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4008 | F: include/uapi/linux/i2c.h |
4009 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4010 | |
d85c8a6a JD |
4011 | I2C-TAOS-EVM DRIVER |
4012 | M: Jean Delvare <[email protected]> | |
4013 | L: [email protected] | |
4014 | S: Maintained | |
4015 | F: Documentation/i2c/busses/i2c-taos-evm | |
4016 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4017 | ||
e8c76eed | 4018 | I2C-TINY-USB DRIVER |
8b58be88 | 4019 | M: Till Harbaum <[email protected]> |
846557d3 | 4020 | L: [email protected] |
932d1872 | 4021 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4022 | S: Maintained |
679655da | 4023 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4024 | |
1da177e4 | 4025 | i386 BOOT CODE |
8b58be88 | 4026 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4027 | S: Maintained |
679655da | 4028 | F: arch/x86/boot/ |
1da177e4 LT |
4029 | |
4030 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4031 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4032 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4033 | S: Maintained |
4034 | ||
1da177e4 | 4035 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4036 | M: Tony Luck <[email protected]> |
4037 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4038 | L: [email protected] |
6b1c70b1 | 4039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4040 | S: Maintained |
679655da | 4041 | F: arch/ia64/ |
1da177e4 | 4042 | |
956c203c | 4043 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4044 | M: Marcelo Henrique Cerri <[email protected]> |
4045 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4046 | L: [email protected] |
4047 | S: Supported | |
4048 | F: drivers/crypto/nx/ | |
4049 | ||
0e16aafb SJ |
4050 | IBM Power 842 compression accelerator |
4051 | M: Robert Jennings <[email protected]> | |
4052 | S: Supported | |
4053 | F: drivers/crypto/nx/nx-842.c | |
4054 | F: include/linux/nx842.h | |
4055 | ||
1da177e4 | 4056 | IBM Power Linux RAID adapter |
8b58be88 | 4057 | M: Brian King <[email protected]> |
1da177e4 | 4058 | S: Supported |
679655da | 4059 | F: drivers/scsi/ipr.* |
1da177e4 | 4060 | |
9d348af4 SL |
4061 | IBM Power Virtual Ethernet Device Driver |
4062 | M: Santiago Leon <[email protected]> | |
4063 | L: [email protected] | |
4064 | S: Supported | |
9aa32835 | 4065 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4066 | |
4b7652cc RJ |
4067 | IBM Power Virtual SCSI/FC Device Drivers |
4068 | M: Robert Jennings <[email protected]> | |
4069 | L: [email protected] | |
4070 | S: Supported | |
4071 | F: drivers/scsi/ibmvscsi/ | |
4072 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4073 | ||
1da177e4 LT |
4074 | IBM ServeRAID RAID DRIVER |
4075 | P: Jack Hammer | |
8b58be88 | 4076 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4077 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4078 | S: Supported |
679655da | 4079 | F: drivers/scsi/ips.* |
1da177e4 | 4080 | |
6ed9f9c4 PT |
4081 | ICH LPC AND GPIO DRIVER |
4082 | M: Peter Tyser <[email protected]> | |
4083 | S: Maintained | |
4084 | F: drivers/mfd/lpc_ich.c | |
4085 | F: drivers/gpio/gpio-ich.c | |
4086 | ||
1e7106fc | 4087 | IDE SUBSYSTEM |
8b58be88 | 4088 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4089 | L: [email protected] |
8a6e2535 | 4090 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4092 | S: Maintained |
679655da JP |
4093 | F: Documentation/ide/ |
4094 | F: drivers/ide/ | |
4095 | F: include/linux/ide.h | |
1da177e4 | 4096 | |
6cb8c13d IP |
4097 | IDEAPAD LAPTOP EXTRAS DRIVER |
4098 | M: Ike Panhc <[email protected]> | |
4099 | L: [email protected] | |
4100 | W: http://launchpad.net/ideapad-laptop | |
4101 | S: Maintained | |
4102 | F: drivers/platform/x86/ideapad-laptop.c | |
4103 | ||
0f861e8c | 4104 | IDE/ATAPI DRIVERS |
487ba8e8 | 4105 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4106 | L: [email protected] |
c404c199 | 4107 | S: Maintained |
679655da JP |
4108 | F: Documentation/cdrom/ide-cd |
4109 | F: drivers/ide/ide-cd* | |
1da177e4 | 4110 | |
27471fdb | 4111 | IDLE-I7300 |
8b58be88 | 4112 | M: Andy Henroid <[email protected]> |
bf1c138e | 4113 | L: [email protected] |
27471fdb | 4114 | S: Supported |
679655da | 4115 | F: drivers/idle/i7300_idle.c |
27471fdb | 4116 | |
02cf2286 | 4117 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4118 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4119 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4120 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4121 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4123 | S: Maintained |
4124 | F: net/ieee802154/ | |
68653359 | 4125 | F: net/mac802154/ |
251741b1 | 4126 | F: drivers/net/ieee802154/ |
02cf2286 | 4127 | |
40ad4a30 SY |
4128 | IGUANAWORKS USB IR TRANSCEIVER |
4129 | M: Sean Young <[email protected]> | |
4130 | L: [email protected] | |
4131 | S: Maintained | |
4132 | F: drivers/media/rc/iguanair.c | |
4133 | ||
9545f86e AP |
4134 | IIO SUBSYSTEM AND DRIVERS |
4135 | M: Jonathan Cameron <[email protected]> | |
4136 | L: [email protected] | |
4137 | S: Maintained | |
03e7c251 | 4138 | F: drivers/iio/ |
9545f86e AP |
4139 | F: drivers/staging/iio/ |
4140 | ||
65519263 SG |
4141 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4142 | M: Matthieu Castet <[email protected]> | |
4143 | M: Stanislaw Gruszka <[email protected]> | |
4144 | S: Maintained | |
4145 | F: drivers/usb/atm/ueagle-atm.c | |
4146 | ||
e89ab51f GR |
4147 | INA209 HARDWARE MONITOR DRIVER |
4148 | M: Guenter Roeck <[email protected]> | |
4149 | L: [email protected] | |
4150 | S: Maintained | |
4151 | F: Documentation/hwmon/ina209 | |
4152 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4153 | F: drivers/hwmon/ina209.c | |
4154 | ||
4155 | INA2XX HARDWARE MONITOR DRIVER | |
4156 | M: Guenter Roeck <[email protected]> | |
4157 | L: [email protected] | |
4158 | S: Maintained | |
4159 | F: Documentation/hwmon/ina2xx | |
4160 | F: drivers/hwmon/ina2xx.c | |
4161 | F: include/linux/platform_data/ina2xx.h | |
4162 | ||
14dc124f SIG |
4163 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4164 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4165 | M: Jens Taprogge <[email protected]> | |
4166 | M: Greg Kroah-Hartman <[email protected]> | |
4167 | L: [email protected] | |
4168 | W: http://industrypack.sourceforge.net | |
4169 | S: Maintained | |
4170 | F: drivers/ipack/ | |
4171 | ||
aa7168f4 | 4172 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4173 | M: Mimi Zohar <[email protected]> |
8912176c | 4174 | M: Dmitry Kasatkin <[email protected]> |
aa7168f4 | 4175 | S: Supported |
679655da | 4176 | F: security/integrity/ima/ |
aa7168f4 | 4177 | |
1da177e4 | 4178 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4179 | L: [email protected] |
843393d3 | 4180 | S: Orphan |
679655da | 4181 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4182 | |
4183 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4184 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4185 | M: Sean Hefty <[email protected]> |
4186 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4187 | L: [email protected] |
605841f5 | 4188 | W: http://www.openfabrics.org/ |
8a6e2535 | 4189 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4191 | S: Supported |
679655da JP |
4192 | F: Documentation/infiniband/ |
4193 | F: drivers/infiniband/ | |
c117ab84 | 4194 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4195 | |
c9f04f58 | 4196 | INOTIFY |
8b58be88 JP |
4197 | M: John McCutchan <[email protected]> |
4198 | M: Robert Love <[email protected]> | |
4199 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4200 | S: Maintained |
679655da JP |
4201 | F: Documentation/filesystems/inotify.txt |
4202 | F: fs/notify/inotify/ | |
4203 | F: include/linux/inotify.h | |
c117ab84 | 4204 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4205 | |
e2d1d6c0 | 4206 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4207 | M: Dmitry Torokhov <[email protected]> |
4208 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4209 | L: [email protected] |
8a6e2535 | 4210 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4212 | S: Maintained |
679655da | 4213 | F: drivers/input/ |
f4eea7e2 | 4214 | F: include/linux/input.h |
c117ab84 | 4215 | F: include/uapi/linux/input.h |
f4eea7e2 | 4216 | F: include/linux/input/ |
e2d1d6c0 | 4217 | |
3267a87f HR |
4218 | INPUT MULTITOUCH (MT) PROTOCOL |
4219 | M: Henrik Rydberg <[email protected]> | |
4220 | L: [email protected] | |
7f9c2454 | 4221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4222 | S: Maintained |
4223 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4224 | F: drivers/input/input-mt.c |
3267a87f HR |
4225 | K: \b(ABS|SYN)_MT_ |
4226 | ||
4ac13e17 DJ |
4227 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4228 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4229 | M: Lukasz Dorau <[email protected]> |
4230 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4231 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4232 | L: [email protected] |
7106891a DJ |
4233 | T: git git://git.code.sf.net/p/intel-sas/isci |
4234 | S: Supported | |
4ac13e17 | 4235 | F: drivers/scsi/isci/ |
4ac13e17 | 4236 | |
26717172 LB |
4237 | INTEL IDLE DRIVER |
4238 | M: Len Brown <[email protected]> | |
bf1c138e | 4239 | L: [email protected] |
08deed1e | 4240 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4241 | S: Supported |
4242 | F: drivers/idle/intel_idle.c | |
4243 | ||
9eb8ef74 | 4244 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4245 | M: Maik Broemme <[email protected]> |
c69f677c | 4246 | L: [email protected] |
ce00f85c | 4247 | S: Maintained |
679655da JP |
4248 | F: Documentation/fb/intelfb.txt |
4249 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4250 | |
1da177e4 | 4251 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4252 | M: Antonino Daplas <[email protected]> |
c69f677c | 4253 | L: [email protected] |
ce00f85c | 4254 | S: Maintained |
679655da | 4255 | F: drivers/video/i810/ |
1da177e4 | 4256 | |
f4a9bc4c | 4257 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4258 | M: Sujith Thomas <[email protected]> |
d0944853 | 4259 | L: [email protected] |
f4a9bc4c TS |
4260 | W: http://www.lesswatts.org/projects/acpi/ |
4261 | S: Supported | |
679655da | 4262 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4263 | |
1da177e4 | 4264 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4265 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4266 | S: Maintained |
679655da JP |
4267 | F: arch/x86/kernel/microcode_core.c |
4268 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4269 | |
248a9dc3 | 4270 | INTEL I/OAT DMA DRIVER |
1dd8372d DW |
4271 | M: Dan Williams <[email protected]> |
4272 | S: Maintained | |
679655da | 4273 | F: drivers/dma/ioat* |
248a9dc3 | 4274 | |
6c8909b4 | 4275 | INTEL IOMMU (VT-d) |
8b58be88 | 4276 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4277 | L: [email protected] |
54e5881d | 4278 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4279 | S: Supported |
3fb39615 | 4280 | F: drivers/iommu/intel-iommu.c |
679655da | 4281 | F: include/linux/intel-iommu.h |
6c8909b4 | 4282 | |
b3e5f263 | 4283 | INTEL IOP-ADMA DMA DRIVER |
1dd8372d DW |
4284 | M: Dan Williams <[email protected]> |
4285 | S: Odd fixes | |
679655da | 4286 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4287 | |
9251ce95 | 4288 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4289 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4290 | S: Maintained |
679655da JP |
4291 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4292 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4293 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4294 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4295 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4296 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4297 | |
844dd05f | 4298 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4299 | M: Deepak Saxena <[email protected]> |
844dd05f | 4300 | S: Maintained |
679655da | 4301 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4302 | |
0d164401 | 4303 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
4304 | M: Jeff Kirsher <[email protected]> |
4305 | M: Jesse Brandeburg <[email protected]> | |
4306 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4307 | M: Carolyn Wyborny <[email protected]> |
4308 | M: Don Skidmore <[email protected]> | |
4309 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4310 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4311 | M: Alex Duyck <[email protected]> |
8b58be88 | 4312 | M: John Ronciak <[email protected]> |
f6fde11a | 4313 | M: Tushar Dave <[email protected]> |
dcd01faf | 4314 | L: [email protected] |
f6fde11a | 4315 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4316 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4318 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4319 | S: Supported |
0d164401 JK |
4320 | F: Documentation/networking/e100.txt |
4321 | F: Documentation/networking/e1000.txt | |
4322 | F: Documentation/networking/e1000e.txt | |
4323 | F: Documentation/networking/igb.txt | |
4324 | F: Documentation/networking/igbvf.txt | |
4325 | F: Documentation/networking/ixgb.txt | |
4326 | F: Documentation/networking/ixgbe.txt | |
4327 | F: Documentation/networking/ixgbevf.txt | |
dee1ad47 | 4328 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4329 | |
ca907a90 SY |
4330 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4331 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4332 | L: [email protected] |
ca907a90 | 4333 | S: Maintained |
679655da | 4334 | F: Documentation/networking/README.ipw2100 |
679655da | 4335 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4336 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4337 | |
4bd96a7a | 4338 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4339 | M: Richard L Maliszewski <[email protected]> |
4340 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4341 | M: Shane Wang <[email protected]> |
4342 | L: [email protected] | |
4343 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4344 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4345 | S: Supported |
4346 | F: Documentation/intel_txt.txt | |
4347 | F: include/linux/tboot.h | |
4348 | F: arch/x86/kernel/tboot.c | |
4349 | ||
8a70da82 | 4350 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4351 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4352 | M: [email protected] |
4353 | L: [email protected] | |
4354 | S: Supported | |
4355 | W: http://linuxwimax.org | |
679655da JP |
4356 | F: Documentation/wimax/README.i2400m |
4357 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4358 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4359 | |
1c0ce89c SG |
4360 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4361 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4362 | L: [email protected] |
1c0ce89c | 4363 | S: Supported |
efa3144e WYG |
4364 | F: drivers/net/wireless/iwlegacy/ |
4365 | ||
b481de9c | 4366 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4367 | M: Johannes Berg <[email protected]> |
9edc71b7 | 4368 | M: Wey-Yi Guy <[email protected]> |
a0bf797f | 4369 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4370 | L: [email protected] |
b481de9c | 4371 | W: http://intellinuxwireless.org |
b62ff718 | 4372 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4373 | S: Supported |
679655da | 4374 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4375 | |
de8fe023 TW |
4376 | INTEL MANAGEMENT ENGINE (mei) |
4377 | M: Tomas Winkler <[email protected]> | |
4378 | L: [email protected] | |
4379 | S: Supported | |
c117ab84 | 4380 | F: include/uapi/linux/mei.h |
de8fe023 | 4381 | F: drivers/misc/mei/* |
e07950a1 | 4382 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4383 | |
cb109a0e | 4384 | IOC3 ETHERNET DRIVER |
8b58be88 | 4385 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4386 | L: [email protected] |
4387 | S: Maintained | |
8862bf1e | 4388 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4389 | |
cb109a0e | 4390 | IOC3 SERIAL DRIVER |
8b58be88 | 4391 | M: Pat Gefre <[email protected]> |
d39e0721 | 4392 | L: [email protected] |
cb109a0e | 4393 | S: Maintained |
df621252 | 4394 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4395 | |
4480f15b | 4396 | IP MASQUERADING |
8b58be88 | 4397 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4398 | S: Maintained |
679655da | 4399 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4400 | |
1202d6ff | 4401 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4402 | M: Francois Romieu <[email protected]> |
4403 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4404 | L: [email protected] |
4405 | S: Maintained | |
7443713a | 4406 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4407 | |
4480f15b | 4408 | IPATH DRIVER |
8473c603 | 4409 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4410 | L: [email protected] |
52a09a04 | 4411 | S: Maintained |
679655da | 4412 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4413 | |
4409ebe9 | 4414 | IPMI SUBSYSTEM |
8b58be88 | 4415 | M: Corey Minyard <[email protected]> |
b0c90653 | 4416 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4417 | W: http://openipmi.sourceforge.net/ |
4418 | S: Supported | |
679655da JP |
4419 | F: Documentation/IPMI.txt |
4420 | F: drivers/char/ipmi/ | |
4421 | F: include/linux/ipmi* | |
c117ab84 | 4422 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4423 | |
e2d1d6c0 | 4424 | IPS SCSI RAID DRIVER |
8b58be88 | 4425 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4426 | L: [email protected] |
4427 | W: http://www.adaptec.com/ | |
4428 | S: Maintained | |
679655da | 4429 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4430 | |
4431 | IPVS | |
8b58be88 JP |
4432 | M: Wensong Zhang <[email protected]> |
4433 | M: Simon Horman <[email protected]> | |
4434 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4435 | L: [email protected] |
e2d1d6c0 | 4436 | L: [email protected] |
1da177e4 | 4437 | S: Maintained |
679655da | 4438 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4439 | F: include/net/ip_vs.h |
c117ab84 | 4440 | F: include/uapi/linux/ip_vs.h |
679655da | 4441 | F: net/netfilter/ipvs/ |
1da177e4 | 4442 | |
e7839f25 | 4443 | IPWIRELESS DRIVER |
8b58be88 JP |
4444 | M: Jiri Kosina <[email protected]> |
4445 | M: David Sterba <[email protected]> | |
92094aa0 | 4446 | S: Odd Fixes |
282361a0 | 4447 | F: drivers/tty/ipwireless/ |
099dc4fb | 4448 | |
e2d1d6c0 | 4449 | IPX NETWORK LAYER |
8b58be88 | 4450 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4451 | L: [email protected] |
4452 | S: Maintained | |
679655da | 4453 | F: include/net/ipx.h |
c117ab84 | 4454 | F: include/uapi/linux/ipx.h |
679655da | 4455 | F: net/ipx/ |
e2d1d6c0 | 4456 | |
1da177e4 | 4457 | IRDA SUBSYSTEM |
8b58be88 | 4458 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4459 | L: [email protected] (subscribers-only) |
ced649ea | 4460 | L: [email protected] |
1da177e4 | 4461 | W: http://irda.sourceforge.net/ |
f353976d | 4462 | S: Maintained |
e0057975 | 4463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4464 | F: Documentation/networking/irda.txt |
4465 | F: drivers/net/irda/ | |
4466 | F: include/net/irda/ | |
4467 | F: net/irda/ | |
1da177e4 | 4468 | |
a800c7cc TG |
4469 | IRQ SUBSYSTEM |
4470 | M: Thomas Gleixner <[email protected]> | |
4471 | S: Maintained | |
75fc2d37 | 4472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4473 | F: kernel/irq/ |
edd96900 | 4474 | F: drivers/irqchip/ |
a800c7cc | 4475 | |
7ab3a837 GL |
4476 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4477 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4478 | S: Maintained |
4479 | F: Documentation/IRQ-domain.txt | |
4480 | F: include/linux/irqdomain.h | |
4481 | F: kernel/irq/irqdomain.c | |
4482 | ||
e2d1d6c0 | 4483 | ISAPNP |
8b58be88 | 4484 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4485 | S: Maintained |
679655da JP |
4486 | F: Documentation/isapnp.txt |
4487 | F: drivers/pnp/isapnp/ | |
4488 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4489 | |
d39b8420 HV |
4490 | ISA RADIO MODULE |
4491 | M: Hans Verkuil <[email protected]> | |
4492 | L: [email protected] | |
4493 | T: git git://linuxtv.org/media_tree.git | |
4494 | W: http://linuxtv.org | |
4495 | S: Maintained | |
4496 | F: drivers/media/radio/radio-isa* | |
4497 | ||
71a6d0af HW |
4498 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4499 | M: Peter Jones <[email protected]> | |
4500 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4501 | S: Maintained | |
4502 | F: drivers/firmware/iscsi_ibft* | |
4503 | ||
14816b1e | 4504 | ISCSI |
8b58be88 | 4505 | M: Mike Christie <[email protected]> |
14816b1e MC |
4506 | L: [email protected] |
4507 | W: www.open-iscsi.org | |
54e5881d | 4508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4509 | S: Maintained |
679655da JP |
4510 | F: drivers/scsi/*iscsi* |
4511 | F: include/scsi/*iscsi* | |
14816b1e | 4512 | |
1e65eb42 OG |
4513 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4514 | M: Or Gerlitz <[email protected]> | |
4515 | M: Roi Dayan <[email protected]> | |
4516 | L: [email protected] | |
4517 | S: Supported | |
4518 | W: http://www.openfabrics.org | |
4519 | W: www.open-iscsi.org | |
4520 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
4521 | F: drivers/infiniband/ulp/iser | |
4522 | ||
1da177e4 | 4523 | ISDN SUBSYSTEM |
8b58be88 | 4524 | M: Karsten Keil <[email protected]> |
d5d52273 | 4525 | L: [email protected] (subscribers-only) |
3da0ae62 | 4526 | L: [email protected] |
1da177e4 | 4527 | W: http://www.isdn4linux.de |
54e5881d | 4528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4529 | S: Maintained |
679655da JP |
4530 | F: Documentation/isdn/ |
4531 | F: drivers/isdn/ | |
4532 | F: include/linux/isdn.h | |
4533 | F: include/linux/isdn/ | |
c117ab84 CEB |
4534 | F: include/uapi/linux/isdn.h |
4535 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4536 | |
4537 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4538 | M: Armin Schindler <[email protected]> |
d5d52273 | 4539 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4540 | W: http://www.melware.de |
4541 | S: Maintained | |
679655da | 4542 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4543 | |
d624870f JD |
4544 | IT87 HARDWARE MONITORING DRIVER |
4545 | M: Jean Delvare <[email protected]> | |
4546 | L: [email protected] | |
4547 | S: Maintained | |
4548 | F: Documentation/hwmon/it87 | |
4549 | F: drivers/hwmon/it87.c | |
4550 | ||
68620bdd MP |
4551 | IT913X MEDIA DRIVER |
4552 | M: Malcolm Priestley <[email protected]> | |
4553 | L: [email protected] | |
4554 | W: http://linuxtv.org/ | |
4555 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4556 | S: Maintained | |
4557 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4558 | ||
4559 | IT913X FE MEDIA DRIVER | |
4560 | M: Malcolm Priestley <[email protected]> | |
4561 | L: [email protected] | |
4562 | W: http://linuxtv.org/ | |
4563 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4564 | S: Maintained | |
4565 | F: drivers/media/dvb-frontends/it913x-fe* | |
4566 | ||
d7104bff AP |
4567 | IT913X MEDIA DRIVER |
4568 | M: Antti Palosaari <[email protected]> | |
4569 | L: [email protected] | |
4570 | W: http://linuxtv.org/ | |
4571 | W: http://palosaari.fi/linux/ | |
4572 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4573 | T: git git://linuxtv.org/anttip/media_tree.git | |
4574 | S: Maintained | |
4575 | F: drivers/media/tuners/it913x* | |
4576 | ||
91821ff3 | 4577 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4578 | M: Andy Walls <[email protected]> |
c4240509 | 4579 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4580 | L: [email protected] |
275ffde4 | 4581 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4582 | W: http://www.ivtvdriver.org |
4583 | S: Maintained | |
679655da | 4584 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4585 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4586 | F: include/uapi/linux/ivtv* |
91821ff3 | 4587 | |
68620bdd MP |
4588 | IX2505V MEDIA DRIVER |
4589 | M: Malcolm Priestley <[email protected]> | |
4590 | L: [email protected] | |
4591 | W: http://linuxtv.org/ | |
4592 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4593 | S: Maintained | |
4594 | F: drivers/media/dvb-frontends/ix2505v* | |
4595 | ||
4453d736 GR |
4596 | JC42.4 TEMPERATURE SENSOR DRIVER |
4597 | M: Guenter Roeck <[email protected]> | |
4598 | L: [email protected] | |
4599 | S: Maintained | |
4600 | F: drivers/hwmon/jc42.c | |
4601 | F: Documentation/hwmon/jc42 | |
4602 | ||
e2d1d6c0 | 4603 | JFS FILESYSTEM |
3256f80f | 4604 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4605 | L: [email protected] |
4606 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4608 | S: Maintained |
679655da JP |
4609 | F: Documentation/filesystems/jfs.txt |
4610 | F: fs/jfs/ | |
e2d1d6c0 | 4611 | |
95252236 | 4612 | JME NETWORK DRIVER |
8b58be88 | 4613 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4614 | L: [email protected] |
4615 | S: Maintained | |
63d24a0e | 4616 | F: drivers/net/ethernet/jme.* |
95252236 | 4617 | |
1da177e4 | 4618 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4619 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4620 | L: [email protected] |
4621 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4622 | S: Maintained |
679655da | 4623 | F: fs/jffs2/ |
c117ab84 | 4624 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4625 | |
de456d37 | 4626 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4627 | M: Andrew Morton <[email protected]> |
19003c18 | 4628 | M: Jan Kara <[email protected]> |
72be2ccf | 4629 | L: [email protected] |
ae0718f8 | 4630 | S: Maintained |
d183e11a | 4631 | F: fs/jbd/ |
d183e11a TT |
4632 | F: include/linux/jbd.h |
4633 | ||
4634 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4635 | M: "Theodore Ts'o" <[email protected]> | |
4636 | L: [email protected] | |
4637 | S: Maintained | |
4638 | F: fs/jbd2/ | |
4639 | F: include/linux/jbd2.h | |
ae0718f8 | 4640 | |
fd8b6cb4 | 4641 | JSM Neo PCI based serial card |
9d141cb9 | 4642 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4643 | L: [email protected] |
4644 | S: Maintained | |
df621252 | 4645 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4646 | |
af39917d CL |
4647 | K10TEMP HARDWARE MONITORING DRIVER |
4648 | M: Clemens Ladisch <[email protected]> | |
4649 | L: [email protected] | |
4650 | S: Maintained | |
4651 | F: Documentation/hwmon/k10temp | |
4652 | F: drivers/hwmon/k10temp.c | |
4653 | ||
4660cb35 | 4654 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4655 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4656 | L: [email protected] |
ae0718f8 | 4657 | S: Maintained |
679655da JP |
4658 | F: Documentation/hwmon/k8temp |
4659 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4660 | |
1da177e4 | 4661 | KCONFIG |
76ce94a3 | 4662 | M: Michal Marek <[email protected]> |
347d12d7 | 4663 | L: [email protected] |
76ce94a3 | 4664 | S: Odd Fixes |
679655da JP |
4665 | F: Documentation/kbuild/kconfig-language.txt |
4666 | F: scripts/kconfig/ | |
1da177e4 | 4667 | |
ea6c2089 | 4668 | KDUMP |
8b58be88 JP |
4669 | M: Vivek Goyal <[email protected]> |
4670 | M: Haren Myneni <[email protected]> | |
34633993 | 4671 | L: [email protected] |
ea6c2089 VG |
4672 | W: http://lse.sourceforge.net/kdump/ |
4673 | S: Maintained | |
80811493 | 4674 | F: Documentation/kdump/ |
ea6c2089 | 4675 | |
f41bf02f HV |
4676 | KEENE FM RADIO TRANSMITTER DRIVER |
4677 | M: Hans Verkuil <[email protected]> | |
4678 | L: [email protected] | |
4679 | T: git git://linuxtv.org/media_tree.git | |
4680 | W: http://linuxtv.org | |
4681 | S: Maintained | |
4682 | F: drivers/media/radio/radio-keene* | |
4683 | ||
1da177e4 | 4684 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4685 | M: Ian Kent <[email protected]> |
f694fc97 | 4686 | L: [email protected] |
1da177e4 | 4687 | S: Maintained |
679655da | 4688 | F: fs/autofs4/ |
1da177e4 | 4689 | |
70fb7ba6 | 4690 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4691 | M: Michal Marek <[email protected]> |
08deed1e JP |
4692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4693 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4694 | L: [email protected] |
5ce45962 | 4695 | S: Maintained |
679655da JP |
4696 | F: Documentation/kbuild/ |
4697 | F: Makefile | |
4698 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4699 | F: scripts/basic/ |
4700 | F: scripts/mk* | |
4701 | F: scripts/package/ | |
1da177e4 LT |
4702 | |
4703 | KERNEL JANITORS | |
c3000e03 | 4704 | L: [email protected] |
10466f5a | 4705 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4706 | S: Odd Fixes |
1da177e4 | 4707 | |
e8b43555 | 4708 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4709 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4710 | L: [email protected] |
1da177e4 | 4711 | W: http://nfs.sourceforge.net/ |
98fac23f | 4712 | S: Supported |
679655da JP |
4713 | F: fs/nfsd/ |
4714 | F: include/linux/nfsd/ | |
c117ab84 | 4715 | F: include/uapi/linux/nfsd/ |
679655da JP |
4716 | F: fs/lockd/ |
4717 | F: fs/nfs_common/ | |
4718 | F: net/sunrpc/ | |
4719 | F: include/linux/lockd/ | |
4720 | F: include/linux/sunrpc/ | |
c117ab84 | 4721 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4722 | |
426d62e2 | 4723 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4724 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4725 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4726 | L: [email protected] |
c93a64fe | 4727 | W: http://linux-kvm.org |
426d62e2 | 4728 | S: Supported |
c93a64fe PB |
4729 | F: Documentation/*/kvm*.txt |
4730 | F: Documentation/virtual/kvm/ | |
679655da JP |
4731 | F: arch/*/kvm/ |
4732 | F: arch/*/include/asm/kvm* | |
4733 | F: include/linux/kvm* | |
c117ab84 | 4734 | F: include/uapi/linux/kvm* |
679655da | 4735 | F: virt/kvm/ |
426d62e2 | 4736 | |
ad8003d3 | 4737 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4738 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4739 | L: [email protected] |
4740 | W: http://kvm.qumranet.com | |
7de609c8 | 4741 | S: Maintained |
679655da | 4742 | F: arch/x86/include/asm/svm.h |
679655da | 4743 | F: arch/x86/kvm/svm.c |
426d62e2 | 4744 | |
513014b7 | 4745 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4746 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4747 | L: [email protected] |
4748 | W: http://kvm.qumranet.com | |
6a7f972d | 4749 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4750 | S: Supported |
679655da JP |
4751 | F: arch/powerpc/include/asm/kvm* |
4752 | F: arch/powerpc/kvm/ | |
513014b7 | 4753 | |
1fc9d2bf | 4754 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4755 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4756 | L: [email protected] |
4757 | W: http://kvm.qumranet.com | |
920ed9f1 | 4758 | S: Supported |
679655da JP |
4759 | F: Documentation/ia64/kvm.txt |
4760 | F: arch/ia64/include/asm/kvm* | |
4761 | F: arch/ia64/kvm/ | |
920ed9f1 | 4762 | |
85f8fffe | 4763 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4764 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4765 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4766 | M: [email protected] |
4767 | L: [email protected] | |
4768 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4769 | S: Supported | |
679655da JP |
4770 | F: Documentation/s390/kvm.txt |
4771 | F: arch/s390/include/asm/kvm* | |
80811493 | 4772 | F: arch/s390/kvm/ |
a968cd3e | 4773 | F: drivers/s390/kvm/ |
85f8fffe | 4774 | |
a749474d | 4775 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 4776 | M: Christoffer Dall <[email protected]> |
a749474d CD |
4777 | L: [email protected] |
4778 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 4779 | S: Supported |
a749474d CD |
4780 | F: arch/arm/include/uapi/asm/kvm* |
4781 | F: arch/arm/include/asm/kvm* | |
4782 | F: arch/arm/kvm/ | |
4783 | ||
6394a3ec MZ |
4784 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4785 | M: Marc Zyngier <[email protected]> | |
4786 | L: [email protected] (moderated for non-subscribers) | |
4787 | L: [email protected] | |
4788 | S: Maintained | |
4789 | F: arch/arm64/include/uapi/asm/kvm* | |
4790 | F: arch/arm64/include/asm/kvm* | |
4791 | F: arch/arm64/kvm/ | |
4792 | ||
dc009d92 | 4793 | KEXEC |
8b58be88 | 4794 | M: Eric Biederman <[email protected]> |
2f327dad | 4795 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4796 | L: [email protected] |
dc009d92 | 4797 | S: Maintained |
679655da | 4798 | F: include/linux/kexec.h |
c117ab84 | 4799 | F: include/uapi/linux/kexec.h |
679655da | 4800 | F: kernel/kexec.c |
dc009d92 | 4801 | |
e971461f DH |
4802 | KEYS/KEYRINGS: |
4803 | M: David Howells <[email protected]> | |
4804 | L: [email protected] | |
4805 | S: Maintained | |
d410fa4e | 4806 | F: Documentation/security/keys.txt |
e971461f DH |
4807 | F: include/linux/key.h |
4808 | F: include/linux/key-type.h | |
4809 | F: include/keys/ | |
4810 | F: security/keys/ | |
4811 | ||
7f3c68be MZ |
4812 | KEYS-TRUSTED |
4813 | M: David Safford <[email protected]> | |
4814 | M: Mimi Zohar <[email protected]> | |
4815 | L: [email protected] | |
4816 | L: [email protected] | |
4817 | S: Supported | |
d410fa4e | 4818 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4819 | F: include/keys/trusted-type.h |
4820 | F: security/keys/trusted.c | |
4821 | F: security/keys/trusted.h | |
4822 | ||
4823 | KEYS-ENCRYPTED | |
4824 | M: Mimi Zohar <[email protected]> | |
4825 | M: David Safford <[email protected]> | |
4826 | L: [email protected] | |
4827 | L: [email protected] | |
4828 | S: Supported | |
d410fa4e | 4829 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4830 | F: include/keys/encrypted-type.h |
19c90aa6 | 4831 | F: security/keys/encrypted-keys/ |
7f3c68be | 4832 | |
5b778dad | 4833 | KGDB / KDB /debug_core |
8b58be88 | 4834 | M: Jason Wessel <[email protected]> |
4063eb5f | 4835 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4836 | L: [email protected] |
4837 | S: Maintained | |
679655da JP |
4838 | F: Documentation/DocBook/kgdb.tmpl |
4839 | F: drivers/misc/kgdbts.c | |
df621252 | 4840 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4841 | F: include/linux/kdb.h |
679655da | 4842 | F: include/linux/kgdb.h |
4063eb5f | 4843 | F: kernel/debug/ |
e3e2aaf7 | 4844 | |
456db8cc | 4845 | KMEMCHECK |
8b58be88 | 4846 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 4847 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 4848 | S: Maintained |
410d7a97 JP |
4849 | F: Documentation/kmemcheck.txt |
4850 | F: arch/x86/include/asm/kmemcheck.h | |
4851 | F: arch/x86/mm/kmemcheck/ | |
4852 | F: include/linux/kmemcheck.h | |
4853 | F: mm/kmemcheck.c | |
b9ce08c0 | 4854 | |
c3bb4d24 | 4855 | KMEMLEAK |
8b58be88 | 4856 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
4857 | S: Maintained |
4858 | F: Documentation/kmemleak.txt | |
4859 | F: include/linux/kmemleak.h | |
4860 | F: mm/kmemleak.c | |
4861 | F: mm/kmemleak-test.c | |
4862 | ||
89559a61 | 4863 | KPROBES |
8b58be88 JP |
4864 | M: Ananth N Mavinakayanahalli <[email protected]> |
4865 | M: Anil S Keshavamurthy <[email protected]> | |
4866 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 4867 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 4868 | S: Maintained |
679655da JP |
4869 | F: Documentation/kprobes.txt |
4870 | F: include/linux/kprobes.h | |
4871 | F: kernel/kprobes.c | |
89559a61 | 4872 | |
70e84049 | 4873 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4874 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
4875 | W: http://miguelojeda.es/auxdisplay.htm |
4876 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4877 | S: Maintained |
679655da JP |
4878 | F: Documentation/auxdisplay/ks0108 |
4879 | F: drivers/auxdisplay/ks0108.c | |
4880 | F: include/linux/ks0108.h | |
70e84049 | 4881 | |
1da177e4 | 4882 | LAPB module |
1da177e4 | 4883 | L: [email protected] |
bf9915cc | 4884 | S: Orphan |
679655da JP |
4885 | F: Documentation/networking/lapb-module.txt |
4886 | F: include/*/lapb.h | |
4887 | F: net/lapb/ | |
1da177e4 LT |
4888 | |
4889 | LASI 53c700 driver for PARISC | |
8b58be88 | 4890 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4891 | L: [email protected] |
4892 | S: Maintained | |
679655da JP |
4893 | F: Documentation/scsi/53c700.txt |
4894 | F: drivers/scsi/53c700* | |
1da177e4 | 4895 | |
263de9b5 | 4896 | LED SUBSYSTEM |
c772fc26 | 4897 | M: Bryan Wu <[email protected]> |
8b58be88 | 4898 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
4899 | L: [email protected] |
4900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4901 | S: Maintained |
679655da JP |
4902 | F: drivers/leds/ |
4903 | F: include/linux/leds.h | |
263de9b5 | 4904 | |
b0461a44 JD |
4905 | LEGACY EEPROM DRIVER |
4906 | M: Jean Delvare <[email protected]> | |
4907 | S: Maintained | |
4908 | F: Documentation/misc-devices/eeprom | |
4909 | F: drivers/misc/eeprom/eeprom.c | |
4910 | ||
1da177e4 | 4911 | LEGO USB Tower driver |
8b58be88 | 4912 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
4913 | L: [email protected] |
4914 | W: http://legousb.sourceforge.net/ | |
4915 | S: Maintained | |
679655da | 4916 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4917 | |
055616a8 MK |
4918 | LG2160 MEDIA DRIVER |
4919 | M: Michael Krufky <[email protected]> | |
4920 | L: [email protected] | |
4921 | W: http://linuxtv.org/ | |
4922 | W: http://github.com/mkrufky | |
4923 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4924 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4925 | S: Maintained | |
4926 | F: drivers/media/dvb-frontends/lg2160.* | |
4927 | ||
6f0e7725 MK |
4928 | LGDT3305 MEDIA DRIVER |
4929 | M: Michael Krufky <[email protected]> | |
4930 | L: [email protected] | |
4931 | W: http://linuxtv.org/ | |
4932 | W: http://github.com/mkrufky | |
4933 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4934 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4935 | S: Maintained | |
4936 | F: drivers/media/dvb-frontends/lgdt3305.* | |
4937 | ||
568a17ff | 4938 | LGUEST |
8b58be88 | 4939 | M: Rusty Russell <[email protected]> |
a4724ed6 | 4940 | L: [email protected] |
568a17ff | 4941 | W: http://lguest.ozlabs.org/ |
72e91863 | 4942 | S: Odd Fixes |
070f420b | 4943 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
4944 | F: arch/x86/lguest/ |
4945 | F: drivers/lguest/ | |
4946 | F: include/linux/lguest*.h | |
070f420b | 4947 | F: tools/lguest/ |
568a17ff | 4948 | |
1da177e4 | 4949 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 4950 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
4951 | W: http://www.ibm.com/linux/ltc/projects/ppc |
4952 | S: Supported | |
11c34c7d | 4953 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 4954 | |
852bb9f5 | 4955 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
4956 | M: Benjamin Herrenschmidt <[email protected]> |
4957 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 4958 | W: http://www.penguinppc.org/ |
a4724ed6 | 4959 | L: [email protected] |
8a6e2535 | 4960 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 4961 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 4962 | S: Supported |
11c34c7d JP |
4963 | F: Documentation/powerpc/ |
4964 | F: arch/powerpc/ | |
1da177e4 LT |
4965 | |
4966 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 4967 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 4968 | W: http://www.penguinppc.org/ |
a4724ed6 | 4969 | L: [email protected] |
1da177e4 | 4970 | S: Maintained |
11c34c7d JP |
4971 | F: arch/powerpc/platforms/powermac/ |
4972 | F: drivers/macintosh/ | |
1da177e4 | 4973 | |
77a76369 | 4974 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 4975 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 4976 | L: [email protected] |
a149507b | 4977 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 4978 | S: Maintained |
11c34c7d JP |
4979 | F: arch/powerpc/platforms/512x/ |
4980 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
4981 | |
4982 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 4983 | M: Josh Boyer <[email protected]> |
8b58be88 | 4984 | M: Matt Porter <[email protected]> |
1da177e4 | 4985 | W: http://www.penguinppc.org/ |
a4724ed6 | 4986 | L: [email protected] |
645609c0 | 4987 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 4988 | S: Maintained |
11c34c7d JP |
4989 | F: arch/powerpc/platforms/40x/ |
4990 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 4991 | |
260c02a9 | 4992 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 4993 | L: [email protected] |
cdeb8994 | 4994 | S: Orphan |
11c34c7d JP |
4995 | F: arch/powerpc/*/*virtex* |
4996 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 4997 | |
e93adf1e | 4998 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
4999 | M: Vitaly Bordug <[email protected]> |
5000 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 5001 | W: http://www.penguinppc.org/ |
a4724ed6 | 5002 | L: [email protected] |
e93adf1e | 5003 | S: Maintained |
a2b1f7c8 | 5004 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5005 | |
1da177e4 | 5006 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5007 | M: Kumar Gala <[email protected]> |
ce00f85c | 5008 | W: http://www.penguinppc.org/ |
a4724ed6 | 5009 | L: [email protected] |
ce00f85c | 5010 | S: Maintained |
11c34c7d | 5011 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5012 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5013 | |
ab06ff3a | 5014 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5015 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5016 | L: [email protected] |
92e19709 | 5017 | S: Maintained |
11c34c7d JP |
5018 | F: arch/powerpc/platforms/pasemi/ |
5019 | F: drivers/*/*pasemi* | |
5020 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5021 | |
1da177e4 | 5022 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5023 | M: Chris Wright <[email protected]> |
1a4520be | 5024 | L: [email protected] |
1da177e4 LT |
5025 | S: Supported |
5026 | ||
a23ce6da HW |
5027 | LIS3LV02D ACCELEROMETER DRIVER |
5028 | M: Eric Piel <[email protected]> | |
5029 | S: Maintained | |
ff606677 JD |
5030 | F: Documentation/misc-devices/lis3lv02d |
5031 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5032 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5033 | |
e2d1d6c0 | 5034 | LLC (802.2) |
8b58be88 | 5035 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5036 | S: Maintained |
679655da | 5037 | F: include/linux/llc.h |
c117ab84 | 5038 | F: include/uapi/linux/llc.h |
679655da JP |
5039 | F: include/net/llc* |
5040 | F: net/llc/ | |
e2d1d6c0 | 5041 | |
4e233cbe AD |
5042 | LM73 HARDWARE MONITOR DRIVER |
5043 | M: Guillaume Ligneul <[email protected]> | |
5044 | L: [email protected] | |
5045 | S: Maintained | |
5046 | F: drivers/hwmon/lm73.c | |
5047 | ||
156e2d1a JD |
5048 | LM78 HARDWARE MONITOR DRIVER |
5049 | M: Jean Delvare <[email protected]> | |
5050 | L: [email protected] | |
5051 | S: Maintained | |
5052 | F: Documentation/hwmon/lm78 | |
5053 | F: drivers/hwmon/lm78.c | |
5054 | ||
1da177e4 | 5055 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5056 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5057 | L: [email protected] |
1da177e4 | 5058 | S: Maintained |
679655da JP |
5059 | F: Documentation/hwmon/lm83 |
5060 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5061 | |
5062 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5063 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5064 | L: [email protected] |
1da177e4 | 5065 | S: Maintained |
679655da JP |
5066 | F: Documentation/hwmon/lm90 |
5067 | F: drivers/hwmon/lm90.c | |
1da177e4 | 5068 | |
917cc4e6 GR |
5069 | LM95234 HARDWARE MONITOR DRIVER |
5070 | M: Guenter Roeck <[email protected]> | |
5071 | L: [email protected] | |
5072 | S: Maintained | |
5073 | F: Documentation/hwmon/lm95234 | |
5074 | F: drivers/hwmon/lm95234.c | |
5075 | ||
68620bdd MP |
5076 | LME2510 MEDIA DRIVER |
5077 | M: Malcolm Priestley <[email protected]> | |
5078 | L: [email protected] | |
5079 | W: http://linuxtv.org/ | |
5080 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5081 | S: Maintained | |
5082 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5083 | ||
512e67f9 | 5084 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5085 | M: Peter Zijlstra <[email protected]> |
5086 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 5087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5088 | S: Maintained |
679655da JP |
5089 | F: Documentation/lockdep*.txt |
5090 | F: Documentation/lockstat.txt | |
5091 | F: include/linux/lockdep.h | |
5092 | F: kernel/lockdep* | |
512e67f9 | 5093 | |
dde33348 | 5094 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5095 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5096 | L: [email protected] |
5097 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5098 | S: Maintained |
679655da | 5099 | F: Documentation/ldm.txt |
20d16fef | 5100 | F: block/partitions/ldm.* |
1da177e4 | 5101 | |
ef6ada3d JE |
5102 | LogFS |
5103 | M: Joern Engel <[email protected]> | |
756ccb3c | 5104 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5105 | L: [email protected] |
5106 | W: logfs.org | |
5107 | S: Maintained | |
5108 | F: fs/logfs/ | |
5109 | ||
b62d7946 RS |
5110 | LPC32XX MACHINE SUPPORT |
5111 | M: Roland Stigge <[email protected]> | |
5112 | L: [email protected] (moderated for non-subscribers) | |
5113 | S: Maintained | |
5114 | F: arch/arm/mach-lpc32xx/ | |
5115 | ||
c87e34ef | 5116 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5117 | M: Nagalakshmi Nandigama <[email protected]> |
5118 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5119 | M: [email protected] |
cec744fb | 5120 | L: [email protected] |
c87e34ef MED |
5121 | L: [email protected] |
5122 | W: http://www.lsilogic.com/support | |
5123 | S: Supported | |
679655da | 5124 | F: drivers/message/fusion/ |
500c152a | 5125 | F: drivers/scsi/mpt2sas/ |
5126 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5127 | |
1da177e4 | 5128 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5129 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5130 | L: [email protected] |
5131 | S: Maintained | |
679655da | 5132 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5133 | |
e5f5c99a GR |
5134 | LTC4261 HARDWARE MONITOR DRIVER |
5135 | M: Guenter Roeck <[email protected]> | |
5136 | L: [email protected] | |
5137 | S: Maintained | |
5138 | F: Documentation/hwmon/ltc4261 | |
5139 | F: drivers/hwmon/ltc4261.c | |
5140 | ||
81365c31 | 5141 | LTP (Linux Test Project) |
7d1ae8a8 | 5142 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5143 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5144 | M: Cyril Hrubis <[email protected]> |
5145 | M: Caspar Zhang <[email protected]> | |
5146 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5147 | L: [email protected] (subscribers-only) |
5148 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5149 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5150 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5151 | S: Maintained |
5152 | ||
c12a54b3 | 5153 | M32R ARCHITECTURE |
8b58be88 | 5154 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5155 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5156 | L: [email protected] (in Japanese) |
5157 | W: http://www.linux-m32r.org/ | |
5158 | S: Maintained | |
679655da | 5159 | F: arch/m32r/ |
c12a54b3 | 5160 | |
1da177e4 | 5161 | M68K ARCHITECTURE |
8b58be88 | 5162 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5163 | L: [email protected] |
5164 | W: http://www.linux-m68k.org/ | |
54e5881d | 5165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5166 | S: Maintained |
679655da | 5167 | F: arch/m68k/ |
9db35182 | 5168 | F: drivers/zorro/ |
1da177e4 LT |
5169 | |
5170 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5171 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5172 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5173 | L: [email protected] |
1da177e4 | 5174 | S: Maintained |
9db35182 | 5175 | F: arch/m68k/mac/ |
1da177e4 LT |
5176 | |
5177 | M68K ON HP9000/300 | |
8b58be88 | 5178 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5179 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5180 | S: Maintained | |
679655da | 5181 | F: arch/m68k/hp300/ |
1da177e4 | 5182 | |
68620bdd MP |
5183 | M88RS2000 MEDIA DRIVER |
5184 | M: Malcolm Priestley <[email protected]> | |
5185 | L: [email protected] | |
5186 | W: http://linuxtv.org/ | |
5187 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5188 | S: Maintained | |
5189 | F: drivers/media/dvb-frontends/m88rs2000* | |
5190 | ||
07a092fa AK |
5191 | MA901 MASTERKIT USB FM RADIO DRIVER |
5192 | M: Alexey Klimov <[email protected]> | |
5193 | L: [email protected] | |
5194 | T: git git://linuxtv.org/media_tree.git | |
5195 | S: Maintained | |
5196 | F: drivers/media/radio/radio-ma901.c | |
5197 | ||
64a327a7 | 5198 | MAC80211 |
8b58be88 | 5199 | M: Johannes Berg <[email protected]> |
64a327a7 | 5200 | L: [email protected] |
491b26b4 | 5201 | W: http://wireless.kernel.org/ |
ce466579 JB |
5202 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5204 | S: Maintained |
679655da JP |
5205 | F: Documentation/networking/mac80211-injection.txt |
5206 | F: include/net/mac80211.h | |
5207 | F: net/mac80211/ | |
64a327a7 | 5208 | |
1036d864 | 5209 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5210 | M: Stefano Brivio <[email protected]> |
5211 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5212 | L: [email protected] |
491b26b4 | 5213 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5215 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5216 | S: Maintained |
679655da | 5217 | F: net/mac80211/rc80211_pid* |
1036d864 | 5218 | |
b863ceb7 | 5219 | MACVLAN DRIVER |
8b58be88 | 5220 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5221 | L: [email protected] |
5222 | S: Maintained | |
679655da JP |
5223 | F: drivers/net/macvlan.c |
5224 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5225 | |
faf1668c | 5226 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5227 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5228 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5229 | L: [email protected] |
1b53dc74 | 5230 | S: Maintained |
faf1668c | 5231 | |
44c14c1d | 5232 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5233 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5234 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5235 | L: [email protected] |
5236 | S: Maintained | |
5237 | F: drivers/net/ethernet/marvell/sk* | |
5238 | ||
74cda169 | 5239 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5240 | L: [email protected] |
8ac3e99e | 5241 | S: Orphan |
679655da | 5242 | F: drivers/net/wireless/libertas/ |
74cda169 | 5243 | |
b60d6975 | 5244 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 5245 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 5246 | L: [email protected] |
f5ca8502 | 5247 | S: Maintained |
527a6266 | 5248 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5249 | F: include/linux/mv643xx.h |
1da177e4 | 5250 | |
370b8ed9 TP |
5251 | MARVELL MVNETA ETHERNET DRIVER |
5252 | M: Thomas Petazzoni <[email protected]> | |
5253 | L: [email protected] | |
5254 | S: Maintained | |
5255 | F: drivers/net/ethernet/marvell/mvneta.* | |
5256 | ||
fcad584d BZ |
5257 | MARVELL MWIFIEX WIRELESS DRIVER |
5258 | M: Bing Zhao <[email protected]> | |
5259 | L: [email protected] | |
5260 | S: Maintained | |
5261 | F: drivers/net/wireless/mwifiex/ | |
5262 | ||
a2c3f656 | 5263 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5264 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5265 | L: [email protected] |
16345910 | 5266 | S: Odd Fixes |
a2c3f656 LB |
5267 | F: drivers/net/wireless/mwl8k.c |
5268 | ||
2a69567b | 5269 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5270 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5271 | S: Odd Fixes |
1fa7e547 | 5272 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5273 | |
1da177e4 | 5274 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5275 | L: [email protected] |
52653199 | 5276 | S: Orphan |
679655da | 5277 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5278 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5279 | |
ca462085 GR |
5280 | MAX16065 HARDWARE MONITOR DRIVER |
5281 | M: Guenter Roeck <[email protected]> | |
5282 | L: [email protected] | |
5283 | S: Maintained | |
5284 | F: Documentation/hwmon/max16065 | |
5285 | F: drivers/hwmon/max16065.c | |
5286 | ||
d20620de | 5287 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5288 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5289 | L: [email protected] |
5290 | S: Maintained | |
679655da JP |
5291 | F: Documentation/hwmon/max6650 |
5292 | F: drivers/hwmon/max6650.c | |
d20620de | 5293 | |
e89ab51f GR |
5294 | MAX6697 HARDWARE MONITOR DRIVER |
5295 | M: Guenter Roeck <[email protected]> | |
5296 | L: [email protected] | |
5297 | S: Maintained | |
5298 | F: Documentation/hwmon/max6697 | |
5299 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5300 | F: drivers/hwmon/max6697.c | |
5301 | F: include/linux/platform_data/max6697.h | |
5302 | ||
9be3c9a5 HV |
5303 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5304 | M: Hans Verkuil <[email protected]> | |
5305 | L: [email protected] | |
5306 | T: git git://linuxtv.org/media_tree.git | |
5307 | W: http://linuxtv.org | |
5308 | S: Maintained | |
5309 | F: drivers/media/radio/radio-maxiradio* | |
5310 | ||
127c49ae | 5311 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5312 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5313 | P: LinuxTV.org Project |
5314 | L: [email protected] | |
5315 | W: http://linuxtv.org | |
8a6e2535 | 5316 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5317 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5318 | S: Maintained |
5319 | F: Documentation/dvb/ | |
5320 | F: Documentation/video4linux/ | |
ffe06198 | 5321 | F: Documentation/DocBook/media/ |
127c49ae | 5322 | F: drivers/media/ |
ffe06198 | 5323 | F: drivers/staging/media/ |
127c49ae | 5324 | F: include/media/ |
6c0f0359 MCC |
5325 | F: include/uapi/linux/dvb/ |
5326 | F: include/uapi/linux/videodev2.h | |
5327 | F: include/uapi/linux/media.h | |
5328 | F: include/uapi/linux/v4l2-* | |
5329 | F: include/uapi/linux/meye.h | |
5330 | F: include/uapi/linux/ivtv* | |
5331 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5332 | |
6149a936 HV |
5333 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5334 | M: Hans Verkuil <[email protected]> | |
5335 | L: [email protected] | |
5336 | T: git git://linuxtv.org/media_tree.git | |
5337 | W: http://linuxtv.org | |
5338 | S: Odd Fixes | |
5339 | F: drivers/media/parport/pms* | |
5340 | ||
757e0108 | 5341 | MEGARAID SCSI DRIVERS |
8b58be88 | 5342 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5343 | L: [email protected] |
ce00f85c JC |
5344 | W: http://megaraid.lsilogic.com |
5345 | S: Maintained | |
679655da JP |
5346 | F: Documentation/scsi/megaraid.txt |
5347 | F: drivers/scsi/megaraid.* | |
5348 | F: drivers/scsi/megaraid/ | |
757e0108 | 5349 | |
2c46c9d5 AV |
5350 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5351 | M: Amir Vadai <[email protected]> | |
5352 | L: [email protected] | |
5353 | S: Supported | |
5354 | W: http://www.mellanox.com | |
5355 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5356 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5357 | ||
70ea91f1 SR |
5358 | MEMORY MANAGEMENT |
5359 | L: [email protected] | |
70ea91f1 SR |
5360 | W: http://www.linux-mm.org |
5361 | S: Maintained | |
679655da | 5362 | F: include/linux/mm.h |
551450bb CS |
5363 | F: include/linux/gfp.h |
5364 | F: include/linux/mmzone.h | |
5365 | F: include/linux/memory_hotplug.h | |
5366 | F: include/linux/vmalloc.h | |
679655da | 5367 | F: mm/ |
70ea91f1 | 5368 | |
938a9204 | 5369 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5370 | M: Johannes Weiner <[email protected]> |
5371 | M: Michal Hocko <[email protected]> | |
185e595f | 5372 | M: Balbir Singh <[email protected]> |
8b58be88 | 5373 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5374 | L: [email protected] |
938a9204 | 5375 | L: [email protected] |
938a9204 | 5376 | S: Maintained |
679655da | 5377 | F: mm/memcontrol.c |
4e4c941c | 5378 | F: mm/page_cgroup.c |
938a9204 | 5379 | |
f4e9ce66 | 5380 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5381 | M: David Woodhouse <[email protected]> |
1da177e4 | 5382 | L: [email protected] |
8a6e2535 JP |
5383 | W: http://www.linux-mtd.infradead.org/ |
5384 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5385 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5386 | S: Maintained |
679655da JP |
5387 | F: drivers/mtd/ |
5388 | F: include/linux/mtd/ | |
c117ab84 | 5389 | F: include/uapi/mtd/ |
1da177e4 | 5390 | |
26c57ef1 JT |
5391 | MEN A21 WATCHDOG DRIVER |
5392 | M: Johannes Thumshirn <[email protected]> | |
5393 | L: [email protected] | |
5394 | S: Supported | |
5395 | F: drivers/watchdog/mena21_wdt.c | |
5396 | ||
12285945 JH |
5397 | METAG ARCHITECTURE |
5398 | M: James Hogan <[email protected]> | |
5399 | S: Supported | |
5400 | F: arch/metag/ | |
5401 | F: Documentation/metag/ | |
5402 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5403 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5404 | F: drivers/irqchip/irq-metag.c |
5405 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5406 | F: drivers/tty/metag_da.c |
5407 | F: fs/imgdafs/ | |
12285945 | 5408 | |
c6375b0a | 5409 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5410 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5411 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5412 | W: http://www.monstr.eu/fdt/ |
5413 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5414 | S: Supported | |
0a8c7914 | 5415 | F: arch/microblaze/ |
1da177e4 LT |
5416 | |
5417 | MICROTEK X6 SCANNER | |
61eee9a7 | 5418 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5419 | S: Maintained |
679655da | 5420 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5421 | |
5422 | MIPS | |
8b58be88 | 5423 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5424 | L: [email protected] |
6097050d | 5425 | W: http://www.linux-mips.org/ |
b05e988e | 5426 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5427 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5428 | S: Supported |
679655da JP |
5429 | F: Documentation/mips/ |
5430 | F: arch/mips/ | |
1da177e4 | 5431 | |
08b7620a HV |
5432 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5433 | M: Hans Verkuil <[email protected]> | |
5434 | L: [email protected] | |
5435 | T: git git://linuxtv.org/media_tree.git | |
5436 | W: http://linuxtv.org | |
5437 | S: Odd Fixes | |
5438 | F: drivers/media/radio/radio-miropcm20* | |
5439 | ||
e126ba97 EC |
5440 | Mellanox MLX5 core VPI driver |
5441 | M: Eli Cohen <[email protected]> | |
5442 | L: [email protected] | |
5443 | L: [email protected] | |
5444 | W: http://www.mellanox.com | |
5445 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5446 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5447 | T: git://openfabrics.org/~eli/connect-ib.git | |
5448 | S: Supported | |
5449 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5450 | F: include/linux/mlx5/ | |
5451 | ||
5452 | Mellanox MLX5 IB driver | |
5453 | M: Eli Cohen <[email protected]> | |
5454 | L: [email protected] | |
5455 | W: http://www.mellanox.com | |
5456 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5457 | T: git://openfabrics.org/~eli/connect-ib.git | |
5458 | S: Supported | |
5459 | F: include/linux/mlx5/ | |
5460 | F: drivers/infiniband/hw/mlx5/ | |
5461 | ||
1da177e4 | 5462 | MODULE SUPPORT |
8b58be88 | 5463 | M: Rusty Russell <[email protected]> |
1da177e4 | 5464 | S: Maintained |
679655da JP |
5465 | F: include/linux/module.h |
5466 | F: kernel/module.c | |
1da177e4 LT |
5467 | |
5468 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5469 | W: http://popies.net/meye/ |
b7788e13 | 5470 | S: Orphan |
679655da | 5471 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5472 | F: drivers/media/pci/meye/ |
6c0f0359 | 5473 | F: include/uapi/linux/meye.h |
1da177e4 | 5474 | |
b9705b60 | 5475 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5476 | M: Jiri Slaby <[email protected]> |
d735410a | 5477 | S: Maintained |
679655da | 5478 | F: Documentation/serial/moxa-smartio |
c897401b | 5479 | F: drivers/tty/mxser.* |
d735410a | 5480 | |
889b2f87 AK |
5481 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5482 | M: Alexey Klimov <[email protected]> | |
5483 | L: [email protected] | |
5484 | T: git git://linuxtv.org/media_tree.git | |
5485 | S: Maintained | |
5486 | F: drivers/media/radio/radio-mr800.c | |
5487 | ||
8c4c731a | 5488 | MSI LAPTOP SUPPORT |
182ae55c | 5489 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5490 | L: [email protected] |
8c4c731a | 5491 | S: Maintained |
679655da | 5492 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5493 | |
0f1006b1 AA |
5494 | MSI WMI SUPPORT |
5495 | M: Anisse Astier <[email protected]> | |
d0944853 | 5496 | L: [email protected] |
0f1006b1 AA |
5497 | S: Supported |
5498 | F: drivers/platform/x86/msi-wmi.c | |
5499 | ||
0e837fb9 LP |
5500 | MT9M032 SENSOR DRIVER |
5501 | M: Laurent Pinchart <[email protected]> | |
5502 | L: [email protected] | |
5503 | T: git git://linuxtv.org/media_tree.git | |
5504 | S: Maintained | |
5505 | F: drivers/media/i2c/mt9m032.c | |
5506 | F: include/media/mt9m032.h | |
5507 | ||
5508 | MT9P031 SENSOR DRIVER | |
5509 | M: Laurent Pinchart <[email protected]> | |
5510 | L: [email protected] | |
5511 | T: git git://linuxtv.org/media_tree.git | |
5512 | S: Maintained | |
5513 | F: drivers/media/i2c/mt9p031.c | |
5514 | F: include/media/mt9p031.h | |
5515 | ||
5516 | MT9T001 SENSOR DRIVER | |
5517 | M: Laurent Pinchart <[email protected]> | |
5518 | L: [email protected] | |
5519 | T: git git://linuxtv.org/media_tree.git | |
5520 | S: Maintained | |
5521 | F: drivers/media/i2c/mt9t001.c | |
5522 | F: include/media/mt9t001.h | |
5523 | ||
5524 | MT9V032 SENSOR DRIVER | |
5525 | M: Laurent Pinchart <[email protected]> | |
5526 | L: [email protected] | |
5527 | T: git git://linuxtv.org/media_tree.git | |
5528 | S: Maintained | |
5529 | F: drivers/media/i2c/mt9v032.c | |
5530 | F: include/media/mt9v032.h | |
5531 | ||
4e0d13cb | 5532 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5533 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5534 | M: Lee Jones <[email protected]> |
5535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5536 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5537 | S: Supported |
679655da | 5538 | F: drivers/mfd/ |
55b5940d | 5539 | F: include/linux/mfd/ |
4e0d13cb | 5540 | |
5c4e6f13 | 5541 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5542 | M: Chris Ball <[email protected]> |
b2503a94 | 5543 | L: [email protected] |
245feaa6 CB |
5544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5545 | S: Maintained | |
679655da JP |
5546 | F: drivers/mmc/ |
5547 | F: include/linux/mmc/ | |
c117ab84 | 5548 | F: include/uapi/linux/mmc/ |
baca2da4 | 5549 | |
15a0580c | 5550 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5551 | S: Orphan |
679655da JP |
5552 | F: drivers/mmc/host/mmc_spi.c |
5553 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5554 | |
1da177e4 | 5555 | MULTISOUND SOUND DRIVER |
8b58be88 | 5556 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5557 | S: Maintained |
679655da JP |
5558 | F: Documentation/sound/oss/MultiSound |
5559 | F: sound/oss/msnd* | |
1da177e4 | 5560 | |
d735410a | 5561 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5562 | S: Orphan |
c897401b | 5563 | F: drivers/tty/isicom.c |
679655da | 5564 | F: include/linux/isicom.h |
d735410a | 5565 | |
550a7375 | 5566 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5567 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5568 | L: [email protected] |
43b416e5 | 5569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5570 | S: Maintained |
679655da | 5571 | F: drivers/usb/musb/ |
550a7375 | 5572 | |
ea0af5f6 MK |
5573 | MXL5007T MEDIA DRIVER |
5574 | M: Michael Krufky <[email protected]> | |
5575 | L: [email protected] | |
5576 | W: http://linuxtv.org/ | |
5577 | W: http://github.com/mkrufky | |
5578 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5579 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5580 | S: Maintained | |
5581 | F: drivers/media/tuners/mxl5007t.* | |
5582 | ||
2d3cf588 | 5583 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
8b58be88 | 5584 | M: Andrew Gallatin <[email protected]> |
2d3cf588 BG |
5585 | L: [email protected] |
5586 | W: http://www.myri.com/scs/download-Myri10GE.html | |
5587 | S: Supported | |
93f7848b | 5588 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5589 | |
1da177e4 | 5590 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5591 | S: Orphan |
d9fb9f38 | 5592 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5593 | |
23dc05a3 DM |
5594 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5595 | M: Daniel Mack <[email protected]> | |
5596 | S: Maintained | |
5597 | L: [email protected] | |
5598 | W: http://www.native-instruments.com | |
5599 | F: sound/usb/caiaq/ | |
5600 | ||
1da177e4 | 5601 | NCP FILESYSTEM |
52653199 PV |
5602 | M: Petr Vandrovec <[email protected]> |
5603 | S: Odd Fixes | |
679655da | 5604 | F: fs/ncpfs/ |
1da177e4 LT |
5605 | |
5606 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5607 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5608 | L: [email protected] |
5609 | S: Maintained | |
679655da | 5610 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5611 | |
4aa3eb4c GR |
5612 | NCT6775 HARDWARE MONITOR DRIVER |
5613 | M: Guenter Roeck <[email protected]> | |
5614 | L: [email protected] | |
5615 | S: Maintained | |
5616 | F: Documentation/hwmon/nct6775 | |
5617 | F: drivers/hwmon/nct6775.c | |
5618 | ||
3c2d774c | 5619 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5620 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5621 | L: [email protected] |
e3d33cb1 | 5622 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5623 | S: Supported |
5624 | F: drivers/infiniband/hw/nes/ | |
5625 | ||
be2f2e84 | 5626 | NETEM NETWORK EMULATOR |
adbbf69d | 5627 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5628 | L: [email protected] |
be2f2e84 | 5629 | S: Maintained |
679655da | 5630 | F: net/sched/sch_netem.c |
be2f2e84 | 5631 | |
b2f5a051 | 5632 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5633 | M: Jon Mason <[email protected]> |
4a58448b | 5634 | L: [email protected] |
4a58448b | 5635 | S: Supported |
679655da | 5636 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5637 | F: Documentation/networking/vxge.txt |
86387e1a | 5638 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5639 | |
42010ed0 | 5640 | NETFILTER/IPTABLES |
0e05e192 | 5641 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5642 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5643 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5644 | L: [email protected] |
5645 | L: [email protected] | |
82b98543 | 5646 | L: [email protected] |
1da177e4 LT |
5647 | W: http://www.netfilter.org/ |
5648 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5649 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5650 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5652 | S: Supported |
679655da JP |
5653 | F: include/linux/netfilter* |
5654 | F: include/linux/netfilter/ | |
5655 | F: include/net/netfilter/ | |
c117ab84 CEB |
5656 | F: include/uapi/linux/netfilter* |
5657 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5658 | F: net/*/netfilter.c |
5659 | F: net/*/netfilter/ | |
5660 | F: net/netfilter/ | |
1da177e4 | 5661 | |
4cc67735 | 5662 | NETLABEL |
87a0874c | 5663 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5664 | W: http://netlabel.sf.net |
5665 | L: [email protected] | |
87a0874c | 5666 | S: Maintained |
80811493 | 5667 | F: Documentation/netlabel/ |
679655da JP |
5668 | F: include/net/netlabel.h |
5669 | F: net/netlabel/ | |
4cc67735 | 5670 | |
1da177e4 | 5671 | NETROM NETWORK LAYER |
8b58be88 | 5672 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5673 | L: [email protected] |
d34cb28a | 5674 | W: http://www.linux-ax25.org/ |
1da177e4 | 5675 | S: Maintained |
679655da | 5676 | F: include/net/netrom.h |
c117ab84 | 5677 | F: include/uapi/linux/netrom.h |
679655da | 5678 | F: net/netrom/ |
1da177e4 | 5679 | |
5ddb88c0 | 5680 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5681 | M: Paul Clements <[email protected]> |
1da177e4 | 5682 | S: Maintained |
5e4b269b | 5683 | L: [email protected] |
679655da JP |
5684 | F: Documentation/blockdev/nbd.txt |
5685 | F: drivers/block/nbd.c | |
5686 | F: include/linux/nbd.h | |
c117ab84 | 5687 | F: include/uapi/linux/nbd.h |
1da177e4 | 5688 | |
6e43650c NH |
5689 | NETWORK DROP MONITOR |
5690 | M: Neil Horman <[email protected]> | |
5691 | L: [email protected] | |
5692 | S: Maintained | |
5693 | W: https://fedorahosted.org/dropwatch/ | |
5694 | F: net/core/drop_monitor.c | |
5695 | ||
1da177e4 | 5696 | NETWORKING [GENERAL] |
8b58be88 | 5697 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5698 | L: [email protected] |
b1e8fd54 | 5699 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5700 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5701 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5703 | S: Maintained |
679655da JP |
5704 | F: net/ |
5705 | F: include/net/ | |
018d21ed JP |
5706 | F: include/linux/in.h |
5707 | F: include/linux/net.h | |
5708 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5709 | F: include/uapi/linux/in.h |
5710 | F: include/uapi/linux/net.h | |
5711 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5712 | |
5713 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5714 | M: "David S. Miller" <[email protected]> |
5715 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5716 | M: James Morris <[email protected]> |
5717 | M: Hideaki YOSHIFUJI <[email protected]> | |
5718 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5719 | L: [email protected] |
08deed1e | 5720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5721 | S: Maintained |
679655da JP |
5722 | F: net/ipv4/ |
5723 | F: net/ipv6/ | |
5724 | F: include/net/ip* | |
0a14842f | 5725 | F: arch/x86/net/* |
1da177e4 | 5726 | |
73b7656c DM |
5727 | NETWORKING [IPSEC] |
5728 | M: Steffen Klassert <[email protected]> | |
5729 | M: Herbert Xu <[email protected]> | |
5730 | M: "David S. Miller" <[email protected]> | |
5731 | L: [email protected] | |
5732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5733 | S: Maintained | |
5734 | F: net/xfrm/ | |
5735 | F: net/key/ | |
5736 | F: net/ipv4/xfrm* | |
5737 | F: net/ipv6/xfrm* | |
5738 | F: include/uapi/linux/xfrm.h | |
5739 | F: include/net/xfrm.h | |
5740 | ||
10e2ff1c | 5741 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5742 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5743 | L: [email protected] |
5744 | S: Maintained | |
5745 | ||
29f8f632 | 5746 | NETWORKING [WIRELESS] |
8b58be88 | 5747 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5748 | L: [email protected] |
8a6e2535 | 5749 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5751 | S: Maintained |
34b921cf JP |
5752 | F: net/mac80211/ |
5753 | F: net/rfkill/ | |
679655da JP |
5754 | F: net/wireless/ |
5755 | F: include/net/ieee80211* | |
cc8b4a2b | 5756 | F: include/linux/wireless.h |
c117ab84 | 5757 | F: include/uapi/linux/wireless.h |
c984e24d | 5758 | F: include/net/iw_handler.h |
34b921cf | 5759 | F: drivers/net/wireless/ |
29f8f632 | 5760 | |
788873ac JP |
5761 | NETWORKING DRIVERS |
5762 | L: [email protected] | |
5763 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5764 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5766 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5767 | S: Odd Fixes |
5768 | F: drivers/net/ | |
018d21ed | 5769 | F: include/linux/if_* |
0b63bf1f JD |
5770 | F: include/linux/netdevice.h |
5771 | F: include/linux/arcdevice.h | |
5772 | F: include/linux/etherdevice.h | |
5773 | F: include/linux/fcdevice.h | |
5774 | F: include/linux/fddidevice.h | |
5775 | F: include/linux/hippidevice.h | |
5776 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5777 | F: include/uapi/linux/if_* |
5778 | F: include/uapi/linux/netdevice.h | |
788873ac | 5779 | |
3d396eb1 | 5780 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5781 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
5782 | M: Sony Chacko <[email protected]> |
5783 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5784 | L: [email protected] |
9c2b5bde | 5785 | W: http://www.qlogic.com |
3d396eb1 | 5786 | S: Supported |
aa43c215 | 5787 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5788 | |
6423d30f AAJ |
5789 | NFC SUBSYSTEM |
5790 | M: Lauro Ramos Venancio <[email protected]> | |
5791 | M: Aloisio Almeida Jr <[email protected]> | |
5792 | M: Samuel Ortiz <[email protected]> | |
5793 | L: [email protected] | |
5adf54de | 5794 | L: [email protected] (moderated for non-subscribers) |
6423d30f AAJ |
5795 | S: Maintained |
5796 | F: net/nfc/ | |
55eb94f9 | 5797 | F: include/net/nfc/ |
c117ab84 | 5798 | F: include/uapi/linux/nfc.h |
6423d30f | 5799 | F: drivers/nfc/ |
08eaa1e0 | 5800 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5801 | |
e8b43555 | 5802 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5803 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5804 | L: [email protected] |
5805 | W: http://client.linux-nfs.org | |
5806 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5807 | S: Maintained |
679655da JP |
5808 | F: fs/lockd/ |
5809 | F: fs/nfs/ | |
5810 | F: fs/nfs_common/ | |
5811 | F: net/sunrpc/ | |
5812 | F: include/linux/lockd/ | |
5813 | F: include/linux/nfs* | |
5814 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5815 | F: include/uapi/linux/nfs* |
5816 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5817 | |
85ef9cea | 5818 | NILFS2 FILESYSTEM |
8b58be88 | 5819 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 5820 | L: [email protected] |
85ef9cea | 5821 | W: http://www.nilfs.org/en/ |
af1761f2 | 5822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5823 | S: Supported |
679655da JP |
5824 | F: Documentation/filesystems/nilfs2.txt |
5825 | F: fs/nilfs2/ | |
5826 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5827 | |
1da177e4 | 5828 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5829 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
5830 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5831 | S: Maintained | |
679655da JP |
5832 | F: Documentation/scsi/NinjaSCSI.txt |
5833 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5834 | |
5835 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5836 | M: GOTO Masanori <[email protected]> |
5837 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
5838 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5839 | S: Maintained | |
679655da JP |
5840 | F: Documentation/scsi/NinjaSCSI.txt |
5841 | F: drivers/scsi/nsp32* | |
1da177e4 | 5842 | |
fce8a7bb JM |
5843 | NTB DRIVER |
5844 | M: Jon Mason <[email protected]> | |
5845 | S: Supported | |
5846 | F: drivers/ntb/ | |
548c237c | 5847 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
5848 | F: include/linux/ntb.h |
5849 | ||
1da177e4 | 5850 | NTFS FILESYSTEM |
2818ef50 | 5851 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 5852 | L: [email protected] |
2818ef50 | 5853 | W: http://www.tuxera.com/ |
e6f4dee7 | 5854 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5855 | S: Supported |
679655da JP |
5856 | F: Documentation/filesystems/ntfs.txt |
5857 | F: fs/ntfs/ | |
1da177e4 | 5858 | |
9eb8ef74 | 5859 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5860 | M: Antonino Daplas <[email protected]> |
c69f677c | 5861 | L: [email protected] |
ce00f85c | 5862 | S: Maintained |
679655da JP |
5863 | F: drivers/video/riva/ |
5864 | F: drivers/video/nvidia/ | |
1da177e4 | 5865 | |
79461681 MW |
5866 | NVM EXPRESS DRIVER |
5867 | M: Matthew Wilcox <[email protected]> | |
5868 | L: [email protected] | |
5869 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
5870 | S: Supported | |
5be37bf9 | 5871 | F: drivers/block/nvme* |
79461681 MW |
5872 | F: include/linux/nvme.h |
5873 | ||
f5525786 | 5874 | OMAP SUPPORT |
0e24bdd4 | 5875 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
5876 | L: [email protected] |
5877 | W: http://www.muru.com/linux/omap/ | |
5878 | W: http://linux.omap.com/ | |
8a6e2535 | 5879 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5881 | S: Maintained |
4e04d5a3 | 5882 | F: arch/arm/*omap*/ |
046d0a37 JD |
5883 | F: drivers/i2c/busses/i2c-omap.c |
5884 | F: include/linux/i2c-omap.h | |
f5525786 | 5885 | |
50f29fbd TL |
5886 | OMAP DEVICE TREE SUPPORT |
5887 | M: Benoît Cousson <[email protected]> | |
5888 | M: Tony Lindgren <[email protected]> | |
5889 | L: [email protected] | |
d0fb18c5 | 5890 | L: [email protected] |
50f29fbd TL |
5891 | S: Maintained |
5892 | F: arch/arm/boot/dts/*omap* | |
5893 | F: arch/arm/boot/dts/*am3* | |
5894 | ||
f5525786 | 5895 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5896 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
5897 | L: [email protected] |
5898 | S: Maintained | |
5899 | F: arch/arm/*omap*/*clock* | |
5900 | ||
5901 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 5902 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
5903 | L: [email protected] |
5904 | S: Maintained | |
5905 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5906 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5907 | |
692ab1f3 PW |
5908 | OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT |
5909 | M: Rajendra Nayak <[email protected]> | |
5910 | M: Paul Walmsley <[email protected]> | |
5911 | L: [email protected] | |
5912 | S: Maintained | |
5913 | F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |
5914 | F: arch/arm/mach-omap2/powerdomain44xx.c | |
5915 | F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |
5916 | F: arch/arm/mach-omap2/clockdomain44xx.c | |
5917 | ||
f5525786 | 5918 | OMAP AUDIO SUPPORT |
6c284903 | 5919 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 5920 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
5921 | L: [email protected] (subscribers-only) |
5922 | L: [email protected] | |
5923 | S: Maintained | |
5924 | F: sound/soc/omap/ | |
5925 | ||
5926 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5927 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 5928 | L: [email protected] |
f5525786 TL |
5929 | L: [email protected] |
5930 | S: Maintained | |
5931 | F: drivers/video/omap/ | |
5932 | ||
676eec0d | 5933 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5934 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 5935 | L: [email protected] |
676eec0d | 5936 | L: [email protected] |
178ff4c9 | 5937 | S: Maintained |
676eec0d | 5938 | F: drivers/video/omap2/ |
178ff4c9 TV |
5939 | F: Documentation/arm/OMAP/DSS |
5940 | ||
8b37fcfc OBC |
5941 | OMAP HARDWARE SPINLOCK SUPPORT |
5942 | M: Ohad Ben-Cohen <[email protected]> | |
5943 | L: [email protected] | |
5944 | S: Maintained | |
5945 | F: drivers/hwspinlock/omap_hwspinlock.c | |
5946 | F: arch/arm/mach-omap2/hwspinlock.c | |
5947 | ||
f5525786 | 5948 | OMAP MMC SUPPORT |
8b58be88 | 5949 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
5950 | L: [email protected] |
5951 | S: Maintained | |
653f41b5 MC |
5952 | F: drivers/mmc/host/omap.c |
5953 | ||
5954 | OMAP HS MMC SUPPORT | |
14006bfb | 5955 | M: Balaji T K <[email protected]> |
0a4585c6 | 5956 | L: [email protected] |
653f41b5 | 5957 | L: [email protected] |
0a4585c6 | 5958 | S: Maintained |
653f41b5 | 5959 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
5960 | |
5961 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 5962 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
5963 | S: Maintained |
5964 | F: drivers/char/hw_random/omap-rng.c | |
5965 | ||
f400c82e PW |
5966 | OMAP HWMOD SUPPORT |
5967 | M: Benoît Cousson <[email protected]> | |
5968 | M: Paul Walmsley <[email protected]> | |
5969 | L: [email protected] | |
5970 | S: Maintained | |
8fc8b12b | 5971 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
5972 | |
5973 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
5974 | M: Benoît Cousson <[email protected]> | |
5975 | L: [email protected] | |
5976 | S: Maintained | |
5977 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
5978 | ||
7e8970e1 LP |
5979 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
5980 | M: Laurent Pinchart <[email protected]> | |
5981 | L: [email protected] | |
5982 | S: Maintained | |
90d72ac6 | 5983 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 5984 | |
f5525786 | 5985 | OMAP USB SUPPORT |
f299470a | 5986 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
5987 | L: [email protected] |
5988 | L: [email protected] | |
43b416e5 | 5989 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 5990 | S: Maintained |
a16fbd65 JP |
5991 | F: drivers/usb/*/*omap* |
5992 | F: arch/arm/*omap*/usb* | |
f5525786 | 5993 | |
6d994710 KH |
5994 | OMAP GPIO DRIVER |
5995 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 5996 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
5997 | L: [email protected] |
5998 | S: Maintained | |
5999 | F: drivers/gpio/gpio-omap.c | |
6000 | ||
0ad122d9 | 6001 | OMFS FILESYSTEM |
8b58be88 | 6002 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
6003 | L: [email protected] |
6004 | S: Maintained | |
679655da JP |
6005 | F: Documentation/filesystems/omfs.txt |
6006 | F: fs/omfs/ | |
0ad122d9 | 6007 | |
c1986ee9 | 6008 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6009 | M: Harald Welte <[email protected]> |
c1986ee9 | 6010 | S: Maintained |
679655da JP |
6011 | F: drivers/char/pcmcia/cm4000_cs.c |
6012 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6013 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6014 | |
77c44ab1 | 6015 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6016 | M: Harald Welte <[email protected]> |
77c44ab1 | 6017 | S: Maintained |
679655da | 6018 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6019 | |
77d5140f | 6020 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6021 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6022 | L: [email protected] |
275ffde4 | 6023 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6024 | S: Maintained |
90d72ac6 | 6025 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6026 | |
431bca73 | 6027 | ONENAND FLASH DRIVER |
8b58be88 | 6028 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6029 | L: [email protected] |
6030 | S: Maintained | |
679655da JP |
6031 | F: drivers/mtd/onenand/ |
6032 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6033 | |
1da177e4 | 6034 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6035 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6036 | L: [email protected] |
6037 | L: [email protected] | |
6038 | S: Maintained | |
f7269cfc JD |
6039 | F: Documentation/scsi/osst.txt |
6040 | F: drivers/scsi/osst.* | |
6041 | F: drivers/scsi/osst_*.h | |
6042 | F: drivers/scsi/st.h | |
1da177e4 | 6043 | |
e2d1d6c0 | 6044 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6045 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6046 | L: [email protected] |
e2d1d6c0 | 6047 | S: Maintained |
679655da JP |
6048 | F: Documentation/i2c/busses/i2c-ocores |
6049 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6050 | |
860c44c1 | 6051 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6052 | M: Grant Likely <[email protected]> |
f910b831 | 6053 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6054 | L: [email protected] |
860c44c1 | 6055 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6056 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6057 | S: Maintained |
f8828205 | 6058 | F: drivers/of/ |
860c44c1 | 6059 | F: include/linux/of*.h |
f8828205 | 6060 | F: scripts/dtc/ |
860c44c1 | 6061 | K: of_get_property |
d945fa0d | 6062 | K: of_match_table |
860c44c1 | 6063 | |
f8828205 GL |
6064 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6065 | M: Rob Herring <[email protected]> | |
6066 | M: Pawel Moll <[email protected]> | |
6067 | M: Mark Rutland <[email protected]> | |
6068 | M: Stephen Warren <[email protected]> | |
6069 | M: Ian Campbell <[email protected]> | |
6070 | L: [email protected] | |
6071 | S: Maintained | |
6072 | F: Documentation/devicetree/ | |
6073 | F: arch/*/boot/dts/ | |
6074 | F: include/dt-bindings/ | |
6075 | ||
19f9d392 JB |
6076 | OPENRISC ARCHITECTURE |
6077 | M: Jonas Bonn <[email protected]> | |
6078 | W: http://openrisc.net | |
eab7c1c0 | 6079 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6080 | S: Maintained |
6081 | T: git git://openrisc.net/~jonas/linux | |
6082 | F: arch/openrisc | |
6083 | ||
ccb1352e JG |
6084 | OPENVSWITCH |
6085 | M: Jesse Gross <[email protected]> | |
6086 | L: [email protected] | |
6087 | W: http://openvswitch.org | |
6088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6089 | S: Maintained | |
6090 | F: net/openvswitch/ | |
6091 | ||
af39917d CL |
6092 | OPL4 DRIVER |
6093 | M: Clemens Ladisch <[email protected]> | |
6094 | L: [email protected] (moderated for non-subscribers) | |
6095 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6096 | S: Maintained | |
6097 | F: sound/drivers/opl4/ | |
6098 | ||
1da177e4 | 6099 | OPROFILE |
4cf7e718 | 6100 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6101 | L: [email protected] |
6102 | S: Maintained | |
81c4a8a6 | 6103 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6104 | F: arch/*/oprofile/ |
6105 | F: drivers/oprofile/ | |
6106 | F: include/linux/oprofile.h | |
1da177e4 | 6107 | |
e2d1d6c0 | 6108 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6109 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6110 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6111 | L: [email protected] (moderated for non-subscribers) |
6112 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6113 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6114 | S: Supported |
679655da JP |
6115 | F: Documentation/filesystems/ocfs2.txt |
6116 | F: Documentation/filesystems/dlmfs.txt | |
6117 | F: fs/ocfs2/ | |
e2d1d6c0 | 6118 | |
1da177e4 | 6119 | ORINOCO DRIVER |
724c6b35 | 6120 | L: [email protected] |
491b26b4 | 6121 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6122 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6123 | S: Orphan |
679655da | 6124 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6125 | |
42c55aa8 | 6126 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6127 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6128 | M: Benny Halevy <[email protected]> |
68274794 BH |
6129 | L: [email protected] |
6130 | W: http://open-osd.org | |
54e5881d | 6131 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6132 | S: Maintained |
42c55aa8 | 6133 | F: drivers/scsi/osd/ |
6b6f0b6c | 6134 | F: include/scsi/osd_* |
42c55aa8 | 6135 | F: fs/exofs/ |
68274794 | 6136 | |
e2d1d6c0 | 6137 | P54 WIRELESS DRIVER |
084cb0fe | 6138 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6139 | L: [email protected] |
084cb0fe | 6140 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6141 | S: Maintained |
679655da | 6142 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6143 | |
f5cd7872 | 6144 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6145 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6146 | L: [email protected] |
6147 | S: Maintained | |
ded19add | 6148 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6149 | |
beb58aa3 | 6150 | PA SEMI SMBUS DRIVER |
8b58be88 | 6151 | M: Olof Johansson <[email protected]> |
846557d3 | 6152 | L: [email protected] |
beb58aa3 | 6153 | S: Maintained |
679655da | 6154 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6155 | |
48fc267e SK |
6156 | PADATA PARALLEL EXECUTION MECHANISM |
6157 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6158 | L: [email protected] |
6159 | S: Maintained | |
6160 | F: kernel/padata.c | |
6161 | F: include/linux/padata.h | |
6162 | F: Documentation/padata.txt | |
6163 | ||
709ee531 | 6164 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6165 | M: Harald Welte <[email protected]> |
d0944853 | 6166 | L: [email protected] |
709ee531 | 6167 | S: Maintained |
679655da | 6168 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6169 | |
368dd5ac | 6170 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6171 | M: David Howells <[email protected]> |
6172 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6173 | L: [email protected] (moderated for non-subscribers) |
6174 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6175 | S: Maintained | |
679655da JP |
6176 | F: Documentation/mn10300/ |
6177 | F: arch/mn10300/ | |
4fa97181 | 6178 | |
1da177e4 | 6179 | PARALLEL PORT SUPPORT |
3dd1a329 | 6180 | L: [email protected] (subscribers-only) |
5fdc2abe | 6181 | S: Orphan |
679655da JP |
6182 | F: drivers/parport/ |
6183 | F: include/linux/parport*.h | |
6184 | F: drivers/char/ppdev.c | |
c117ab84 | 6185 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6186 | |
4cdf6bc2 | 6187 | PARAVIRT_OPS INTERFACE |
d633180c | 6188 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6189 | M: Chris Wright <[email protected]> |
6190 | M: Alok Kataria <[email protected]> | |
6191 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6192 | L: [email protected] |
4cdf6bc2 | 6193 | S: Supported |
679655da JP |
6194 | F: Documentation/ia64/paravirt_ops.txt |
6195 | F: arch/*/kernel/paravirt* | |
6196 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6197 | |
e2d1d6c0 | 6198 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6199 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6200 | L: [email protected] (subscribers-only) |
6201 | W: http://www.torque.net/linux-pp.html | |
6202 | S: Maintained | |
679655da JP |
6203 | F: Documentation/blockdev/paride.txt |
6204 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6205 | |
6206 | PARISC ARCHITECTURE | |
b8828770 | 6207 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6208 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6209 | L: [email protected] |
6210 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6211 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6214 | S: Maintained |
679655da | 6215 | F: arch/parisc/ |
2b6bac9e | 6216 | F: Documentation/parisc/ |
679655da | 6217 | F: drivers/parisc/ |
2b6bac9e HD |
6218 | F: drivers/char/agp/parisc-agp.c |
6219 | F: drivers/input/serio/gscps2.c | |
6220 | F: drivers/parport/parport_gsc.* | |
6221 | F: drivers/tty/serial/8250/8250_gsc.c | |
6222 | F: drivers/video/sti* | |
6223 | F: drivers/video/console/sti* | |
6224 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6225 | |
1662d32c | 6226 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6227 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6228 | L: [email protected] |
6229 | S: Maintained | |
679655da JP |
6230 | F: Documentation/hwmon/pc87360 |
6231 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6232 | |
6233 | PC8736x GPIO DRIVER | |
8b58be88 | 6234 | M: Jim Cromie <[email protected]> |
1662d32c | 6235 | S: Maintained |
679655da | 6236 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6237 | |
1ad107fd JD |
6238 | PC87427 HARDWARE MONITORING DRIVER |
6239 | M: Jean Delvare <[email protected]> | |
6240 | L: [email protected] | |
6241 | S: Maintained | |
6242 | F: Documentation/hwmon/pc87427 | |
6243 | F: drivers/hwmon/pc87427.c | |
6244 | ||
b26e0ed4 | 6245 | PCA9532 LED DRIVER |
8b58be88 | 6246 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6247 | S: Maintained |
d5ca6918 JP |
6248 | F: drivers/leds/leds-pca9532.c |
6249 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6250 | |
5ce914a8 | 6251 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6252 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6253 | L: [email protected] |
6254 | S: Maintained | |
b4f0b74e | 6255 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6256 | |
3971dae5 | 6257 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6258 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6259 | S: Maintained |
6260 | F: drivers/firmware/pcdp.* | |
6261 | ||
065c6359 | 6262 | PCI ERROR RECOVERY |
6305902c | 6263 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6264 | L: [email protected] |
065c6359 | 6265 | S: Supported |
679655da | 6266 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6267 | |
1da177e4 | 6268 | PCI SUBSYSTEM |
5ac3a6d2 | 6269 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6270 | L: [email protected] |
99662dd1 | 6271 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6273 | S: Supported |
679655da JP |
6274 | F: Documentation/PCI/ |
6275 | F: drivers/pci/ | |
6276 | F: include/linux/pci* | |
1da177e4 | 6277 | |
1da177e4 | 6278 | PCMCIA SUBSYSTEM |
4230dfc9 | 6279 | P: Linux PCMCIA Team |
f5df5881 | 6280 | L: [email protected] |
6650e0a5 | 6281 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6283 | S: Maintained |
679655da JP |
6284 | F: Documentation/pcmcia/ |
6285 | F: drivers/pcmcia/ | |
6286 | F: include/pcmcia/ | |
1da177e4 LT |
6287 | |
6288 | PCNET32 NETWORK DRIVER | |
227fb925 | 6289 | M: Don Fry <[email protected]> |
979b6c13 | 6290 | L: [email protected] |
1da177e4 | 6291 | S: Maintained |
b955f6ca | 6292 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6293 | |
48fc267e SK |
6294 | PCRYPT PARALLEL CRYPTO ENGINE |
6295 | M: Steffen Klassert <[email protected]> | |
6296 | L: [email protected] | |
6297 | S: Maintained | |
6298 | F: crypto/pcrypt.c | |
6299 | F: include/crypto/pcrypt.h | |
6300 | ||
e72df0b8 TH |
6301 | PER-CPU MEMORY ALLOCATOR |
6302 | M: Tejun Heo <[email protected]> | |
6303 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6305 | S: Maintained | |
6306 | F: include/linux/percpu*.h | |
6307 | F: mm/percpu*.c | |
6308 | F: arch/*/include/asm/percpu.h | |
6309 | ||
ad4ecbcb | 6310 | PER-TASK DELAY ACCOUNTING |
185e595f | 6311 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6312 | S: Maintained |
679655da JP |
6313 | F: include/linux/delayacct.h |
6314 | F: kernel/delayacct.c | |
ad4ecbcb | 6315 | |
57c0c15b | 6316 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6317 | M: Peter Zijlstra <[email protected]> |
6318 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6319 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6320 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 6321 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6322 | S: Supported |
d53e8365 | 6323 | F: kernel/events/* |
a003236c | 6324 | F: include/linux/perf_event.h |
c117ab84 | 6325 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6326 | F: arch/*/kernel/perf_event*.c |
6327 | F: arch/*/kernel/*/perf_event*.c | |
6328 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6329 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6330 | F: arch/*/kernel/perf_callchain.c |
6331 | F: tools/perf/ | |
6c0b3244 | 6332 | |
dd49d0f5 | 6333 | PERSONALITY HANDLING |
8b58be88 | 6334 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6335 | L: [email protected] |
6336 | S: Maintained | |
679655da | 6337 | F: include/linux/personality.h |
c117ab84 | 6338 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6339 | |
838e7a03 | 6340 | PHONET PROTOCOL |
2a06b40f | 6341 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6342 | S: Supported |
6343 | F: Documentation/networking/phonet.txt | |
6344 | F: include/linux/phonet.h | |
6345 | F: include/net/phonet/ | |
c117ab84 | 6346 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6347 | F: net/phonet/ |
6348 | ||
1da177e4 | 6349 | PHRAM MTD DRIVER |
8b58be88 | 6350 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6351 | L: [email protected] |
6352 | S: Maintained | |
679655da | 6353 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6354 | |
efdbb10e BP |
6355 | PICOLCD HID DRIVER |
6356 | M: Bruno Prémont <[email protected]> | |
6357 | L: [email protected] | |
6358 | S: Maintained | |
6359 | F: drivers/hid/hid-picolcd* | |
6360 | ||
a53bfa07 JI |
6361 | PICOXCELL SUPPORT |
6362 | M: Jamie Iles <[email protected]> | |
6363 | L: [email protected] (moderated for non-subscribers) | |
6364 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6365 | S: Supported | |
6366 | F: arch/arm/mach-picoxcell | |
6367 | F: drivers/*/picoxcell* | |
6368 | F: drivers/*/*/picoxcell* | |
6369 | ||
2744e8af LW |
6370 | PIN CONTROL SUBSYSTEM |
6371 | M: Linus Walleij <[email protected]> | |
6372 | S: Maintained | |
07f29ba6 | 6373 | F: drivers/pinctrl/ |
8e406fe4 | 6374 | F: include/linux/pinctrl/ |
2744e8af | 6375 | |
2201bbb8 JCPV |
6376 | PIN CONTROLLER - ATMEL AT91 |
6377 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6378 | L: [email protected] (moderated for non-subscribers) | |
6379 | S: Maintained | |
6380 | F: drivers/pinctrl/pinctrl-at91.c | |
6381 | ||
b75e60d6 DA |
6382 | PIN CONTROLLER - SAMSUNG |
6383 | M: Tomasz Figa <[email protected]> | |
6384 | M: Thomas Abraham <[email protected]> | |
6385 | L: [email protected] (moderated for non-subscribers) | |
6386 | L: [email protected] (moderated for non-subscribers) | |
6387 | S: Maintained | |
6388 | F: drivers/pinctrl/pinctrl-exynos.* | |
6389 | F: drivers/pinctrl/pinctrl-s3c* | |
6390 | F: drivers/pinctrl/pinctrl-samsung.* | |
6391 | ||
deda8287 | 6392 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6393 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6394 | L: [email protected] |
6395 | L: [email protected] (moderated for non-subscribers) | |
6396 | W: http://www.st.com/spear | |
6397 | S: Maintained | |
8e406fe4 | 6398 | F: drivers/pinctrl/spear/ |
deda8287 | 6399 | |
249a6771 | 6400 | PKTCDVD DRIVER |
dbd47133 | 6401 | M: Jiri Kosina <[email protected]> |
249a6771 | 6402 | S: Maintained |
679655da JP |
6403 | F: drivers/block/pktcdvd.c |
6404 | F: include/linux/pktcdvd.h | |
c117ab84 | 6405 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6406 | |
b31d8273 G |
6407 | PKUNITY SOC DRIVERS |
6408 | M: Guan Xuetao <[email protected]> | |
6409 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6410 | S: Maintained | |
6411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6412 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6413 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6414 | F: drivers/video/fb-puv3.c |
2809e80b | 6415 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6416 | |
9d2ecfb7 | 6417 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6418 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6419 | L: [email protected] |
6420 | W: http://www.lm-sensors.org/ | |
6421 | W: http://www.roeck-us.net/linux/drivers/ | |
6422 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6423 | S: Maintained | |
6424 | F: Documentation/hwmon/pmbus | |
6425 | F: drivers/hwmon/pmbus/ | |
6426 | F: include/linux/i2c/pmbus.h | |
6427 | ||
89a36810 | 6428 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6429 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6430 | L: [email protected] |
6431 | W: http://www.pmc-sierra.com/ | |
6432 | S: Supported | |
6433 | F: drivers/scsi/pmcraid.* | |
6434 | ||
dbf9bfe6 | 6435 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6436 | M: [email protected] |
dbf9bfe6 | 6437 | M: [email protected] |
6438 | L: [email protected] | |
6439 | S: Supported | |
6440 | F: drivers/scsi/pm8001/ | |
6441 | ||
1da177e4 | 6442 | POSIX CLOCKS and TIMERS |
8b58be88 | 6443 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 6444 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6445 | S: Supported |
679655da JP |
6446 | F: fs/timerfd.c |
6447 | F: include/linux/timer* | |
6448 | F: kernel/*timer* | |
1da177e4 | 6449 | |
3be86148 | 6450 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
9d5e2a02 | 6451 | M: Anton Vorontsov <[email protected]> |
8b58be88 | 6452 | M: David Woodhouse <[email protected]> |
54e5881d | 6453 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6454 | S: Maintained |
679655da | 6455 | F: include/linux/power_supply.h |
8cd725a1 | 6456 | F: drivers/power/ |
3be86148 | 6457 | |
1da177e4 | 6458 | PNP SUPPORT |
46a1f21a | 6459 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6460 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6461 | S: Maintained |
679655da | 6462 | F: drivers/pnp/ |
1da177e4 | 6463 | |
999445d4 | 6464 | PNXxxxx I2C DRIVER |
8b58be88 | 6465 | M: Vitaly Wool <[email protected]> |
846557d3 | 6466 | L: [email protected] |
999445d4 | 6467 | S: Maintained |
679655da | 6468 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6469 | |
1da177e4 | 6470 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6471 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6472 | L: [email protected] |
6473 | S: Maintained | |
224cf5ad | 6474 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6475 | |
6476 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6477 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6478 | S: Maintained |
679655da | 6479 | F: net/atm/pppoatm.c |
c117ab84 | 6480 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6481 | |
6482 | PPP OVER ETHERNET | |
8b58be88 | 6483 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6484 | S: Maintained |
224cf5ad JK |
6485 | F: drivers/net/ppp/pppoe.c |
6486 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6487 | |
a6d2370b | 6488 | PPP OVER L2TP |
8b58be88 | 6489 | M: James Chapman <[email protected]> |
a6d2370b | 6490 | S: Maintained |
90ca28d1 | 6491 | F: net/l2tp/l2tp_ppp.c |
679655da | 6492 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6493 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6494 | |
eae9d2ba | 6495 | PPS SUPPORT |
8b58be88 | 6496 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6497 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6498 | L: [email protected] (subscribers-only) | |
6499 | S: Maintained | |
cabaaf41 JP |
6500 | F: Documentation/pps/ |
6501 | F: drivers/pps/ | |
6502 | F: include/linux/pps*.h | |
eae9d2ba | 6503 | |
71a6d0af HW |
6504 | PPTP DRIVER |
6505 | M: Dmitry Kozlov <[email protected]> | |
6506 | L: [email protected] | |
6507 | S: Maintained | |
224cf5ad | 6508 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6509 | W: http://sourceforge.net/projects/accel-pptp |
6510 | ||
1da177e4 | 6511 | PREEMPTIBLE KERNEL |
8b58be88 | 6512 | M: Robert Love <[email protected]> |
1da177e4 LT |
6513 | L: [email protected] |
6514 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6515 | S: Supported | |
679655da JP |
6516 | F: Documentation/preempt-locking.txt |
6517 | F: include/linux/preempt.h | |
1da177e4 LT |
6518 | |
6519 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6520 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6521 | L: [email protected] |
9ef80804 | 6522 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6523 | S: Obsolete |
679655da | 6524 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6525 | |
b3277dfa | 6526 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 6527 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6528 | L: [email protected] |
6529 | S: Maintained | |
679655da | 6530 | F: drivers/ata/sata_promise.* |
b3277dfa | 6531 | |
02c18891 | 6532 | PS3 NETWORK SUPPORT |
b809b9ca | 6533 | M: Geoff Levand <[email protected]> |
02c18891 | 6534 | L: [email protected] |
a4724ed6 | 6535 | L: [email protected] |
b809b9ca | 6536 | S: Maintained |
8df158ac | 6537 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6538 | |
f58a9d17 | 6539 | PS3 PLATFORM SUPPORT |
b809b9ca | 6540 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6541 | L: [email protected] |
6542 | L: [email protected] | |
b809b9ca | 6543 | S: Maintained |
679655da JP |
6544 | F: arch/powerpc/boot/ps3* |
6545 | F: arch/powerpc/include/asm/lv1call.h | |
6546 | F: arch/powerpc/include/asm/ps3*.h | |
6547 | F: arch/powerpc/platforms/ps3/ | |
6548 | F: drivers/*/ps3* | |
6549 | F: drivers/ps3/ | |
fec629b8 | 6550 | F: drivers/rtc/rtc-ps3.c |
679655da | 6551 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6552 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6553 | |
cffb4add | 6554 | PS3VRAM DRIVER |
8b58be88 | 6555 | M: Jim Paris <[email protected]> |
a4724ed6 | 6556 | L: [email protected] |
cffb4add | 6557 | S: Maintained |
8a3977cb | 6558 | F: drivers/block/ps3vram.c |
cffb4add | 6559 | |
8defe599 | 6560 | PSTORE FILESYSTEM |
9d5e2a02 | 6561 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6562 | M: Colin Cross <[email protected]> |
6563 | M: Kees Cook <[email protected]> | |
6564 | M: Tony Luck <[email protected]> | |
6565 | S: Maintained | |
6566 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6567 | F: fs/pstore/ | |
6568 | F: include/linux/pstore* | |
04851772 | 6569 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6570 | F: drivers/acpi/apei/erst.c |
6571 | ||
7fbc415d RC |
6572 | PTP HARDWARE CLOCK SUPPORT |
6573 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6574 | L: [email protected] |
7fbc415d RC |
6575 | S: Maintained |
6576 | W: http://linuxptp.sourceforge.net/ | |
6577 | F: Documentation/ABI/testing/sysfs-ptp | |
6578 | F: Documentation/ptp/* | |
0ecb3cdd | 6579 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6580 | F: drivers/net/phy/dp83640* |
6581 | F: drivers/ptp/* | |
6582 | F: include/linux/ptp_cl* | |
6583 | ||
cf94a4d1 | 6584 | PTRACE SUPPORT |
8b58be88 JP |
6585 | M: Roland McGrath <[email protected]> |
6586 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6587 | S: Maintained |
6588 | F: include/asm-generic/syscall.h | |
6589 | F: include/linux/ptrace.h | |
6590 | F: include/linux/regset.h | |
6591 | F: include/linux/tracehook.h | |
c117ab84 | 6592 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6593 | F: kernel/ptrace.c |
6594 | ||
8320204a | 6595 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6596 | M: Mike Isely <[email protected]> |
16e9495d | 6597 | L: [email protected] (subscribers-only) |
661263b5 | 6598 | L: [email protected] |
8320204a | 6599 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6600 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6601 | S: Maintained |
679655da | 6602 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6603 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6604 | |
39532e6c HG |
6605 | PWC WEBCAM DRIVER |
6606 | M: Hans de Goede <[email protected]> | |
6607 | L: [email protected] | |
6608 | T: git git://linuxtv.org/media_tree.git | |
6609 | S: Maintained | |
6610 | F: drivers/media/usb/pwc/* | |
6611 | ||
200efedd | 6612 | PWM SUBSYSTEM |
aa3495f7 TR |
6613 | M: Thierry Reding <[email protected]> |
6614 | L: [email protected] | |
0c2498f1 | 6615 | S: Maintained |
200efedd TR |
6616 | W: http://gitorious.org/linux-pwm |
6617 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6618 | F: Documentation/pwm.txt | |
6619 | F: Documentation/devicetree/bindings/pwm/ | |
6620 | F: include/linux/pwm.h | |
0c2498f1 | 6621 | F: drivers/pwm/ |
a140b98d TR |
6622 | F: drivers/video/backlight/pwm_bl.c |
6623 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6624 | |
30ec261e | 6625 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6626 | M: Eric Miao <[email protected]> |
6627 | M: Russell King <[email protected]> | |
a323f664 | 6628 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6629 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6630 | T: git git://github.com/hzhuang1/linux.git |
6631 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6632 | S: Maintained |
679655da JP |
6633 | F: arch/arm/mach-pxa/ |
6634 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6635 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6636 | F: drivers/usb/gadget/pxa2* |
6637 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
6638 | F: sound/arm/pxa* |
6639 | F: sound/soc/pxa | |
1da177e4 | 6640 | |
3f640c61 | 6641 | MMP SUPPORT |
8b58be88 | 6642 | M: Eric Miao <[email protected]> |
a323f664 | 6643 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6644 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6645 | T: git git://github.com/hzhuang1/linux.git |
6646 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6647 | S: Maintained |
3f640c61 | 6648 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6649 | |
272f133a PO |
6650 | PXA MMCI DRIVER |
6651 | S: Orphan | |
6652 | ||
57f63bc8 | 6653 | PXA RTC DRIVER |
8b58be88 | 6654 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6655 | L: [email protected] |
6656 | S: Maintained | |
6657 | ||
52a09a04 | 6658 | QIB DRIVER |
8473c603 | 6659 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6660 | L: [email protected] |
6661 | S: Supported | |
6662 | F: drivers/infiniband/hw/qib/ | |
6663 | ||
5e9772b9 JS |
6664 | QLOGIC QLA1280 SCSI DRIVER |
6665 | M: Michael Reed <[email protected]> | |
6666 | L: [email protected] | |
6667 | S: Maintained | |
6668 | F: drivers/scsi/qla1280.[ch] | |
6669 | ||
1da177e4 | 6670 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6671 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6672 | M: [email protected] |
1da177e4 LT |
6673 | L: [email protected] |
6674 | S: Supported | |
679655da JP |
6675 | F: Documentation/scsi/LICENSE.qla2xxx |
6676 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6677 | |
883c98fe | 6678 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
6679 | M: Vikas Chaudhary <[email protected]> |
6680 | M: [email protected] | |
6681 | L: [email protected] | |
6682 | S: Supported | |
bacfb81b | 6683 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
6684 | F: drivers/scsi/qla4xxx/ |
6685 | ||
5a4faa87 | 6686 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6687 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6688 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6689 | M: [email protected] |
6690 | L: [email protected] | |
6691 | S: Supported | |
679655da | 6692 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6693 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6694 | |
0ec00f03 | 6695 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 6696 | M: Himanshu Madhani <[email protected]> |
195ca382 SC |
6697 | M: Rajesh Borundia <[email protected]> |
6698 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 6699 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6700 | M: Sony Chacko <[email protected]> |
7ad031ee | 6701 | M: Sucheta Chakraborty <[email protected]> |
0ec00f03 AKS |
6702 | M: [email protected] |
6703 | L: [email protected] | |
6704 | S: Supported | |
aa43c215 | 6705 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6706 | |
c4e84bde | 6707 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6708 | M: Shahed Shaikh <[email protected]> |
b997d79a | 6709 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6710 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6711 | M: [email protected] |
c4e84bde RM |
6712 | L: [email protected] |
6713 | S: Supported | |
aa43c215 | 6714 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6715 | |
1da177e4 | 6716 | QNX4 FILESYSTEM |
8b58be88 | 6717 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6718 | W: http://www.alarsen.net/linux/qnx4fs/ |
6719 | S: Maintained | |
80811493 | 6720 | F: fs/qnx4/ |
c117ab84 CEB |
6721 | F: include/uapi/linux/qnx4_fs.h |
6722 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6723 | |
91952bc0 AP |
6724 | QT1010 MEDIA DRIVER |
6725 | M: Antti Palosaari <[email protected]> | |
6726 | L: [email protected] | |
6727 | W: http://linuxtv.org/ | |
6728 | W: http://palosaari.fi/linux/ | |
6729 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6730 | T: git git://linuxtv.org/anttip/media_tree.git | |
6731 | S: Maintained | |
6732 | F: drivers/media/tuners/qt1010* | |
6733 | ||
2ea0ffcb KV |
6734 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
6735 | M: Kalle Valo <[email protected]> | |
6736 | L: [email protected] | |
6737 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
6738 | T: git git://github.com/kvalo/ath.git | |
6739 | S: Supported | |
6740 | F: drivers/net/wireless/ath/ath10k/ | |
6741 | ||
4f4567cf RK |
6742 | QUALCOMM HEXAGON ARCHITECTURE |
6743 | M: Richard Kuo <[email protected]> | |
6744 | L: [email protected] | |
6745 | S: Supported | |
6746 | F: arch/hexagon/ | |
6747 | ||
35e3540b HV |
6748 | QUICKCAM PARALLEL PORT WEBCAMS |
6749 | M: Hans Verkuil <[email protected]> | |
6750 | L: [email protected] | |
6751 | T: git git://linuxtv.org/media_tree.git | |
6752 | W: http://linuxtv.org | |
6753 | S: Odd Fixes | |
6754 | F: drivers/media/parport/*-qcam* | |
6755 | ||
602adf40 | 6756 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6757 | M: Yehuda Sadeh <[email protected]> |
6758 | M: Sage Weil <[email protected]> | |
6759 | M: Alex Elder <[email protected]> | |
602adf40 | 6760 | M: [email protected] |
09d90327 SW |
6761 | W: http://ceph.com/ |
6762 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6763 | S: Supported |
6764 | F: drivers/block/rbd.c | |
6765 | F: drivers/block/rbd_types.h | |
6766 | ||
1da177e4 | 6767 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6768 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6769 | L: [email protected] |
1da177e4 | 6770 | S: Maintained |
679655da | 6771 | F: drivers/video/aty/radeon* |
c117ab84 | 6772 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6773 | |
c6c9b34c HG |
6774 | RADIOSHARK RADIO DRIVER |
6775 | M: Hans de Goede <[email protected]> | |
6776 | L: [email protected] | |
6777 | T: git git://linuxtv.org/media_tree.git | |
6778 | S: Maintained | |
6779 | F: drivers/media/radio/radio-shark.c | |
6780 | ||
6781 | RADIOSHARK2 RADIO DRIVER | |
6782 | M: Hans de Goede <[email protected]> | |
6783 | L: [email protected] | |
6784 | T: git git://linuxtv.org/media_tree.git | |
6785 | S: Maintained | |
6786 | F: drivers/media/radio/radio-shark2.c | |
6787 | F: drivers/media/radio/radio-tea5777.c | |
6788 | ||
1da177e4 | 6789 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6790 | M: Paul Mackerras <[email protected]> |
c69f677c | 6791 | L: [email protected] |
1da177e4 | 6792 | S: Maintained |
679655da | 6793 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6794 | |
e7839f25 | 6795 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6796 | P: rt2x00 project |
e1a6542f | 6797 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 6798 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 6799 | M: Helmut Schaa <[email protected]> |
95ea3627 | 6800 | L: [email protected] |
83fc9c89 | 6801 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
6802 | W: http://rt2x00.serialmonkey.com/ |
6803 | S: Maintained | |
54e5881d | 6804 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6805 | F: drivers/net/wireless/rt2x00/ |
6806 | ||
9db5579b | 6807 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6808 | M: Nick Piggin <[email protected]> |
9db5579b | 6809 | S: Maintained |
679655da JP |
6810 | F: Documentation/blockdev/ramdisk.txt |
6811 | F: drivers/block/brd.c | |
9db5579b | 6812 | |
9e95ce27 | 6813 | RANDOM NUMBER DRIVER |
330e0a01 | 6814 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 6815 | S: Maintained |
679655da | 6816 | F: drivers/char/random.c |
9e95ce27 | 6817 | |
394b701c | 6818 | RAPIDIO SUBSYSTEM |
8b58be88 | 6819 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 6820 | M: Alexandre Bounine <[email protected]> |
394b701c | 6821 | S: Maintained |
679655da | 6822 | F: drivers/rapidio/ |
394b701c | 6823 | |
e2d1d6c0 | 6824 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6825 | L: [email protected] |
f52a5490 | 6826 | S: Orphan |
679655da | 6827 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6828 | |
6829 | RCUTORTURE MODULE | |
8b58be88 JP |
6830 | M: Josh Triplett <[email protected]> |
6831 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 6832 | S: Supported |
08deed1e | 6833 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6834 | F: Documentation/RCU/torture.txt |
6835 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6836 | |
c1f766b5 | 6837 | RDC R-321X SoC |
8b58be88 | 6838 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
6839 | S: Maintained |
6840 | ||
db17f395 | 6841 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6842 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
6843 | L: [email protected] |
6844 | S: Maintained | |
58565a35 | 6845 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6846 | |
a09ed661 | 6847 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6848 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 6849 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 6850 | S: Supported |
679655da | 6851 | F: net/rds/ |
a09ed661 | 6852 | |
595182bc | 6853 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6854 | M: Dipankar Sarma <[email protected]> |
6855 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 6856 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6857 | S: Supported |
08deed1e | 6858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6859 | F: Documentation/RCU/ |
9fab9787 | 6860 | X: Documentation/RCU/torture.txt |
f9094d8e | 6861 | F: include/linux/rcu* |
f9094d8e | 6862 | F: kernel/rcu* |
f9094d8e | 6863 | X: kernel/rcutorture.c |
595182bc | 6864 | |
0c86edc0 | 6865 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6866 | M: Alessandro Zummo <[email protected]> |
76465493 | 6867 | L: [email protected] |
8a6e2535 | 6868 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6869 | S: Maintained |
679655da JP |
6870 | F: Documentation/rtc.txt |
6871 | F: drivers/rtc/ | |
6872 | F: include/linux/rtc.h | |
c117ab84 | 6873 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6874 | |
1da177e4 | 6875 | REISERFS FILE SYSTEM |
76c4e5ea | 6876 | L: [email protected] |
1da177e4 | 6877 | S: Supported |
679655da | 6878 | F: fs/reiserfs/ |
1da177e4 | 6879 | |
b83a313b | 6880 | REGISTER MAP ABSTRACTION |
b02e48f2 | 6881 | M: Mark Brown <[email protected]> |
b83a313b MB |
6882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
6883 | S: Supported | |
6884 | F: drivers/base/regmap/ | |
6885 | F: include/linux/regmap.h | |
6886 | ||
400e64df OBC |
6887 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6888 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 6889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6890 | S: Maintained |
6891 | F: drivers/remoteproc/ | |
6892 | F: Documentation/remoteproc.txt | |
6fc26488 | 6893 | F: include/linux/remoteproc.h |
400e64df | 6894 | |
d8115db5 OBC |
6895 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
6896 | M: Ohad Ben-Cohen <[email protected]> | |
6897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
6898 | S: Maintained | |
6899 | F: drivers/rpmsg/ | |
6900 | F: Documentation/rpmsg.txt | |
6901 | F: include/linux/rpmsg.h | |
6902 | ||
e0897645 | 6903 | RFKILL |
8b58be88 | 6904 | M: Johannes Berg <[email protected]> |
19d337df | 6905 | L: [email protected] |
ce466579 JB |
6906 | W: http://wireless.kernel.org/ |
6907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6908 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6909 | S: Maintained |
505c9247 | 6910 | F: Documentation/rfkill.txt |
80811493 | 6911 | F: net/rfkill/ |
e0897645 | 6912 | |
67e054e9 ML |
6913 | RICOH SMARTMEDIA/XD DRIVER |
6914 | M: Maxim Levitsky <[email protected]> | |
6915 | S: Maintained | |
21c26f50 JP |
6916 | F: drivers/mtd/nand/r852.c |
6917 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6918 | |
92634125 ML |
6919 | RICOH R5C592 MEMORYSTICK DRIVER |
6920 | M: Maxim Levitsky <[email protected]> | |
6921 | S: Maintained | |
6922 | F: drivers/memstick/host/r592.* | |
6923 | ||
1da177e4 LT |
6924 | ROCKETPORT DRIVER |
6925 | P: Comtrol Corp. | |
1da177e4 LT |
6926 | W: http://www.comtrol.com |
6927 | S: Maintained | |
679655da | 6928 | F: Documentation/serial/rocket.txt |
c897401b | 6929 | F: drivers/tty/rocket* |
1da177e4 LT |
6930 | |
6931 | ROSE NETWORK LAYER | |
8b58be88 | 6932 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6933 | L: [email protected] |
d34cb28a | 6934 | W: http://www.linux-ax25.org/ |
1da177e4 | 6935 | S: Maintained |
679655da | 6936 | F: include/net/rose.h |
c117ab84 | 6937 | F: include/uapi/linux/rose.h |
679655da | 6938 | F: net/rose/ |
1da177e4 | 6939 | |
91952bc0 AP |
6940 | RTL2830 MEDIA DRIVER |
6941 | M: Antti Palosaari <[email protected]> | |
6942 | L: [email protected] | |
6943 | W: http://linuxtv.org/ | |
6944 | W: http://palosaari.fi/linux/ | |
6945 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6946 | T: git git://linuxtv.org/anttip/media_tree.git | |
6947 | S: Maintained | |
6948 | F: drivers/media/dvb-frontends/rtl2830* | |
6949 | ||
27a0aacf AP |
6950 | RTL2832 MEDIA DRIVER |
6951 | M: Antti Palosaari <[email protected]> | |
6952 | L: [email protected] | |
6953 | W: http://linuxtv.org/ | |
6954 | W: http://palosaari.fi/linux/ | |
6955 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6956 | T: git git://linuxtv.org/anttip/media_tree.git | |
6957 | S: Maintained | |
6958 | F: drivers/media/dvb-frontends/rtl2832* | |
6959 | ||
59840488 | 6960 | RTL8180 WIRELESS DRIVER |
8b58be88 | 6961 | M: "John W. Linville" <[email protected]> |
605bebe2 | 6962 | L: [email protected] |
491b26b4 | 6963 | W: http://wireless.kernel.org/ |
54e5881d | 6964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 6965 | S: Maintained |
3cfeb0c3 | 6966 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 6967 | |
59840488 | 6968 | RTL8187 WIRELESS DRIVER |
9f0939bf | 6969 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
6970 | M: Hin-Tak Leung <[email protected]> |
6971 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 6972 | L: [email protected] |
491b26b4 | 6973 | W: http://wireless.kernel.org/ |
54e5881d | 6974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 6975 | S: Maintained |
3cfeb0c3 | 6976 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 6977 | |
3cf0c8ad LF |
6978 | RTL8192CE WIRELESS DRIVER |
6979 | M: Larry Finger <[email protected]> | |
6980 | M: Chaoming Li <[email protected]> | |
6981 | L: [email protected] | |
491b26b4 | 6982 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
6983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
6984 | S: Maintained | |
6985 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 6986 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 6987 | |
9eb8ef74 | 6988 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 6989 | M: Antonino Daplas <[email protected]> |
c69f677c | 6990 | L: [email protected] |
ce00f85c | 6991 | S: Maintained |
679655da | 6992 | F: drivers/video/savage/ |
9eb8ef74 | 6993 | |
1da177e4 | 6994 | S390 |
8b58be88 JP |
6995 | M: Martin Schwidefsky <[email protected]> |
6996 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 6997 | M: [email protected] |
d58140cc | 6998 | L: [email protected] |
5238da45 HC |
6999 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7000 | S: Supported | |
679655da | 7001 | F: arch/s390/ |
a968cd3e | 7002 | F: drivers/s390/ |
20d16fef | 7003 | F: block/partitions/ibm.c |
3bfe6858 JN |
7004 | F: Documentation/s390/ |
7005 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7006 | |
7007 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7008 | M: Ursula Braun <[email protected]> |
7009 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7010 | M: [email protected] |
d58140cc | 7011 | L: [email protected] |
5238da45 HC |
7012 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7013 | S: Supported | |
679655da | 7014 | F: drivers/s390/net/ |
5238da45 | 7015 | |
feed9b62 | 7016 | S390 ZCRYPT DRIVER |
5c8d0983 | 7017 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7018 | M: [email protected] |
7019 | L: [email protected] | |
a968cd3e | 7020 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7021 | S: Supported |
d5ca6918 | 7022 | F: drivers/s390/crypto/ |
feed9b62 | 7023 | |
5238da45 | 7024 | S390 ZFCP DRIVER |
d38e19d0 | 7025 | M: Steffen Maier <[email protected]> |
5238da45 | 7026 | M: [email protected] |
d58140cc | 7027 | L: [email protected] |
5238da45 | 7028 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7029 | S: Supported |
679655da | 7030 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7031 | |
dd96df2c | 7032 | S390 IUCV NETWORK LAYER |
8b58be88 | 7033 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7034 | M: [email protected] |
7035 | L: [email protected] | |
7036 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7037 | S: Supported | |
679655da JP |
7038 | F: drivers/s390/net/*iucv* |
7039 | F: include/net/iucv/ | |
7040 | F: net/iucv/ | |
dd96df2c | 7041 | |
4dde7f75 | 7042 | S3C24XX SD/MMC Driver |
8b58be88 | 7043 | M: Ben Dooks <[email protected]> |
efc03ecb | 7044 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7045 | S: Supported |
679655da | 7046 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7047 | |
1f15a229 HV |
7048 | SAA6588 RDS RECEIVER DRIVER |
7049 | M: Hans Verkuil <[email protected]> | |
7050 | L: [email protected] | |
7051 | T: git git://linuxtv.org/media_tree.git | |
7052 | W: http://linuxtv.org | |
7053 | S: Odd Fixes | |
7054 | F: drivers/media/i2c/saa6588* | |
7055 | ||
98ed12e6 | 7056 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7057 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7058 | L: [email protected] |
7059 | W: http://linuxtv.org | |
7060 | T: git git://linuxtv.org/media_tree.git | |
7061 | S: Odd fixes | |
e42bf501 | 7062 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7063 | F: drivers/media/pci/saa7134/ |
7064 | ||
1da177e4 | 7065 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7066 | M: Hans Verkuil <[email protected]> |
661263b5 | 7067 | L: [email protected] |
275ffde4 | 7068 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7069 | S: Maintained |
90d72ac6 MCC |
7070 | F: drivers/media/common/saa7146/ |
7071 | F: drivers/media/pci/saa7146/ | |
7072 | F: include/media/saa7146* | |
1da177e4 | 7073 | |
92304a40 | 7074 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7075 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7076 | L: [email protected] |
7077 | S: Maintained | |
7078 | F: drivers/platform/x86/samsung-laptop.c | |
7079 | ||
4a109cc0 | 7080 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7081 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7082 | L: [email protected] (moderated for non-subscribers) |
7083 | S: Supported | |
7a939419 | 7084 | F: sound/soc/samsung |
4a109cc0 | 7085 | |
0d89a28b JH |
7086 | SAMSUNG FRAMEBUFFER DRIVER |
7087 | M: Jingoo Han <[email protected]> | |
7088 | L: [email protected] | |
7089 | S: Maintained | |
7090 | F: drivers/video/s3c-fb.c | |
7091 | ||
f69d3a17 SK |
7092 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7093 | M: Sangbeom Kim <[email protected]> | |
7094 | L: [email protected] | |
7095 | S: Supported | |
7096 | F: drivers/mfd/sec*.c | |
7097 | F: drivers/regulator/s2m*.c | |
7098 | F: drivers/regulator/s5m*.c | |
7099 | F: drivers/rtc/rtc-sec.c | |
7100 | F: include/linux/mfd/samsung/ | |
7101 | ||
038f5c4b SN |
7102 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7103 | M: Kyungmin Park <[email protected]> | |
7104 | M: Sylwester Nawrocki <[email protected]> | |
7105 | L: [email protected] | |
7106 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7107 | S: Supported | |
7108 | F: drivers/media/platform/exynos4-is/ | |
7109 | F: include/media/s5p_fimc.h | |
7110 | ||
6fd86ab2 SN |
7111 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7112 | M: Sylwester Nawrocki <[email protected]> | |
7113 | L: [email protected] | |
7114 | L: [email protected] (moderated for non-subscribers) | |
7115 | S: Maintained | |
7116 | F: drivers/media/platform/s3c-camif/ | |
7117 | F: include/media/s3c_camif.h | |
7118 | ||
b84ef24e AH |
7119 | SAMSUNG S5C73M3 CAMERA DRIVER |
7120 | M: Kyungmin Park <[email protected]> | |
7121 | M: Andrzej Hajda <[email protected]> | |
7122 | L: [email protected] | |
7123 | S: Supported | |
7124 | F: drivers/media/i2c/s5c73m3/* | |
7125 | ||
ca749e2a | 7126 | SERIAL DRIVERS |
5e30bbb7 | 7127 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7128 | L: [email protected] |
5e30bbb7 | 7129 | S: Maintained |
ca749e2a AC |
7130 | F: drivers/tty/serial |
7131 | ||
aecb7b64 | 7132 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7133 | M: Viresh Kumar <[email protected]> |
aecb7b64 VK |
7134 | S: Maintained |
7135 | F: include/linux/dw_dmac.h | |
61a76496 | 7136 | F: drivers/dma/dw/ |
aecb7b64 | 7137 | |
f9e37137 SJ |
7138 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7139 | M: Seungwon Jeon <[email protected]> | |
7140 | M: Jaehoon Chung <[email protected]> | |
7141 | L: [email protected] | |
7142 | S: Maintained | |
7143 | F: include/linux/mmc/dw_mmc.h | |
7144 | F: drivers/mmc/host/dw_mmc* | |
7145 | ||
88606e80 | 7146 | TIMEKEEPING, NTP |
50363737 | 7147 | M: John Stultz <[email protected]> |
88606e80 | 7148 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 7149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7150 | S: Supported |
7151 | F: include/linux/clocksource.h | |
7152 | F: include/linux/time.h | |
7153 | F: include/linux/timex.h | |
c117ab84 CEB |
7154 | F: include/uapi/linux/time.h |
7155 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7156 | F: kernel/time/clocksource.c |
7157 | F: kernel/time/time*.c | |
7158 | F: kernel/time/ntp.c | |
bbe7b8be | 7159 | F: drivers/clocksource |
88606e80 | 7160 | |
5b3f03f0 | 7161 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7162 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7163 | M: Hans Verkuil <[email protected]> |
7164 | S: Odd Fixes | |
0c0d06ca | 7165 | F: drivers/media/usb/tlg2300 |
5b3f03f0 | 7166 | |
1da177e4 | 7167 | SC1200 WDT DRIVER |
8b58be88 | 7168 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7169 | S: Maintained |
679655da | 7170 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7171 | |
7172 | SCHEDULER | |
dd9b238c | 7173 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7174 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 7175 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7176 | S: Maintained |
95c0d71d | 7177 | F: kernel/sched/ |
679655da | 7178 | F: include/linux/sched.h |
c117ab84 | 7179 | F: include/uapi/linux/sched.h |
1da177e4 | 7180 | |
6bcf6737 | 7181 | SCORE ARCHITECTURE |
a2681a75 JP |
7182 | M: Chen Liqin <[email protected]> |
7183 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
7184 | W: http://www.sunplusct.com |
7185 | S: Supported | |
a2681a75 | 7186 | F: arch/score/ |
6bcf6737 | 7187 | |
1da177e4 | 7188 | SCSI CDROM DRIVER |
8b58be88 | 7189 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7190 | L: [email protected] |
7191 | W: http://www.kernel.dk | |
7192 | S: Maintained | |
679655da | 7193 | F: drivers/scsi/sr* |
1da177e4 | 7194 | |
fb50a83d RD |
7195 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7196 | M: David Dillow <[email protected]> | |
7197 | L: [email protected] | |
7198 | S: Supported | |
7199 | W: http://www.openfabrics.org | |
7200 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7201 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7202 | F: drivers/infiniband/ulp/srp/ | |
7203 | F: include/scsi/srp.h | |
7204 | ||
1da177e4 | 7205 | SCSI SG DRIVER |
8b58be88 | 7206 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
7207 | L: [email protected] |
7208 | W: http://www.torque.net/sg | |
7209 | S: Maintained | |
679655da JP |
7210 | F: drivers/scsi/sg.c |
7211 | F: include/scsi/sg.h | |
1da177e4 LT |
7212 | |
7213 | SCSI SUBSYSTEM | |
c95286d8 | 7214 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7215 | L: [email protected] |
54e5881d JP |
7216 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7219 | S: Maintained |
679655da JP |
7220 | F: drivers/scsi/ |
7221 | F: include/scsi/ | |
1da177e4 LT |
7222 | |
7223 | SCSI TAPE DRIVER | |
8b58be88 | 7224 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7225 | L: [email protected] |
7226 | S: Maintained | |
679655da | 7227 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7228 | F: drivers/scsi/st.* |
7229 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7230 | |
7231 | SCTP PROTOCOL | |
8b6efb75 | 7232 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7233 | M: Neil Horman <[email protected]> |
1a418796 | 7234 | L: [email protected] |
5f85813c | 7235 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7236 | S: Maintained |
679655da JP |
7237 | F: Documentation/networking/sctp.txt |
7238 | F: include/linux/sctp.h | |
7239 | F: include/net/sctp/ | |
7240 | F: net/sctp/ | |
1da177e4 LT |
7241 | |
7242 | SCx200 CPU SUPPORT | |
8b58be88 | 7243 | M: Jim Cromie <[email protected]> |
1662d32c | 7244 | S: Odd Fixes |
679655da | 7245 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7246 | F: arch/x86/platform/scx200/ |
679655da JP |
7247 | F: drivers/watchdog/scx200_wdt.c |
7248 | F: drivers/i2c/busses/scx200* | |
7249 | F: drivers/mtd/maps/scx200_docflash.c | |
7250 | F: include/linux/scx200.h | |
1662d32c JC |
7251 | |
7252 | SCx200 GPIO DRIVER | |
8b58be88 | 7253 | M: Jim Cromie <[email protected]> |
1662d32c | 7254 | S: Maintained |
679655da JP |
7255 | F: drivers/char/scx200_gpio.c |
7256 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7257 | |
7258 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7259 | M: Jim Cromie <[email protected]> |
1662d32c | 7260 | S: Maintained |
679655da | 7261 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7262 | |
6a36913a | 7263 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7264 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7265 | L: [email protected] (subscribers-only) |
7266 | S: Maintained | |
679655da | 7267 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7268 | |
e7839f25 | 7269 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7270 | M: Chris Ball <[email protected]> |
7a241d6e | 7271 | L: [email protected] |
245feaa6 CB |
7272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7273 | S: Maintained | |
7a241d6e | 7274 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7275 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7276 | |
3085e9c1 | 7277 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7278 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7279 | L: [email protected] |
7a241d6e | 7280 | L: [email protected] |
e2d1d6c0 | 7281 | S: Maintained |
d4a45787 | 7282 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7283 | |
0d1bb41a | 7284 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7285 | M: Ben Dooks <[email protected]> |
7a241d6e | 7286 | L: [email protected] |
0d1bb41a BD |
7287 | S: Maintained |
7288 | F: drivers/mmc/host/sdhci-s3c.c | |
7289 | ||
c63b3cba | 7290 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7291 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7292 | L: [email protected] |
c63b3cba VK |
7293 | L: [email protected] |
7294 | S: Maintained | |
7295 | F: drivers/mmc/host/sdhci-spear.c | |
7296 | ||
8711cca2 | 7297 | SECURITY SUBSYSTEM |
9b45c0d2 | 7298 | M: James Morris <[email protected]> |
8711cca2 | 7299 | L: [email protected] (suggested Cc:) |
89879a7e | 7300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7301 | W: http://kernsec.org/ |
8711cca2 | 7302 | S: Supported |
7d2c86b5 | 7303 | F: security/ |
8711cca2 | 7304 | |
1da177e4 | 7305 | SECURITY CONTACT |
8b58be88 | 7306 | M: Security Officers <[email protected]> |
1da177e4 LT |
7307 | S: Supported |
7308 | ||
7309 | SELINUX SECURITY MODULE | |
8b58be88 | 7310 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7311 | M: James Morris <[email protected]> |
8b58be88 | 7312 | M: Eric Paris <[email protected]> |
7d2c86b5 | 7313 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7314 | W: http://selinuxproject.org |
6bde95ce | 7315 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 7316 | S: Supported |
679655da JP |
7317 | F: include/linux/selinux* |
7318 | F: security/selinux/ | |
6bde95ce | 7319 | F: scripts/selinux/ |
1da177e4 | 7320 | |
c1c124e9 JJ |
7321 | APPARMOR SECURITY MODULE |
7322 | M: John Johansen <[email protected]> | |
7323 | L: [email protected] (subscribers-only, general discussion) | |
7324 | W: apparmor.wiki.kernel.org | |
7325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7326 | S: Supported | |
7327 | F: security/apparmor/ | |
7328 | ||
cef2cf07 | 7329 | SENSABLE PHANTOM |
8b58be88 | 7330 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7331 | S: Maintained |
679655da | 7332 | F: drivers/misc/phantom.c |
c117ab84 | 7333 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7334 | |
4480f15b | 7335 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7336 | M: Tejun Heo <[email protected]> |
1da177e4 | 7337 | L: [email protected] |
3d9b9350 | 7338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7339 | S: Supported |
d5ca6918 JP |
7340 | F: drivers/ata/ |
7341 | F: include/linux/ata.h | |
7342 | F: include/linux/libata.h | |
1da177e4 | 7343 | |
6733b39a | 7344 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7345 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7346 | L: [email protected] |
0ca43cc0 | 7347 | W: http://www.emulex.com |
3387f656 JP |
7348 | S: Supported |
7349 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7350 | |
6b7c5b94 | 7351 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7352 | M: Sathya Perla <[email protected]> |
7353 | M: Subbu Seetharaman <[email protected]> | |
7354 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7355 | L: [email protected] |
fea3af67 | 7356 | W: http://www.emulex.com |
7d2c86b5 | 7357 | S: Supported |
9aebddd1 | 7358 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7359 | |
8ceee660 | 7360 | SFC NETWORK DRIVER |
c06f51ea | 7361 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
7362 | M: Ben Hutchings <[email protected]> |
7363 | L: [email protected] | |
8ceee660 | 7364 | S: Supported |
874aeea5 | 7365 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7366 | |
e2d1d6c0 | 7367 | SGI GRU DRIVER |
cc883afc BH |
7368 | M: Dimitri Sivanich <[email protected]> |
7369 | M: Robin Holt <[email protected]> | |
e2d1d6c0 | 7370 | S: Maintained |
679655da | 7371 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7372 | |
7373 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7374 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7375 | L: [email protected] |
7376 | S: Supported | |
679655da | 7377 | F: Documentation/ia64/serial.txt |
df621252 | 7378 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7379 | F: include/linux/ioc?.h |
e2d1d6c0 | 7380 | |
1da177e4 | 7381 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7382 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7383 | L: [email protected] |
7384 | W: http://linux-visws.sf.net | |
7385 | S: Maintained for 2.6. | |
679655da | 7386 | F: Documentation/sgi-visws.txt |
1da177e4 | 7387 | |
75312619 | 7388 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 7389 | M: Robin Holt <[email protected]> |
75312619 | 7390 | S: Maintained |
679655da | 7391 | F: drivers/misc/sgi-xp/ |
75312619 | 7392 | |
49cc629d HV |
7393 | SI470X FM RADIO RECEIVER I2C DRIVER |
7394 | M: Hans Verkuil <[email protected]> | |
7395 | L: [email protected] | |
7396 | T: git git://linuxtv.org/media_tree.git | |
7397 | W: http://linuxtv.org | |
7398 | S: Odd Fixes | |
7399 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7400 | ||
7401 | SI470X FM RADIO RECEIVER USB DRIVER | |
7402 | M: Hans Verkuil <[email protected]> | |
7403 | L: [email protected] | |
7404 | T: git git://linuxtv.org/media_tree.git | |
7405 | W: http://linuxtv.org | |
7406 | S: Maintained | |
7407 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7408 | F: drivers/media/radio/si470x/radio-si470x.h | |
7409 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7410 | ||
c937ca03 EV |
7411 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7412 | M: Eduardo Valentin <[email protected]> | |
7413 | L: [email protected] | |
7414 | T: git git://linuxtv.org/media_tree.git | |
7415 | W: http://linuxtv.org | |
7416 | S: Odd Fixes | |
7417 | F: drivers/media/radio/si4713-i2c.? | |
7418 | ||
7419 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7420 | M: Eduardo Valentin <[email protected]> | |
7421 | L: [email protected] | |
7422 | T: git git://linuxtv.org/media_tree.git | |
7423 | W: http://linuxtv.org | |
7424 | S: Odd Fixes | |
7425 | F: drivers/media/radio/radio-si4713.h | |
7426 | ||
beb91d46 | 7427 | SIANO DVB DRIVER |
1b2c14b4 | 7428 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7429 | L: [email protected] |
7430 | W: http://linuxtv.org | |
7431 | T: git git://linuxtv.org/media_tree.git | |
7432 | S: Odd fixes | |
7433 | F: drivers/media/common/siano/ | |
7434 | F: drivers/media/dvb/siano/ | |
7435 | F: drivers/media/usb/siano/ | |
7436 | F: drivers/media/mmc/siano | |
7437 | ||
b618b69c GL |
7438 | SH_VEU V4L2 MEM2MEM DRIVER |
7439 | M: Guennadi Liakhovetski <[email protected]> | |
7440 | L: [email protected] | |
7441 | S: Maintained | |
7442 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7443 | |
7444 | SH_VOU V4L2 OUTPUT DRIVER | |
7445 | M: Guennadi Liakhovetski <[email protected]> | |
7446 | L: [email protected] | |
4290fd1a | 7447 | S: Odd Fixes |
b618b69c GL |
7448 | F: drivers/media/platform/sh_vou.c |
7449 | F: include/media/sh_vou.h | |
7450 | ||
6349d997 | 7451 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7452 | M: Len Brown <[email protected]> |
6349d997 LB |
7453 | L: [email protected] |
7454 | W: http://simplefirmware.org/ | |
7455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7456 | S: Supported |
943fc810 | 7457 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7458 | F: drivers/sfi/ |
7459 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7460 | |
1da177e4 LT |
7461 | SIMTEC EB110ATX (Chalice CATS) |
7462 | P: Ben Dooks | |
b16957c6 BD |
7463 | P: Vincent Sanders <[email protected]> |
7464 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7465 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7466 | S: Supported | |
7467 | ||
7468 | SIMTEC EB2410ITX (BAST) | |
7469 | P: Ben Dooks | |
b16957c6 BD |
7470 | P: Vincent Sanders <[email protected]> |
7471 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7472 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7473 | S: Supported | |
58322038 BD |
7474 | F: arch/arm/mach-s3c2410/mach-bast.c |
7475 | F: arch/arm/mach-s3c2410/bast-ide.c | |
7476 | F: arch/arm/mach-s3c2410/bast-irq.c | |
1da177e4 | 7477 | |
4c5adde7 | 7478 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7479 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7480 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7481 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7482 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7483 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
7484 | S: Supported |
7485 | F: arch/arm/mach-davinci | |
046d0a37 | 7486 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7487 | |
8d4b3f08 | 7488 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7489 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7490 | L: [email protected] |
7491 | L: [email protected] (moderated for non-subscribers) | |
7492 | W: http://linuxtv.org/ | |
7493 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7494 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7495 | S: Maintained |
8d4b3f08 LP |
7496 | F: drivers/media/platform/davinci/ |
7497 | F: include/media/davinci/ | |
7498 | ||
92aab3c0 | 7499 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7500 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7501 | L: [email protected] |
7502 | S: Maintained | |
8c7de408 | 7503 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7504 | |
1da177e4 | 7505 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7506 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7507 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7508 | L: [email protected] |
1da177e4 | 7509 | S: Maintained |
8c7de408 | 7510 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7511 | |
7512 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7513 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7514 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7515 | S: Maintained |
679655da JP |
7516 | F: Documentation/fb/sisfb.txt |
7517 | F: drivers/video/sis/ | |
7518 | F: include/video/sisfb.h | |
1da177e4 LT |
7519 | |
7520 | SIS USB2VGA DRIVER | |
8b58be88 | 7521 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7522 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7523 | S: Maintained | |
679655da | 7524 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7525 | |
415ad26d | 7526 | SLAB ALLOCATOR |
8b58be88 | 7527 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7528 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7529 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7530 | L: [email protected] |
7531 | S: Maintained | |
679655da JP |
7532 | F: include/linux/sl?b*.h |
7533 | F: mm/sl?b.c | |
415ad26d | 7534 | |
9fab9787 PM |
7535 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7536 | M: Lai Jiangshan <[email protected]> | |
7537 | M: "Paul E. McKenney" <[email protected]> | |
7538 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7539 | S: Supported | |
7540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7541 | F: include/linux/srcu* | |
7542 | F: kernel/srcu* | |
7543 | ||
66372841 CS |
7544 | SMACK SECURITY MODULE |
7545 | M: Casey Schaufler <[email protected]> | |
7546 | L: [email protected] | |
7547 | W: http://schaufler-ca.com | |
7548 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7549 | S: Maintained | |
7550 | F: Documentation/security/Smack.txt | |
7551 | F: security/smack/ | |
7552 | ||
1da177e4 | 7553 | SMC91x ETHERNET DRIVER |
2f82af08 | 7554 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7555 | S: Odd Fixes |
ae150435 | 7556 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7557 | |
e8e31622 SA |
7558 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7559 | M: Sakari Ailus <[email protected]> | |
7560 | L: [email protected] | |
7561 | S: Maintained | |
7562 | F: drivers/media/i2c/smiapp | |
7563 | F: include/media/smiapp.h | |
7564 | F: drivers/media/i2c/smiapp-pll.c | |
7565 | F: drivers/media/i2c/smiapp-pll.h | |
7566 | ||
920fa1ff GR |
7567 | SMM665 HARDWARE MONITOR DRIVER |
7568 | M: Guenter Roeck <[email protected]> | |
7569 | L: [email protected] | |
7570 | S: Maintained | |
7571 | F: Documentation/hwmon/smm665 | |
7572 | F: drivers/hwmon/smm665.c | |
7573 | ||
9df7305b | 7574 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7575 | M: Steve Glendinning <[email protected]> |
9df7305b | 7576 | L: [email protected] |
90b24cfb | 7577 | S: Maintained |
9df7305b SG |
7578 | F: Documentation/hwmon/emc2103 |
7579 | F: drivers/hwmon/emc2103.c | |
7580 | ||
a98d506c HG |
7581 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7582 | M: Hans de Goede <[email protected]> | |
7583 | L: [email protected] | |
7584 | S: Supported | |
7585 | F: Documentation/hwmon/sch5627 | |
7586 | F: drivers/hwmon/sch5627.c | |
7587 | ||
6ea884db | 7588 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7589 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7590 | L: [email protected] |
7591 | S: Maintained | |
679655da JP |
7592 | F: Documentation/hwmon/smsc47b397 |
7593 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7594 | |
fd9abb3d | 7595 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7596 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7597 | L: [email protected] |
90b24cfb | 7598 | S: Maintained |
679655da | 7599 | F: include/linux/smsc911x.h |
ae150435 | 7600 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7601 | |
7602 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7603 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 7604 | L: [email protected] |
90b24cfb | 7605 | S: Maintained |
ae150435 | 7606 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7607 | |
3c8a63e2 | 7608 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7609 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 7610 | L: [email protected] |
90b24cfb | 7611 | S: Maintained |
3c8a63e2 SG |
7612 | F: drivers/video/smscufx.c |
7613 | ||
668acf32 | 7614 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7615 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 7616 | L: [email protected] |
275ffde4 | 7617 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7618 | S: Maintained |
90d72ac6 MCC |
7619 | F: include/media/soc* |
7620 | F: drivers/media/i2c/soc_camera/ | |
7621 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7622 | |
e2d1d6c0 | 7623 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7624 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 7625 | S: Maintained |
679655da | 7626 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7627 | |
1da177e4 | 7628 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7629 | M: Neil Brown <[email protected]> |
1da177e4 | 7630 | L: [email protected] |
524418bb | 7631 | S: Supported |
679655da JP |
7632 | F: drivers/md/ |
7633 | F: include/linux/raid/ | |
c117ab84 | 7634 | F: include/uapi/linux/raid/ |
1da177e4 | 7635 | |
1da177e4 | 7636 | SONIC NETWORK DRIVER |
8b58be88 | 7637 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 7638 | L: [email protected] |
1da177e4 | 7639 | S: Maintained |
d9fb9f38 | 7640 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7641 | |
61e115a5 | 7642 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7643 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
7644 | L: [email protected] |
7645 | S: Maintained | |
679655da JP |
7646 | F: drivers/ssb/ |
7647 | F: include/linux/ssb/ | |
61e115a5 | 7648 | |
1da177e4 | 7649 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7650 | M: Mattia Dongili <[email protected]> |
d0944853 | 7651 | L: [email protected] |
5b18167d | 7652 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7653 | S: Maintained |
679655da JP |
7654 | F: Documentation/laptops/sony-laptop.txt |
7655 | F: drivers/char/sonypi.c | |
7656 | F: drivers/platform/x86/sony-laptop.c | |
7657 | F: include/linux/sony-laptop.h | |
1da177e4 | 7658 | |
baf8532a | 7659 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7660 | M: Alex Dubov <[email protected]> |
baf8532a AD |
7661 | W: http://tifmxx.berlios.de/ |
7662 | S: Maintained | |
679655da | 7663 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7664 | |
1da177e4 | 7665 | SOUND |
8b58be88 JP |
7666 | M: Jaroslav Kysela <[email protected]> |
7667 | M: Takashi Iwai <[email protected]> | |
93711660 | 7668 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 7669 | W: http://www.alsa-project.org/ |
dde7ad8d | 7670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7671 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7672 | S: Maintained |
3126a179 JP |
7673 | F: Documentation/sound/ |
7674 | F: include/sound/ | |
c117ab84 | 7675 | F: include/uapi/sound/ |
679655da | 7676 | F: sound/ |
1da177e4 | 7677 | |
bd903bde | 7678 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7679 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 7680 | M: Mark Brown <[email protected]> |
86f14df8 | 7681 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7682 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 7683 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7684 | S: Supported |
679655da | 7685 | F: sound/soc/ |
e6e55122 | 7686 | F: include/sound/soc* |
eb1a6af3 | 7687 | |
473321fc | 7688 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7689 | M: "David S. Miller" <[email protected]> |
1da177e4 | 7690 | L: [email protected] |
8a6e2535 | 7691 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7693 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7694 | S: Maintained |
679655da | 7695 | F: arch/sparc/ |
7765b8bb | 7696 | F: drivers/sbus/ |
1da177e4 | 7697 | |
6404fcca DM |
7698 | SPARC SERIAL DRIVERS |
7699 | M: "David S. Miller" <[email protected]> | |
7700 | L: [email protected] | |
08deed1e JP |
7701 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7703 | S: Maintained |
6816383a | 7704 | F: include/linux/sunserialcore.h |
df621252 | 7705 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7706 | F: drivers/tty/serial/sunhv.c |
7707 | F: drivers/tty/serial/sunsab.c | |
7708 | F: drivers/tty/serial/sunsab.h | |
7709 | F: drivers/tty/serial/sunsu.c | |
7710 | F: drivers/tty/serial/sunzilog.c | |
7711 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7712 | |
389325b4 CL |
7713 | SPARSE CHECKER |
7714 | M: "Christopher Li" <[email protected]> | |
7715 | L: [email protected] | |
7716 | W: https://sparse.wiki.kernel.org/ | |
7717 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7718 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7719 | S: Maintained | |
7720 | F: include/linux/compiler.h | |
7721 | ||
fc0c195a | 7722 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7723 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7724 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7725 | L: [email protected] |
7726 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7727 | W: http://www.st.com/spear |
7728 | S: Maintained | |
7729 | F: arch/arm/plat-spear/ | |
7730 | ||
71e09a9e | 7731 | SPEAR13XX MACHINE SUPPORT |
2d8a3b3d | 7732 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7733 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7734 | L: [email protected] |
7735 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7736 | W: http://www.st.com/spear |
7737 | S: Maintained | |
71e09a9e | 7738 | F: arch/arm/mach-spear13xx/ |
fc0c195a | 7739 | |
fc0c195a | 7740 | SPEAR3XX MACHINE SUPPORT |
2d8a3b3d | 7741 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7742 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7743 | L: [email protected] |
7744 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7745 | W: http://www.st.com/spear |
7746 | S: Maintained | |
7747 | F: arch/arm/mach-spear3xx/ | |
7748 | ||
7749 | SPEAR6XX MACHINE SUPPORT | |
7750 | M: Rajeev Kumar <[email protected]> | |
71e09a9e | 7751 | M: Shiraz Hashim <[email protected]> |
2d8a3b3d | 7752 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7753 | L: [email protected] |
7754 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7755 | W: http://www.st.com/spear |
7756 | S: Maintained | |
7757 | F: arch/arm/mach-spear6xx/ | |
7758 | ||
7759 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7760 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7761 | L: [email protected] |
7762 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7763 | W: http://www.st.com/spear |
7764 | S: Maintained | |
5df33a62 | 7765 | F: drivers/clk/spear/ |
fc0c195a | 7766 | |
e2d1d6c0 | 7767 | SPI SUBSYSTEM |
b02e48f2 | 7768 | M: Mark Brown <[email protected]> |
dfbe403c | 7769 | L: [email protected] |
e7e4e13c | 7770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7771 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7772 | S: Maintained |
679655da JP |
7773 | F: Documentation/spi/ |
7774 | F: drivers/spi/ | |
7775 | F: include/linux/spi/ | |
c117ab84 | 7776 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7777 | |
2752e401 | 7778 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7779 | M: Ishizaki Kou <[email protected]> |
7780 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
7781 | L: [email protected] |
7782 | S: Supported | |
679655da | 7783 | F: Documentation/networking/spider_net.txt |
8df158ac | 7784 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7785 | |
e2d1d6c0 | 7786 | SPU FILE SYSTEM |
8b58be88 | 7787 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
7788 | L: [email protected] |
7789 | L: [email protected] | |
e2d1d6c0 RD |
7790 | W: http://www.ibm.com/developerworks/power/cell/ |
7791 | S: Supported | |
679655da JP |
7792 | F: Documentation/filesystems/spufs.txt |
7793 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7794 | |
fc555841 | 7795 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7796 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
7797 | L: [email protected] (subscribers-only) |
7798 | W: http://squashfs.org.uk | |
7799 | S: Maintained | |
679655da JP |
7800 | F: Documentation/filesystems/squashfs.txt |
7801 | F: fs/squashfs/ | |
fc555841 | 7802 | |
1da177e4 | 7803 | SRM (Alpha) environment access |
8b58be88 | 7804 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 7805 | S: Maintained |
679655da | 7806 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7807 | |
26e9a397 | 7808 | STABLE BRANCH |
879a5a00 | 7809 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 7810 | L: [email protected] |
879a5a00 | 7811 | S: Supported |
7b175c46 | 7812 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 7813 | |
26e9a397 | 7814 | STAGING SUBSYSTEM |
879a5a00 | 7815 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 7816 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7817 | L: [email protected] |
879a5a00 | 7818 | S: Supported |
679655da | 7819 | F: drivers/staging/ |
dbc6c2cc | 7820 | |
c8c8b105 JP |
7821 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7822 | M: Henk de Groot <[email protected]> | |
7823 | S: Odd Fixes | |
7824 | F: drivers/staging/wlags49_h2/ | |
7825 | F: drivers/staging/wlags49_h25/ | |
7826 | ||
c9555159 JP |
7827 | STAGING - ASUS OLED |
7828 | M: Jakub Schmidtke <[email protected]> | |
7829 | S: Odd Fixes | |
7830 | F: drivers/staging/asus_oled/ | |
7831 | ||
ebd3d010 JP |
7832 | STAGING - COMEDI |
7833 | M: Ian Abbott <[email protected]> | |
81b884c9 | 7834 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
7835 | S: Odd Fixes |
7836 | F: drivers/staging/comedi/ | |
7837 | ||
8ca572c9 JP |
7838 | STAGING - CRYSTAL HD VIDEO DECODER |
7839 | M: Naren Sankar <[email protected]> | |
7840 | M: Jarod Wilson <[email protected]> | |
7841 | M: Scott Davilla <[email protected]> | |
7842 | M: Manu Abraham <[email protected]> | |
7843 | S: Odd Fixes | |
7844 | F: drivers/staging/crystalhd/ | |
7845 | ||
0f16ffc4 JP |
7846 | STAGING - ECHO CANCELLER |
7847 | M: Steve Underwood <[email protected]> | |
7848 | M: David Rowe <[email protected]> | |
7849 | S: Odd Fixes | |
7850 | F: drivers/staging/echo/ | |
7851 | ||
8dc2bbe7 ME |
7852 | STAGING - ET131X NETWORK DRIVER |
7853 | M: Mark Einon <[email protected]> | |
7854 | S: Odd Fixes | |
7855 | F: drivers/staging/et131x/ | |
7856 | ||
a0138163 JP |
7857 | STAGING - FLARION FT1000 DRIVERS |
7858 | M: Marek Belisko <[email protected]> | |
7859 | S: Odd Fixes | |
7860 | F: drivers/staging/ft1000/ | |
7861 | ||
ec3fab92 JP |
7862 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7863 | M: David Täht <[email protected]> | |
7864 | S: Odd Fixes | |
7865 | F: drivers/staging/frontier/ | |
7866 | ||
98ded590 HV |
7867 | STAGING - GO7007 MPEG CODEC |
7868 | M: Hans Verkuil <[email protected]> | |
7869 | S: Maintained | |
7870 | F: drivers/staging/media/go7007/ | |
7871 | ||
6c1bb424 JP |
7872 | STAGING - INDUSTRIAL IO |
7873 | M: Jonathan Cameron <[email protected]> | |
a0138163 | 7874 | L: [email protected] |
6c1bb424 JP |
7875 | S: Odd Fixes |
7876 | F: drivers/staging/iio/ | |
7877 | ||
a0138163 JP |
7878 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7879 | M: Jarod Wilson <[email protected]> | |
7880 | W: http://www.lirc.org/ | |
7881 | S: Odd Fixes | |
b2b0186d | 7882 | F: drivers/staging/media/lirc/ |
a0138163 | 7883 | |
7c6b6c71 | 7884 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7885 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
7886 | M: Marc Dietrich <[email protected]> |
7887 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 7888 | L: [email protected] |
7c6b6c71 MD |
7889 | S: Maintained |
7890 | F: drivers/staging/nvec/ | |
7891 | ||
a0138163 JP |
7892 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
7893 | M: Andres Salomon <[email protected]> | |
7894 | M: Chris Ball <[email protected]> | |
7895 | M: Jon Nettleton <[email protected]> | |
7896 | W: http://wiki.laptop.org/go/DCON | |
7897 | S: Odd Fixes | |
7898 | F: drivers/staging/olpc_dcon/ | |
7899 | ||
94cfdd15 | 7900 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 7901 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
7902 | S: Maintained |
7903 | F: drivers/staging/ozwpan/ | |
7904 | ||
a0138163 | 7905 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7906 | M: Willy Tarreau <[email protected]> |
7907 | S: Odd Fixes | |
7908 | F: drivers/staging/panel/ | |
7909 | ||
a0138163 JP |
7910 | STAGING - REALTEK RTL8712U DRIVERS |
7911 | M: Larry Finger <[email protected]> | |
7912 | M: Florian Schilhabel <[email protected]>. | |
7913 | S: Odd Fixes | |
7914 | F: drivers/staging/rtl8712/ | |
7915 | ||
9629fa86 JP |
7916 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7917 | M: Teddy Wang <[email protected]> | |
7918 | S: Odd Fixes | |
9df0a245 | 7919 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 7920 | |
a0138163 | 7921 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
7922 | M: Ismael Luceno <[email protected]> |
7923 | S: Supported | |
b2b0186d | 7924 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
7925 | |
7926 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
7927 | M: William Hubbs <[email protected]> | |
7928 | M: Chris Brannon <[email protected]> | |
d33bce31 | 7929 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
7930 | M: Samuel Thibault <[email protected]> |
7931 | L: [email protected] | |
7932 | W: http://www.linux-speakup.org/ | |
7933 | S: Odd Fixes | |
7934 | F: drivers/staging/speakup/ | |
7935 | ||
7936 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 7937 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
7938 | S: Odd Fixes |
7939 | F: drivers/staging/tidspbridge/ | |
7940 | ||
a0138163 JP |
7941 | STAGING - USB ENE SM/MS CARD READER DRIVER |
7942 | M: Al Cho <[email protected]> | |
7943 | S: Odd Fixes | |
7944 | F: drivers/staging/keucr/ | |
7945 | ||
b3e871ce JP |
7946 | STAGING - VIA VT665X DRIVERS |
7947 | M: Forest Bond <[email protected]> | |
7948 | S: Odd Fixes | |
7949 | F: drivers/staging/vt665?/ | |
7950 | ||
81a9a526 JP |
7951 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
7952 | M: Pavel Machek <[email protected]> | |
7953 | S: Odd Fixes | |
7954 | F: drivers/staging/winbond/ | |
7955 | ||
709bcb07 | 7956 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 7957 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
7958 | S: Odd Fixes |
7959 | F: drivers/staging/xgifb/ | |
7960 | ||
1da177e4 | 7961 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 7962 | M: Ion Badulescu <[email protected]> |
b4f90189 | 7963 | S: Odd Fixes |
9bba23b0 | 7964 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 7965 | |
e2d1d6c0 | 7966 | SUN3/3X |
8b58be88 | 7967 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
7968 | W: http://sammy.net/sun3/ |
7969 | S: Maintained | |
679655da JP |
7970 | F: arch/m68k/kernel/*sun3* |
7971 | F: arch/m68k/sun3*/ | |
7972 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 7973 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 7974 | |
2cbb12a4 | 7975 | SUPERH |
8b58be88 | 7976 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 7977 | L: [email protected] |
1da177e4 | 7978 | W: http://www.linux-sh.org |
8a6e2535 | 7979 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 7980 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 7981 | S: Supported |
066069e1 | 7982 | F: Documentation/sh/ |
679655da | 7983 | F: arch/sh/ |
066069e1 | 7984 | F: drivers/sh/ |
1da177e4 | 7985 | |
4480f15b | 7986 | SUSPEND TO RAM |
8b58be88 JP |
7987 | M: Len Brown <[email protected]> |
7988 | M: Pavel Machek <[email protected]> | |
7989 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 7990 | L: [email protected] |
e2d1d6c0 | 7991 | S: Supported |
679655da JP |
7992 | F: Documentation/power/ |
7993 | F: arch/x86/kernel/acpi/ | |
7994 | F: drivers/base/power/ | |
7995 | F: kernel/power/ | |
7996 | F: include/linux/suspend.h | |
7997 | F: include/linux/freezer.h | |
7998 | F: include/linux/pm.h | |
1da177e4 LT |
7999 | |
8000 | SVGA HANDLING | |
8b58be88 | 8001 | M: Martin Mares <[email protected]> |
1da177e4 LT |
8002 | L: [email protected] |
8003 | S: Maintained | |
679655da JP |
8004 | F: Documentation/svga.txt |
8005 | F: arch/x86/boot/video* | |
1da177e4 | 8006 | |
6e28b761 KRW |
8007 | SWIOTLB SUBSYSTEM |
8008 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8009 | L: [email protected] | |
8010 | S: Supported | |
8011 | F: lib/swiotlb.c | |
8012 | F: arch/*/kernel/pci-swiotlb.c | |
8013 | F: include/linux/swiotlb.h | |
8014 | ||
db8e35d5 VG |
8015 | SYNOPSYS ARC ARCHITECTURE |
8016 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8017 | S: Supported |
8018 | F: arch/arc/ | |
6659a20a VG |
8019 | F: Documentation/devicetree/bindings/arc/ |
8020 | F: drivers/tty/serial/arc-uart.c | |
db8e35d5 | 8021 | |
1da177e4 | 8022 | SYSV FILESYSTEM |
8b58be88 | 8023 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8024 | S: Maintained |
679655da JP |
8025 | F: Documentation/filesystems/sysv-fs.txt |
8026 | F: fs/sysv/ | |
8027 | F: include/linux/sysv_fs.h | |
1da177e4 | 8028 | |
86cfa7fc NB |
8029 | TARGET SUBSYSTEM |
8030 | M: Nicholas A. Bellinger <[email protected]> | |
8031 | L: [email protected] | |
b9f5edc2 | 8032 | L: [email protected] |
86cfa7fc NB |
8033 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8034 | W: http://www.linux-iscsi.org | |
452cf324 | 8035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8036 | S: Supported |
8037 | F: drivers/target/ | |
8038 | F: include/target/ | |
8039 | F: Documentation/target/ | |
8040 | ||
4e68852d | 8041 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8042 | M: Balbir Singh <[email protected]> |
4e68852d | 8043 | S: Maintained |
679655da JP |
8044 | F: Documentation/accounting/taskstats* |
8045 | F: include/linux/taskstats* | |
8046 | F: kernel/taskstats.c | |
4e68852d | 8047 | |
781b456a | 8048 | TC CLASSIFIER |
f935f3f8 | 8049 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8050 | L: [email protected] |
8051 | S: Maintained | |
679655da | 8052 | F: include/net/pkt_cls.h |
c117ab84 | 8053 | F: include/uapi/linux/pkt_cls.h |
679655da | 8054 | F: net/sched/ |
781b456a | 8055 | |
5067f08a | 8056 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8057 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8058 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8059 | W: http://tcp-lp-mod.sourceforge.net/ |
8060 | S: Maintained | |
679655da | 8061 | F: net/ipv4/tcp_lp.c |
5067f08a | 8062 | |
91952bc0 AP |
8063 | TDA10071 MEDIA DRIVER |
8064 | M: Antti Palosaari <[email protected]> | |
8065 | L: [email protected] | |
8066 | W: http://linuxtv.org/ | |
8067 | W: http://palosaari.fi/linux/ | |
8068 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8069 | T: git git://linuxtv.org/anttip/media_tree.git | |
8070 | S: Maintained | |
8071 | F: drivers/media/dvb-frontends/tda10071* | |
8072 | ||
8073 | TDA18212 MEDIA DRIVER | |
8074 | M: Antti Palosaari <[email protected]> | |
8075 | L: [email protected] | |
8076 | W: http://linuxtv.org/ | |
8077 | W: http://palosaari.fi/linux/ | |
8078 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8079 | T: git git://linuxtv.org/anttip/media_tree.git | |
8080 | S: Maintained | |
8081 | F: drivers/media/tuners/tda18212* | |
8082 | ||
8083 | TDA18218 MEDIA DRIVER | |
8084 | M: Antti Palosaari <[email protected]> | |
8085 | L: [email protected] | |
8086 | W: http://linuxtv.org/ | |
8087 | W: http://palosaari.fi/linux/ | |
8088 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8089 | T: git git://linuxtv.org/anttip/media_tree.git | |
8090 | S: Maintained | |
8091 | F: drivers/media/tuners/tda18218* | |
8092 | ||
3b2f6aba MK |
8093 | TDA18271 MEDIA DRIVER |
8094 | M: Michael Krufky <[email protected]> | |
8095 | L: [email protected] | |
8096 | W: http://linuxtv.org/ | |
8097 | W: http://github.com/mkrufky | |
8098 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8099 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8100 | S: Maintained | |
8101 | F: drivers/media/tuners/tda18271* | |
8102 | ||
e48307a9 MK |
8103 | TDA827x MEDIA DRIVER |
8104 | M: Michael Krufky <[email protected]> | |
8105 | L: [email protected] | |
8106 | W: http://linuxtv.org/ | |
8107 | W: http://github.com/mkrufky | |
8108 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8109 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8110 | S: Maintained | |
8111 | F: drivers/media/tuners/tda8290.* | |
8112 | ||
66cf9212 MK |
8113 | TDA8290 MEDIA DRIVER |
8114 | M: Michael Krufky <[email protected]> | |
8115 | L: [email protected] | |
8116 | W: http://linuxtv.org/ | |
8117 | W: http://github.com/mkrufky | |
8118 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8119 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8120 | S: Maintained | |
8121 | F: drivers/media/tuners/tda8290.* | |
8122 | ||
4b9fba30 HV |
8123 | TDA9840 MEDIA DRIVER |
8124 | M: Hans Verkuil <[email protected]> | |
8125 | L: [email protected] | |
8126 | T: git git://linuxtv.org/media_tree.git | |
8127 | W: http://linuxtv.org | |
8128 | S: Maintained | |
8129 | F: drivers/media/i2c/tda9840* | |
8130 | ||
2cb654fd | 8131 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8132 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8133 | L: [email protected] |
8134 | W: http://linuxtv.org | |
8135 | T: git git://linuxtv.org/media_tree.git | |
8136 | S: Odd fixes | |
8137 | F: drivers/media/tuners/tea5761.* | |
8138 | ||
8139 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8140 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8141 | L: [email protected] |
8142 | W: http://linuxtv.org | |
8143 | T: git git://linuxtv.org/media_tree.git | |
8144 | S: Maintained | |
8145 | F: drivers/media/tuners/tea5767.* | |
8146 | ||
4b9fba30 HV |
8147 | TEA6415C MEDIA DRIVER |
8148 | M: Hans Verkuil <[email protected]> | |
8149 | L: [email protected] | |
8150 | T: git git://linuxtv.org/media_tree.git | |
8151 | W: http://linuxtv.org | |
8152 | S: Maintained | |
8153 | F: drivers/media/i2c/tea6415c* | |
8154 | ||
8155 | TEA6420 MEDIA DRIVER | |
8156 | M: Hans Verkuil <[email protected]> | |
8157 | L: [email protected] | |
8158 | T: git git://linuxtv.org/media_tree.git | |
8159 | W: http://linuxtv.org | |
8160 | S: Maintained | |
8161 | F: drivers/media/i2c/tea6420* | |
8162 | ||
3d249d4c | 8163 | TEAM DRIVER |
dca9ab92 | 8164 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8165 | L: [email protected] |
8166 | S: Supported | |
8167 | F: drivers/net/team/ | |
8168 | F: include/linux/if_team.h | |
c117ab84 | 8169 | F: include/uapi/linux/if_team.h |
3d249d4c | 8170 | |
7d029125 VD |
8171 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8172 | M: Savoir-faire Linux Inc. <[email protected]> | |
8173 | S: Maintained | |
8174 | F: arch/x86/platform/ts5500/ | |
8175 | ||
40ad4a30 SY |
8176 | TECHNOTREND USB IR RECEIVER |
8177 | M: Sean Young <[email protected]> | |
8178 | L: [email protected] | |
8179 | S: Maintained | |
8180 | F: drivers/media/rc/ttusbir.c | |
8181 | ||
84b9414b | 8182 | TEGRA SUPPORT |
243d58ec | 8183 | M: Stephen Warren <[email protected]> |
84b9414b | 8184 | L: [email protected] |
fd117cd1 OJ |
8185 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8187 | S: Supported |
bbbe96ed | 8188 | N: [^a-z]tegra |
84b9414b | 8189 | |
1a348ccc | 8190 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8191 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8192 | L: [email protected] |
8193 | S: Supported | |
ef7f5429 | 8194 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8195 | |
4e68852d | 8196 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8197 | M: Mark Gross <[email protected]> |
4e68852d | 8198 | S: Supported |
679655da | 8199 | F: drivers/char/tlclk.c |
4e68852d | 8200 | |
4480f15b | 8201 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8202 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8203 | M: Max Filippov <[email protected]> |
8204 | L: [email protected] | |
4e68852d | 8205 | S: Maintained |
679655da | 8206 | F: arch/xtensa/ |
4e68852d | 8207 | |
d3fb6955 ZR |
8208 | THERMAL |
8209 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8210 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8211 | L: [email protected] |
8212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8214 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8215 | S: Supported |
8216 | F: drivers/thermal/ | |
8217 | F: include/linux/thermal.h | |
cfaf7179 | 8218 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8219 | |
30ba2fbd VD |
8220 | THINGM BLINK(1) USB RGB LED DRIVER |
8221 | M: Vivien Didelot <[email protected]> | |
8222 | S: Maintained | |
8223 | F: drivers/hid/hid-thingm.c | |
8224 | ||
4e68852d | 8225 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8226 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8227 | L: [email protected] |
d0944853 | 8228 | L: [email protected] |
4e68852d AC |
8229 | W: http://ibm-acpi.sourceforge.net |
8230 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8231 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8232 | S: Maintained |
679655da | 8233 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8234 | |
1b46f2a2 EV |
8235 | TI BANDGAP AND THERMAL DRIVER |
8236 | M: Eduardo Valentin <[email protected]> | |
8237 | L: [email protected] | |
794b2e25 EV |
8238 | S: Supported |
8239 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8240 | |
4020f2d7 | 8241 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8242 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8243 | S: Maintained |
679655da JP |
8244 | F: drivers/misc/tifm* |
8245 | F: drivers/mmc/host/tifm_sd.c | |
8246 | F: include/linux/tifm.h | |
4020f2d7 | 8247 | |
152ad442 SR |
8248 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8249 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8250 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8251 | L: [email protected] (moderated for non-subscribers) |
8252 | S: Maintained | |
8253 | F: sound/soc/codecs/lm49453* | |
d392dead | 8254 | F: sound/soc/codecs/isabelle* |
152ad442 | 8255 | |
0edd807d KM |
8256 | TI LP855x BACKLIGHT DRIVER |
8257 | M: Milo Kim <[email protected]> | |
8258 | S: Maintained | |
8259 | F: Documentation/backlight/lp855x-driver.txt | |
8260 | F: drivers/video/backlight/lp855x_bl.c | |
8261 | F: include/linux/platform_data/lp855x.h | |
8262 | ||
faf13f6d KM |
8263 | TI LP8727 CHARGER DRIVER |
8264 | M: Milo Kim <[email protected]> | |
8265 | S: Maintained | |
8266 | F: drivers/power/lp8727_charger.c | |
8267 | F: include/linux/platform_data/lp8727.h | |
8268 | ||
22f1229f KM |
8269 | TI LP8788 MFD DRIVER |
8270 | M: Milo Kim <[email protected]> | |
8271 | S: Maintained | |
8272 | F: drivers/iio/adc/lp8788_adc.c | |
8273 | F: drivers/leds/leds-lp8788.c | |
8274 | F: drivers/mfd/lp8788*.c | |
8275 | F: drivers/power/lp8788-charger.c | |
8276 | F: drivers/regulator/lp8788-*.c | |
8277 | F: include/linux/mfd/lp8788*.h | |
8278 | ||
dd5e8e6b | 8279 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8280 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8281 | L: [email protected] (moderated for non-subscribers) |
8282 | S: Maintained | |
8283 | F: sound/soc/codecs/twl4030* | |
8284 | ||
90921014 | 8285 | TI WILINK WIRELESS DRIVERS |
d6158a55 | 8286 | M: Luciano Coelho <[email protected]> |
90921014 LC |
8287 | L: [email protected] |
8288 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8289 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8291 | S: Maintained | |
8292 | F: drivers/net/wireless/ti/ | |
8293 | F: include/linux/wl12xx.h | |
8294 | ||
e86eaa3a | 8295 | TIPC NETWORK LAYER |
8b58be88 JP |
8296 | M: Jon Maloy <[email protected]> |
8297 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8298 | L: [email protected] (core kernel code) |
8299 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8300 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8301 | S: Maintained |
c117ab84 | 8302 | F: include/uapi/linux/tipc*.h |
679655da | 8303 | F: net/tipc/ |
e86eaa3a | 8304 | |
867e359b CM |
8305 | TILE ARCHITECTURE |
8306 | M: Chris Metcalf <[email protected]> | |
8307 | W: http://www.tilera.com/scm/ | |
8308 | S: Supported | |
8309 | F: arch/tile/ | |
a2e6093c | 8310 | F: drivers/tty/hvc/hvc_tile.c |
cdd80bd4 | 8311 | F: drivers/net/ethernet/tile/ |
5c770755 | 8312 | F: drivers/edac/tile_edac.c |
867e359b | 8313 | |
1da177e4 | 8314 | TLAN NETWORK DRIVER |
8b58be88 | 8315 | M: Samuel Chessman <[email protected]> |
88c07dde | 8316 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8317 | W: http://sourceforge.net/projects/tlan/ |
8318 | S: Maintained | |
679655da | 8319 | F: Documentation/networking/tlan.txt |
b544dbac | 8320 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8321 | |
d74db3b2 | 8322 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8323 | M: Kentaro Takeda <[email protected]> |
8324 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8325 | L: [email protected] (subscribers-only, for developers in English) |
8326 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8327 | L: [email protected] (subscribers-only, for developers in Japanese) |
8328 | L: [email protected] (subscribers-only, for users in Japanese) | |
8329 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8330 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8331 | S: Maintained |
679655da | 8332 | F: security/tomoyo/ |
d74db3b2 | 8333 | |
9caeb532 | 8334 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8335 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8336 | L: [email protected] |
9caeb532 HRK |
8337 | S: Maintained |
8338 | F: drivers/platform/x86/topstar-laptop.c | |
8339 | ||
1da177e4 | 8340 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8341 | L: [email protected] |
15065531 | 8342 | S: Orphan |
679655da | 8343 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8344 | |
8345 | TOSHIBA SMM DRIVER | |
8b58be88 | 8346 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8347 | L: [email protected] |
8348 | W: http://www.buzzard.org.uk/toshiba/ | |
8349 | S: Maintained | |
679655da JP |
8350 | F: drivers/char/toshiba.c |
8351 | F: include/linux/toshiba.h | |
c117ab84 | 8352 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8353 | |
d719f900 | 8354 | TMIO MMC DRIVER |
d1057c40 | 8355 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 8356 | M: Ian Molton <[email protected]> |
d1057c40 | 8357 | L: [email protected] |
d719f900 | 8358 | S: Maintained |
d1057c40 GL |
8359 | F: drivers/mmc/host/tmio_mmc* |
8360 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8361 | F: include/linux/mmc/tmio.h | |
8362 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8363 | |
917cc4e6 GR |
8364 | TMP401 HARDWARE MONITOR DRIVER |
8365 | M: Guenter Roeck <[email protected]> | |
8366 | L: [email protected] | |
8367 | S: Maintained | |
8368 | F: Documentation/hwmon/tmp401 | |
8369 | F: drivers/hwmon/tmp401.c | |
8370 | ||
98f32602 | 8371 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8372 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8373 | L: [email protected] |
8374 | S: Maintained | |
8375 | F: include/linux/shmem_fs.h | |
8376 | F: mm/shmem.c | |
8377 | ||
45f95b53 | 8378 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8379 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8380 | L: [email protected] |
8381 | W: http://linuxtv.org | |
8382 | T: git git://linuxtv.org/media_tree.git | |
8383 | S: Odd fixes | |
8384 | F: drivers/media/usb/tm6000/ | |
8385 | ||
4e68852d | 8386 | TPM DEVICE DRIVER |
5b88e270 KY |
8387 | M: Leonidas Da Silva Barbosa <[email protected]> |
8388 | M: Ashley Lai <[email protected]> | |
cbb2d5e4 | 8389 | M: Rajiv Andrade <[email protected]> |
4e68852d | 8390 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8391 | M: Marcel Selhorst <[email protected]> |
8392 | M: Sirrix AG <[email protected]> | |
7dcce133 | 8393 | W: http://www.sirrix.com |
63a10dfd | 8394 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8395 | S: Maintained |
679655da | 8396 | F: drivers/char/tpm/ |
4e68852d | 8397 | |
d6f005a1 JP |
8398 | TRACING |
8399 | M: Steven Rostedt <[email protected]> | |
8400 | M: Frederic Weisbecker <[email protected]> | |
8401 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8403 | S: Maintained |
8404 | F: Documentation/trace/ftrace.txt | |
8405 | F: arch/*/*/*/ftrace.h | |
8406 | F: arch/*/kernel/ftrace.c | |
8407 | F: include/*/ftrace.h | |
8408 | F: include/linux/trace*.h | |
8409 | F: include/trace/ | |
8410 | F: kernel/trace/ | |
8411 | ||
1da177e4 | 8412 | TRIVIAL PATCHES |
8b58be88 | 8413 | M: Jiri Kosina <[email protected]> |
54e5881d | 8414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8415 | S: Maintained |
86ef925f | 8416 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8417 | |
4e68852d | 8418 | TTY LAYER |
879a5a00 | 8419 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8420 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8421 | S: Supported |
08deed1e | 8422 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8423 | F: drivers/tty/ |
df621252 | 8424 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8425 | F: include/linux/serial_core.h |
8426 | F: include/linux/serial.h | |
8427 | F: include/linux/tty.h | |
c117ab84 CEB |
8428 | F: include/uapi/linux/serial_core.h |
8429 | F: include/uapi/linux/serial.h | |
8430 | F: include/uapi/linux/tty.h | |
4e68852d | 8431 | |
91952bc0 AP |
8432 | TUA9001 MEDIA DRIVER |
8433 | M: Antti Palosaari <[email protected]> | |
8434 | L: [email protected] | |
8435 | W: http://linuxtv.org/ | |
8436 | W: http://palosaari.fi/linux/ | |
8437 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8438 | T: git git://linuxtv.org/anttip/media_tree.git | |
8439 | S: Maintained | |
8440 | F: drivers/media/tuners/tua9001* | |
8441 | ||
740db6d7 | 8442 | TULIP NETWORK DRIVERS |
8b58be88 | 8443 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8444 | L: [email protected] |
8445 | S: Maintained | |
0f04e2aa | 8446 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8447 | |
8448 | TUN/TAP driver | |
ba57b6f2 | 8449 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8450 | W: http://vtun.sourceforge.net/tun |
8451 | S: Maintained | |
679655da JP |
8452 | F: Documentation/networking/tuntap.txt |
8453 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8454 | |
b454cc66 | 8455 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8456 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8457 | S: Maintained |
679655da JP |
8458 | F: drivers/tc/ |
8459 | F: include/linux/tc.h | |
b454cc66 | 8460 | |
1da177e4 | 8461 | U14-34F SCSI DRIVER |
8b58be88 | 8462 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8463 | L: [email protected] |
8464 | S: Maintained | |
679655da | 8465 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8466 | |
e2d1d6c0 | 8467 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8468 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8469 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8470 | L: [email protected] |
e2966cbe | 8471 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8472 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8473 | S: Maintained | |
679655da JP |
8474 | F: Documentation/filesystems/ubifs.txt |
8475 | F: fs/ubifs/ | |
e2d1d6c0 | 8476 | |
cc2020e6 | 8477 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8478 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8479 | W: http://www.uclinux.org/ |
8480 | L: [email protected] (subscribers-only) | |
8481 | S: Maintained | |
61bc02bb JP |
8482 | F: arch/m68k/*/*_no.* |
8483 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8484 | |
14fadca7 | 8485 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 8486 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
8487 | W: http://uclinux-h8.sourceforge.jp/ |
8488 | S: Supported | |
a7e4fd93 JP |
8489 | F: arch/h8300/ |
8490 | F: drivers/ide/ide-h8300.c | |
644570b8 | 8491 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 8492 | |
1da177e4 | 8493 | UDF FILESYSTEM |
8b58be88 | 8494 | M: Jan Kara <[email protected]> |
1da177e4 | 8495 | S: Maintained |
679655da JP |
8496 | F: Documentation/filesystems/udf.txt |
8497 | F: fs/udf/ | |
1da177e4 | 8498 | |
cc2020e6 | 8499 | UFS FILESYSTEM |
8b58be88 | 8500 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8501 | S: Maintained |
679655da JP |
8502 | F: Documentation/filesystems/ufs.txt |
8503 | F: fs/ufs/ | |
cc2020e6 | 8504 | |
0a09d3ab DR |
8505 | UHID USERSPACE HID IO DRIVER: |
8506 | M: David Herrmann <[email protected]> | |
8507 | L: [email protected] | |
8508 | S: Maintained | |
8509 | F: drivers/hid/uhid.c | |
c117ab84 | 8510 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8511 | |
18332a80 | 8512 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8513 | L: [email protected] |
10c6c9c9 | 8514 | S: Orphan |
355ffe69 | 8515 | F: drivers/uwb/ |
679655da JP |
8516 | F: include/linux/uwb.h |
8517 | F: include/linux/uwb/ | |
18332a80 | 8518 | |
b31d8273 G |
8519 | UNICORE32 ARCHITECTURE: |
8520 | M: Guan Xuetao <[email protected]> | |
8521 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8522 | S: Maintained | |
8523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8524 | F: arch/unicore32/ | |
8525 | ||
d8379ab1 TF |
8526 | UNIFDEF |
8527 | M: Tony Finch <[email protected]> | |
8528 | W: http://dotat.at/prog/unifdef | |
8529 | S: Maintained | |
8530 | F: scripts/unifdef.c | |
8531 | ||
1da177e4 | 8532 | UNIFORM CDROM DRIVER |
8b58be88 | 8533 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8534 | W: http://www.kernel.dk |
8535 | S: Maintained | |
679655da JP |
8536 | F: Documentation/cdrom/ |
8537 | F: drivers/cdrom/cdrom.c | |
8538 | F: include/linux/cdrom.h | |
c117ab84 | 8539 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8540 | |
9941fa6e VH |
8541 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8542 | M: Vinayak Holikatti <[email protected]> | |
8543 | M: Santosh Y <[email protected]> | |
8544 | L: [email protected] | |
8545 | S: Supported | |
8546 | F: Documentation/scsi/ufs.txt | |
8547 | F: drivers/scsi/ufs/ | |
8548 | ||
e2d1d6c0 | 8549 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8550 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
8551 | W: http://www.linux-mtd.infradead.org/ |
8552 | L: [email protected] | |
e2966cbe | 8553 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8554 | S: Maintained |
80811493 | 8555 | F: drivers/mtd/ubi/ |
679655da | 8556 | F: include/linux/mtd/ubi.h |
c117ab84 | 8557 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8558 | |
76ac66e4 RW |
8559 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8560 | M: Richard Weinberger <[email protected]> | |
8561 | L: [email protected] | |
8562 | S: Maintained | |
8563 | F: drivers/mtd/ubi/fastmap.c | |
8564 | ||
1da177e4 | 8565 | USB ACM DRIVER |
61eee9a7 | 8566 | M: Oliver Neukum <[email protected]> |
6372594a | 8567 | L: [email protected] |
1da177e4 | 8568 | S: Maintained |
679655da JP |
8569 | F: Documentation/usb/acm.txt |
8570 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8571 | |
b7d572e1 PF |
8572 | USB AR5523 WIRELESS DRIVER |
8573 | M: Pontus Fuchs <[email protected]> | |
8574 | L: [email protected] | |
8575 | S: Maintained | |
8576 | F: drivers/net/wireless/ath/ar5523/ | |
8577 | ||
115bb1ff MW |
8578 | USB ATTACHED SCSI |
8579 | M: Matthew Wilcox <[email protected]> | |
8580 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 8581 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
8582 | L: [email protected] |
8583 | L: [email protected] | |
8eae0fb7 | 8584 | S: Maintained |
115bb1ff MW |
8585 | F: drivers/usb/storage/uas.c |
8586 | ||
1da177e4 | 8587 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8588 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8589 | L: [email protected] |
1da177e4 | 8590 | S: Maintained |
679655da | 8591 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8592 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8593 | |
b02b371e | 8594 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8595 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
8596 | L: [email protected] |
8597 | S: Maintained | |
679655da | 8598 | F: drivers/usb/c67x00/ |
b02b371e | 8599 | |
d0374f4f | 8600 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8601 | M: Peter Korsgaard <[email protected]> |
043600a6 | 8602 | L: [email protected] |
d0374f4f PK |
8603 | W: http://www.linux-usb.org/usbnet |
8604 | S: Maintained | |
679655da | 8605 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8606 | |
cc2020e6 | 8607 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8608 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
8609 | L: [email protected] |
8610 | W: http://rio500.sourceforge.net | |
8611 | S: Maintained | |
679655da | 8612 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8613 | |
1da177e4 | 8614 | USB EHCI DRIVER |
578333ab | 8615 | M: Alan Stern <[email protected]> |
795fb7e7 | 8616 | L: [email protected] |
578333ab | 8617 | S: Maintained |
679655da JP |
8618 | F: Documentation/usb/ehci.txt |
8619 | F: drivers/usb/host/ehci* | |
1da177e4 | 8620 | |
69ae9e3e | 8621 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8622 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 8623 | L: [email protected] |
69ae9e3e | 8624 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8626 | S: Maintained | |
679655da JP |
8627 | F: drivers/usb/gadget/ |
8628 | F: include/linux/usb/gadget* | |
69ae9e3e | 8629 | |
2dea64b4 | 8630 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8631 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 8632 | L: [email protected] |
54e5881d | 8633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8634 | S: Maintained |
c2f01971 | 8635 | F: Documentation/hid/hiddev.txt |
679655da | 8636 | F: drivers/hid/usbhid/ |
1da177e4 | 8637 | |
857aab34 | 8638 | USB/IP DRIVERS |
8639 | M: Matt Mooney <[email protected]> | |
8640 | L: [email protected] | |
8641 | S: Maintained | |
8642 | F: drivers/staging/usbip/ | |
8643 | ||
959eea21 | 8644 | USB ISP116X DRIVER |
8b58be88 | 8645 | M: Olav Kongas <[email protected]> |
795fb7e7 | 8646 | L: [email protected] |
959eea21 | 8647 | S: Maintained |
679655da JP |
8648 | F: drivers/usb/host/isp116x* |
8649 | F: include/linux/usb/isp116x.h | |
959eea21 | 8650 | |
1da177e4 | 8651 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8652 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8653 | L: [email protected] |
1da177e4 | 8654 | S: Maintained |
679655da | 8655 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8656 | |
8657 | USB MASS STORAGE DRIVER | |
8b58be88 | 8658 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 8659 | L: [email protected] |
8836aeb8 | 8660 | L: [email protected] |
1da177e4 LT |
8661 | S: Maintained |
8662 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8663 | F: drivers/usb/storage/ |
1da177e4 | 8664 | |
af39917d CL |
8665 | USB MIDI DRIVER |
8666 | M: Clemens Ladisch <[email protected]> | |
8667 | L: [email protected] (moderated for non-subscribers) | |
8668 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8669 | S: Maintained | |
8670 | F: sound/usb/midi.* | |
8671 | ||
444ce9d4 JP |
8672 | USB NETWORKING DRIVERS |
8673 | L: [email protected] | |
8674 | S: Odd Fixes | |
8675 | F: drivers/net/usb/ | |
8676 | ||
1da177e4 | 8677 | USB OHCI DRIVER |
578333ab | 8678 | M: Alan Stern <[email protected]> |
795fb7e7 | 8679 | L: [email protected] |
578333ab | 8680 | S: Maintained |
679655da JP |
8681 | F: Documentation/usb/ohci.txt |
8682 | F: drivers/usb/host/ohci* | |
1da177e4 | 8683 | |
ba460e48 | 8684 | USB OPTION-CARD DRIVER |
8b58be88 | 8685 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 8686 | L: [email protected] |
ba460e48 | 8687 | S: Maintained |
679655da | 8688 | F: drivers/usb/serial/option.c |
ba460e48 | 8689 | |
1da177e4 | 8690 | USB PEGASUS DRIVER |
a16b945c | 8691 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8692 | L: [email protected] |
043600a6 | 8693 | L: [email protected] |
a16b945c | 8694 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8695 | W: http://pegasus2.sourceforge.net/ |
8696 | S: Maintained | |
679655da | 8697 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8698 | |
d3ad558f FB |
8699 | USB PHY LAYER |
8700 | M: Felipe Balbi <[email protected]> | |
8701 | L: [email protected] | |
8702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8703 | S: Maintained | |
8704 | F: drivers/usb/phy/ | |
8705 | F: drivers/usb/otg/ | |
8706 | ||
73e4fb3f | 8707 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8708 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 8709 | L: [email protected] |
73e4fb3f | 8710 | S: Supported |
679655da | 8711 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8712 | |
8713 | USB RTL8150 DRIVER | |
a16b945c | 8714 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8715 | L: [email protected] |
043600a6 | 8716 | L: [email protected] |
a16b945c | 8717 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8718 | W: http://pegasus2.sourceforge.net/ |
8719 | S: Maintained | |
679655da | 8720 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8721 | |
4e68852d | 8722 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8723 | M: William Greathouse <[email protected]> |
795fb7e7 | 8724 | L: [email protected] |
4e68852d | 8725 | S: Maintained |
679655da | 8726 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8727 | |
8728 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8729 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 8730 | L: [email protected] |
4e68852d AC |
8731 | S: Maintained |
8732 | W: http://geocities.com/i0xox0i | |
8733 | W: http://firstlight.net/cvs | |
679655da | 8734 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8735 | |
1da177e4 | 8736 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8737 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
8738 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8739 | S: Maintained | |
679655da | 8740 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8741 | |
8742 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8743 | M: Peter Berger <[email protected]> |
8744 | M: Al Borchers <[email protected]> | |
795fb7e7 | 8745 | L: [email protected] |
1da177e4 | 8746 | S: Maintained |
679655da | 8747 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8748 | |
8749 | USB SERIAL DRIVER | |
879a5a00 | 8750 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8751 | L: [email protected] |
1da177e4 | 8752 | S: Supported |
679655da JP |
8753 | F: Documentation/usb/usb-serial.txt |
8754 | F: drivers/usb/serial/generic.c | |
8755 | F: drivers/usb/serial/usb-serial.c | |
8756 | F: include/linux/usb/serial.h | |
1da177e4 | 8757 | |
1da177e4 | 8758 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8759 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 8760 | L: [email protected] |
1da177e4 | 8761 | S: Maintained |
679655da | 8762 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8763 | |
8764 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8765 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8766 | L: [email protected] |
1da177e4 | 8767 | S: Maintained |
679655da | 8768 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8769 | |
8770 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8771 | M: Support Department <[email protected]> |
795fb7e7 | 8772 | L: [email protected] |
1da177e4 LT |
8773 | W: http://www.connecttech.com |
8774 | S: Supported | |
679655da | 8775 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8776 | |
b3f0db1c SG |
8777 | USB SMSC75XX ETHERNET DRIVER |
8778 | M: Steve Glendinning <[email protected]> | |
8779 | L: [email protected] | |
8780 | S: Maintained | |
8781 | F: drivers/net/usb/smsc75xx.* | |
8782 | ||
2f7ca802 | 8783 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8784 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 8785 | L: [email protected] |
90b24cfb | 8786 | S: Maintained |
679655da | 8787 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8788 | |
f423b9a8 | 8789 | USB SN9C1xx DRIVER |
8b58be88 | 8790 | M: Luca Risolia <[email protected]> |
795fb7e7 | 8791 | L: [email protected] |
661263b5 | 8792 | L: [email protected] |
275ffde4 | 8793 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8794 | W: http://www.linux-projects.org |
8795 | S: Maintained | |
679655da | 8796 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8797 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8798 | |
8799 | USB SUBSYSTEM | |
879a5a00 | 8800 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8801 | L: [email protected] |
1da177e4 | 8802 | W: http://www.linux-usb.org |
08deed1e | 8803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8804 | S: Supported |
679655da JP |
8805 | F: Documentation/usb/ |
8806 | F: drivers/net/usb/ | |
8807 | F: drivers/usb/ | |
8808 | F: include/linux/usb.h | |
8809 | F: include/linux/usb/ | |
1da177e4 LT |
8810 | |
8811 | USB UHCI DRIVER | |
8b58be88 | 8812 | M: Alan Stern <[email protected]> |
795fb7e7 | 8813 | L: [email protected] |
1da177e4 | 8814 | S: Maintained |
679655da | 8815 | F: drivers/usb/host/uhci* |
1da177e4 | 8816 | |
69ae9e3e | 8817 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8818 | M: Oliver Neukum <[email protected]> |
043600a6 | 8819 | L: [email protected] |
69ae9e3e | 8820 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8821 | S: Maintained |
679655da JP |
8822 | F: drivers/net/usb/usbnet.c |
8823 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8824 | |
c0efd232 | 8825 | USB VIDEO CLASS |
c53ac071 | 8826 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 8827 | L: [email protected] (subscribers-only) |
661263b5 | 8828 | L: [email protected] |
275ffde4 | 8829 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8830 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8831 | S: Maintained |
0c0d06ca | 8832 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8833 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8834 | |
b60b9c45 HV |
8835 | USB VISION DRIVER |
8836 | M: Hans Verkuil <[email protected]> | |
8837 | L: [email protected] | |
8838 | T: git git://linuxtv.org/media_tree.git | |
8839 | W: http://linuxtv.org | |
8840 | S: Odd Fixes | |
8841 | F: drivers/media/usb/usbvision/ | |
8842 | ||
8282da47 LP |
8843 | USB WEBCAM GADGET |
8844 | M: Laurent Pinchart <[email protected]> | |
8845 | L: [email protected] | |
8846 | S: Maintained | |
8847 | F: drivers/usb/gadget/*uvc*.c | |
8848 | F: drivers/usb/gadget/webcam.c | |
8849 | ||
bf164cc0 | 8850 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 8851 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
8852 | L: [email protected] |
8853 | S: Maintained | |
679655da | 8854 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8855 | |
eb6bab13 | 8856 | USB XHCI DRIVER |
36d0344c | 8857 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
8858 | L: [email protected] |
8859 | S: Supported | |
36d0344c SS |
8860 | F: drivers/usb/host/xhci* |
8861 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8862 | |
1da177e4 | 8863 | USB ZD1201 DRIVER |
4086b9ca | 8864 | L: [email protected] |
1da177e4 | 8865 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8866 | S: Orphan |
679655da | 8867 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8868 | |
b7eee616 | 8869 | USB ZR364XX DRIVER |
8b58be88 | 8870 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 8871 | L: [email protected] |
661263b5 | 8872 | L: [email protected] |
275ffde4 | 8873 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8874 | W: http://royale.zerezo.com/zr364xx/ |
8875 | S: Maintained | |
679655da | 8876 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8877 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8878 | |
e7839f25 | 8879 | USER-MODE LINUX (UML) |
8b58be88 | 8880 | M: Jeff Dike <[email protected]> |
b15194b7 | 8881 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
8882 | L: [email protected] |
8883 | L: [email protected] | |
8884 | W: http://user-mode-linux.sourceforge.net | |
8885 | S: Maintained | |
61516587 | 8886 | F: Documentation/virtual/uml/ |
679655da | 8887 | F: arch/um/ |
b070989a | 8888 | F: arch/x86/um/ |
679655da JP |
8889 | F: fs/hostfs/ |
8890 | F: fs/hppfs/ | |
b7eee616 | 8891 | |
e5f114e9 | 8892 | USERSPACE I/O (UIO) |
6a534c9d | 8893 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 8894 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 8895 | S: Maintained |
679655da JP |
8896 | F: Documentation/DocBook/uio-howto.tmpl |
8897 | F: drivers/uio/ | |
8898 | F: include/linux/uio*.h | |
e5f114e9 | 8899 | |
256cccbe | 8900 | UTIL-LINUX PACKAGE |
8b58be88 | 8901 | M: Karel Zak <[email protected]> |
256cccbe KZ |
8902 | L: [email protected] |
8903 | W: http://en.wikipedia.org/wiki/Util-linux | |
8904 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8905 | S: Maintained |
8906 | ||
c1fd1c07 | 8907 | UVESAFB DRIVER |
8b58be88 | 8908 | M: Michal Januszewski <[email protected]> |
c69f677c | 8909 | L: [email protected] |
c1fd1c07 MJ |
8910 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8911 | S: Maintained | |
679655da JP |
8912 | F: Documentation/fb/uvesafb.txt |
8913 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 8914 | |
4480f15b | 8915 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 8916 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 8917 | S: Maintained |
679655da JP |
8918 | F: Documentation/filesystems/vfat.txt |
8919 | F: fs/fat/ | |
1da177e4 | 8920 | |
cba3345c AW |
8921 | VFIO DRIVER |
8922 | M: Alex Williamson <[email protected]> | |
8923 | L: [email protected] | |
8924 | S: Maintained | |
8925 | F: Documentation/vfio.txt | |
8926 | F: drivers/vfio/ | |
8927 | F: include/linux/vfio.h | |
c117ab84 | 8928 | F: include/uapi/linux/vfio.h |
cba3345c | 8929 | |
9e6f3438 PO |
8930 | VIDEOBUF2 FRAMEWORK |
8931 | M: Pawel Osciak <[email protected]> | |
8932 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 8933 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
8934 | L: [email protected] |
8935 | S: Maintained | |
90d72ac6 | 8936 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
8937 | F: include/media/videobuf2-* |
8938 | ||
9a82446b AS |
8939 | VIRTIO CONSOLE DRIVER |
8940 | M: Amit Shah <[email protected]> | |
8941 | L: [email protected] | |
8942 | S: Maintained | |
8943 | F: drivers/char/virtio_console.c | |
8944 | F: include/linux/virtio_console.h | |
c117ab84 | 8945 | F: include/uapi/linux/virtio_console.h |
9a82446b | 8946 | |
2426ec8f MT |
8947 | VIRTIO CORE, NET AND BLOCK DRIVERS |
8948 | M: Rusty Russell <[email protected]> | |
8949 | M: "Michael S. Tsirkin" <[email protected]> | |
8950 | L: [email protected] | |
8951 | S: Maintained | |
8952 | F: drivers/virtio/ | |
c893c8d7 | 8953 | F: tools/virtio/ |
2426ec8f MT |
8954 | F: drivers/net/virtio_net.c |
8955 | F: drivers/block/virtio_blk.c | |
8956 | F: include/linux/virtio_*.h | |
916cdabc | 8957 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 8958 | |
3a4d5c94 MT |
8959 | VIRTIO HOST (VHOST) |
8960 | M: "Michael S. Tsirkin" <[email protected]> | |
8961 | L: [email protected] | |
c996d8b9 | 8962 | L: [email protected] |
3a4d5c94 MT |
8963 | L: [email protected] |
8964 | S: Maintained | |
8965 | F: drivers/vhost/ | |
c117ab84 | 8966 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 8967 | |
1da177e4 | 8968 | VIA RHINE NETWORK DRIVER |
8b58be88 | 8969 | M: Roger Luethi <[email protected]> |
1da177e4 | 8970 | S: Maintained |
f2148a47 | 8971 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 8972 | |
f0bf7f61 | 8973 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 8974 | M: Bruce Chang <[email protected]> |
8b58be88 | 8975 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
8976 | S: Maintained |
8977 | F: drivers/mmc/host/via-sdmmc.c | |
8978 | ||
69e4a7c2 | 8979 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 8980 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 8981 | L: [email protected] |
69e4a7c2 | 8982 | S: Maintained |
c7babebd FTS |
8983 | F: include/linux/via-core.h |
8984 | F: include/linux/via-gpio.h | |
8985 | F: include/linux/via_i2c.h | |
679655da | 8986 | F: drivers/video/via/ |
69e4a7c2 | 8987 | |
01f20734 | 8988 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 8989 | M: Francois Romieu <[email protected]> |
01f20734 FR |
8990 | L: [email protected] |
8991 | S: Maintained | |
f2148a47 | 8992 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 8993 | |
0b7bc1fa HV |
8994 | VIVI VIRTUAL VIDEO DRIVER |
8995 | M: Hans Verkuil <[email protected]> | |
8996 | L: [email protected] | |
8997 | T: git git://linuxtv.org/media_tree.git | |
8998 | W: http://linuxtv.org | |
8999 | S: Maintained | |
9000 | F: drivers/media/platform/vivi* | |
9001 | ||
be7f8273 | 9002 | VLAN (802.1Q) |
8b58be88 | 9003 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
9004 | L: [email protected] |
9005 | S: Maintained | |
679655da JP |
9006 | F: drivers/net/macvlan.c |
9007 | F: include/linux/if_*vlan.h | |
9008 | F: net/8021q/ | |
be7f8273 | 9009 | |
55e331cf | 9010 | VLYNQ BUS |
8b58be88 | 9011 | M: Florian Fainelli <[email protected]> |
8578d7af | 9012 | L: [email protected] (subscribers-only) |
55e331cf FF |
9013 | S: Maintained |
9014 | F: drivers/vlynq/vlynq.c | |
9015 | F: include/linux/vlynq.h | |
9016 | ||
390beae4 MW |
9017 | VME SUBSYSTEM |
9018 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9019 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9020 | M: Greg Kroah-Hartman <[email protected]> |
9021 | L: [email protected] | |
9022 | S: Maintained | |
9023 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9024 | F: Documentation/vme_api.txt | |
9025 | F: drivers/staging/vme/ | |
9026 | F: drivers/vme/ | |
9027 | F: include/linux/vme* | |
9028 | ||
d1a890fa | 9029 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9030 | M: Shreyas Bhatewara <[email protected]> |
9031 | M: "VMware, Inc." <[email protected]> | |
9032 | L: [email protected] | |
9033 | S: Maintained | |
9034 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9035 | |
851b1642 | 9036 | VMware PVSCSI driver |
f2d7e40e | 9037 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9038 | M: VMware PV-Drivers <[email protected]> |
9039 | L: [email protected] | |
9040 | S: Maintained | |
9041 | F: drivers/scsi/vmw_pvscsi.c | |
9042 | F: drivers/scsi/vmw_pvscsi.h | |
9043 | ||
e53e86c7 | 9044 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9045 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9046 | M: Mark Brown <[email protected]> |
e53e86c7 | 9047 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9048 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9050 | S: Supported |
679655da JP |
9051 | F: drivers/regulator/ |
9052 | F: include/linux/regulator/ | |
e53e86c7 | 9053 | |
ab41319e | 9054 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9055 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9056 | L: [email protected] |
9057 | S: Maintained | |
679655da JP |
9058 | F: Documentation/hwmon/vt1211 |
9059 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9060 | |
1de9e371 | 9061 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9062 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9063 | L: [email protected] |
9064 | S: Maintained | |
679655da | 9065 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9066 | |
88095e7b TO |
9067 | VUB300 USB to SDIO/SD/MMC bridge chip |
9068 | M: Tony Olech <[email protected]> | |
9069 | L: [email protected] | |
9070 | L: [email protected] | |
9071 | S: Supported | |
9072 | F: drivers/mmc/host/vub300.c | |
9073 | ||
1da177e4 | 9074 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9075 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9076 | S: Maintained |
679655da JP |
9077 | F: Documentation/w1/ |
9078 | F: drivers/w1/ | |
1da177e4 | 9079 | |
13927079 | 9080 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9081 | M: Marc Hulsman <[email protected]> |
13927079 | 9082 | L: [email protected] |
25845c22 | 9083 | S: Maintained |
679655da JP |
9084 | F: Documentation/hwmon/w83791d |
9085 | F: drivers/hwmon/w83791d.c | |
13927079 | 9086 | |
61db011d | 9087 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9088 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9089 | L: [email protected] |
9090 | S: Maintained | |
679655da JP |
9091 | F: Documentation/hwmon/w83793 |
9092 | F: drivers/hwmon/w83793.c | |
61db011d | 9093 | |
e3760b43 JD |
9094 | W83795 HARDWARE MONITORING DRIVER |
9095 | M: Jean Delvare <[email protected]> | |
9096 | L: [email protected] | |
9097 | S: Maintained | |
9098 | F: drivers/hwmon/w83795.c | |
9099 | ||
1da177e4 | 9100 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9101 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9102 | S: Maintained |
679655da | 9103 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9104 | |
3527761c | 9105 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9106 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9107 | L: [email protected] |
9108 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9109 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9110 | S: Maintained |
679655da JP |
9111 | F: Documentation/watchdog/ |
9112 | F: drivers/watchdog/ | |
9113 | F: include/linux/watchdog.h | |
c117ab84 | 9114 | F: include/uapi/linux/watchdog.h |
3527761c | 9115 | |
1da177e4 | 9116 | WD7000 SCSI DRIVER |
8b58be88 | 9117 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9118 | L: [email protected] |
9119 | S: Maintained | |
679655da | 9120 | F: drivers/scsi/wd7000.c |
1da177e4 | 9121 | |
b22e00f3 DR |
9122 | WIIMOTE HID DRIVER |
9123 | M: David Herrmann <[email protected]> | |
9124 | L: [email protected] | |
9125 | S: Maintained | |
9126 | F: drivers/hid/hid-wiimote* | |
9127 | ||
e258b80e | 9128 | WINBOND CIR DRIVER |
364e9e18 | 9129 | M: David Härdeman <[email protected]> |
e258b80e | 9130 | S: Maintained |
116ab806 | 9131 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9132 | |
8a70da82 | 9133 | WIMAX STACK |
8b58be88 | 9134 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9135 | M: [email protected] |
9136 | L: [email protected] | |
9137 | S: Supported | |
9138 | W: http://linuxwimax.org | |
315987dc | 9139 | F: Documentation/wimax/README.wimax |
315987dc JP |
9140 | F: include/linux/wimax/debug.h |
9141 | F: include/net/wimax.h | |
c117ab84 | 9142 | F: include/uapi/linux/wimax.h |
315987dc | 9143 | F: net/wimax/ |
8a70da82 | 9144 | |
5fc14680 | 9145 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9146 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9147 | S: Maintained |
679655da | 9148 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9149 | |
1da177e4 | 9150 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9151 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9152 | L: [email protected] |
926554c4 | 9153 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9154 | S: Maintained |
679655da | 9155 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9156 | |
febf1dff | 9157 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9158 | M: Mark Brown <[email protected]> |
8b58be88 | 9159 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9160 | L: [email protected] |
9161 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9162 | W: http://opensource.wolfsonmicro.com/node/7 | |
9163 | S: Supported | |
679655da JP |
9164 | F: drivers/input/touchscreen/*wm97* |
9165 | F: include/linux/wm97xx.h | |
febf1dff | 9166 | |
055bcbcb | 9167 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9168 | L: [email protected] |
cf8eda3e | 9169 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9170 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9171 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9172 | S: Supported |
3768f0b1 | 9173 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9174 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9175 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9176 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9177 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9178 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9179 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9180 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9181 | F: drivers/input/misc/wm831x-on.c |
9182 | F: drivers/input/touchscreen/wm831x-ts.c | |
9183 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9184 | F: drivers/mfd/arizona* |
9185 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9186 | F: drivers/power/wm83*.c |
9187 | F: drivers/rtc/rtc-wm83*.c | |
9188 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9189 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9190 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9191 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9192 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9193 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9194 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9195 | F: include/linux/wm97xx.h |
055bcbcb | 9196 | F: include/sound/wm????.h |
9c309598 | 9197 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9198 | F: sound/soc/codecs/wm* |
b75ea16a | 9199 | |
3e6cd7a4 TH |
9200 | WORKQUEUE |
9201 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9202 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9203 | S: Maintained | |
9204 | F: include/linux/workqueue.h | |
9205 | F: kernel/workqueue.c | |
9206 | F: Documentation/workqueue.txt | |
9207 | ||
1da177e4 | 9208 | X.25 NETWORK LAYER |
8bf28059 | 9209 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9210 | L: [email protected] |
8bf28059 | 9211 | S: Odd Fixes |
679655da JP |
9212 | F: Documentation/networking/x25* |
9213 | F: include/net/x25* | |
9214 | F: net/x25/ | |
1da177e4 | 9215 | |
e2d1d6c0 | 9216 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9217 | M: Thomas Gleixner <[email protected]> |
9218 | M: Ingo Molnar <[email protected]> | |
9219 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9220 | M: [email protected] |
75fc2d37 | 9221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9222 | S: Maintained |
679655da JP |
9223 | F: Documentation/x86/ |
9224 | F: arch/x86/ | |
e2d1d6c0 | 9225 | |
d0944853 | 9226 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9227 | M: Matthew Garrett <[email protected]> |
d0944853 | 9228 | L: [email protected] |
28b8e8d4 | 9229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
9230 | S: Maintained |
9231 | F: drivers/platform/x86 | |
9232 | ||
c1f5c54b IM |
9233 | X86 MCE INFRASTRUCTURE |
9234 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9235 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9236 | L: [email protected] |
9237 | S: Maintained | |
9238 | F: arch/x86/kernel/cpu/mcheck/* | |
9239 | ||
d6fad502 | 9240 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9241 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9242 | L: [email protected] |
9243 | W: http://linuxtv.org | |
9244 | T: git git://linuxtv.org/media_tree.git | |
9245 | S: Maintained | |
9246 | F: drivers/media/tuners/tuner-xc2028.* | |
9247 | ||
c4468085 | 9248 | XEN HYPERVISOR INTERFACE |
c4468085 | 9249 | M: Konrad Rzeszutek Wilk <[email protected]> |
d633180c | 9250 | M: Jeremy Fitzhardinge <[email protected]> |
c4468085 IC |
9251 | L: [email protected] (moderated for non-subscribers) |
9252 | L: [email protected] | |
9253 | S: Supported | |
9254 | F: arch/x86/xen/ | |
9255 | F: drivers/*/xen-*front.c | |
9256 | F: drivers/xen/ | |
9257 | F: arch/x86/include/asm/xen/ | |
9258 | F: include/xen/ | |
c117ab84 | 9259 | F: include/uapi/xen/ |
c4468085 | 9260 | |
77bfb479 SS |
9261 | XEN HYPERVISOR ARM |
9262 | M: Stefano Stabellini <[email protected]> | |
9263 | L: [email protected] (moderated for non-subscribers) | |
9264 | S: Supported | |
9265 | F: arch/arm/xen/ | |
9266 | F: arch/arm/include/asm/xen/ | |
9267 | ||
b475e83f SS |
9268 | XEN HYPERVISOR ARM64 |
9269 | M: Stefano Stabellini <[email protected]> | |
9270 | L: [email protected] (moderated for non-subscribers) | |
9271 | S: Supported | |
9272 | F: arch/arm64/xen/ | |
9273 | F: arch/arm64/include/asm/xen/ | |
9274 | ||
9b57e1a7 IC |
9275 | XEN NETWORK BACKEND DRIVER |
9276 | M: Ian Campbell <[email protected]> | |
9277 | L: [email protected] (moderated for non-subscribers) | |
9278 | L: [email protected] | |
9279 | S: Supported | |
9280 | F: drivers/net/xen-netback/* | |
9281 | ||
c5f8e29d KRW |
9282 | XEN PCI SUBSYSTEM |
9283 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9284 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9285 | S: Supported |
9286 | F: arch/x86/pci/*xen* | |
9287 | F: drivers/pci/*xen* | |
9288 | ||
9289 | XEN SWIOTLB SUBSYSTEM | |
9290 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9291 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9292 | S: Supported |
9293 | F: arch/x86/xen/*swiotlb* | |
9294 | F: drivers/xen/*swiotlb* | |
9295 | ||
1da177e4 LT |
9296 | XFS FILESYSTEM |
9297 | P: Silicon Graphics Inc | |
c8891329 AE |
9298 | M: Ben Myers <[email protected]> |
9299 | M: Alex Elder <[email protected]> | |
18caa67a | 9300 | M: [email protected] |
d7ede1aa | 9301 | L: [email protected] |
1da177e4 | 9302 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9303 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9304 | S: Supported |
679655da JP |
9305 | F: Documentation/filesystems/xfs.txt |
9306 | F: fs/xfs/ | |
1da177e4 | 9307 | |
8a3b7a25 | 9308 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9309 | M: Anirudha Sarangi <[email protected]> |
9310 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9311 | S: Maintained |
9312 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9313 | ||
c9d3d8ec | 9314 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9315 | S: Orphan |
679655da | 9316 | F: drivers/block/xsysace.c |
c9d3d8ec | 9317 | |
238b8721 | 9318 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9319 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9320 | L: [email protected] |
9321 | S: Maintained | |
df621252 | 9322 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9323 | |
1da177e4 | 9324 | YAM DRIVER FOR AX.25 |
8b58be88 | 9325 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9326 | L: [email protected] |
9327 | S: Maintained | |
679655da JP |
9328 | F: drivers/net/hamradio/yam* |
9329 | F: include/linux/yam.h | |
1da177e4 | 9330 | |
af64a5eb | 9331 | YEALINK PHONE DRIVER |
8b58be88 | 9332 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9333 | L: [email protected] |
9334 | S: Maintained | |
679655da JP |
9335 | F: Documentation/input/yealink.txt |
9336 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9337 | |
1da177e4 | 9338 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9339 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9340 | W: http://yaina.de/jreuter/ |
9341 | W: http://www.qsl.net/dl1bke/ | |
9342 | L: [email protected] | |
9343 | S: Maintained | |
679655da JP |
9344 | F: Documentation/networking/z8530drv.txt |
9345 | F: drivers/net/hamradio/*scc.c | |
9346 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9347 | |
0cf31ec1 SJ |
9348 | ZBUD COMPRESSED PAGE ALLOCATOR |
9349 | M: Seth Jennings <[email protected]> | |
9350 | L: [email protected] | |
9351 | S: Maintained | |
9352 | F: mm/zbud.c | |
9353 | F: include/linux/zbud.h | |
9354 | ||
7c0c3afb | 9355 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9356 | M: Daniel Drake <[email protected]> |
9357 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9358 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9359 | L: [email protected] |
7c0c3afb DD |
9360 | L: [email protected] (subscribers-only) |
9361 | S: Maintained | |
679655da | 9362 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9363 | |
1da177e4 | 9364 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9365 | L: [email protected] |
f63145e2 | 9366 | L: [email protected] |
1da177e4 | 9367 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9368 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9369 | S: Odd Fixes | |
90d72ac6 | 9370 | F: drivers/media/pci/zoran/ |
1da177e4 | 9371 | |
8b4a4080 | 9372 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9373 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9374 | S: Maintained |
df621252 | 9375 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9376 | |
0cf31ec1 SJ |
9377 | ZSWAP COMPRESSED SWAP CACHING |
9378 | M: Seth Jennings <[email protected]> | |
9379 | L: [email protected] | |
9380 | S: Maintained | |
9381 | F: mm/zswap.c | |
9382 | ||
1da177e4 | 9383 | THE REST |
8b58be88 | 9384 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9385 | L: [email protected] |
8a6e2535 | 9386 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9388 | S: Buried alive in reporters |
34d03cc1 JP |
9389 | F: * |
9390 | F: */ |