]>
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 | ||
968 | ARM/LOGICPD PXA270 MACHINE SUPPORT | |
8b58be88 | 969 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 970 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
971 | S: Maintained |
972 | ||
3b886171 | 973 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 974 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
975 | S: Maintained |
976 | ||
75f41273 TP |
977 | ARM/Marvell Armada 370 and Armada XP SOC support |
978 | M: Jason Cooper <[email protected]> | |
979 | M: Andrew Lunn <[email protected]> | |
980 | M: Gregory Clement <[email protected]> | |
981 | L: [email protected] (moderated for non-subscribers) | |
982 | S: Maintained | |
983 | F: arch/arm/mach-mvebu/ | |
984 | ||
4f1312b0 NP |
985 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
986 | M: Jason Cooper <[email protected]> | |
987 | M: Andrew Lunn <[email protected]> | |
efc03ecb | 988 | L: [email protected] (moderated for non-subscribers) |
4f1312b0 NP |
989 | S: Maintained |
990 | F: arch/arm/mach-dove/ | |
54a246ff NP |
991 | F: arch/arm/mach-kirkwood/ |
992 | F: arch/arm/mach-mv78xx0/ | |
993 | F: arch/arm/mach-orion5x/ | |
994 | F: arch/arm/plat-orion/ | |
3b886171 | 995 | |
d69ac131 AC |
996 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
997 | M: Alexander Clouter <[email protected]> | |
998 | L: [email protected] (moderated for non-subscribers) | |
999 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1000 | S: Maintained | |
1001 | F: arch/arm/mach-orion5x/ts78xx-* | |
1002 | ||
adcb079f AB |
1003 | ARM/MICREL KS8695 ARCHITECTURE |
1004 | M: Greg Ungerer <[email protected]> | |
1005 | L: [email protected] (moderated for non-subscribers) | |
1006 | F: arch/arm/mach-ks8695 | |
1007 | S: Odd Fixes | |
1008 | ||
d78ff0a5 | 1009 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1010 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 1011 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
1012 | F: arch/arm/mach-pxa/mioa701.c |
1013 | S: Maintained | |
1014 | ||
9624dfe6 | 1015 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1016 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
1017 | S: Maintained |
1018 | ||
e0ee9851 | 1019 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1020 | M: Alessandro Rubini <[email protected]> |
e4651a9f | 1021 | M: Linus Walleij <[email protected]> |
28b8e8d4 JP |
1022 | M: STEricsson <[email protected]> |
1023 | L: [email protected] (moderated for non-subscribers) | |
1024 | S: Maintained | |
1025 | F: arch/arm/mach-nomadik/ | |
1026 | F: arch/arm/plat-nomadik/ | |
87572880 | 1027 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1029 | |
9d76295a | 1030 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1031 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
1032 | L: [email protected] (subscribers-only) |
1033 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1034 | S: Supported | |
1035 | ||
0c19d21e DW |
1036 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1037 | M: David Brown <[email protected]> | |
b4c9bfab | 1038 | M: Daniel Walker <[email protected]> |
0c19d21e | 1039 | M: Bryan Huntsman <[email protected]> |
c68af41d | 1040 | L: [email protected] |
0c19d21e DW |
1041 | F: arch/arm/mach-msm/ |
1042 | F: drivers/video/msm/ | |
1043 | F: drivers/mmc/host/msm_sdcc.c | |
1044 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1045 | F: drivers/tty/serial/msm_serial.h |
1046 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1047 | F: drivers/*/pm8???-* |
cd9a8fb5 | 1048 | F: drivers/ssbi/ |
ea91db52 | 1049 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1051 | S: Maintained |
1052 | ||
8459c159 | 1053 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1054 | M: Dmitry Eremin-Solenikov <[email protected]> |
1055 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
1056 | S: Maintained |
1057 | ||
5d783a2d | 1058 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1059 | M: Marek Vasut <[email protected]> |
75280787 | 1060 | L: [email protected] |
b5e4ad57 MV |
1061 | W: http://hackndev.com |
1062 | S: Maintained | |
933d35f0 JP |
1063 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1064 | F: arch/arm/mach-pxa/palmtx.c | |
1065 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1066 | F: arch/arm/mach-pxa/palmt5.c | |
1067 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1068 | F: arch/arm/mach-pxa/palmld.c | |
1069 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1070 | F: arch/arm/mach-pxa/palmte2.c | |
1071 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1072 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1073 | |
b57fe924 | 1074 | ARM/PALM TREO SUPPORT |
8b58be88 | 1075 | M: Tomas Cech <[email protected]> |
75280787 | 1076 | L: [email protected] |
90af5811 TSC |
1077 | W: http://hackndev.com |
1078 | S: Maintained | |
b57fe924 JP |
1079 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1080 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1081 | |
c49e1e63 | 1082 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1083 | M: Sergey Lapin <[email protected]> |
75280787 | 1084 | L: [email protected] |
7d2c86b5 JP |
1085 | W: http://hackndev.com |
1086 | S: Maintained | |
933d35f0 JP |
1087 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1088 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1089 | |
1da177e4 | 1090 | ARM/PLEB SUPPORT |
8b58be88 | 1091 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
1092 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1093 | S: Maintained | |
1094 | ||
1095 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1096 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 1097 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1098 | W: http://www.arm.linux.org.uk/ |
1099 | S: Maintained | |
1100 | ||
2b7a52a4 | 1101 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1102 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1103 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1104 | S: Maintained |
1105 | ||
d4275354 | 1106 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1107 | M: Russell King <[email protected]> |
efc03ecb | 1108 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1109 | W: http://www.arm.linux.org.uk/ |
1110 | S: Maintained | |
d4275354 RK |
1111 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1112 | F: arch/arm/include/asm/hardware/ioc.h | |
1113 | F: arch/arm/include/asm/hardware/iomd.h | |
1114 | F: arch/arm/include/asm/hardware/memc.h | |
1115 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1116 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1117 | F: drivers/net/ethernet/i825xx/ether1* |
1118 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1119 | F: drivers/scsi/arm/ |
1120 | ||
1da177e4 | 1121 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1122 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
1123 | W: http://www.shark-linux.de/shark.html |
1124 | S: Maintained | |
1125 | ||
b21477f9 | 1126 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1127 | M: Ben Dooks <[email protected]> |
482ce512 | 1128 | M: Kukjin Kim <[email protected]> |
efc03ecb | 1129 | L: [email protected] (moderated for non-subscribers) |
7a549d78 | 1130 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
1131 | W: http://www.fluff.org/ben/linux/ |
1132 | S: Maintained | |
482ce512 | 1133 | F: arch/arm/plat-samsung/ |
b21477f9 | 1134 | F: arch/arm/plat-s3c24xx/ |
769bbb63 HS |
1135 | F: arch/arm/mach-s3c24*/ |
1136 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1137 | F: drivers/*/*s3c2410* |
1138 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1139 | F: drivers/spi/spi-s3c* |
1140 | F: sound/soc/samsung/* | |
1da177e4 | 1141 | |
0dcecae2 | 1142 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1143 | M: Kukjin Kim <[email protected]> |
1144 | L: [email protected] (moderated for non-subscribers) | |
1145 | L: [email protected] (moderated for non-subscribers) | |
1146 | S: Maintained | |
1147 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1148 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1149 | N: exynos |
f556cb07 | 1150 | |
10ffa964 KP |
1151 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1152 | M: Kyungmin Park <[email protected]> | |
1153 | L: [email protected] (moderated for non-subscribers) | |
1154 | S: Maintained | |
1155 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1156 | F: arch/arm/mach-s5pv210/mach-goni.c | |
38f1b4c5 JP |
1157 | F: arch/arm/mach-exynos/mach-universal_c210.c |
1158 | F: arch/arm/mach-exynos/mach-nuri.c | |
10ffa964 | 1159 | |
3ce4ccb6 KD |
1160 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1161 | M: Kyungmin Park <[email protected]> | |
1162 | M: Kamil Debski <[email protected]> | |
1163 | L: [email protected] | |
1164 | L: [email protected] | |
1165 | S: Maintained | |
1166 | F: drivers/media/platform/s5p-g2d/ | |
1167 | ||
e6a476fd MS |
1168 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1169 | M: Kyungmin Park <[email protected]> | |
1170 | M: Kamil Debski <[email protected]> | |
6305902c | 1171 | M: Jeongtae Park <[email protected]> |
e6a476fd MS |
1172 | L: [email protected] |
1173 | L: [email protected] | |
1174 | S: Maintained | |
934455d7 | 1175 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1176 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1177 | |
1178 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1179 | M: Kyungmin Park <[email protected]> | |
1180 | M: Tomasz Stanislawski <[email protected]> | |
1181 | L: [email protected] | |
1182 | L: [email protected] | |
1183 | S: Maintained | |
90d72ac6 | 1184 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1185 | |
d48d38e8 | 1186 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1187 | M: Simon Horman <[email protected]> |
d48d38e8 PM |
1188 | M: Magnus Damm <[email protected]> |
1189 | L: [email protected] | |
d48d38e8 | 1190 | W: http://oss.renesas.com |
bbff48f5 | 1191 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1193 | S: Supported |
1194 | F: arch/arm/mach-shmobile/ | |
1195 | F: drivers/sh/ | |
1196 | ||
66314223 DN |
1197 | ARM/SOCFPGA ARCHITECTURE |
1198 | M: Dinh Nguyen <[email protected]> | |
1199 | S: Maintained | |
1200 | F: arch/arm/mach-socfpga/ | |
1201 | ||
1202 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1203 | M: Dinh Nguyen <[email protected]> | |
1204 | S: Maintained | |
1205 | F: drivers/clk/socfpga/ | |
1206 | ||
65ebcc11 SK |
1207 | ARM/STI ARCHITECTURE |
1208 | M: Srinivas Kandagatla <[email protected]> | |
1209 | M: Stuart Menefy <[email protected]> | |
1210 | L: [email protected] (moderated for non-subscribers) | |
1211 | L: [email protected] | |
1212 | W: http://www.stlinux.com | |
1213 | S: Maintained | |
1214 | F: arch/arm/mach-sti/ | |
1215 | ||
2b7a52a4 | 1216 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1217 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1218 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1219 | S: Maintained |
1220 | ||
1bbd7089 | 1221 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1222 | M: "Mark F. Brown" <[email protected]> |
1bbd7089 MB |
1223 | L: [email protected] (moderated for non-subscribers) |
1224 | S: Maintained | |
1225 | ||
2b7a52a4 | 1226 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1227 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1228 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1229 | S: Maintained |
1230 | ||
98ad6e3b | 1231 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1232 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1233 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1234 | W: http://www.mcuos.com |
1235 | S: Maintained | |
4e89e8f6 | 1236 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1237 | F: drivers/input/keyboard/w90p910_keypad.c |
1238 | F: drivers/input/touchscreen/w90p910_ts.c | |
1239 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1240 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1241 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1242 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1243 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1244 | F: drivers/usb/host/ehci-w90x900.c |
1245 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1246 | |
54274d71 | 1247 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1248 | M: Linus Walleij <[email protected]> |
54274d71 LW |
1249 | L: [email protected] (moderated for non-subscribers) |
1250 | S: Supported | |
1251 | F: arch/arm/mach-u300/ | |
1252 | F: drivers/i2c/busses/i2c-stu300.c | |
1253 | F: drivers/rtc/rtc-coh901331.c | |
1254 | F: drivers/watchdog/coh901327_wdt.c | |
1255 | F: drivers/dma/coh901318* | |
87572880 LW |
1256 | F: drivers/mfd/ab3100* |
1257 | F: drivers/rtc/rtc-ab3100.c | |
1258 | F: drivers/rtc/rtc-coh901331.c | |
1259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1260 | |
87572880 | 1261 | ARM/Ux500 ARM ARCHITECTURE |
870725d9 | 1262 | M: Srinidhi Kasagar <[email protected]> |
e4651a9f | 1263 | M: Linus Walleij <[email protected]> |
870725d9 SK |
1264 | L: [email protected] (moderated for non-subscribers) |
1265 | S: Maintained | |
1266 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1267 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1268 | F: drivers/dma/ste_dma40* |
e4651a9f | 1269 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1270 | F: drivers/mfd/abx500* |
1271 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1272 | F: drivers/mfd/dbx500* |
1273 | F: drivers/mfd/db8500* | |
1274 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1275 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1276 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1278 | |
d4275354 | 1279 | ARM/VFP SUPPORT |
8b58be88 | 1280 | M: Russell King <[email protected]> |
efc03ecb | 1281 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1282 | W: http://www.arm.linux.org.uk/ |
1283 | S: Maintained | |
1284 | F: arch/arm/vfp/ | |
1285 | ||
e66b6d8e MV |
1286 | ARM/VOIPAC PXA270 SUPPORT |
1287 | M: Marek Vasut <[email protected]> | |
1288 | L: [email protected] (moderated for non-subscribers) | |
1289 | S: Maintained | |
1290 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1291 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1292 | |
04529fe2 TP |
1293 | ARM/VT8500 ARM ARCHITECTURE |
1294 | M: Tony Prisk <[email protected]> | |
1295 | L: [email protected] (moderated for non-subscribers) | |
1296 | S: Maintained | |
1297 | F: arch/arm/mach-vt8500/ | |
41fd91b4 TP |
1298 | F: drivers/clocksource/vt8500_timer.c |
1299 | F: drivers/gpio/gpio-vt8500.c | |
560746eb | 1300 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1301 | F: drivers/mmc/host/wmt-sdmmc.c |
1302 | F: drivers/pwm/pwm-vt8500.c | |
1303 | F: drivers/rtc/rtc-vt8500.c | |
1304 | F: drivers/tty/serial/vt8500_serial.c | |
1305 | F: drivers/usb/host/ehci-vt8500.c | |
1306 | F: drivers/usb/host/uhci-platform.c | |
04529fe2 TP |
1307 | F: drivers/video/vt8500lcdfb.* |
1308 | F: drivers/video/wm8505fb* | |
1309 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1310 | |
e66b6d8e MV |
1311 | ARM/ZIPIT Z2 SUPPORT |
1312 | M: Marek Vasut <[email protected]> | |
1313 | L: [email protected] (moderated for non-subscribers) | |
1314 | S: Maintained | |
1315 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1316 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1317 | |
51f29d44 MS |
1318 | ARM/ZYNQ ARCHITECTURE |
1319 | M: Michal Simek <[email protected]> | |
1320 | L: [email protected] (moderated for non-subscribers) | |
1321 | W: http://wiki.xilinx.com | |
1322 | T: git git://git.xilinx.com/linux-xlnx.git | |
1323 | S: Supported | |
1324 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1325 | F: drivers/cpuidle/cpuidle-zynq.c |
51f29d44 | 1326 | |
b8f9879e WD |
1327 | ARM SMMU DRIVER |
1328 | M: Will Deacon <[email protected]> | |
1329 | L: [email protected] (moderated for non-subscribers) | |
1330 | S: Maintained | |
1331 | F: drivers/iommu/arm-smmu.c | |
1332 | ||
38074229 CM |
1333 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1334 | M: Catalin Marinas <[email protected]> | |
d19766ec | 1335 | M: Will Deacon <[email protected]> |
38074229 CM |
1336 | L: [email protected] (moderated for non-subscribers) |
1337 | S: Maintained | |
1338 | F: arch/arm64/ | |
d19766ec | 1339 | F: Documentation/arm64/ |
38074229 | 1340 | |
9d7005f9 LP |
1341 | AS3645A LED FLASH CONTROLLER DRIVER |
1342 | M: Laurent Pinchart <[email protected]> | |
1343 | L: [email protected] | |
1344 | T: git git://linuxtv.org/media_tree.git | |
1345 | S: Maintained | |
1346 | F: drivers/media/i2c/as3645a.c | |
1347 | F: include/media/as3645a.h | |
1348 | ||
d58de038 GJ |
1349 | ASC7621 HARDWARE MONITOR DRIVER |
1350 | M: George Joseph <[email protected]> | |
1351 | L: [email protected] | |
1352 | S: Maintained | |
1353 | F: Documentation/hwmon/asc7621 | |
1354 | F: drivers/hwmon/asc7621.c | |
1355 | ||
b229ece9 | 1356 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1357 | M: Corentin Chary <[email protected]> |
1da177e4 | 1358 | L: [email protected] |
d0944853 | 1359 | L: [email protected] |
76593d6f | 1360 | W: http://acpi4asus.sf.net |
85091b71 | 1361 | S: Maintained |
b229ece9 CC |
1362 | F: drivers/platform/x86/asus*.c |
1363 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1364 | |
953a6479 | 1365 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1dd8372d | 1366 | M: Dan Williams <[email protected]> |
b3e5f263 | 1367 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1368 | S: Maintained |
679655da JP |
1369 | F: Documentation/crypto/async-tx-api.txt |
1370 | F: crypto/async_tx/ | |
1371 | F: drivers/dma/ | |
1372 | F: include/linux/dmaengine.h | |
1373 | F: include/linux/async_tx.h | |
b3e5f263 | 1374 | |
a1867d36 | 1375 | AT24 EEPROM DRIVER |
14d77c4d | 1376 | M: Wolfram Sang <[email protected]> |
a1867d36 WS |
1377 | L: [email protected] |
1378 | S: Maintained | |
1379 | F: drivers/misc/eeprom/at24.c | |
1380 | F: include/linux/i2c/at24.h | |
1381 | ||
e7839f25 | 1382 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1383 | M: "Ed L. Cashin" <[email protected]> |
eecdf226 | 1384 | W: http://support.coraid.com/support/linux |
1da177e4 | 1385 | S: Supported |
679655da JP |
1386 | F: Documentation/aoe/ |
1387 | F: drivers/block/aoe/ | |
1da177e4 | 1388 | |
9a10a870 | 1389 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1390 | M: "Luis R. Rodriguez" <[email protected]> |
9a10a870 JP |
1391 | L: [email protected] |
1392 | S: Supported | |
1393 | F: drivers/net/wireless/ath/* | |
1394 | ||
fa1c114f | 1395 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1396 | M: Jiri Slaby <[email protected]> |
1397 | M: Nick Kossifidis <[email protected]> | |
fe8e0844 | 1398 | M: "Luis R. Rodriguez" <[email protected]> |
fa1c114f JS |
1399 | L: [email protected] |
1400 | L: [email protected] | |
72c706b7 | 1401 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1402 | S: Maintained |
fa451753 | 1403 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1404 | |
12e62d6f KV |
1405 | ATHEROS ATH6KL WIRELESS DRIVER |
1406 | M: Kalle Valo <[email protected]> | |
1407 | L: [email protected] | |
1408 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1409 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1410 | S: Supported |
1411 | F: drivers/net/wireless/ath/ath6kl/ | |
1412 | ||
f078f209 | 1413 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1414 | M: "Luis R. Rodriguez" <[email protected]> |
1415 | M: Jouni Malinen <[email protected]> | |
1416 | M: Vasanthakumar Thiagarajan <[email protected]> | |
1417 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1418 | L: [email protected] |
1419 | L: [email protected] | |
72c706b7 | 1420 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1421 | S: Supported |
fa451753 | 1422 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1423 | |
2be7d22f VK |
1424 | WILOCITY WIL6210 WIRELESS DRIVER |
1425 | M: Vladimir Kondratiev <[email protected]> | |
1426 | L: [email protected] | |
1427 | L: [email protected] | |
1428 | S: Supported | |
1429 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1430 | F: drivers/net/wireless/ath/wil6210/ | |
1431 | ||
1d7e1e6b CL |
1432 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1433 | M: Christian Lamparter <[email protected]> | |
1434 | L: [email protected] | |
1435 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1436 | S: Maintained | |
1437 | F: drivers/net/wireless/ath/carl9170/ | |
1438 | ||
2c2a6172 LT |
1439 | ATK0110 HWMON DRIVER |
1440 | M: Luca Tettamanti <[email protected]> | |
1441 | L: [email protected] | |
1442 | S: Maintained | |
1443 | F: drivers/hwmon/asus_atk0110.c | |
1444 | ||
6f69a6d7 | 1445 | ATI_REMOTE2 DRIVER |
8b58be88 | 1446 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1447 | S: Maintained |
679655da | 1448 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1449 | |
7ae115b4 | 1450 | ATLX ETHERNET DRIVERS |
8b58be88 | 1451 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1452 | M: Chris Snook <[email protected]> |
e443e383 | 1453 | L: [email protected] |
8d5ca6ec JC |
1454 | W: http://sourceforge.net/projects/atl1 |
1455 | W: http://atl1.sourceforge.net | |
1456 | S: Maintained | |
2b133ad6 | 1457 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1458 | |
1da177e4 | 1459 | ATM |
8b58be88 | 1460 | M: Chas Williams <[email protected]> |
476604de | 1461 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1462 | L: [email protected] |
1da177e4 LT |
1463 | W: http://linux-atm.sourceforge.net |
1464 | S: Maintained | |
679655da JP |
1465 | F: drivers/atm/ |
1466 | F: include/linux/atm* | |
c117ab84 | 1467 | F: include/uapi/linux/atm* |
1da177e4 | 1468 | |
04ac2f46 | 1469 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1470 | M: Ludovic Desroches <[email protected]> |
04ac2f46 NF |
1471 | S: Maintained |
1472 | F: drivers/mmc/host/atmel-mci.c | |
1473 | F: drivers/mmc/host/atmel-mci-regs.h | |
1474 | ||
a1cfac48 | 1475 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1476 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1477 | S: Supported |
df621252 | 1478 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1479 | |
b414dc16 NF |
1480 | ATMEL DMA DRIVER |
1481 | M: Nicolas Ferre <[email protected]> | |
1482 | L: [email protected] (moderated for non-subscribers) | |
1483 | S: Supported | |
1484 | F: drivers/dma/at_hdmac.c | |
1485 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1486 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1487 | |
888f2804 LD |
1488 | ATMEL I2C DRIVER |
1489 | M: Ludovic Desroches <[email protected]> | |
1490 | L: [email protected] | |
1491 | S: Supported | |
1492 | F: drivers/i2c/busses/i2c-at91.c | |
1493 | ||
15515545 JW |
1494 | ATMEL ISI DRIVER |
1495 | M: Josh Wu <[email protected]> | |
1496 | L: [email protected] | |
1497 | S: Supported | |
f2294c2d | 1498 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1499 | F: include/media/atmel-isi.h |
1500 | ||
8f4c79ce | 1501 | ATMEL LCDFB DRIVER |
8b58be88 | 1502 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1503 | L: [email protected] |
8f4c79ce | 1504 | S: Maintained |
679655da JP |
1505 | F: drivers/video/atmel_lcdfb.c |
1506 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1507 | |
89e5785f | 1508 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1509 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1510 | S: Supported |
9f2f381f | 1511 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1512 | |
754ce4f2 | 1513 | ATMEL SPI DRIVER |
a02875a6 | 1514 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1515 | S: Supported |
9df92e6c | 1516 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1517 | |
e9cb1c5a NF |
1518 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1519 | M: Nicolas Ferre <[email protected]> | |
1520 | L: [email protected] (moderated for non-subscribers) | |
1521 | S: Supported | |
1522 | F: drivers/misc/atmel_tclib.c | |
1523 | F: drivers/clocksource/tcb_clksrc.c | |
1524 | ||
ff2675d6 JW |
1525 | ATMEL TSADCC DRIVER |
1526 | M: Josh Wu <[email protected]> | |
1527 | L: [email protected] | |
1528 | S: Supported | |
1529 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1530 | ||
914a3f3b | 1531 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1532 | M: Nicolas Ferre <[email protected]> |
1533 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b | 1534 | S: Supported |
679655da | 1535 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1536 | |
1da177e4 | 1537 | ATMEL WIRELESS DRIVER |
8b58be88 | 1538 | M: Simon Kelley <[email protected]> |
724c6b35 | 1539 | L: [email protected] |
1da177e4 LT |
1540 | W: http://www.thekelleys.org.uk/atmel |
1541 | W: http://atmelwlandriver.sourceforge.net/ | |
1542 | S: Maintained | |
679655da | 1543 | F: drivers/net/wireless/atmel* |
1da177e4 | 1544 | |
a92b7b80 | 1545 | AUDIT SUBSYSTEM |
8b58be88 JP |
1546 | M: Al Viro <[email protected]> |
1547 | M: Eric Paris <[email protected]> | |
b9a06207 | 1548 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1549 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1551 | S: Maintained |
679655da | 1552 | F: include/linux/audit.h |
c117ab84 | 1553 | F: include/uapi/linux/audit.h |
679655da | 1554 | F: kernel/audit* |
a92b7b80 | 1555 | |
70e84049 | 1556 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1557 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1558 | W: http://miguelojeda.es/auxdisplay.htm |
1559 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1560 | S: Maintained |
679655da JP |
1561 | F: drivers/auxdisplay/ |
1562 | F: include/linux/cfag12864b.h | |
70e84049 | 1563 | |
5f97f7f9 | 1564 | AVR32 ARCHITECTURE |
e336f61f HCE |
1565 | M: Haavard Skinnemoen <[email protected]> |
1566 | M: Hans-Christian Egtvedt <[email protected]> | |
5f97f7f9 | 1567 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1568 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1569 | W: http://avrfreaks.net/ |
e336f61f | 1570 | S: Maintained |
679655da | 1571 | F: arch/avr32/ |
5f97f7f9 HS |
1572 | |
1573 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1574 | M: Haavard Skinnemoen <[email protected]> |
1575 | M: Hans-Christian Egtvedt <[email protected]> | |
1576 | S: Maintained | |
679655da | 1577 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1578 | |
1da177e4 | 1579 | AX.25 NETWORK LAYER |
8b58be88 | 1580 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1581 | L: [email protected] |
d34cb28a | 1582 | W: http://www.linux-ax25.org/ |
1da177e4 | 1583 | S: Maintained |
c117ab84 | 1584 | F: include/uapi/linux/ax25.h |
679655da JP |
1585 | F: include/net/ax25.h |
1586 | F: net/ax25/ | |
1da177e4 | 1587 | |
d5269395 | 1588 | AZ6007 DVB DRIVER |
1b2c14b4 | 1589 | M: Mauro Carvalho Chehab <[email protected]> |
d5269395 MCC |
1590 | L: [email protected] |
1591 | W: http://linuxtv.org | |
1592 | T: git git://linuxtv.org/media_tree.git | |
1593 | S: Maintained | |
1594 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1595 | ||
6777376e HV |
1596 | AZTECH FM RADIO RECEIVER DRIVER |
1597 | M: Hans Verkuil <[email protected]> | |
1598 | L: [email protected] | |
1599 | T: git git://linuxtv.org/media_tree.git | |
1600 | W: http://linuxtv.org | |
1601 | S: Maintained | |
1602 | F: drivers/media/radio/radio-aztech* | |
1603 | ||
e2d1d6c0 | 1604 | B43 WIRELESS DRIVER |
8b58be88 | 1605 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 | 1606 | L: [email protected] |
ed072f9e | 1607 | L: [email protected] |
491b26b4 | 1608 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1609 | S: Maintained |
679655da | 1610 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1611 | |
1612 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1613 | M: Larry Finger <[email protected]> |
1614 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 | 1615 | L: [email protected] |
ed072f9e | 1616 | L: [email protected] |
491b26b4 | 1617 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1618 | S: Maintained |
679655da | 1619 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1620 | |
300abeb5 | 1621 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1622 | M: Richard Purdie <[email protected]> |
6212de88 | 1623 | M: Jingoo Han <[email protected]> |
300abeb5 | 1624 | S: Maintained |
679655da JP |
1625 | F: drivers/video/backlight/ |
1626 | F: include/linux/backlight.h | |
300abeb5 | 1627 | |
c6c8fea2 SE |
1628 | BATMAN ADVANCED |
1629 | M: Marek Lindner <[email protected]> | |
1630 | M: Simon Wunderlich <[email protected]> | |
cf9ab887 | 1631 | M: Antonio Quartulli <[email protected]> |
c6c8fea2 SE |
1632 | L: [email protected] |
1633 | W: http://www.open-mesh.org/ | |
1634 | S: Maintained | |
1635 | F: net/batman-adv/ | |
1636 | ||
e2d1d6c0 | 1637 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1638 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1639 | L: [email protected] |
1640 | W: http://www.baycom.org/~tom/ham/ham.html | |
1641 | S: Maintained | |
679655da | 1642 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1643 | |
cafe5635 | 1644 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1645 | M: Kent Overstreet <[email protected]> |
cafe5635 KO |
1646 | L: [email protected] |
1647 | W: http://bcache.evilpiepirate.org | |
1648 | S: Maintained: | |
1649 | F: drivers/md/bcache/ | |
1650 | ||
e2d1d6c0 | 1651 | BEFS FILE SYSTEM |
55817d3d | 1652 | S: Orphan |
679655da JP |
1653 | F: Documentation/filesystems/befs.txt |
1654 | F: fs/befs/ | |
e2d1d6c0 RD |
1655 | |
1656 | BFS FILE SYSTEM | |
8b58be88 | 1657 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1658 | S: Maintained |
679655da JP |
1659 | F: Documentation/filesystems/bfs.txt |
1660 | F: fs/bfs/ | |
c117ab84 | 1661 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1662 | |
1394f032 | 1663 | BLACKFIN ARCHITECTURE |
8b58be88 | 1664 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1665 | L: [email protected] |
e3b2d3f3 BW |
1666 | W: http://blackfin.uclinux.org |
1667 | S: Supported | |
679655da | 1668 | F: arch/blackfin/ |
566da5b2 | 1669 | |
e190d6b1 | 1670 | BLACKFIN EMAC DRIVER |
49afa609 | 1671 | L: [email protected] |
e190d6b1 BW |
1672 | W: http://blackfin.uclinux.org |
1673 | S: Supported | |
7b35f033 | 1674 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1675 | |
566da5b2 | 1676 | BLACKFIN RTC DRIVER |
8b58be88 | 1677 | M: Mike Frysinger <[email protected]> |
49afa609 | 1678 | L: [email protected] |
566da5b2 MF |
1679 | W: http://blackfin.uclinux.org |
1680 | S: Supported | |
679655da | 1681 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1682 | |
936ed49a | 1683 | BLACKFIN SDH DRIVER |
109ec8c3 | 1684 | M: Sonic Zhang <[email protected]> |
936ed49a MF |
1685 | L: [email protected] |
1686 | W: http://blackfin.uclinux.org | |
1687 | S: Supported | |
1688 | F: drivers/mmc/host/bfin_sdh.c | |
1689 | ||
1394f032 | 1690 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1691 | M: Sonic Zhang <[email protected]> |
49afa609 | 1692 | L: [email protected] |
e3b2d3f3 BW |
1693 | W: http://blackfin.uclinux.org |
1694 | S: Supported | |
8460241e | 1695 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1696 | |
1e6d320f | 1697 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1698 | M: Mike Frysinger <[email protected]> |
49afa609 | 1699 | L: [email protected] |
1e6d320f BW |
1700 | W: http://blackfin.uclinux.org |
1701 | S: Supported | |
679655da | 1702 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1703 | |
d24ecfcc | 1704 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1705 | M: Sonic Zhang <[email protected]> |
49afa609 | 1706 | L: [email protected] |
d24ecfcc BW |
1707 | W: http://blackfin.uclinux.org/ |
1708 | S: Supported | |
679655da | 1709 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1710 | |
1e204377 SJ |
1711 | BLACKFIN MEDIA DRIVER |
1712 | M: Scott Jiang <[email protected]> | |
1713 | L: [email protected] | |
1714 | W: http://blackfin.uclinux.org/ | |
1715 | S: Supported | |
1716 | F: drivers/media/platform/blackfin/ | |
1717 | F: drivers/media/i2c/adv7183* | |
1718 | F: drivers/media/i2c/vs6624* | |
1719 | ||
b54cf35a JSM |
1720 | BLINKM RGB LED DRIVER |
1721 | M: Jan-Simon Moeller <[email protected]> | |
1722 | S: Maintained | |
1723 | F: drivers/leds/leds-blinkm.c | |
1724 | ||
1da177e4 | 1725 | BLOCK LAYER |
8b58be88 | 1726 | M: Jens Axboe <[email protected]> |
08deed1e | 1727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1728 | S: Maintained |
679655da | 1729 | F: block/ |
1da177e4 | 1730 | |
2b54aaef | 1731 | BLOCK2MTD DRIVER |
8b58be88 | 1732 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1733 | L: [email protected] |
1734 | S: Maintained | |
679655da | 1735 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1736 | |
63fbd24e | 1737 | BLUETOOTH DRIVERS |
8b58be88 | 1738 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1739 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1740 | M: Johan Hedberg <[email protected]> |
781c2844 | 1741 | L: [email protected] |
63fbd24e | 1742 | W: http://www.bluez.org/ |
22e7a424 MH |
1743 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1745 | S: Maintained |
679655da | 1746 | F: drivers/bluetooth/ |
1da177e4 | 1747 | |
63fbd24e | 1748 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1749 | M: Marcel Holtmann <[email protected]> |
960d4d1b | 1750 | M: Gustavo Padovan <[email protected]> |
eb491eca | 1751 | M: Johan Hedberg <[email protected]> |
63fbd24e MH |
1752 | L: [email protected] |
1753 | W: http://www.bluez.org/ | |
22e7a424 MH |
1754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1756 | S: Maintained |
679655da JP |
1757 | F: net/bluetooth/ |
1758 | F: include/net/bluetooth/ | |
1da177e4 LT |
1759 | |
1760 | BONDING DRIVER | |
8b58be88 | 1761 | M: Jay Vosburgh <[email protected]> |
4cd72c6e | 1762 | M: Andy Gospodarek <[email protected]> |
a6c36ee6 | 1763 | L: [email protected] |
ce00f85c JC |
1764 | W: http://sourceforge.net/projects/bonding/ |
1765 | S: Supported | |
679655da | 1766 | F: drivers/net/bonding/ |
c117ab84 | 1767 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1768 | |
39105890 | 1769 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1770 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1771 | L: [email protected] |
1772 | S: Supported | |
adfc5217 | 1773 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1774 | |
948c51e6 | 1775 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1776 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1777 | L: [email protected] |
1778 | S: Supported | |
adfc5217 JK |
1779 | F: drivers/net/ethernet/broadcom/bnx2.* |
1780 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1781 | |
4d9d2cb0 | 1782 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1783 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1784 | L: [email protected] |
1785 | S: Supported | |
adfc5217 | 1786 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1787 | |
f680f25c SW |
1788 | BROADCOM BCM2835 ARM ARCHICTURE |
1789 | M: Stephen Warren <[email protected]> | |
1790 | L: [email protected] (moderated for non-subscribers) | |
1791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1792 | S: Maintained | |
1793 | F: arch/arm/mach-bcm2835/ | |
1794 | F: arch/arm/boot/dts/bcm2835* | |
1795 | F: arch/arm/configs/bcm2835_defconfig | |
1796 | F: drivers/*/*bcm2835* | |
1797 | ||
948c51e6 | 1798 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1799 | M: Nithin Nayak Sujir <[email protected]> |
8b58be88 | 1800 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1801 | L: [email protected] |
1802 | S: Supported | |
adfc5217 | 1803 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1804 | |
a9533e7e HP |
1805 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1806 | M: Brett Rudley <[email protected]> | |
818c07b8 | 1807 | M: Arend van Spriel <[email protected]> |
85d63686 | 1808 | M: Franky (Zhenhui) Lin <[email protected]> |
006a8f14 | 1809 | M: Hante Meuleman <[email protected]> |
a9533e7e | 1810 | L: [email protected] |
5615171c | 1811 | L: [email protected] |
a9533e7e | 1812 | S: Supported |
f62ebdd5 | 1813 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1814 | |
9958d6f9 BPG |
1815 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1816 | M: Bhanu Prakash Gollapudi <[email protected]> | |
1817 | L: [email protected] | |
1818 | S: Supported | |
1819 | F: drivers/scsi/bnx2fc/ | |
1820 | ||
c9678d86 RM |
1821 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1822 | M: Rafał Miłecki <[email protected]> | |
1823 | L: [email protected] | |
1824 | S: Maintained | |
1825 | F: drivers/bcma/ | |
1826 | F: include/linux/bcma/ | |
1827 | ||
7725ccfd | 1828 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1829 | M: Anil Gurumurthy <[email protected]> |
1830 | M: Vijaya Mohan Guvva <[email protected]> | |
455518e7 JP |
1831 | L: [email protected] |
1832 | S: Supported | |
1833 | F: drivers/scsi/bfa/ | |
7725ccfd | 1834 | |
8b230ed8 RM |
1835 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1836 | M: Rasesh Mody <[email protected]> | |
8b230ed8 RM |
1837 | L: [email protected] |
1838 | S: Supported | |
f844a0ea | 1839 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1840 | |
5cdf7f76 | 1841 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1842 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1843 | L: [email protected] |
1844 | S: Supported | |
679655da JP |
1845 | F: block/bsg.c |
1846 | F: include/linux/bsg.h | |
c117ab84 | 1847 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1848 | |
af39917d CL |
1849 | BT87X AUDIO DRIVER |
1850 | M: Clemens Ladisch <[email protected]> | |
1851 | L: [email protected] (moderated for non-subscribers) | |
1852 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1853 | S: Maintained | |
1854 | F: Documentation/sound/alsa/Bt87x.txt | |
1855 | F: sound/pci/bt87x.c | |
1856 | ||
ff1d5c2f | 1857 | BT8XXGPIO DRIVER |
eb032b98 | 1858 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1859 | W: http://bu3sch.de/btgpio.php |
1860 | S: Maintained | |
72dbb705 | 1861 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1862 | |
eb1eb04f | 1863 | BTRFS FILE SYSTEM |
9c106405 | 1864 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1865 | L: [email protected] |
1866 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1867 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1869 | S: Maintained |
679655da JP |
1870 | F: Documentation/filesystems/btrfs.txt |
1871 | F: fs/btrfs/ | |
eb1eb04f | 1872 | |
1da177e4 | 1873 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1874 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1875 | L: [email protected] |
96b6aba0 | 1876 | W: http://linuxtv.org |
275ffde4 | 1877 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1878 | S: Odd fixes |
679655da | 1879 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1880 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1881 | |
1f34923c KA |
1882 | BUSLOGIC SCSI DRIVER |
1883 | M: Khalid Aziz <[email protected]> | |
1884 | L: [email protected] | |
1885 | S: Maintained | |
1886 | F: drivers/scsi/BusLogic.* | |
1887 | F: drivers/scsi/FlashPoint.* | |
1888 | ||
af39917d CL |
1889 | C-MEDIA CMI8788 DRIVER |
1890 | M: Clemens Ladisch <[email protected]> | |
1891 | L: [email protected] (moderated for non-subscribers) | |
1892 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1893 | S: Maintained | |
1894 | F: sound/pci/oxygen/ | |
1895 | ||
2141355f MS |
1896 | C6X ARCHITECTURE |
1897 | M: Mark Salter <[email protected]> | |
1898 | M: Aurelien Jacquiot <[email protected]> | |
1899 | L: [email protected] | |
1900 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1901 | S: Maintained | |
1902 | F: arch/c6x/ | |
1903 | ||
a5432f5a | 1904 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1905 | M: David Howells <[email protected]> |
a5432f5a DH |
1906 | L: [email protected] |
1907 | S: Supported | |
1908 | F: Documentation/filesystems/caching/cachefiles.txt | |
1909 | F: fs/cachefiles/ | |
1910 | ||
c815ca39 HV |
1911 | CADET FM/AM RADIO RECEIVER DRIVER |
1912 | M: Hans Verkuil <[email protected]> | |
1913 | L: [email protected] | |
1914 | T: git git://linuxtv.org/media_tree.git | |
1915 | W: http://linuxtv.org | |
1916 | S: Maintained | |
1917 | F: drivers/media/radio/radio-cadet* | |
1918 | ||
77d5140f | 1919 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1920 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1921 | L: [email protected] |
275ffde4 | 1922 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1923 | S: Maintained |
679655da | 1924 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1925 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1926 | |
201b6bab | 1927 | CAIF NETWORK LAYER |
5c574f50 | 1928 | M: Dmitry Tarnyagin <[email protected]> |
201b6bab JP |
1929 | L: [email protected] |
1930 | S: Supported | |
1931 | F: Documentation/networking/caif/ | |
1932 | F: drivers/net/caif/ | |
c117ab84 | 1933 | F: include/uapi/linux/caif/ |
201b6bab JP |
1934 | F: include/net/caif/ |
1935 | F: net/caif/ | |
1936 | ||
77dac90f | 1937 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1938 | M: Muli Ben-Yehuda <[email protected]> |
1939 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1940 | L: [email protected] |
1941 | S: Maintained | |
679655da JP |
1942 | F: arch/x86/kernel/pci-calgary_64.c |
1943 | F: arch/x86/kernel/tce_64.c | |
1944 | F: arch/x86/include/asm/calgary.h | |
1945 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1946 | |
e2d1d6c0 | 1947 | CAN NETWORK LAYER |
8d15d386 | 1948 | M: Oliver Hartkopp <[email protected]> |
1caa60b6 | 1949 | L: [email protected] |
ec78213a | 1950 | W: http://gitorious.org/linux-can |
405cc273 | 1951 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1952 | S: Maintained |
8d15d386 | 1953 | F: net/can/ |
8d15d386 | 1954 | F: include/linux/can/core.h |
c117ab84 CEB |
1955 | F: include/uapi/linux/can.h |
1956 | F: include/uapi/linux/can/bcm.h | |
1957 | F: include/uapi/linux/can/raw.h | |
1958 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 1959 | |
4261a204 | 1960 | CAN NETWORK DRIVERS |
8b58be88 | 1961 | M: Wolfgang Grandegger <[email protected]> |
ec78213a | 1962 | M: Marc Kleine-Budde <[email protected]> |
1caa60b6 | 1963 | L: [email protected] |
ec78213a | 1964 | W: http://gitorious.org/linux-can |
405cc273 | 1965 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 1966 | S: Maintained |
8d15d386 OH |
1967 | F: drivers/net/can/ |
1968 | F: include/linux/can/dev.h | |
8d15d386 | 1969 | F: include/linux/can/platform/ |
c117ab84 CEB |
1970 | F: include/uapi/linux/can/error.h |
1971 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 1972 | |
95d16c72 JM |
1973 | CAPABILITIES |
1974 | M: Serge Hallyn <[email protected]> | |
1975 | L: [email protected] | |
6305902c | 1976 | S: Supported |
95d16c72 | 1977 | F: include/linux/capability.h |
c117ab84 | 1978 | F: include/uapi/linux/capability.h |
95d16c72 | 1979 | F: security/capability.c |
6305902c | 1980 | F: security/commoncap.c |
38a94118 | 1981 | F: kernel/capability.c |
95d16c72 | 1982 | |
b8154542 | 1983 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1984 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
1985 | L: [email protected] |
1986 | L: [email protected] | |
b8154542 AB |
1987 | W: http://www.ibm.com/developerworks/power/cell/ |
1988 | S: Supported | |
679655da | 1989 | F: arch/powerpc/include/asm/cell*.h |
679655da | 1990 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 1991 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
1992 | F: arch/powerpc/oprofile/*cell* |
1993 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1994 | |
9030aaf9 | 1995 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 1996 | M: Sage Weil <[email protected]> |
82593f87 | 1997 | L: [email protected] |
09d90327 | 1998 | W: http://ceph.com/ |
fb99f881 | 1999 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2000 | S: Supported |
2001 | F: Documentation/filesystems/ceph.txt | |
2002 | F: fs/ceph | |
3d14c5d2 YS |
2003 | F: net/ceph |
2004 | F: include/linux/ceph | |
09d90327 | 2005 | F: include/linux/crush |
9030aaf9 | 2006 | |
18332a80 | 2007 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2008 | L: [email protected] |
10c6c9c9 | 2009 | S: Orphan |
679655da JP |
2010 | F: Documentation/usb/WUSB-Design-overview.txt |
2011 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2012 | F: drivers/usb/host/hwa-hc.c |
2013 | F: drivers/usb/host/whci/ | |
679655da JP |
2014 | F: drivers/usb/wusbcore/ |
2015 | F: include/linux/usb/wusb* | |
18332a80 | 2016 | |
70e84049 | 2017 | CFAG12864B LCD DRIVER |
8b58be88 | 2018 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2019 | W: http://miguelojeda.es/auxdisplay.htm |
2020 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2021 | S: Maintained |
679655da JP |
2022 | F: drivers/auxdisplay/cfag12864b.c |
2023 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2024 | |
2025 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2026 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
2027 | W: http://miguelojeda.es/auxdisplay.htm |
2028 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2029 | S: Maintained |
679655da JP |
2030 | F: drivers/auxdisplay/cfag12864bfb.c |
2031 | F: include/linux/cfag12864b.h | |
70e84049 | 2032 | |
704232c2 | 2033 | CFG80211 and NL80211 |
8b58be88 | 2034 | M: Johannes Berg <[email protected]> |
704232c2 | 2035 | L: [email protected] |
ce466579 JB |
2036 | W: http://wireless.kernel.org/ |
2037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2039 | S: Maintained |
c117ab84 | 2040 | F: include/uapi/linux/nl80211.h |
679655da JP |
2041 | F: include/net/cfg80211.h |
2042 | F: net/wireless/* | |
2043 | X: net/wireless/wext* | |
704232c2 | 2044 | |
46e64261 GKH |
2045 | CHAR and MISC DRIVERS |
2046 | M: Arnd Bergmann <[email protected]> | |
879a5a00 | 2047 | M: Greg Kroah-Hartman <[email protected]> |
46e64261 | 2048 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2049 | S: Supported |
46e64261 GKH |
2050 | F: drivers/char/* |
2051 | F: drivers/misc/* | |
2052 | ||
0a920b5b | 2053 | CHECKPATCH |
8b58be88 | 2054 | M: Andy Whitcroft <[email protected]> |
10d83f07 JP |
2055 | M: Joe Perches <[email protected]> |
2056 | S: Maintained | |
679655da | 2057 | F: scripts/checkpatch.pl |
0a920b5b | 2058 | |
f8407f26 HW |
2059 | CHINESE DOCUMENTATION |
2060 | M: Harry Wei <[email protected]> | |
9740153c | 2061 | L: [email protected] (subscribers-only) |
f8407f26 HW |
2062 | L: [email protected] (moderated for non-subscribers) |
2063 | S: Maintained | |
2064 | F: Documentation/zh_CN/ | |
2065 | ||
2721ea2c AS |
2066 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2067 | M: Alexander Shishkin <[email protected]> | |
2068 | L: [email protected] | |
2069 | S: Maintained | |
2070 | F: drivers/usb/chipidea/ | |
2071 | ||
641cb85e | 2072 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2073 | M: Christian Benvenuti <[email protected]> |
641cb85e | 2074 | M: Roopa Prabhu <[email protected]> |
5c6652f5 NP |
2075 | M: Neel Patel <[email protected]> |
2076 | M: Nishank Trivedi <[email protected]> | |
7063fbf2 | 2077 | S: Supported |
a6a5580c | 2078 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2079 | |
2b7a52a4 | 2080 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2081 | M: Hartley Sweeten <[email protected]> |
2b7a52a4 LB |
2082 | L: [email protected] |
2083 | S: Maintained | |
57d0b7a0 | 2084 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2085 | |
2b7a52a4 | 2086 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2087 | M: Lennert Buytenhek <[email protected]> |
6372594a | 2088 | L: [email protected] |
2b7a52a4 | 2089 | S: Maintained |
679655da | 2090 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2091 | |
d9e9d82c | 2092 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2093 | M: Timur Tabi <[email protected]> |
93711660 | 2094 | L: [email protected] (moderated for non-subscribers) |
c4ef9bc4 | 2095 | S: Odd Fixes |
679655da | 2096 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2097 | |
94574d9a KRW |
2098 | CLEANCACHE API |
2099 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2100 | L: [email protected] | |
2101 | S: Maintained | |
2102 | F: mm/cleancache.c | |
2103 | F: include/linux/cleancache.h | |
2104 | ||
d4275354 | 2105 | CLK API |
8b58be88 | 2106 | M: Russell King <[email protected]> |
37417046 | 2107 | S: Maintained |
d4275354 RK |
2108 | F: include/linux/clk.h |
2109 | ||
5df6d737 | 2110 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2111 | M: Hiral Patel <[email protected]> |
2112 | M: Suma Ramars <[email protected]> | |
d7e01dc6 | 2113 | M: Brian Uchino <[email protected]> |
5df6d737 AJ |
2114 | L: [email protected] |
2115 | S: Supported | |
2a99921a | 2116 | F: drivers/scsi/fnic/ |
5df6d737 | 2117 | |
529aa8cb TLSC |
2118 | CMPC ACPI DRIVER |
2119 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
2120 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 2121 | L: [email protected] |
529aa8cb TLSC |
2122 | S: Supported |
2123 | F: drivers/platform/x86/classmate-laptop.c | |
2124 | ||
74425eee | 2125 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2126 | M: Julia Lawall <[email protected]> |
74425eee | 2127 | M: Gilles Muller <[email protected]> |
26de9c26 | 2128 | M: Nicolas Palix <[email protected]> |
c00b5110 | 2129 | M: Michal Marek <[email protected]> |
26de9c26 | 2130 | L: [email protected] (moderated for non-subscribers) |
c00b5110 | 2131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2132 | W: http://coccinelle.lip6.fr/ |
2133 | S: Supported | |
4b92b2aa | 2134 | F: Documentation/coccinelle.txt |
74425eee NP |
2135 | F: scripts/coccinelle/ |
2136 | F: scripts/coccicheck | |
2137 | ||
1da177e4 | 2138 | CODA FILE SYSTEM |
8b58be88 | 2139 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
2140 | M: [email protected] |
2141 | L: [email protected] | |
2142 | W: http://www.coda.cs.cmu.edu/ | |
2143 | S: Maintained | |
679655da JP |
2144 | F: Documentation/filesystems/coda.txt |
2145 | F: fs/coda/ | |
2146 | F: include/linux/coda*.h | |
c117ab84 | 2147 | F: include/uapi/linux/coda*.h |
1da177e4 | 2148 | |
7704addb | 2149 | COMMON CLK FRAMEWORK |
7704addb MT |
2150 | M: Mike Turquette <[email protected]> |
2151 | L: [email protected] (same as CLK API & CLKDEV) | |
2152 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2153 | S: Maintained | |
60bea3b5 SW |
2154 | F: drivers/clk/ |
2155 | X: drivers/clk/clkdev.c | |
7704addb | 2156 | F: include/linux/clk-pr* |
60bea3b5 | 2157 | F: include/linux/clk/ |
7704addb | 2158 | |
e2d1d6c0 | 2159 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2160 | M: Steve French <[email protected]> |
51223df6 | 2161 | L: [email protected] |
d1f28953 | 2162 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 2163 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2164 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2166 | S: Supported |
679655da JP |
2167 | F: Documentation/filesystems/cifs.txt |
2168 | F: fs/cifs/ | |
e2d1d6c0 | 2169 | |
1da177e4 | 2170 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2171 | M: Scott Murray <[email protected]> |
64dab204 | 2172 | L: [email protected] |
82c4dfc7 | 2173 | S: Maintained |
679655da | 2174 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2175 | |
2176 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2177 | M: Scott Murray <[email protected]> |
64dab204 | 2178 | L: [email protected] |
82c4dfc7 | 2179 | S: Maintained |
679655da | 2180 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2181 | |
2182 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2183 | M: Scott Murray <[email protected]> |
64dab204 | 2184 | L: [email protected] |
82c4dfc7 | 2185 | S: Maintained |
679655da | 2186 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2187 | |
5411552c | 2188 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2189 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 2190 | L: [email protected] |
5411552c | 2191 | S: Maintained |
679655da | 2192 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2193 | |
949be0f7 | 2194 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2195 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
2196 | L: [email protected] |
2197 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2198 | S: Maintained |
679655da | 2199 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2200 | |
e2d1d6c0 | 2201 | CONFIGFS |
d6351db2 JB |
2202 | M: Joel Becker <[email protected]> |
2203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2204 | S: Supported |
679655da JP |
2205 | F: fs/configfs/ |
2206 | F: include/linux/configfs.h | |
e2d1d6c0 | 2207 | |
acb9c1b2 | 2208 | CONNECTOR |
8b58be88 | 2209 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
2210 | L: [email protected] |
2211 | S: Maintained | |
2212 | F: drivers/connector/ | |
2213 | ||
fb3a0fb6 | 2214 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2215 | M: Tejun Heo <[email protected]> |
ad50c159 | 2216 | M: Li Zefan <[email protected]> |
fb3a0fb6 | 2217 | L: [email protected] |
12340313 | 2218 | L: [email protected] |
860ca0e6 | 2219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2220 | S: Maintained |
679655da JP |
2221 | F: include/linux/cgroup* |
2222 | F: kernel/cgroup* | |
8ca739e3 | 2223 | F: mm/*cgroup* |
fb3a0fb6 | 2224 | |
bebe4678 | 2225 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2226 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
2227 | L: [email protected] |
2228 | S: Maintained | |
679655da JP |
2229 | F: Documentation/hwmon/coretemp |
2230 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2231 | |
1da177e4 | 2232 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2233 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
2234 | W: http://www.fi.muni.cz/~kas/cosa/ |
2235 | S: Maintained | |
679655da | 2236 | F: drivers/net/wan/cosa* |
1da177e4 | 2237 | |
4371ee35 | 2238 | CPMAC ETHERNET DRIVER |
8b58be88 | 2239 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
2240 | L: [email protected] |
2241 | S: Maintained | |
b544dbac | 2242 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2243 | |
1da177e4 | 2244 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2245 | M: Rafael J. Wysocki <[email protected]> |
45c009a9 | 2246 | M: Viresh Kumar <[email protected]> |
bc5f65d4 | 2247 | L: [email protected] |
a6c072c7 | 2248 | L: [email protected] |
1da177e4 | 2249 | S: Maintained |
27209d91 VK |
2250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2251 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2252 | F: drivers/cpufreq/ |
2253 | F: include/linux/cpufreq.h | |
1da177e4 | 2254 | |
8a67f0ef VK |
2255 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2256 | M: Viresh Kumar <[email protected]> | |
2257 | M: Sudeep KarkadaNagesha <[email protected]> | |
2258 | L: [email protected] | |
2259 | L: [email protected] | |
2260 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2261 | S: Maintained | |
2262 | F: drivers/cpufreq/arm_big_little.h | |
2263 | F: drivers/cpufreq/arm_big_little.c | |
2264 | F: drivers/cpufreq/arm_big_little_dt.c | |
2265 | ||
a8e39c35 DL |
2266 | CPUIDLE DRIVERS |
2267 | M: Rafael J. Wysocki <[email protected]> | |
2268 | M: Daniel Lezcano <[email protected]> | |
2269 | L: [email protected] | |
2270 | S: Maintained | |
2271 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2272 | F: drivers/cpuidle/* | |
2273 | F: include/linux/cpuidle.h | |
2274 | ||
1da177e4 | 2275 | CPUID/MSR DRIVER |
8b58be88 | 2276 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2277 | S: Maintained |
679655da JP |
2278 | F: arch/x86/kernel/cpuid.c |
2279 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2280 | |
7fe2f639 DB |
2281 | CPU POWER MONITORING SUBSYSTEM |
2282 | M: Dominik Brodowski <[email protected]> | |
2283 | M: Thomas Renninger <[email protected]> | |
2284 | S: Maintained | |
2285 | F: tools/power/cpupower | |
2286 | ||
ed90fb4a | 2287 | CPUSETS |
f47b89c7 | 2288 | M: Li Zefan <[email protected]> |
ed90fb4a | 2289 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2290 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2291 | S: Maintained |
679655da JP |
2292 | F: Documentation/cgroups/cpusets.txt |
2293 | F: include/linux/cpuset.h | |
2294 | F: kernel/cpuset.c | |
ed90fb4a | 2295 | |
1da177e4 | 2296 | CRAMFS FILESYSTEM |
ce00f85c JC |
2297 | W: http://sourceforge.net/projects/cramfs/ |
2298 | S: Orphan | |
679655da JP |
2299 | F: Documentation/filesystems/cramfs.txt |
2300 | F: fs/cramfs/ | |
1da177e4 LT |
2301 | |
2302 | CRIS PORT | |
8b58be88 JP |
2303 | M: Mikael Starvik <[email protected]> |
2304 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 2305 | L: [email protected] |
1da177e4 LT |
2306 | W: http://developer.axis.com |
2307 | S: Maintained | |
679655da | 2308 | F: arch/cris/ |
df621252 | 2309 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2310 | |
2311 | CRYPTO API | |
8b58be88 JP |
2312 | M: Herbert Xu <[email protected]> |
2313 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 2314 | L: [email protected] |
54e5881d | 2315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2316 | S: Maintained |
679655da JP |
2317 | F: Documentation/crypto/ |
2318 | F: arch/*/crypto/ | |
2319 | F: crypto/ | |
2320 | F: drivers/crypto/ | |
2321 | F: include/crypto/ | |
1da177e4 | 2322 | |
5b07bd57 | 2323 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2324 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
2325 | L: [email protected] |
2326 | S: Maintained | |
51a2228a JP |
2327 | F: crypto/ansi_cprng.c |
2328 | F: crypto/rng.c | |
5b07bd57 | 2329 | |
9b4ffa48 | 2330 | CS5535 Audio ALSA driver |
8b58be88 | 2331 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 2332 | S: Maintained |
679655da | 2333 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2334 | |
a910e4a9 SP |
2335 | CW1200 WLAN driver |
2336 | M: Solomon Peachy <[email protected]> | |
2337 | S: Maintained | |
2338 | F: drivers/net/wireless/cw1200/ | |
2339 | ||
6d8425b1 | 2340 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2341 | M: Andy Walls <[email protected]> |
c4240509 | 2342 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 2343 | L: [email protected] |
275ffde4 | 2344 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2345 | W: http://linuxtv.org |
30e10993 | 2346 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2347 | S: Maintained |
679655da | 2348 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2349 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2350 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2351 | |
3f101d91 HV |
2352 | CX2341X MPEG ENCODER HELPER MODULE |
2353 | M: Hans Verkuil <[email protected]> | |
2354 | L: [email protected] | |
2355 | T: git git://linuxtv.org/media_tree.git | |
2356 | W: http://linuxtv.org | |
2357 | S: Maintained | |
c368360b | 2358 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2359 | F: include/media/cx2341x* |
2360 | ||
20357578 | 2361 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2362 | M: Mauro Carvalho Chehab <[email protected]> |
20357578 MCC |
2363 | L: [email protected] |
2364 | W: http://linuxtv.org | |
2365 | T: git git://linuxtv.org/media_tree.git | |
2366 | S: Odd fixes | |
2367 | F: Documentation/video4linux/cx88/ | |
2368 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2369 | |
91952bc0 AP |
2370 | CXD2820R MEDIA DRIVER |
2371 | M: Antti Palosaari <[email protected]> | |
2372 | L: [email protected] | |
2373 | W: http://linuxtv.org/ | |
2374 | W: http://palosaari.fi/linux/ | |
2375 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2376 | T: git git://linuxtv.org/anttip/media_tree.git | |
2377 | S: Maintained | |
2378 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2379 | |
e5ec3789 | 2380 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2381 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
2382 | L: [email protected] |
2383 | W: http://www.chelsio.com | |
2384 | S: Supported | |
f7917c00 | 2385 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2386 | |
2387 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2388 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 2389 | L: [email protected] |
e5ec3789 SW |
2390 | W: http://www.openfabrics.org |
2391 | S: Supported | |
679655da | 2392 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2393 | |
be4c9bad RD |
2394 | CXGB4 ETHERNET DRIVER (CXGB4) |
2395 | M: Dimitris Michailidis <[email protected]> | |
2396 | L: [email protected] | |
2397 | W: http://www.chelsio.com | |
2398 | S: Supported | |
f7917c00 | 2399 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2400 | |
2401 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2402 | M: Steve Wise <[email protected]> | |
2403 | L: [email protected] | |
2404 | W: http://www.openfabrics.org | |
2405 | S: Supported | |
2406 | F: drivers/infiniband/hw/cxgb4/ | |
2407 | ||
5c20a5c7 CL |
2408 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2409 | M: Casey Leedom <[email protected]> | |
2410 | L: [email protected] | |
2411 | W: http://www.chelsio.com | |
2412 | S: Supported | |
f7917c00 | 2413 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2414 | |
b52b97a3 GC |
2415 | STMMAC ETHERNET DRIVER |
2416 | M: Giuseppe Cavallaro <[email protected]> | |
2417 | L: [email protected] | |
2418 | W: http://www.stlinux.com | |
2419 | S: Supported | |
7ac6653a | 2420 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2421 | |
1da177e4 | 2422 | CYBERPRO FB DRIVER |
8b58be88 | 2423 | M: Russell King <[email protected]> |
efc03ecb | 2424 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
2425 | W: http://www.arm.linux.org.uk/ |
2426 | S: Maintained | |
679655da | 2427 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2428 | |
1da177e4 | 2429 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2430 | W: http://www.cyclades.com/ |
d459883e | 2431 | S: Orphan |
c897401b | 2432 | F: drivers/tty/cyclades.c |
679655da | 2433 | F: include/linux/cyclades.h |
c117ab84 | 2434 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2435 | |
2436 | CYCLADES PC300 DRIVER | |
1da177e4 | 2437 | W: http://www.cyclades.com/ |
d459883e | 2438 | S: Orphan |
679655da | 2439 | F: drivers/net/wan/pc300* |
1da177e4 | 2440 | |
402f6ae4 AP |
2441 | CYPRESS_FIRMWARE MEDIA DRIVER |
2442 | M: Antti Palosaari <[email protected]> | |
2443 | L: [email protected] | |
2444 | W: http://linuxtv.org/ | |
2445 | W: http://palosaari.fi/linux/ | |
2446 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2447 | T: git git://linuxtv.org/anttip/media_tree.git | |
2448 | S: Maintained | |
2449 | F: drivers/media/common/cypress_firmware* | |
2450 | ||
e3ae3525 | 2451 | CYTTSP TOUCHSCREEN DRIVER |
6305902c JP |
2452 | M: Javier Martinez Canillas <[email protected]> |
2453 | L: [email protected] | |
2454 | S: Maintained | |
2455 | F: drivers/input/touchscreen/cyttsp* | |
2456 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2457 | |
1da177e4 | 2458 | DAMA SLAVE for AX.25 |
8b58be88 | 2459 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
2460 | W: http://yaina.de/jreuter/ |
2461 | W: http://www.qsl.net/dl1bke/ | |
2462 | L: [email protected] | |
2463 | S: Maintained | |
679655da JP |
2464 | F: net/ax25/af_ax25.c |
2465 | F: net/ax25/ax25_dev.c | |
2466 | F: net/ax25/ax25_ds_* | |
2467 | F: net/ax25/ax25_in.c | |
2468 | F: net/ax25/ax25_out.c | |
2469 | F: net/ax25/ax25_timer.c | |
2470 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2471 | |
e2d1d6c0 | 2472 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2473 | L: [email protected] |
5ff77428 | 2474 | S: Orphan |
679655da | 2475 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2476 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2477 | |
2478 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2479 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 2480 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2481 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 2482 | S: Maintained |
679655da | 2483 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2484 | |
1da177e4 | 2485 | DC395x SCSI driver |
61eee9a7 | 2486 | M: Oliver Neukum <[email protected]> |
8b58be88 JP |
2487 | M: Ali Akcaagac <[email protected]> |
2488 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 2489 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2490 | L: [email protected] |
1da177e4 LT |
2491 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2492 | S: Maintained | |
679655da JP |
2493 | F: Documentation/scsi/dc395x.txt |
2494 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2495 | |
eb8edb08 | 2496 | DCCP PROTOCOL |
a89d030e | 2497 | M: Gerrit Renker <[email protected]> |
eb8edb08 | 2498 | L: [email protected] |
c996d8b9 | 2499 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2500 | S: Maintained |
679655da | 2501 | F: include/linux/dccp.h |
c117ab84 | 2502 | F: include/uapi/linux/dccp.h |
679655da JP |
2503 | F: include/linux/tfrc.h |
2504 | F: net/dccp/ | |
eb8edb08 | 2505 | |
1da177e4 | 2506 | DECnet NETWORK LAYER |
1da177e4 LT |
2507 | W: http://linux-decnet.sourceforge.net |
2508 | L: [email protected] | |
f546444d | 2509 | S: Orphan |
679655da JP |
2510 | F: Documentation/networking/decnet.txt |
2511 | F: net/decnet/ | |
1da177e4 LT |
2512 | |
2513 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2514 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 2515 | S: Maintained |
33f810b2 | 2516 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2517 | |
ad8f07cc | 2518 | DELL LAPTOP DRIVER |
8b58be88 | 2519 | M: Matthew Garrett <[email protected]> |
d0944853 | 2520 | L: [email protected] |
ad8f07cc | 2521 | S: Maintained |
679655da | 2522 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2523 | |
1da177e4 | 2524 | DELL LAPTOP SMM DRIVER |
c5471462 | 2525 | S: Orphan |
679655da | 2526 | F: drivers/char/i8k.c |
c117ab84 | 2527 | F: include/uapi/linux/i8k.h |
1da177e4 | 2528 | |
90563ec4 | 2529 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2530 | M: Doug Warzecha <[email protected]> |
90563ec4 | 2531 | S: Maintained |
679655da JP |
2532 | F: Documentation/dcdbas.txt |
2533 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2534 | |
0b3f6109 | 2535 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2536 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 2537 | S: Maintained |
36b3a96f | 2538 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2539 | |
5efc75e3 PZ |
2540 | DESIGNWARE USB2 DRD IP DRIVER |
2541 | M: Paul Zimmerman <[email protected]> | |
2542 | L: [email protected] | |
2543 | S: Maintained | |
2544 | F: drivers/staging/dwc2/ | |
2545 | ||
94ab23dd FB |
2546 | DESIGNWARE USB3 DRD IP DRIVER |
2547 | M: Felipe Balbi <[email protected]> | |
2548 | L: [email protected] | |
2549 | L: [email protected] | |
2550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2551 | S: Maintained | |
2552 | F: drivers/usb/dwc3/ | |
2553 | ||
89d07767 KP |
2554 | DEVICE FREQUENCY (DEVFREQ) |
2555 | M: MyungJoo Ham <[email protected]> | |
2556 | M: Kyungmin Park <[email protected]> | |
88476d34 | 2557 | L: [email protected] |
89d07767 KP |
2558 | S: Maintained |
2559 | F: drivers/devfreq/ | |
2560 | ||
1da177e4 | 2561 | DEVICE NUMBER REGISTRY |
8b58be88 | 2562 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 2563 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2564 | S: Maintained |
2565 | ||
e2d1d6c0 | 2566 | DEVICE-MAPPER (LVM) |
854ecaad | 2567 | M: Alasdair Kergon <[email protected]> |
8504eed3 | 2568 | M: Mike Snitzer <[email protected]> |
854ecaad | 2569 | M: [email protected] |
e2d1d6c0 RD |
2570 | L: [email protected] |
2571 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2572 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2573 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2574 | S: Maintained |
679655da JP |
2575 | F: Documentation/device-mapper/ |
2576 | F: drivers/md/dm* | |
854ecaad | 2577 | F: drivers/md/persistent-data/ |
679655da JP |
2578 | F: include/linux/device-mapper.h |
2579 | F: include/linux/dm-*.h | |
8504eed3 | 2580 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2581 | |
335d7c58 | 2582 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2583 | M: Guenter Roeck <[email protected]> |
335d7c58 GR |
2584 | L: [email protected] |
2585 | S: Maintained | |
2586 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2587 | ||
e7839f25 | 2588 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2589 | M: Eric Paris <[email protected]> |
3c5119c0 | 2590 | S: Maintained |
679655da JP |
2591 | F: Documentation/filesystems/dnotify.txt |
2592 | F: fs/notify/dnotify/ | |
2593 | F: include/linux/dnotify.h | |
1da177e4 LT |
2594 | |
2595 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2596 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
2597 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2598 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2599 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2600 | S: Maintained | |
2601 | ||
4480f15b | 2602 | DISKQUOTA |
8b58be88 | 2603 | M: Jan Kara <[email protected]> |
1da177e4 | 2604 | S: Maintained |
679655da JP |
2605 | F: Documentation/filesystems/quota.txt |
2606 | F: fs/quota/ | |
2607 | F: include/linux/quota*.h | |
c117ab84 | 2608 | F: include/uapi/linux/quota*.h |
1da177e4 | 2609 | |
702686ad BT |
2610 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2611 | M: Bernie Thompson <[email protected]> | |
2612 | L: [email protected] | |
2613 | S: Maintained | |
2614 | W: http://plugable.com/category/projects/udlfb/ | |
2615 | F: drivers/video/udlfb.c | |
2616 | F: include/video/udlfb.h | |
2617 | F: Documentation/fb/udlfb.txt | |
2618 | ||
e7839f25 | 2619 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2620 | M: Christine Caulfield <[email protected]> |
2621 | M: David Teigland <[email protected]> | |
a4644184 | 2622 | L: [email protected] |
5be7b50f | 2623 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2625 | S: Supported |
679655da | 2626 | F: fs/dlm/ |
5be7b50f | 2627 | |
53b6b3e0 SS |
2628 | DMA BUFFER SHARING FRAMEWORK |
2629 | M: Sumit Semwal <[email protected]> | |
2630 | S: Maintained | |
2631 | L: [email protected] | |
2632 | L: [email protected] | |
2633 | L: [email protected] | |
2634 | F: drivers/base/dma-buf* | |
2635 | F: include/linux/dma-buf* | |
2636 | F: Documentation/dma-buf-sharing.txt | |
2637 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2638 | ||
b3e5f263 | 2639 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2640 | M: Vinod Koul <[email protected]> |
1dd8372d | 2641 | M: Dan Williams <[email protected]> |
b3e5f263 | 2642 | S: Supported |
679655da JP |
2643 | F: drivers/dma/ |
2644 | F: include/linux/dma* | |
5dbd05d4 VK |
2645 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2646 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2647 | |
b825037d | 2648 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2649 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2650 | L: [email protected] |
2651 | S: Maintained | |
679655da JP |
2652 | F: Documentation/hwmon/dme1737 |
2653 | F: drivers/hwmon/dme1737.c | |
b825037d | 2654 | |
5b9c9bf6 | 2655 | DOCKING STATION DRIVER |
8b58be88 | 2656 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2657 | L: [email protected] |
8b59a454 | 2658 | S: Supported |
679655da | 2659 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2660 | |
7d2c86b5 | 2661 | DOCUMENTATION |
5191d566 | 2662 | M: Rob Landley <[email protected]> |
795fb7e7 | 2663 | L: [email protected] |
5191d566 | 2664 | T: TBD |
795fb7e7 | 2665 | S: Maintained |
679655da | 2666 | F: Documentation/ |
abbaeff3 | 2667 | |
1da177e4 | 2668 | DOUBLETALK DRIVER |
8b58be88 | 2669 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2670 | L: [email protected] |
2671 | S: Maintained | |
679655da JP |
2672 | F: drivers/char/dtlk.c |
2673 | F: include/linux/dtlk.h | |
1da177e4 | 2674 | |
e2d1d6c0 | 2675 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2676 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2677 | L: [email protected] |
2678 | W: http://www.adaptec.com/ | |
2679 | S: Maintained | |
679655da JP |
2680 | F: drivers/scsi/dpt* |
2681 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2682 | |
b411b363 | 2683 | DRBD DRIVER |
28b8e8d4 JP |
2684 | P: Philipp Reisner |
2685 | P: Lars Ellenberg | |
2686 | M: [email protected] | |
2687 | L: [email protected] | |
2688 | W: http://www.drbd.org | |
2689 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2690 | T: git git://git.drbd.org/drbd-8.3.git | |
2691 | S: Supported | |
2692 | F: drivers/block/drbd/ | |
2693 | F: lib/lru_cache.c | |
2694 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2695 | |
87544653 | 2696 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2697 | M: Greg Kroah-Hartman <[email protected]> |
08deed1e | 2698 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2699 | S: Supported |
679655da | 2700 | F: Documentation/kobject.txt |
7cfc51b9 | 2701 | F: drivers/base/ |
679655da | 2702 | F: fs/sysfs/ |
87544653 | 2703 | F: fs/debugfs/ |
679655da | 2704 | F: include/linux/kobj* |
87544653 | 2705 | F: include/linux/debugfs.h |
679655da | 2706 | F: lib/kobj* |
1da177e4 LT |
2707 | |
2708 | DRM DRIVERS | |
8b58be88 | 2709 | M: David Airlie <[email protected]> |
4c6a3999 | 2710 | L: [email protected] |
54e5881d | 2711 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2712 | S: Maintained |
679655da | 2713 | F: drivers/gpu/drm/ |
850e9411 | 2714 | F: include/drm/ |
c117ab84 | 2715 | F: include/uapi/drm/ |
1da177e4 | 2716 | |
8daf7473 | 2717 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2718 | M: Daniel Vetter <[email protected]> |
362132d2 | 2719 | L: [email protected] |
8daf7473 | 2720 | L: [email protected] |
38e490fe | 2721 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 CW |
2722 | S: Supported |
2723 | F: drivers/gpu/drm/i915 | |
2724 | F: include/drm/i915* | |
c117ab84 | 2725 | F: include/uapi/drm/i915* |
8daf7473 | 2726 | |
398a6d4a KP |
2727 | DRM DRIVERS FOR EXYNOS |
2728 | M: Inki Dae <[email protected]> | |
f1501303 ID |
2729 | M: Joonyoung Shim <[email protected]> |
2730 | M: Seung-Woo Kim <[email protected]> | |
2731 | M: Kyungmin Park <[email protected]> | |
398a6d4a | 2732 | L: [email protected] |
25a58030 | 2733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a KP |
2734 | S: Supported |
2735 | F: drivers/gpu/drm/exynos | |
2736 | F: include/drm/exynos* | |
c117ab84 | 2737 | F: include/uapi/drm/exynos* |
398a6d4a | 2738 | |
bd3b49f2 | 2739 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2740 | M: Thierry Reding <[email protected]> |
2741 | M: Terje Bergström <[email protected]> | |
bd3b49f2 TR |
2742 | L: [email protected] |
2743 | L: [email protected] | |
a5ad7a63 | 2744 | T: git git://anongit.freedesktop.org/tegra/linux.git |
bd3b49f2 | 2745 | S: Maintained |
a5ad7a63 TR |
2746 | F: drivers/gpu/host1x/ |
2747 | F: include/uapi/drm/tegra_drm.h | |
bd3b49f2 TR |
2748 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2749 | ||
598df1ac AK |
2750 | DSBR100 USB FM RADIO DRIVER |
2751 | M: Alexey Klimov <[email protected]> | |
2752 | L: [email protected] | |
2753 | T: git git://linuxtv.org/media_tree.git | |
2754 | S: Maintained | |
2755 | F: drivers/media/radio/dsbr100.c | |
2756 | ||
1da177e4 | 2757 | DSCC4 DRIVER |
8b58be88 | 2758 | M: Francois Romieu <[email protected]> |
01f20734 | 2759 | L: [email protected] |
1da177e4 | 2760 | S: Maintained |
679655da | 2761 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2762 | |
91952bc0 AP |
2763 | DVB_USB_AF9015 MEDIA DRIVER |
2764 | M: Antti Palosaari <[email protected]> | |
2765 | L: [email protected] | |
2766 | W: http://linuxtv.org/ | |
2767 | W: http://palosaari.fi/linux/ | |
2768 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2769 | T: git git://linuxtv.org/anttip/media_tree.git | |
2770 | S: Maintained | |
2771 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2772 | ||
2773 | DVB_USB_AF9035 MEDIA DRIVER | |
2774 | M: Antti Palosaari <[email protected]> | |
2775 | L: [email protected] | |
2776 | W: http://linuxtv.org/ | |
2777 | W: http://palosaari.fi/linux/ | |
2778 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2779 | T: git git://linuxtv.org/anttip/media_tree.git | |
2780 | S: Maintained | |
2781 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2782 | ||
2783 | DVB_USB_ANYSEE MEDIA DRIVER | |
2784 | M: Antti Palosaari <[email protected]> | |
2785 | L: [email protected] | |
2786 | W: http://linuxtv.org/ | |
2787 | W: http://palosaari.fi/linux/ | |
2788 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2789 | T: git git://linuxtv.org/anttip/media_tree.git | |
2790 | S: Maintained | |
2791 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2792 | ||
2793 | DVB_USB_AU6610 MEDIA DRIVER | |
2794 | M: Antti Palosaari <[email protected]> | |
2795 | L: [email protected] | |
2796 | W: http://linuxtv.org/ | |
2797 | W: http://palosaari.fi/linux/ | |
2798 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2799 | T: git git://linuxtv.org/anttip/media_tree.git | |
2800 | S: Maintained | |
2801 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2802 | ||
2803 | DVB_USB_CE6230 MEDIA DRIVER | |
2804 | M: Antti Palosaari <[email protected]> | |
2805 | L: [email protected] | |
2806 | W: http://linuxtv.org/ | |
2807 | W: http://palosaari.fi/linux/ | |
2808 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2809 | T: git git://linuxtv.org/anttip/media_tree.git | |
2810 | S: Maintained | |
2811 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2812 | ||
d099dea2 MK |
2813 | DVB_USB_CXUSB MEDIA DRIVER |
2814 | M: Michael Krufky <[email protected]> | |
2815 | L: [email protected] | |
2816 | W: http://linuxtv.org/ | |
2817 | W: http://github.com/mkrufky | |
2818 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2819 | T: git git://linuxtv.org/media_tree.git | |
2820 | S: Maintained | |
9819da66 | 2821 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2822 | |
91952bc0 | 2823 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2824 | M: Antti Palosaari <[email protected]> |
2825 | L: [email protected] | |
2826 | W: http://linuxtv.org/ | |
2827 | W: http://palosaari.fi/linux/ | |
2828 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2829 | T: git git://linuxtv.org/anttip/media_tree.git | |
2830 | S: Maintained | |
91952bc0 | 2831 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2832 | |
5560983b | 2833 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2834 | M: Antti Palosaari <[email protected]> |
2835 | L: [email protected] | |
2836 | W: http://linuxtv.org/ | |
91952bc0 AP |
2837 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2838 | T: git git://linuxtv.org/anttip/media_tree.git | |
2839 | S: Maintained | |
5560983b | 2840 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2841 | |
8856f5f2 MK |
2842 | DVB_USB_MXL111SF MEDIA DRIVER |
2843 | M: Michael Krufky <[email protected]> | |
2844 | L: [email protected] | |
2845 | W: http://linuxtv.org/ | |
2846 | W: http://github.com/mkrufky | |
2847 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2848 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2849 | S: Maintained | |
2850 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2851 | ||
91952bc0 AP |
2852 | DVB_USB_RTL28XXU MEDIA DRIVER |
2853 | M: Antti Palosaari <[email protected]> | |
2854 | L: [email protected] | |
2855 | W: http://linuxtv.org/ | |
2856 | W: http://palosaari.fi/linux/ | |
2857 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2858 | T: git git://linuxtv.org/anttip/media_tree.git | |
2859 | S: Maintained | |
2860 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2861 | ||
2862 | DVB_USB_V2 MEDIA DRIVER | |
2863 | M: Antti Palosaari <[email protected]> | |
2864 | L: [email protected] | |
2865 | W: http://linuxtv.org/ | |
2866 | W: http://palosaari.fi/linux/ | |
2867 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2868 | T: git git://linuxtv.org/anttip/media_tree.git | |
2869 | S: Maintained | |
2870 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2871 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2872 | ||
ac0ac38f | 2873 | DYNAMIC DEBUG |
5c4a97d1 | 2874 | M: Jason Baron <[email protected]> |
ac0ac38f JB |
2875 | S: Maintained |
2876 | F: lib/dynamic_debug.c | |
2877 | F: include/linux/dynamic_debug.h | |
2878 | ||
789c7048 | 2879 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2880 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2881 | S: Maintained |
df621252 | 2882 | F: drivers/tty/serial/dz.* |
789c7048 | 2883 | |
91952bc0 AP |
2884 | E4000 MEDIA DRIVER |
2885 | M: Antti Palosaari <[email protected]> | |
2886 | L: [email protected] | |
2887 | W: http://linuxtv.org/ | |
2888 | W: http://palosaari.fi/linux/ | |
2889 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2890 | T: git git://linuxtv.org/anttip/media_tree.git | |
2891 | S: Maintained | |
2892 | F: drivers/media/tuners/e4000* | |
2893 | ||
1da177e4 | 2894 | EATA-DMA SCSI DRIVER |
8b58be88 | 2895 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2896 | L: [email protected] |
2897 | L: [email protected] | |
1da177e4 | 2898 | S: Maintained |
679655da | 2899 | F: drivers/scsi/eata* |
1da177e4 LT |
2900 | |
2901 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2902 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2903 | L: [email protected] |
2904 | S: Maintained | |
679655da | 2905 | F: drivers/scsi/eata.c |
1da177e4 LT |
2906 | |
2907 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2908 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2909 | L: [email protected] |
2910 | L: [email protected] | |
1da177e4 | 2911 | S: Maintained |
679655da | 2912 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2913 | |
2914 | EBTABLES | |
8b58be88 | 2915 | M: Bart De Schuymer <[email protected]> |
d3ab6fde | 2916 | L: [email protected] |
1da177e4 LT |
2917 | W: http://ebtables.sourceforge.net/ |
2918 | S: Maintained | |
679655da | 2919 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2920 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2921 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2922 | |
91952bc0 AP |
2923 | EC100 MEDIA DRIVER |
2924 | M: Antti Palosaari <[email protected]> | |
2925 | L: [email protected] | |
2926 | W: http://linuxtv.org/ | |
2927 | W: http://palosaari.fi/linux/ | |
2928 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2929 | T: git git://linuxtv.org/anttip/media_tree.git | |
2930 | S: Maintained | |
2931 | F: drivers/media/dvb-frontends/ec100* | |
2932 | ||
237fead6 | 2933 | ECRYPT FILE SYSTEM |
0de9adf2 | 2934 | M: Tyler Hicks <[email protected]> |
a058bfbb | 2935 | L: [email protected] |
24a923e4 | 2936 | W: http://ecryptfs.org |
6dc7516e | 2937 | W: https://launchpad.net/ecryptfs |
237fead6 | 2938 | S: Supported |
679655da JP |
2939 | F: Documentation/filesystems/ecryptfs.txt |
2940 | F: fs/ecryptfs/ | |
237fead6 | 2941 | |
da9bb1d2 | 2942 | EDAC-CORE |
8b58be88 | 2943 | M: Doug Thompson <[email protected]> |
91445c72 | 2944 | L: [email protected] |
0e438e3f | 2945 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2946 | S: Supported |
679655da | 2947 | F: Documentation/edac.txt |
91445c72 | 2948 | F: drivers/edac/ |
679655da | 2949 | F: include/linux/edac.h |
0e438e3f | 2950 | |
c476c23b | 2951 | EDAC-AMD64 |
8b58be88 | 2952 | M: Doug Thompson <[email protected]> |
487ba8e8 | 2953 | M: Borislav Petkov <[email protected]> |
91445c72 | 2954 | L: [email protected] |
c476c23b | 2955 | W: bluesmoke.sourceforge.net |
487ba8e8 | 2956 | S: Maintained |
c476c23b BP |
2957 | F: drivers/edac/amd64_edac* |
2958 | ||
f65aad41 RB |
2959 | EDAC-CAVIUM |
2960 | M: Ralf Baechle <[email protected]> | |
2961 | M: David Daney <[email protected]> | |
2962 | L: [email protected] | |
2963 | L: [email protected] | |
2964 | W: bluesmoke.sourceforge.net | |
2965 | S: Supported | |
2966 | F: drivers/edac/octeon_edac* | |
2967 | ||
0e438e3f | 2968 | EDAC-E752X |
8b58be88 JP |
2969 | M: Mark Gross <[email protected]> |
2970 | M: Doug Thompson <[email protected]> | |
91445c72 | 2971 | L: [email protected] |
0e438e3f DP |
2972 | W: bluesmoke.sourceforge.net |
2973 | S: Maintained | |
679655da | 2974 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2975 | |
2976 | EDAC-E7XXX | |
8b58be88 | 2977 | M: Doug Thompson <[email protected]> |
91445c72 | 2978 | L: [email protected] |
0e438e3f DP |
2979 | W: bluesmoke.sourceforge.net |
2980 | S: Maintained | |
679655da | 2981 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2982 | |
77c5f5d2 | 2983 | EDAC-GHES |
1b2c14b4 | 2984 | M: Mauro Carvalho Chehab <[email protected]> |
77c5f5d2 MCC |
2985 | L: [email protected] |
2986 | W: bluesmoke.sourceforge.net | |
2987 | S: Maintained | |
2988 | F: drivers/edac/ghes-edac.c | |
2989 | ||
6bc78404 | 2990 | EDAC-I82443BXGX |
8b58be88 | 2991 | M: Tim Small <[email protected]> |
91445c72 | 2992 | L: [email protected] |
6bc78404 DT |
2993 | W: bluesmoke.sourceforge.net |
2994 | S: Maintained | |
679655da | 2995 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
2996 | |
2997 | EDAC-I3000 | |
8b58be88 | 2998 | M: Jason Uhlenkott <[email protected]> |
91445c72 | 2999 | L: [email protected] |
6bc78404 DT |
3000 | W: bluesmoke.sourceforge.net |
3001 | S: Maintained | |
679655da | 3002 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3003 | |
3004 | EDAC-I5000 | |
8b58be88 | 3005 | M: Doug Thompson <[email protected]> |
91445c72 | 3006 | L: [email protected] |
ba9a5918 DT |
3007 | W: bluesmoke.sourceforge.net |
3008 | S: Maintained | |
679655da | 3009 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3010 | |
44c12cb2 | 3011 | EDAC-I5400 |
1b2c14b4 | 3012 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 3013 | L: [email protected] |
44c12cb2 MCC |
3014 | W: bluesmoke.sourceforge.net |
3015 | S: Maintained | |
679655da | 3016 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3017 | |
3c9c92b6 | 3018 | EDAC-I7300 |
1b2c14b4 | 3019 | M: Mauro Carvalho Chehab <[email protected]> |
3c9c92b6 MCC |
3020 | L: [email protected] |
3021 | W: bluesmoke.sourceforge.net | |
3022 | S: Maintained | |
3023 | F: drivers/edac/i7300_edac.c | |
3024 | ||
67c89316 | 3025 | EDAC-I7CORE |
1b2c14b4 | 3026 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 MCC |
3027 | L: [email protected] |
3028 | W: bluesmoke.sourceforge.net | |
3029 | S: Maintained | |
70aff0ce | 3030 | F: drivers/edac/i7core_edac.c |
67c89316 | 3031 | |
ba9a5918 | 3032 | EDAC-I82975X |
8b58be88 | 3033 | M: Ranganathan Desikan <[email protected]> |
25527885 | 3034 | M: "Arvind R." <[email protected]> |
91445c72 | 3035 | L: [email protected] |
ba9a5918 DT |
3036 | W: bluesmoke.sourceforge.net |
3037 | S: Maintained | |
679655da | 3038 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
3039 | |
3040 | EDAC-PASEMI | |
8b58be88 | 3041 | M: Egor Martovetsky <[email protected]> |
91445c72 | 3042 | L: [email protected] |
6bc78404 DT |
3043 | W: bluesmoke.sourceforge.net |
3044 | S: Maintained | |
679655da | 3045 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3046 | |
0e438e3f | 3047 | EDAC-R82600 |
8b58be88 | 3048 | M: Tim Small <[email protected]> |
91445c72 | 3049 | L: [email protected] |
0e438e3f DP |
3050 | W: bluesmoke.sourceforge.net |
3051 | S: Maintained | |
679655da | 3052 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3053 | |
4d096ca7 | 3054 | EDAC-SBRIDGE |
1b2c14b4 | 3055 | M: Mauro Carvalho Chehab <[email protected]> |
4d096ca7 MCC |
3056 | L: [email protected] |
3057 | W: bluesmoke.sourceforge.net | |
3058 | S: Maintained | |
3059 | F: drivers/edac/sb_edac.c | |
3060 | ||
af39917d CL |
3061 | EDIROL UA-101/UA-1000 DRIVER |
3062 | M: Clemens Ladisch <[email protected]> | |
3063 | L: [email protected] (moderated for non-subscribers) | |
3064 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3065 | S: Maintained | |
3066 | F: sound/usb/misc/ua101.c | |
3067 | ||
1f7df953 MF |
3068 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3069 | M: Matt Fleming <[email protected]> | |
3070 | L: [email protected] | |
78bef24e | 3071 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3072 | S: Maintained |
3073 | F: Documentation/x86/efi-stub.txt | |
3074 | F: arch/ia64/kernel/efi.c | |
3075 | F: arch/x86/boot/compressed/eboot.[ch] | |
3076 | F: arch/x86/include/asm/efi.h | |
3077 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3078 | F: drivers/firmware/efi/* |
1f7df953 MF |
3079 | F: include/linux/efi*.h |
3080 | ||
d68772b7 MF |
3081 | EFI VARIABLE FILESYSTEM |
3082 | M: Matthew Garrett <[email protected]> | |
3083 | M: Jeremy Kerr <[email protected]> | |
3084 | M: Matt Fleming <[email protected]> | |
3085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3086 | L: [email protected] | |
3087 | S: Maintained | |
3088 | F: fs/efivarfs/ | |
3089 | ||
85a00d9b PJ |
3090 | EFIFB FRAMEBUFFER DRIVER |
3091 | L: [email protected] | |
3092 | M: Peter Jones <[email protected]> | |
3093 | S: Maintained | |
3094 | F: drivers/video/efifb.c | |
3095 | ||
0bee8d28 JT |
3096 | EFS FILESYSTEM |
3097 | W: http://aeschi.ch.eu.org/efs/ | |
3098 | S: Orphan | |
679655da | 3099 | F: fs/efs/ |
0bee8d28 | 3100 | |
4480f15b | 3101 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3102 | M: Hoang-Nam Nguyen <[email protected]> |
3103 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 3104 | L: [email protected] |
fab97220 | 3105 | S: Supported |
679655da | 3106 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3107 | |
aa8a9e25 | 3108 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3109 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
aa8a9e25 BL |
3110 | L: [email protected] |
3111 | S: Maintained | |
9aa32835 | 3112 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3113 | |
f0319efe | 3114 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3115 | M: Mauro Carvalho Chehab <[email protected]> |
f0319efe MCC |
3116 | L: [email protected] |
3117 | W: http://linuxtv.org | |
3118 | T: git git://linuxtv.org/media_tree.git | |
3119 | S: Maintained | |
3120 | F: drivers/media/usb/em28xx/ | |
3121 | ||
3e3a7d66 | 3122 | EMBEDDED LINUX |
8b58be88 JP |
3123 | M: Paul Gortmaker <[email protected]> |
3124 | M: Matt Mackall <[email protected]> | |
3125 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
3126 | L: [email protected] |
3127 | S: Maintained | |
3128 | ||
3a1c1d44 | 3129 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3130 | M: James Smart <[email protected]> |
ce00f85c JC |
3131 | L: [email protected] |
3132 | W: http://sourceforge.net/projects/lpfcxxxx | |
3133 | S: Supported | |
679655da | 3134 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3135 | |
5f5bac82 | 3136 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3137 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
3138 | S: Maintained |
3139 | F: drivers/misc/cb710/ | |
3140 | F: drivers/mmc/host/cb710-mmc.* | |
3141 | F: include/linux/cb710.h | |
3142 | ||
931e39a1 ML |
3143 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3144 | M: Maxim Levitsky <[email protected]> | |
3145 | S: Maintained | |
2a837449 | 3146 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3147 | |
ec207dcc GS |
3148 | ENHANCED ERROR HANDLING (EEH) |
3149 | M: Gavin Shan <[email protected]> | |
3150 | L: [email protected] | |
3151 | S: Supported | |
3152 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3153 | F: arch/powerpc/kernel/eeh*.c | |
3154 | ||
d5ca9006 | 3155 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3156 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 3157 | S: Maintained |
084bad91 | 3158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3159 | F: drivers/video/s1d13xxxfb.c |
3160 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3161 | |
1da177e4 | 3162 | ETHERNET BRIDGE |
adbbf69d | 3163 | M: Stephen Hemminger <[email protected]> |
f318a63b | 3164 | L: [email protected] |
4c325313 | 3165 | L: [email protected] |
c996d8b9 | 3166 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3167 | S: Maintained |
679655da JP |
3168 | F: include/linux/netfilter_bridge/ |
3169 | F: net/bridge/ | |
1da177e4 | 3170 | |
1da177e4 | 3171 | EXT2 FILE SYSTEM |
01971952 | 3172 | M: Jan Kara <[email protected]> |
72be2ccf | 3173 | L: [email protected] |
1da177e4 | 3174 | S: Maintained |
679655da JP |
3175 | F: Documentation/filesystems/ext2.txt |
3176 | F: fs/ext2/ | |
3177 | F: include/linux/ext2* | |
1da177e4 LT |
3178 | |
3179 | EXT3 FILE SYSTEM | |
01971952 | 3180 | M: Jan Kara <[email protected]> |
8b58be88 | 3181 | M: Andrew Morton <[email protected]> |
3c373a5f | 3182 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
3183 | L: [email protected] |
3184 | S: Maintained | |
679655da JP |
3185 | F: Documentation/filesystems/ext3.txt |
3186 | F: fs/ext3/ | |
72be2ccf EM |
3187 | |
3188 | EXT4 FILE SYSTEM | |
8b58be88 | 3189 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 3190 | M: Andreas Dilger <[email protected]> |
72be2ccf | 3191 | L: [email protected] |
08a225f1 | 3192 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3193 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3194 | S: Maintained |
679655da JP |
3195 | F: Documentation/filesystems/ext4.txt |
3196 | F: fs/ext4/ | |
1da177e4 | 3197 | |
c5532b09 MZ |
3198 | Extended Verification Module (EVM) |
3199 | M: Mimi Zohar <[email protected]> | |
3200 | S: Supported | |
3201 | F: security/integrity/evm/ | |
3202 | ||
df6b3cfe MH |
3203 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3204 | M: MyungJoo Ham <[email protected]> | |
3205 | M: Chanwoo Choi <[email protected]> | |
3206 | L: [email protected] | |
3207 | S: Maintained | |
3208 | F: drivers/extcon/ | |
3209 | F: Documentation/extcon/ | |
3210 | ||
0a79951a JH |
3211 | EXYNOS DP DRIVER |
3212 | M: Jingoo Han <[email protected]> | |
3213 | L: [email protected] | |
3214 | S: Maintained | |
3215 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3216 | F: include/video/exynos_dp* |
0a79951a | 3217 | |
33ad3912 DL |
3218 | EXYNOS MIPI DISPLAY DRIVERS |
3219 | M: Inki Dae <[email protected]> | |
3220 | M: Donghwa Lee <[email protected]> | |
3221 | M: Kyungmin Park <[email protected]> | |
3222 | L: [email protected] | |
3223 | S: Maintained | |
3224 | F: drivers/video/exynos/exynos_mipi* | |
3225 | F: include/video/exynos_mipi* | |
3226 | ||
e53004e2 | 3227 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3228 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
3229 | L: [email protected] |
3230 | S: Maintained | |
679655da JP |
3231 | F: Documentation/hwmon/f71805f |
3232 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3233 | |
eea977ed MB |
3234 | FC0011 TUNER DRIVER |
3235 | M: Michael Buesch <[email protected]> | |
3236 | L: [email protected] | |
3237 | S: Maintained | |
ccae7af2 MCC |
3238 | F: drivers/media/tuners/fc0011.h |
3239 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3240 | |
91952bc0 AP |
3241 | FC2580 MEDIA DRIVER |
3242 | M: Antti Palosaari <[email protected]> | |
3243 | L: [email protected] | |
3244 | W: http://linuxtv.org/ | |
3245 | W: http://palosaari.fi/linux/ | |
3246 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3247 | T: git git://linuxtv.org/anttip/media_tree.git | |
3248 | S: Maintained | |
3249 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3250 | |
88b2dbdb EP |
3251 | FANOTIFY |
3252 | M: Eric Paris <[email protected]> | |
3253 | S: Maintained | |
3254 | F: fs/notify/fanotify/ | |
3255 | F: include/linux/fanotify.h | |
c117ab84 | 3256 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3257 | |
1da177e4 | 3258 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3259 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
3260 | W: http://www.farsite.co.uk/ |
3261 | S: Supported | |
679655da | 3262 | F: drivers/net/wan/farsync.* |
1da177e4 | 3263 | |
c5408b88 | 3264 | FAULT INJECTION SUPPORT |
8b58be88 | 3265 | M: Akinobu Mita <[email protected]> |
c5408b88 | 3266 | S: Supported |
679655da JP |
3267 | F: Documentation/fault-injection/ |
3268 | F: lib/fault-inject.c | |
c5408b88 | 3269 | |
cae727db RL |
3270 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3271 | M: Robert Love <[email protected]> | |
f4aaea6d | 3272 | L: [email protected] |
cae727db RL |
3273 | W: www.Open-FCoE.org |
3274 | S: Supported | |
3275 | F: drivers/scsi/libfc/ | |
3276 | F: drivers/scsi/fcoe/ | |
3277 | F: include/scsi/fc/ | |
3278 | F: include/scsi/libfc.h | |
3279 | F: include/scsi/libfcoe.h | |
c117ab84 | 3280 | F: include/uapi/scsi/fc/ |
cae727db | 3281 | |
e2d1d6c0 | 3282 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3283 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 3284 | L: [email protected] |
1da177e4 | 3285 | S: Maintained |
679655da JP |
3286 | F: include/linux/fcntl.h |
3287 | F: include/linux/fs.h | |
c117ab84 CEB |
3288 | F: include/uapi/linux/fcntl.h |
3289 | F: include/uapi/linux/fs.h | |
679655da JP |
3290 | F: fs/fcntl.c |
3291 | F: fs/locks.c | |
1da177e4 | 3292 | |
e2d1d6c0 | 3293 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3294 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 3295 | L: [email protected] |
173acc7c | 3296 | S: Maintained |
679655da | 3297 | F: fs/* |
173acc7c | 3298 | |
b26e0ed4 | 3299 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3300 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
3301 | L: [email protected] |
3302 | S: Maintained | |
d5ca6918 JP |
3303 | F: drivers/hwmon/f75375s.c |
3304 | F: include/linux/f75375s.h | |
b26e0ed4 | 3305 | |
a331b0c3 CL |
3306 | FIREWIRE AUDIO DRIVERS |
3307 | M: Clemens Ladisch <[email protected]> | |
3308 | L: [email protected] (moderated for non-subscribers) | |
3309 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3310 | S: Maintained | |
3311 | F: sound/firewire/ | |
3312 | ||
eb86ec51 SR |
3313 | FIREWIRE MEDIA DRIVERS (firedtv) |
3314 | M: Stefan Richter <[email protected]> | |
3315 | L: [email protected] | |
3316 | L: [email protected] | |
3317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3318 | S: Maintained | |
3319 | F: drivers/media/firewire/ | |
3320 | ||
a511ce33 CB |
3321 | FIREWIRE SBP-2 TARGET |
3322 | M: Chris Boot <[email protected]> | |
3323 | L: [email protected] | |
3324 | L: [email protected] | |
3325 | L: [email protected] | |
3326 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3327 | S: Maintained | |
3328 | F: drivers/target/sbp/ | |
3329 | ||
7d2c86b5 | 3330 | FIREWIRE SUBSYSTEM |
8b58be88 | 3331 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 3332 | L: [email protected] |
958a29cb | 3333 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3334 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3335 | S: Maintained |
679655da | 3336 | F: drivers/firewire/ |
8f06ce3b SR |
3337 | F: include/linux/firewire.h |
3338 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3339 | F: tools/firewire/ |
e2d1d6c0 RD |
3340 | |
3341 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3342 | M: Ming Lei <[email protected]> |
3343 | L: [email protected] | |
3344 | S: Maintained | |
679655da JP |
3345 | F: Documentation/firmware_class/ |
3346 | F: drivers/base/firmware*.c | |
3347 | F: include/linux/firmware.h | |
e2d1d6c0 | 3348 | |
f730e3dc | 3349 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3350 | M: Joshua Morris <[email protected]> |
3351 | M: Philip Kelleher <[email protected]> | |
3352 | S: Maintained | |
3353 | F: drivers/block/rsxx/ | |
3354 | ||
8206f664 JK |
3355 | FLOPPY DRIVER |
3356 | M: Jiri Kosina <[email protected]> | |
3357 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3358 | S: Odd fixes | |
3359 | F: drivers/block/floppy.c | |
3360 | ||
9c9f32ed AR |
3361 | FMC SUBSYSTEM |
3362 | M: Alessandro Rubini <[email protected]> | |
3363 | W: http://www.ohwr.org/projects/fmc-bus | |
3364 | S: Supported | |
3365 | F: drivers/fmc/ | |
3366 | F: include/linux/fmc*.h | |
3367 | F: include/linux/ipmi-fru.h | |
3368 | K: fmc_d.*register | |
3369 | ||
e2d1d6c0 | 3370 | FPU EMULATOR |
8b58be88 | 3371 | M: Bill Metzenthen <[email protected]> |
e769980f | 3372 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3373 | S: Maintained |
679655da | 3374 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3375 | |
3376 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3377 | L: [email protected] |
c173bfac | 3378 | S: Orphan |
679655da JP |
3379 | F: drivers/net/wan/dlci.c |
3380 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3381 | |
3382 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3383 | M: Jean-Christophe Plagniol-Villard <[email protected]> |
3384 | M: Tomi Valkeinen <[email protected]> | |
c69f677c | 3385 | L: [email protected] |
e2d1d6c0 | 3386 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3387 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3389 | S: Maintained |
679655da | 3390 | F: Documentation/fb/ |
d958c62c | 3391 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3392 | F: drivers/video/ |
3393 | F: include/video/ | |
679655da | 3394 | F: include/linux/fb.h |
c117ab84 CEB |
3395 | F: include/uapi/video/ |
3396 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3397 | |
a57c188e | 3398 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3399 | M: Timur Tabi <[email protected]> |
a57c188e | 3400 | L: [email protected] |
c4ef9bc4 | 3401 | S: Maintained |
a57c188e TT |
3402 | F: drivers/video/fsl-diu-fb.* |
3403 | ||
e2d1d6c0 | 3404 | FREESCALE DMA DRIVER |
8b58be88 JP |
3405 | M: Li Yang <[email protected]> |
3406 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 3407 | L: [email protected] |
e2d1d6c0 | 3408 | S: Maintained |
679655da | 3409 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3410 | |
3411 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3412 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 3413 | L: [email protected] |
846557d3 | 3414 | L: [email protected] |
0d2b405a | 3415 | S: Maintained |
679655da | 3416 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3417 | |
60e8c5ab | 3418 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3419 | M: Sascha Hauer <[email protected]> |
c69f677c | 3420 | L: [email protected] |
efc03ecb | 3421 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 3422 | S: Maintained |
bad985a1 | 3423 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3424 | F: drivers/video/imxfb.c |
60e8c5ab | 3425 | |
4689a6b1 | 3426 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3427 | M: Pantelis Antoniou <[email protected]> |
3428 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 3429 | L: [email protected] |
4689a6b1 PA |
3430 | L: [email protected] |
3431 | S: Maintained | |
ec21e2ec | 3432 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3433 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3434 | |
d9e9d82c | 3435 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3436 | L: [email protected] |
c4ef9bc4 | 3437 | S: Orphan |
679655da JP |
3438 | F: arch/powerpc/sysdev/qe_lib/ |
3439 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3440 | |
b55ef929 | 3441 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3442 | M: Li Yang <[email protected]> |
6372594a | 3443 | L: [email protected] |
a4724ed6 | 3444 | L: [email protected] |
a7205b30 | 3445 | S: Maintained |
5429c731 | 3446 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3447 | |
beaf53bf | 3448 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3449 | M: Li Yang <[email protected]> |
beaf53bf | 3450 | L: [email protected] |
a4724ed6 | 3451 | L: [email protected] |
beaf53bf | 3452 | S: Maintained |
ec21e2ec | 3453 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3454 | |
d9e9d82c | 3455 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3456 | M: Timur Tabi <[email protected]> |
a4724ed6 | 3457 | L: [email protected] |
c4ef9bc4 | 3458 | S: Maintained |
df621252 | 3459 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3460 | |
3461 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3462 | M: Timur Tabi <[email protected]> |
93711660 | 3463 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 3464 | L: [email protected] |
c4ef9bc4 | 3465 | S: Maintained |
69aefcea JP |
3466 | F: sound/soc/fsl/fsl* |
3467 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3468 | |
1da177e4 | 3469 | FREEVXFS FILESYSTEM |
8b58be88 | 3470 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
3471 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3472 | S: Maintained | |
679655da | 3473 | F: fs/freevxfs/ |
1da177e4 | 3474 | |
71038f52 | 3475 | FREEZER |
8b58be88 JP |
3476 | M: Pavel Machek <[email protected]> |
3477 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3478 | L: [email protected] |
71038f52 | 3479 | S: Supported |
679655da JP |
3480 | F: Documentation/power/freezing-of-tasks.txt |
3481 | F: include/linux/freezer.h | |
3482 | F: kernel/freezer.c | |
71038f52 | 3483 | |
839a1f79 KRW |
3484 | FRONTSWAP API |
3485 | M: Konrad Rzeszutek Wilk <[email protected]> | |
3486 | L: [email protected] | |
3487 | S: Maintained | |
3488 | F: mm/frontswap.c | |
3489 | F: include/linux/frontswap.h | |
3490 | ||
a5432f5a | 3491 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3492 | M: David Howells <[email protected]> |
a5432f5a DH |
3493 | L: [email protected] |
3494 | S: Supported | |
3495 | F: Documentation/filesystems/caching/ | |
3496 | F: fs/fscache/ | |
3497 | F: include/linux/fscache*.h | |
3498 | ||
f58ad8f5 JK |
3499 | F2FS FILE SYSTEM |
3500 | M: Jaegeuk Kim <[email protected]> | |
3501 | L: [email protected] | |
3502 | W: http://en.wikipedia.org/wiki/F2FS | |
3503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3504 | S: Maintained | |
3505 | F: Documentation/filesystems/f2fs.txt | |
3506 | F: fs/f2fs/ | |
3507 | F: include/linux/f2fs_fs.h | |
3508 | ||
5ab7ffea | 3509 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3510 | M: David Howells <[email protected]> |
1da177e4 | 3511 | S: Maintained |
679655da | 3512 | F: arch/frv/ |
1da177e4 | 3513 | |
20b93734 | 3514 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3515 | M: Jonathan Woithe <[email protected]> |
d0944853 | 3516 | L: [email protected] |
20b93734 | 3517 | S: Maintained |
679655da | 3518 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3519 | |
4da621b6 HK |
3520 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3521 | M: Kyungmin Park <[email protected]> | |
3522 | M: Heungjun Kim <[email protected]> | |
3523 | L: [email protected] | |
3524 | S: Maintained | |
90d72ac6 | 3525 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3526 | F: include/media/m5mols.h |
3527 | ||
2d24c490 RG |
3528 | FUJITSU TABLET EXTRAS |
3529 | M: Robert Gerlach <[email protected]> | |
3530 | L: [email protected] | |
3531 | S: Maintained | |
3532 | F: drivers/platform/x86/fujitsu-tablet.c | |
3533 | ||
04578f17 | 3534 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3535 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
3536 | L: [email protected] |
3537 | W: http://fuse.sourceforge.net/ | |
3538 | S: Maintained | |
679655da | 3539 | F: fs/fuse/ |
c117ab84 | 3540 | F: include/uapi/linux/fuse.h |
04578f17 | 3541 | |
1da177e4 | 3542 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3543 | M: Rik Faith <[email protected]> |
1da177e4 | 3544 | L: [email protected] |
baaea1dc | 3545 | S: Odd Fixes (e.g., new signatures) |
679655da | 3546 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3547 | |
3548 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3549 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
3550 | L: [email protected] |
3551 | W: http://www.icp-vortex.com/ | |
3552 | S: Supported | |
679655da | 3553 | F: drivers/scsi/gdt* |
1da177e4 | 3554 | |
3169a1c7 HV |
3555 | GEMTEK FM RADIO RECEIVER DRIVER |
3556 | M: Hans Verkuil <[email protected]> | |
3557 | L: [email protected] | |
3558 | T: git git://linuxtv.org/media_tree.git | |
3559 | W: http://linuxtv.org | |
3560 | S: Maintained | |
3561 | F: drivers/media/radio/radio-gemtek* | |
3562 | ||
1c23af90 | 3563 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3564 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 3565 | S: Supported |
679655da JP |
3566 | F: drivers/i2c/busses/i2c-gpio.c |
3567 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3568 | |
92ed1a76 PK |
3569 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3570 | M: Peter Korsgaard <[email protected]> | |
3571 | L: [email protected] | |
3572 | S: Supported | |
e7065e20 JD |
3573 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3574 | F: include/linux/i2c-mux-gpio.h | |
3575 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3576 | |
9251ce95 | 3577 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3578 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
3579 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3580 | S: Maintained | |
679655da JP |
3581 | F: drivers/net/wan/c101.c |
3582 | F: drivers/net/wan/hd6457* | |
3583 | F: drivers/net/wan/hdlc* | |
3584 | F: drivers/net/wan/n2.c | |
3585 | F: drivers/net/wan/pc300too.c | |
3586 | F: drivers/net/wan/pci200syn.c | |
3587 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3588 | |
1527aab6 | 3589 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3590 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
3591 | L: [email protected] |
3592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3593 | S: Maintained | |
3594 | F: include/asm-generic | |
c117ab84 | 3595 | F: include/uapi/asm-generic |
1527aab6 | 3596 | |
ccb86a69 | 3597 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3598 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 3599 | L: [email protected] |
ccb86a69 MT |
3600 | S: Supported |
3601 | F: drivers/uio/uio_pci_generic.c | |
3602 | ||
5be7b50f | 3603 | GFS2 FILE SYSTEM |
8b58be88 | 3604 | M: Steven Whitehouse <[email protected]> |
a4644184 | 3605 | L: [email protected] |
5be7b50f | 3606 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3609 | S: Supported |
679655da JP |
3610 | F: Documentation/filesystems/gfs2*.txt |
3611 | F: fs/gfs2/ | |
c117ab84 | 3612 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3613 | |
0a34eb8f | 3614 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3615 | M: Hansjoerg Lipp <[email protected]> |
3616 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
3617 | L: [email protected] |
3618 | W: http://gigaset307x.sourceforge.net/ | |
3619 | S: Maintained | |
679655da JP |
3620 | F: Documentation/isdn/README.gigaset |
3621 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3622 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3623 | |
a0dc00b4 | 3624 | GPIO SUBSYSTEM |
e4651a9f | 3625 | M: Linus Walleij <[email protected]> |
a0dc00b4 | 3626 | S: Maintained |
d15b7179 | 3627 | L: [email protected] |
98909cf0 | 3628 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3629 | F: drivers/gpio/ |
3630 | F: include/linux/gpio* | |
9b692346 | 3631 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3632 | |
71a6d0af HW |
3633 | GRE DEMULTIPLEXER DRIVER |
3634 | M: Dmitry Kozlov <[email protected]> | |
3635 | L: [email protected] | |
3636 | S: Maintained | |
3637 | F: net/ipv4/gre.c | |
3638 | F: include/net/gre.h | |
3639 | ||
d4c41139 KG |
3640 | GRETH 10/100/1G Ethernet MAC device driver |
3641 | M: Kristoffer Glembo <[email protected]> | |
3642 | L: [email protected] | |
3643 | S: Maintained | |
a31a96ad | 3644 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3645 | |
e8deeae2 | 3646 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3647 | M: Frank Zago <[email protected]> |
661263b5 | 3648 | L: [email protected] |
275ffde4 | 3649 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3650 | S: Maintained |
0c0d06ca | 3651 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3652 | |
4b3fa3c4 OL |
3653 | GSPCA GL860 SUBDRIVER |
3654 | M: Olivier Lorin <[email protected]> | |
3655 | L: [email protected] | |
275ffde4 | 3656 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3657 | S: Maintained |
0c0d06ca | 3658 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3659 | |
e8deeae2 | 3660 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3661 | M: Erik Andren <[email protected]> |
661263b5 | 3662 | L: [email protected] |
275ffde4 | 3663 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3664 | S: Maintained |
0c0d06ca | 3665 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3666 | |
3667 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3668 | M: Hans de Goede <[email protected]> |
661263b5 | 3669 | L: [email protected] |
275ffde4 | 3670 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3671 | S: Maintained |
0c0d06ca | 3672 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3673 | |
261982f1 | 3674 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3675 | M: Brian Johnson <[email protected]> |
261982f1 | 3676 | L: [email protected] |
275ffde4 | 3677 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3678 | S: Maintained |
0c0d06ca | 3679 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3680 | |
e8deeae2 | 3681 | GSPCA T613 SUBDRIVER |
8b58be88 | 3682 | M: Leandro Costantino <[email protected]> |
661263b5 | 3683 | L: [email protected] |
275ffde4 | 3684 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3685 | S: Maintained |
0c0d06ca | 3686 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3687 | |
3688 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3689 | M: Hans de Goede <[email protected]> |
661263b5 | 3690 | L: [email protected] |
275ffde4 | 3691 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3692 | S: Maintained |
0c0d06ca | 3693 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3694 | |
aa3c598b EG |
3695 | STK1160 USB VIDEO CAPTURE DRIVER |
3696 | M: Ezequiel Garcia <[email protected]> | |
3697 | L: [email protected] | |
275ffde4 | 3698 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3699 | S: Maintained |
3700 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3701 | |
71a6d0af HW |
3702 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3703 | M: Frank Seidel <[email protected]> | |
3704 | L: [email protected] | |
3705 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3706 | S: Maintained | |
3707 | F: drivers/platform/x86/hdaps.c | |
3708 | ||
48fc9e26 HV |
3709 | HDPVR USB VIDEO ENCODER DRIVER |
3710 | M: Hans Verkuil <[email protected]> | |
3711 | L: [email protected] | |
3712 | T: git git://linuxtv.org/media_tree.git | |
3713 | W: http://linuxtv.org | |
3714 | S: Odd Fixes | |
3715 | F: drivers/media/usb/hdpvr | |
3716 | ||
71a6d0af HW |
3717 | HWPOISON MEMORY FAILURE HANDLING |
3718 | M: Andi Kleen <[email protected]> | |
3719 | L: [email protected] | |
3720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3721 | S: Maintained | |
3722 | F: mm/memory-failure.c | |
3723 | F: mm/hwpoison-inject.c | |
3724 | ||
3725 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3726 | L: [email protected] | |
3727 | S: Odd Fixes | |
3728 | F: drivers/tty/hvc/ | |
3729 | ||
5b543965 | 3730 | HARDWARE MONITORING |
9e012c1a | 3731 | M: Jean Delvare <[email protected]> |
ca462085 | 3732 | M: Guenter Roeck <[email protected]> |
5b543965 | 3733 | L: [email protected] |
595142e0 | 3734 | W: http://www.lm-sensors.org/ |
9e012c1a | 3735 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3736 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3737 | S: Maintained |
047f4ec2 | 3738 | F: Documentation/hwmon/ |
679655da | 3739 | F: drivers/hwmon/ |
047f4ec2 | 3740 | F: include/linux/hwmon*.h |
5b543965 | 3741 | |
844dd05f | 3742 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3743 | M: Matt Mackall <[email protected]> |
3744 | M: Herbert Xu <[email protected]> | |
3745 | S: Odd fixes | |
679655da JP |
3746 | F: Documentation/hw_random.txt |
3747 | F: drivers/char/hw_random/ | |
3748 | F: include/linux/hw_random.h | |
844dd05f | 3749 | |
8b37fcfc OBC |
3750 | HARDWARE SPINLOCK CORE |
3751 | M: Ohad Ben-Cohen <[email protected]> | |
3752 | S: Maintained | |
3753 | F: Documentation/hwspinlock.txt | |
3754 | F: drivers/hwspinlock/hwspinlock_* | |
3755 | F: include/linux/hwspinlock.h | |
3756 | ||
1da177e4 | 3757 | HARMONY SOUND DRIVER |
ac6aecbf | 3758 | L: [email protected] |
1da177e4 | 3759 | S: Maintained |
679655da | 3760 | F: sound/parisc/harmony.* |
1da177e4 | 3761 | |
91952bc0 AP |
3762 | HD29L2 MEDIA DRIVER |
3763 | M: Antti Palosaari <[email protected]> | |
3764 | L: [email protected] | |
3765 | W: http://linuxtv.org/ | |
3766 | W: http://palosaari.fi/linux/ | |
3767 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3768 | T: git git://linuxtv.org/anttip/media_tree.git | |
3769 | S: Maintained | |
3770 | F: drivers/media/dvb-frontends/hd29l2* | |
3771 | ||
e2d1d6c0 | 3772 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3773 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
3774 | L: [email protected] |
3775 | S: Maintained | |
679655da JP |
3776 | F: Documentation/blockdev/cpqarray.txt |
3777 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3778 | |
9257aa49 | 3779 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3780 | M: "Stephen M. Cameron" <[email protected]> |
9257aa49 SC |
3781 | L: [email protected] |
3782 | S: Supported | |
3783 | F: Documentation/scsi/hpsa.txt | |
3784 | F: drivers/scsi/hpsa*.[ch] | |
3785 | F: include/linux/cciss*.h | |
c117ab84 | 3786 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3787 | |
e2d1d6c0 | 3788 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3789 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
3790 | L: [email protected] |
3791 | S: Supported | |
679655da JP |
3792 | F: Documentation/blockdev/cciss.txt |
3793 | F: drivers/block/cciss* | |
3794 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3795 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3796 | |
1da177e4 | 3797 | HFS FILESYSTEM |
6cf515e1 GU |
3798 | L: [email protected] |
3799 | S: Orphan | |
679655da JP |
3800 | F: Documentation/filesystems/hfs.txt |
3801 | F: fs/hfs/ | |
1da177e4 LT |
3802 | |
3803 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3804 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
3805 | L: [email protected] |
3806 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3807 | S: Maintained | |
679655da | 3808 | F: drivers/video/hgafb.c |
1da177e4 | 3809 | |
4480f15b | 3810 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3811 | M: Pavel Machek <[email protected]> |
3812 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 3813 | L: [email protected] |
e2d1d6c0 | 3814 | S: Supported |
679655da JP |
3815 | F: arch/x86/power/ |
3816 | F: drivers/base/power/ | |
3817 | F: kernel/power/ | |
3818 | F: include/linux/suspend.h | |
3819 | F: include/linux/freezer.h | |
3820 | F: include/linux/pm.h | |
679655da | 3821 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3822 | |
4ef4caad | 3823 | HID CORE LAYER |
8b58be88 | 3824 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 3825 | L: [email protected] |
54e5881d | 3826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3827 | S: Maintained |
679655da JP |
3828 | F: drivers/hid/ |
3829 | F: include/linux/hid* | |
c117ab84 | 3830 | F: include/uapi/linux/hid* |
4ef4caad | 3831 | |
38bed542 | 3832 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3833 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 3834 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3835 | S: Maintained |
679655da JP |
3836 | F: Documentation/timers/ |
3837 | F: kernel/hrtimer.c | |
88606e80 TG |
3838 | F: kernel/time/clockevents.c |
3839 | F: kernel/time/tick*.* | |
3840 | F: kernel/time/timer_*.c | |
05ed8490 | 3841 | F: include/linux/clockchips.h |
679655da | 3842 | F: include/linux/hrtimer.h |
38bed542 | 3843 | |
1da177e4 | 3844 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3845 | L: [email protected] |
8b64f2a0 | 3846 | S: Orphan |
679655da JP |
3847 | F: drivers/net/hamradio/dmascc.c |
3848 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3849 | |
ede1e6f8 | 3850 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3851 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
3852 | W: http://www.highpoint-tech.com |
3853 | S: Supported | |
679655da JP |
3854 | F: Documentation/scsi/hptiop.txt |
3855 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3856 | |
1da177e4 | 3857 | HIPPI |
8b58be88 | 3858 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
3859 | L: [email protected] |
3860 | S: Maintained | |
679655da | 3861 | F: include/linux/hippidevice.h |
c117ab84 | 3862 | F: include/uapi/linux/if_hippi.h |
679655da | 3863 | F: net/802/hippi.c |
ff5a3b50 | 3864 | F: drivers/net/hippi/ |
1da177e4 | 3865 | |
ff1d2767 | 3866 | HOST AP DRIVER |
8b58be88 | 3867 | M: Jouni Malinen <[email protected]> |
85d32e7b | 3868 | L: [email protected] (subscribers-only) |
724c6b35 | 3869 | L: [email protected] |
ff1d2767 JM |
3870 | W: http://hostap.epitest.fi/ |
3871 | S: Maintained | |
679655da | 3872 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3873 | |
dd8cd779 | 3874 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3875 | L: [email protected] |
95c70215 | 3876 | S: Orphan |
679655da | 3877 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3878 | |
e2d1d6c0 | 3879 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3880 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3881 | S: Maintained |
7e25d724 | 3882 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3883 | |
7d2c86b5 | 3884 | HPET: High Precision Event Timers driver |
8b58be88 | 3885 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 3886 | S: Maintained |
679655da JP |
3887 | F: Documentation/timers/hpet.txt |
3888 | F: drivers/char/hpet.c | |
3889 | F: include/linux/hpet.h | |
c117ab84 | 3890 | F: include/uapi/linux/hpet.h |
b9b0332f | 3891 | |
e07b5d79 | 3892 | HPET: x86 |
9c5fb19a | 3893 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 3894 | S: Maintained |
679655da JP |
3895 | F: arch/x86/kernel/hpet.c |
3896 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3897 | |
1da177e4 | 3898 | HPFS FILESYSTEM |
8b58be88 | 3899 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
3900 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3901 | S: Maintained | |
679655da | 3902 | F: fs/hpfs/ |
1da177e4 | 3903 | |
7d2c86b5 | 3904 | HSO 3G MODEM DRIVER |
8b58be88 | 3905 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
3906 | W: http://www.pharscape.org |
3907 | S: Maintained | |
679655da | 3908 | F: drivers/net/usb/hso.c |
11cd29b0 | 3909 | |
5a18c343 | 3910 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3911 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
3912 | L: [email protected] |
3913 | S: Maintained | |
679655da | 3914 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3915 | |
1da177e4 | 3916 | HUGETLB FILESYSTEM |
6d49e352 | 3917 | M: Nadia Yvette Chambers <[email protected]> |
1da177e4 | 3918 | S: Maintained |
679655da | 3919 | F: fs/hugetlbfs/ |
1da177e4 | 3920 | |
05183189 S |
3921 | Hyper-V CORE AND DRIVERS |
3922 | M: K. Y. Srinivasan <[email protected]> | |
3923 | M: Haiyang Zhang <[email protected]> | |
3924 | L: [email protected] | |
3925 | S: Maintained | |
a4162747 HZ |
3926 | F: arch/x86/include/asm/mshyperv.h |
3927 | F: arch/x86/include/uapi/asm/hyperv.h | |
3928 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 3929 | F: drivers/hid/hid-hyperv.c |
a4162747 | 3930 | F: drivers/hv/ |
05183189 | 3931 | F: drivers/net/hyperv/ |
a4162747 HZ |
3932 | F: drivers/scsi/storvsc_drv.c |
3933 | F: drivers/video/hyperv_fb.c | |
3934 | F: include/linux/hyperv.h | |
3935 | F: tools/hv/ | |
05183189 | 3936 | |
d85c8a6a JD |
3937 | I2C OVER PARALLEL PORT |
3938 | M: Jean Delvare <[email protected]> | |
3939 | L: [email protected] | |
3940 | S: Maintained | |
3941 | F: Documentation/i2c/busses/i2c-parport | |
3942 | F: Documentation/i2c/busses/i2c-parport-light | |
3943 | F: drivers/i2c/busses/i2c-parport.c | |
3944 | F: drivers/i2c/busses/i2c-parport-light.c | |
3945 | ||
3946 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
3947 | M: Jean Delvare <[email protected]> | |
3948 | L: [email protected] | |
3949 | S: Maintained | |
3950 | F: Documentation/i2c/busses/i2c-ali1535 | |
3951 | F: Documentation/i2c/busses/i2c-ali1563 | |
3952 | F: Documentation/i2c/busses/i2c-ali15x3 | |
3953 | F: Documentation/i2c/busses/i2c-amd756 | |
3954 | F: Documentation/i2c/busses/i2c-amd8111 | |
3955 | F: Documentation/i2c/busses/i2c-i801 | |
3956 | F: Documentation/i2c/busses/i2c-nforce2 | |
3957 | F: Documentation/i2c/busses/i2c-piix4 | |
3958 | F: Documentation/i2c/busses/i2c-sis5595 | |
3959 | F: Documentation/i2c/busses/i2c-sis630 | |
3960 | F: Documentation/i2c/busses/i2c-sis96x | |
3961 | F: Documentation/i2c/busses/i2c-via | |
3962 | F: Documentation/i2c/busses/i2c-viapro | |
3963 | F: drivers/i2c/busses/i2c-ali1535.c | |
3964 | F: drivers/i2c/busses/i2c-ali1563.c | |
3965 | F: drivers/i2c/busses/i2c-ali15x3.c | |
3966 | F: drivers/i2c/busses/i2c-amd756.c | |
3967 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
3968 | F: drivers/i2c/busses/i2c-amd8111.c | |
3969 | F: drivers/i2c/busses/i2c-i801.c | |
3970 | F: drivers/i2c/busses/i2c-isch.c | |
3971 | F: drivers/i2c/busses/i2c-nforce2.c | |
3972 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
3973 | F: drivers/i2c/busses/i2c-piix4.c | |
3974 | F: drivers/i2c/busses/i2c-sis5595.c | |
3975 | F: drivers/i2c/busses/i2c-sis630.c | |
3976 | F: drivers/i2c/busses/i2c-sis96x.c | |
3977 | F: drivers/i2c/busses/i2c-via.c | |
3978 | F: drivers/i2c/busses/i2c-viapro.c | |
3979 | ||
cb7f07a4 NH |
3980 | I2C/SMBUS ISMT DRIVER |
3981 | M: Seth Heasley <[email protected]> | |
3982 | M: Neil Horman <[email protected]> | |
3983 | L: [email protected] | |
3984 | F: drivers/i2c/busses/i2c-ismt.c | |
3985 | F: Documentation/i2c/busses/i2c-ismt | |
3986 | ||
6ea884db | 3987 | I2C/SMBUS STUB DRIVER |
94877548 | 3988 | M: Jean Delvare <[email protected]> |
846557d3 | 3989 | L: [email protected] |
6ea884db | 3990 | S: Maintained |
8547a5bc | 3991 | F: drivers/i2c/i2c-stub.c |
6ea884db | 3992 | |
5b543965 | 3993 | I2C SUBSYSTEM |
14d77c4d | 3994 | M: Wolfram Sang <[email protected]> |
846557d3 | 3995 | L: [email protected] |
a01064a9 | 3996 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 3997 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 3998 | S: Maintained |
679655da JP |
3999 | F: Documentation/i2c/ |
4000 | F: drivers/i2c/ | |
4001 | F: include/linux/i2c.h | |
03b70d62 | 4002 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4003 | F: include/uapi/linux/i2c.h |
4004 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4005 | |
d85c8a6a JD |
4006 | I2C-TAOS-EVM DRIVER |
4007 | M: Jean Delvare <[email protected]> | |
4008 | L: [email protected] | |
4009 | S: Maintained | |
4010 | F: Documentation/i2c/busses/i2c-taos-evm | |
4011 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4012 | ||
e8c76eed | 4013 | I2C-TINY-USB DRIVER |
8b58be88 | 4014 | M: Till Harbaum <[email protected]> |
846557d3 | 4015 | L: [email protected] |
932d1872 | 4016 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4017 | S: Maintained |
679655da | 4018 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4019 | |
1da177e4 | 4020 | i386 BOOT CODE |
8b58be88 | 4021 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 4022 | S: Maintained |
679655da | 4023 | F: arch/x86/boot/ |
1da177e4 LT |
4024 | |
4025 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4026 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 4027 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4028 | S: Maintained |
4029 | ||
1da177e4 | 4030 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4031 | M: Tony Luck <[email protected]> |
4032 | M: Fenghua Yu <[email protected]> | |
1da177e4 | 4033 | L: [email protected] |
6b1c70b1 | 4034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4035 | S: Maintained |
679655da | 4036 | F: arch/ia64/ |
1da177e4 | 4037 | |
956c203c | 4038 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4039 | M: Marcelo Henrique Cerri <[email protected]> |
4040 | M: Fionnuala Gunter <[email protected]> | |
956c203c KY |
4041 | L: [email protected] |
4042 | S: Supported | |
4043 | F: drivers/crypto/nx/ | |
4044 | ||
0e16aafb SJ |
4045 | IBM Power 842 compression accelerator |
4046 | M: Robert Jennings <[email protected]> | |
4047 | S: Supported | |
4048 | F: drivers/crypto/nx/nx-842.c | |
4049 | F: include/linux/nx842.h | |
4050 | ||
1da177e4 | 4051 | IBM Power Linux RAID adapter |
8b58be88 | 4052 | M: Brian King <[email protected]> |
1da177e4 | 4053 | S: Supported |
679655da | 4054 | F: drivers/scsi/ipr.* |
1da177e4 | 4055 | |
9d348af4 SL |
4056 | IBM Power Virtual Ethernet Device Driver |
4057 | M: Santiago Leon <[email protected]> | |
4058 | L: [email protected] | |
4059 | S: Supported | |
9aa32835 | 4060 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4061 | |
4b7652cc RJ |
4062 | IBM Power Virtual SCSI/FC Device Drivers |
4063 | M: Robert Jennings <[email protected]> | |
4064 | L: [email protected] | |
4065 | S: Supported | |
4066 | F: drivers/scsi/ibmvscsi/ | |
4067 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4068 | ||
1da177e4 LT |
4069 | IBM ServeRAID RAID DRIVER |
4070 | P: Jack Hammer | |
8b58be88 | 4071 | M: Dave Jeffery <[email protected]> |
1da177e4 | 4072 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4073 | S: Supported |
679655da | 4074 | F: drivers/scsi/ips.* |
1da177e4 | 4075 | |
6ed9f9c4 PT |
4076 | ICH LPC AND GPIO DRIVER |
4077 | M: Peter Tyser <[email protected]> | |
4078 | S: Maintained | |
4079 | F: drivers/mfd/lpc_ich.c | |
4080 | F: drivers/gpio/gpio-ich.c | |
4081 | ||
1e7106fc | 4082 | IDE SUBSYSTEM |
8b58be88 | 4083 | M: "David S. Miller" <[email protected]> |
1da177e4 | 4084 | L: [email protected] |
8a6e2535 | 4085 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4086 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4087 | S: Maintained |
679655da JP |
4088 | F: Documentation/ide/ |
4089 | F: drivers/ide/ | |
4090 | F: include/linux/ide.h | |
1da177e4 | 4091 | |
6cb8c13d IP |
4092 | IDEAPAD LAPTOP EXTRAS DRIVER |
4093 | M: Ike Panhc <[email protected]> | |
4094 | L: [email protected] | |
4095 | W: http://launchpad.net/ideapad-laptop | |
4096 | S: Maintained | |
4097 | F: drivers/platform/x86/ideapad-laptop.c | |
4098 | ||
0f861e8c | 4099 | IDE/ATAPI DRIVERS |
487ba8e8 | 4100 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 4101 | L: [email protected] |
c404c199 | 4102 | S: Maintained |
679655da JP |
4103 | F: Documentation/cdrom/ide-cd |
4104 | F: drivers/ide/ide-cd* | |
1da177e4 | 4105 | |
27471fdb | 4106 | IDLE-I7300 |
8b58be88 | 4107 | M: Andy Henroid <[email protected]> |
bf1c138e | 4108 | L: [email protected] |
27471fdb | 4109 | S: Supported |
679655da | 4110 | F: drivers/idle/i7300_idle.c |
27471fdb | 4111 | |
02cf2286 | 4112 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4113 | M: Alexander Smirnov <[email protected]> |
8b58be88 | 4114 | M: Dmitry Eremin-Solenikov <[email protected]> |
e0af6062 | 4115 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 4116 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4118 | S: Maintained |
4119 | F: net/ieee802154/ | |
68653359 | 4120 | F: net/mac802154/ |
251741b1 | 4121 | F: drivers/net/ieee802154/ |
02cf2286 | 4122 | |
40ad4a30 SY |
4123 | IGUANAWORKS USB IR TRANSCEIVER |
4124 | M: Sean Young <[email protected]> | |
4125 | L: [email protected] | |
4126 | S: Maintained | |
4127 | F: drivers/media/rc/iguanair.c | |
4128 | ||
9545f86e AP |
4129 | IIO SUBSYSTEM AND DRIVERS |
4130 | M: Jonathan Cameron <[email protected]> | |
4131 | L: [email protected] | |
4132 | S: Maintained | |
03e7c251 | 4133 | F: drivers/iio/ |
9545f86e AP |
4134 | F: drivers/staging/iio/ |
4135 | ||
65519263 SG |
4136 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4137 | M: Matthieu Castet <[email protected]> | |
4138 | M: Stanislaw Gruszka <[email protected]> | |
4139 | S: Maintained | |
4140 | F: drivers/usb/atm/ueagle-atm.c | |
4141 | ||
e89ab51f GR |
4142 | INA209 HARDWARE MONITOR DRIVER |
4143 | M: Guenter Roeck <[email protected]> | |
4144 | L: [email protected] | |
4145 | S: Maintained | |
4146 | F: Documentation/hwmon/ina209 | |
4147 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4148 | F: drivers/hwmon/ina209.c | |
4149 | ||
4150 | INA2XX HARDWARE MONITOR DRIVER | |
4151 | M: Guenter Roeck <[email protected]> | |
4152 | L: [email protected] | |
4153 | S: Maintained | |
4154 | F: Documentation/hwmon/ina2xx | |
4155 | F: drivers/hwmon/ina2xx.c | |
4156 | F: include/linux/platform_data/ina2xx.h | |
4157 | ||
14dc124f SIG |
4158 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4159 | M: Samuel Iglesias Gonsalvez <[email protected]> | |
4160 | M: Jens Taprogge <[email protected]> | |
4161 | M: Greg Kroah-Hartman <[email protected]> | |
4162 | L: [email protected] | |
4163 | W: http://industrypack.sourceforge.net | |
4164 | S: Maintained | |
4165 | F: drivers/ipack/ | |
4166 | ||
aa7168f4 | 4167 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4168 | M: Mimi Zohar <[email protected]> |
8912176c | 4169 | M: Dmitry Kasatkin <[email protected]> |
aa7168f4 | 4170 | S: Supported |
679655da | 4171 | F: security/integrity/ima/ |
aa7168f4 | 4172 | |
1da177e4 | 4173 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4174 | L: [email protected] |
843393d3 | 4175 | S: Orphan |
679655da | 4176 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4177 | |
4178 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4179 | M: Roland Dreier <[email protected]> |
8b58be88 JP |
4180 | M: Sean Hefty <[email protected]> |
4181 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 4182 | L: [email protected] |
605841f5 | 4183 | W: http://www.openfabrics.org/ |
8a6e2535 | 4184 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4186 | S: Supported |
679655da JP |
4187 | F: Documentation/infiniband/ |
4188 | F: drivers/infiniband/ | |
c117ab84 | 4189 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4190 | |
c9f04f58 | 4191 | INOTIFY |
8b58be88 JP |
4192 | M: John McCutchan <[email protected]> |
4193 | M: Robert Love <[email protected]> | |
4194 | M: Eric Paris <[email protected]> | |
c9f04f58 | 4195 | S: Maintained |
679655da JP |
4196 | F: Documentation/filesystems/inotify.txt |
4197 | F: fs/notify/inotify/ | |
4198 | F: include/linux/inotify.h | |
c117ab84 | 4199 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4200 | |
e2d1d6c0 | 4201 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4202 | M: Dmitry Torokhov <[email protected]> |
4203 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 4204 | L: [email protected] |
8a6e2535 | 4205 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4206 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4207 | S: Maintained |
679655da | 4208 | F: drivers/input/ |
f4eea7e2 | 4209 | F: include/linux/input.h |
c117ab84 | 4210 | F: include/uapi/linux/input.h |
f4eea7e2 | 4211 | F: include/linux/input/ |
e2d1d6c0 | 4212 | |
3267a87f HR |
4213 | INPUT MULTITOUCH (MT) PROTOCOL |
4214 | M: Henrik Rydberg <[email protected]> | |
4215 | L: [email protected] | |
7f9c2454 | 4216 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4217 | S: Maintained |
4218 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4219 | F: drivers/input/input-mt.c |
3267a87f HR |
4220 | K: \b(ABS|SYN)_MT_ |
4221 | ||
4ac13e17 DJ |
4222 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4223 | M: Intel SCU Linux support <[email protected]> | |
7106891a DJ |
4224 | M: Lukasz Dorau <[email protected]> |
4225 | M: Maciej Patelczyk <[email protected]> | |
4ac13e17 | 4226 | M: Dave Jiang <[email protected]> |
4ac13e17 | 4227 | L: [email protected] |
7106891a DJ |
4228 | T: git git://git.code.sf.net/p/intel-sas/isci |
4229 | S: Supported | |
4ac13e17 | 4230 | F: drivers/scsi/isci/ |
4ac13e17 | 4231 | |
26717172 LB |
4232 | INTEL IDLE DRIVER |
4233 | M: Len Brown <[email protected]> | |
bf1c138e | 4234 | L: [email protected] |
08deed1e | 4235 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4236 | S: Supported |
4237 | F: drivers/idle/intel_idle.c | |
4238 | ||
9eb8ef74 | 4239 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4240 | M: Maik Broemme <[email protected]> |
c69f677c | 4241 | L: [email protected] |
ce00f85c | 4242 | S: Maintained |
679655da JP |
4243 | F: Documentation/fb/intelfb.txt |
4244 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4245 | |
1da177e4 | 4246 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4247 | M: Antonino Daplas <[email protected]> |
c69f677c | 4248 | L: [email protected] |
ce00f85c | 4249 | S: Maintained |
679655da | 4250 | F: drivers/video/i810/ |
1da177e4 | 4251 | |
f4a9bc4c | 4252 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4253 | M: Sujith Thomas <[email protected]> |
d0944853 | 4254 | L: [email protected] |
f4a9bc4c TS |
4255 | W: http://www.lesswatts.org/projects/acpi/ |
4256 | S: Supported | |
679655da | 4257 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4258 | |
1da177e4 | 4259 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4260 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 4261 | S: Maintained |
679655da JP |
4262 | F: arch/x86/kernel/microcode_core.c |
4263 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4264 | |
248a9dc3 | 4265 | INTEL I/OAT DMA DRIVER |
1dd8372d DW |
4266 | M: Dan Williams <[email protected]> |
4267 | S: Maintained | |
679655da | 4268 | F: drivers/dma/ioat* |
248a9dc3 | 4269 | |
6c8909b4 | 4270 | INTEL IOMMU (VT-d) |
8b58be88 | 4271 | M: David Woodhouse <[email protected]> |
6c8909b4 | 4272 | L: [email protected] |
54e5881d | 4273 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4274 | S: Supported |
3fb39615 | 4275 | F: drivers/iommu/intel-iommu.c |
679655da | 4276 | F: include/linux/intel-iommu.h |
6c8909b4 | 4277 | |
b3e5f263 | 4278 | INTEL IOP-ADMA DMA DRIVER |
1dd8372d DW |
4279 | M: Dan Williams <[email protected]> |
4280 | S: Odd fixes | |
679655da | 4281 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4282 | |
9251ce95 | 4283 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4284 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 4285 | S: Maintained |
679655da JP |
4286 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4287 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4288 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4289 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4290 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4291 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4292 | |
844dd05f | 4293 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4294 | M: Deepak Saxena <[email protected]> |
844dd05f | 4295 | S: Maintained |
679655da | 4296 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4297 | |
0d164401 | 4298 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
4299 | M: Jeff Kirsher <[email protected]> |
4300 | M: Jesse Brandeburg <[email protected]> | |
4301 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
4302 | M: Carolyn Wyborny <[email protected]> |
4303 | M: Don Skidmore <[email protected]> | |
4304 | M: Greg Rose <[email protected]> | |
dee1ad47 | 4305 | M: Peter P Waskiewicz Jr <[email protected]> |
0d164401 | 4306 | M: Alex Duyck <[email protected]> |
8b58be88 | 4307 | M: John Ronciak <[email protected]> |
f6fde11a | 4308 | M: Tushar Dave <[email protected]> |
dcd01faf | 4309 | L: [email protected] |
f6fde11a | 4310 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4311 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4312 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4314 | S: Supported |
0d164401 JK |
4315 | F: Documentation/networking/e100.txt |
4316 | F: Documentation/networking/e1000.txt | |
4317 | F: Documentation/networking/e1000e.txt | |
4318 | F: Documentation/networking/igb.txt | |
4319 | F: Documentation/networking/igbvf.txt | |
4320 | F: Documentation/networking/ixgb.txt | |
4321 | F: Documentation/networking/ixgbe.txt | |
4322 | F: Documentation/networking/ixgbevf.txt | |
dee1ad47 | 4323 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4324 | |
ca907a90 SY |
4325 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4326 | M: Stanislav Yakovlev <[email protected]> | |
724c6b35 | 4327 | L: [email protected] |
ca907a90 | 4328 | S: Maintained |
679655da | 4329 | F: Documentation/networking/README.ipw2100 |
679655da | 4330 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4331 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4332 | |
4bd96a7a | 4333 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4334 | M: Richard L Maliszewski <[email protected]> |
4335 | M: Gang Wei <[email protected]> | |
4bd96a7a SW |
4336 | M: Shane Wang <[email protected]> |
4337 | L: [email protected] | |
4338 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4339 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4340 | S: Supported |
4341 | F: Documentation/intel_txt.txt | |
4342 | F: include/linux/tboot.h | |
4343 | F: arch/x86/kernel/tboot.c | |
4344 | ||
8a70da82 | 4345 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4346 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
4347 | M: [email protected] |
4348 | L: [email protected] | |
4349 | S: Supported | |
4350 | W: http://linuxwimax.org | |
679655da JP |
4351 | F: Documentation/wimax/README.i2400m |
4352 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4353 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4354 | |
1c0ce89c SG |
4355 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4356 | M: Stanislaw Gruszka <[email protected]> | |
efa3144e | 4357 | L: [email protected] |
1c0ce89c | 4358 | S: Supported |
efa3144e WYG |
4359 | F: drivers/net/wireless/iwlegacy/ |
4360 | ||
b481de9c | 4361 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4362 | M: Johannes Berg <[email protected]> |
9edc71b7 | 4363 | M: Wey-Yi Guy <[email protected]> |
a0bf797f | 4364 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 4365 | L: [email protected] |
b481de9c | 4366 | W: http://intellinuxwireless.org |
b62ff718 | 4367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4368 | S: Supported |
679655da | 4369 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4370 | |
de8fe023 TW |
4371 | INTEL MANAGEMENT ENGINE (mei) |
4372 | M: Tomas Winkler <[email protected]> | |
4373 | L: [email protected] | |
4374 | S: Supported | |
c117ab84 | 4375 | F: include/uapi/linux/mei.h |
de8fe023 | 4376 | F: drivers/misc/mei/* |
e07950a1 | 4377 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4378 | |
cb109a0e | 4379 | IOC3 ETHERNET DRIVER |
8b58be88 | 4380 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
4381 | L: [email protected] |
4382 | S: Maintained | |
8862bf1e | 4383 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4384 | |
cb109a0e | 4385 | IOC3 SERIAL DRIVER |
8b58be88 | 4386 | M: Pat Gefre <[email protected]> |
d39e0721 | 4387 | L: [email protected] |
cb109a0e | 4388 | S: Maintained |
df621252 | 4389 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4390 | |
4480f15b | 4391 | IP MASQUERADING |
8b58be88 | 4392 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 4393 | S: Maintained |
679655da | 4394 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4395 | |
1202d6ff | 4396 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4397 | M: Francois Romieu <[email protected]> |
4398 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
4399 | L: [email protected] |
4400 | S: Maintained | |
7443713a | 4401 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4402 | |
4480f15b | 4403 | IPATH DRIVER |
8473c603 | 4404 | M: Mike Marciniszyn <[email protected]> |
e6cc0fd1 | 4405 | L: [email protected] |
52a09a04 | 4406 | S: Maintained |
679655da | 4407 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4408 | |
4409ebe9 | 4409 | IPMI SUBSYSTEM |
8b58be88 | 4410 | M: Corey Minyard <[email protected]> |
b0c90653 | 4411 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
4412 | W: http://openipmi.sourceforge.net/ |
4413 | S: Supported | |
679655da JP |
4414 | F: Documentation/IPMI.txt |
4415 | F: drivers/char/ipmi/ | |
4416 | F: include/linux/ipmi* | |
c117ab84 | 4417 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4418 | |
e2d1d6c0 | 4419 | IPS SCSI RAID DRIVER |
8b58be88 | 4420 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
4421 | L: [email protected] |
4422 | W: http://www.adaptec.com/ | |
4423 | S: Maintained | |
679655da | 4424 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4425 | |
4426 | IPVS | |
8b58be88 JP |
4427 | M: Wensong Zhang <[email protected]> |
4428 | M: Simon Horman <[email protected]> | |
4429 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 4430 | L: [email protected] |
e2d1d6c0 | 4431 | L: [email protected] |
1da177e4 | 4432 | S: Maintained |
679655da | 4433 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4434 | F: include/net/ip_vs.h |
c117ab84 | 4435 | F: include/uapi/linux/ip_vs.h |
679655da | 4436 | F: net/netfilter/ipvs/ |
1da177e4 | 4437 | |
e7839f25 | 4438 | IPWIRELESS DRIVER |
8b58be88 JP |
4439 | M: Jiri Kosina <[email protected]> |
4440 | M: David Sterba <[email protected]> | |
92094aa0 | 4441 | S: Odd Fixes |
282361a0 | 4442 | F: drivers/tty/ipwireless/ |
099dc4fb | 4443 | |
e2d1d6c0 | 4444 | IPX NETWORK LAYER |
8b58be88 | 4445 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
4446 | L: [email protected] |
4447 | S: Maintained | |
679655da | 4448 | F: include/net/ipx.h |
c117ab84 | 4449 | F: include/uapi/linux/ipx.h |
679655da | 4450 | F: net/ipx/ |
e2d1d6c0 | 4451 | |
1da177e4 | 4452 | IRDA SUBSYSTEM |
8b58be88 | 4453 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 4454 | L: [email protected] (subscribers-only) |
ced649ea | 4455 | L: [email protected] |
1da177e4 | 4456 | W: http://irda.sourceforge.net/ |
f353976d | 4457 | S: Maintained |
e0057975 | 4458 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4459 | F: Documentation/networking/irda.txt |
4460 | F: drivers/net/irda/ | |
4461 | F: include/net/irda/ | |
4462 | F: net/irda/ | |
1da177e4 | 4463 | |
a800c7cc TG |
4464 | IRQ SUBSYSTEM |
4465 | M: Thomas Gleixner <[email protected]> | |
4466 | S: Maintained | |
75fc2d37 | 4467 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4468 | F: kernel/irq/ |
edd96900 | 4469 | F: drivers/irqchip/ |
a800c7cc | 4470 | |
7ab3a837 GL |
4471 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4472 | M: Benjamin Herrenschmidt <[email protected]> | |
7ab3a837 GL |
4473 | S: Maintained |
4474 | F: Documentation/IRQ-domain.txt | |
4475 | F: include/linux/irqdomain.h | |
4476 | F: kernel/irq/irqdomain.c | |
4477 | ||
e2d1d6c0 | 4478 | ISAPNP |
8b58be88 | 4479 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 4480 | S: Maintained |
679655da JP |
4481 | F: Documentation/isapnp.txt |
4482 | F: drivers/pnp/isapnp/ | |
4483 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4484 | |
d39b8420 HV |
4485 | ISA RADIO MODULE |
4486 | M: Hans Verkuil <[email protected]> | |
4487 | L: [email protected] | |
4488 | T: git git://linuxtv.org/media_tree.git | |
4489 | W: http://linuxtv.org | |
4490 | S: Maintained | |
4491 | F: drivers/media/radio/radio-isa* | |
4492 | ||
71a6d0af HW |
4493 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4494 | M: Peter Jones <[email protected]> | |
4495 | M: Konrad Rzeszutek Wilk <[email protected]> | |
4496 | S: Maintained | |
4497 | F: drivers/firmware/iscsi_ibft* | |
4498 | ||
14816b1e | 4499 | ISCSI |
8b58be88 | 4500 | M: Mike Christie <[email protected]> |
14816b1e MC |
4501 | L: [email protected] |
4502 | W: www.open-iscsi.org | |
54e5881d | 4503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4504 | S: Maintained |
679655da JP |
4505 | F: drivers/scsi/*iscsi* |
4506 | F: include/scsi/*iscsi* | |
14816b1e | 4507 | |
1e65eb42 OG |
4508 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4509 | M: Or Gerlitz <[email protected]> | |
4510 | M: Roi Dayan <[email protected]> | |
4511 | L: [email protected] | |
4512 | S: Supported | |
4513 | W: http://www.openfabrics.org | |
4514 | W: www.open-iscsi.org | |
4515 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
4516 | F: drivers/infiniband/ulp/iser | |
4517 | ||
1da177e4 | 4518 | ISDN SUBSYSTEM |
8b58be88 | 4519 | M: Karsten Keil <[email protected]> |
d5d52273 | 4520 | L: [email protected] (subscribers-only) |
3da0ae62 | 4521 | L: [email protected] |
1da177e4 | 4522 | W: http://www.isdn4linux.de |
54e5881d | 4523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4524 | S: Maintained |
679655da JP |
4525 | F: Documentation/isdn/ |
4526 | F: drivers/isdn/ | |
4527 | F: include/linux/isdn.h | |
4528 | F: include/linux/isdn/ | |
c117ab84 CEB |
4529 | F: include/uapi/linux/isdn.h |
4530 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4531 | |
4532 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4533 | M: Armin Schindler <[email protected]> |
d5d52273 | 4534 | L: [email protected] (subscribers-only) |
1da177e4 LT |
4535 | W: http://www.melware.de |
4536 | S: Maintained | |
679655da | 4537 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4538 | |
d624870f JD |
4539 | IT87 HARDWARE MONITORING DRIVER |
4540 | M: Jean Delvare <[email protected]> | |
4541 | L: [email protected] | |
4542 | S: Maintained | |
4543 | F: Documentation/hwmon/it87 | |
4544 | F: drivers/hwmon/it87.c | |
4545 | ||
68620bdd MP |
4546 | IT913X MEDIA DRIVER |
4547 | M: Malcolm Priestley <[email protected]> | |
4548 | L: [email protected] | |
4549 | W: http://linuxtv.org/ | |
4550 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4551 | S: Maintained | |
4552 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4553 | ||
4554 | IT913X FE MEDIA DRIVER | |
4555 | M: Malcolm Priestley <[email protected]> | |
4556 | L: [email protected] | |
4557 | W: http://linuxtv.org/ | |
4558 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4559 | S: Maintained | |
4560 | F: drivers/media/dvb-frontends/it913x-fe* | |
4561 | ||
d7104bff AP |
4562 | IT913X MEDIA DRIVER |
4563 | M: Antti Palosaari <[email protected]> | |
4564 | L: [email protected] | |
4565 | W: http://linuxtv.org/ | |
4566 | W: http://palosaari.fi/linux/ | |
4567 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4568 | T: git git://linuxtv.org/anttip/media_tree.git | |
4569 | S: Maintained | |
4570 | F: drivers/media/tuners/it913x* | |
4571 | ||
91821ff3 | 4572 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4573 | M: Andy Walls <[email protected]> |
c4240509 | 4574 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 4575 | L: [email protected] |
275ffde4 | 4576 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4577 | W: http://www.ivtvdriver.org |
4578 | S: Maintained | |
679655da | 4579 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4580 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4581 | F: include/uapi/linux/ivtv* |
91821ff3 | 4582 | |
68620bdd MP |
4583 | IX2505V MEDIA DRIVER |
4584 | M: Malcolm Priestley <[email protected]> | |
4585 | L: [email protected] | |
4586 | W: http://linuxtv.org/ | |
4587 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4588 | S: Maintained | |
4589 | F: drivers/media/dvb-frontends/ix2505v* | |
4590 | ||
4453d736 GR |
4591 | JC42.4 TEMPERATURE SENSOR DRIVER |
4592 | M: Guenter Roeck <[email protected]> | |
4593 | L: [email protected] | |
4594 | S: Maintained | |
4595 | F: drivers/hwmon/jc42.c | |
4596 | F: Documentation/hwmon/jc42 | |
4597 | ||
e2d1d6c0 | 4598 | JFS FILESYSTEM |
3256f80f | 4599 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
4600 | L: [email protected] |
4601 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4602 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4603 | S: Maintained |
679655da JP |
4604 | F: Documentation/filesystems/jfs.txt |
4605 | F: fs/jfs/ | |
e2d1d6c0 | 4606 | |
95252236 | 4607 | JME NETWORK DRIVER |
8b58be88 | 4608 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
4609 | L: [email protected] |
4610 | S: Maintained | |
63d24a0e | 4611 | F: drivers/net/ethernet/jme.* |
95252236 | 4612 | |
1da177e4 | 4613 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4614 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
4615 | L: [email protected] |
4616 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4617 | S: Maintained |
679655da | 4618 | F: fs/jffs2/ |
c117ab84 | 4619 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4620 | |
de456d37 | 4621 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4622 | M: Andrew Morton <[email protected]> |
19003c18 | 4623 | M: Jan Kara <[email protected]> |
72be2ccf | 4624 | L: [email protected] |
ae0718f8 | 4625 | S: Maintained |
d183e11a | 4626 | F: fs/jbd/ |
d183e11a TT |
4627 | F: include/linux/jbd.h |
4628 | ||
4629 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4630 | M: "Theodore Ts'o" <[email protected]> | |
4631 | L: [email protected] | |
4632 | S: Maintained | |
4633 | F: fs/jbd2/ | |
4634 | F: include/linux/jbd2.h | |
ae0718f8 | 4635 | |
fd8b6cb4 | 4636 | JSM Neo PCI based serial card |
9d141cb9 | 4637 | M: Thadeu Lima de Souza Cascardo <[email protected]> |
fd8b6cb4 BL |
4638 | L: [email protected] |
4639 | S: Maintained | |
df621252 | 4640 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4641 | |
af39917d CL |
4642 | K10TEMP HARDWARE MONITORING DRIVER |
4643 | M: Clemens Ladisch <[email protected]> | |
4644 | L: [email protected] | |
4645 | S: Maintained | |
4646 | F: Documentation/hwmon/k10temp | |
4647 | F: drivers/hwmon/k10temp.c | |
4648 | ||
4660cb35 | 4649 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4650 | M: Rudolf Marek <[email protected]> |
4660cb35 | 4651 | L: [email protected] |
ae0718f8 | 4652 | S: Maintained |
679655da JP |
4653 | F: Documentation/hwmon/k8temp |
4654 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4655 | |
1da177e4 | 4656 | KCONFIG |
76ce94a3 | 4657 | M: Michal Marek <[email protected]> |
347d12d7 | 4658 | L: [email protected] |
76ce94a3 | 4659 | S: Odd Fixes |
679655da JP |
4660 | F: Documentation/kbuild/kconfig-language.txt |
4661 | F: scripts/kconfig/ | |
1da177e4 | 4662 | |
ea6c2089 | 4663 | KDUMP |
8b58be88 JP |
4664 | M: Vivek Goyal <[email protected]> |
4665 | M: Haren Myneni <[email protected]> | |
34633993 | 4666 | L: [email protected] |
ea6c2089 VG |
4667 | W: http://lse.sourceforge.net/kdump/ |
4668 | S: Maintained | |
80811493 | 4669 | F: Documentation/kdump/ |
ea6c2089 | 4670 | |
f41bf02f HV |
4671 | KEENE FM RADIO TRANSMITTER DRIVER |
4672 | M: Hans Verkuil <[email protected]> | |
4673 | L: [email protected] | |
4674 | T: git git://linuxtv.org/media_tree.git | |
4675 | W: http://linuxtv.org | |
4676 | S: Maintained | |
4677 | F: drivers/media/radio/radio-keene* | |
4678 | ||
1da177e4 | 4679 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4680 | M: Ian Kent <[email protected]> |
f694fc97 | 4681 | L: [email protected] |
1da177e4 | 4682 | S: Maintained |
679655da | 4683 | F: fs/autofs4/ |
1da177e4 | 4684 | |
70fb7ba6 | 4685 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4686 | M: Michal Marek <[email protected]> |
08deed1e JP |
4687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4689 | L: [email protected] |
5ce45962 | 4690 | S: Maintained |
679655da JP |
4691 | F: Documentation/kbuild/ |
4692 | F: Makefile | |
4693 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4694 | F: scripts/basic/ |
4695 | F: scripts/mk* | |
4696 | F: scripts/package/ | |
1da177e4 LT |
4697 | |
4698 | KERNEL JANITORS | |
c3000e03 | 4699 | L: [email protected] |
10466f5a | 4700 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4701 | S: Odd Fixes |
1da177e4 | 4702 | |
e8b43555 | 4703 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4704 | M: "J. Bruce Fields" <[email protected]> |
16141c02 | 4705 | L: [email protected] |
1da177e4 | 4706 | W: http://nfs.sourceforge.net/ |
98fac23f | 4707 | S: Supported |
679655da JP |
4708 | F: fs/nfsd/ |
4709 | F: include/linux/nfsd/ | |
c117ab84 | 4710 | F: include/uapi/linux/nfsd/ |
679655da JP |
4711 | F: fs/lockd/ |
4712 | F: fs/nfs_common/ | |
4713 | F: net/sunrpc/ | |
4714 | F: include/linux/lockd/ | |
4715 | F: include/linux/sunrpc/ | |
c117ab84 | 4716 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4717 | |
426d62e2 | 4718 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4719 | M: Gleb Natapov <[email protected]> |
c93a64fe | 4720 | M: Paolo Bonzini <[email protected]> |
1fc9d2bf | 4721 | L: [email protected] |
c93a64fe | 4722 | W: http://linux-kvm.org |
426d62e2 | 4723 | S: Supported |
c93a64fe PB |
4724 | F: Documentation/*/kvm*.txt |
4725 | F: Documentation/virtual/kvm/ | |
679655da JP |
4726 | F: arch/*/kvm/ |
4727 | F: arch/*/include/asm/kvm* | |
4728 | F: include/linux/kvm* | |
c117ab84 | 4729 | F: include/uapi/linux/kvm* |
679655da | 4730 | F: virt/kvm/ |
426d62e2 | 4731 | |
ad8003d3 | 4732 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4733 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
4734 | L: [email protected] |
4735 | W: http://kvm.qumranet.com | |
7de609c8 | 4736 | S: Maintained |
679655da | 4737 | F: arch/x86/include/asm/svm.h |
679655da | 4738 | F: arch/x86/kvm/svm.c |
426d62e2 | 4739 | |
513014b7 | 4740 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4741 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
4742 | L: [email protected] |
4743 | W: http://kvm.qumranet.com | |
6a7f972d | 4744 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4745 | S: Supported |
679655da JP |
4746 | F: arch/powerpc/include/asm/kvm* |
4747 | F: arch/powerpc/kvm/ | |
513014b7 | 4748 | |
1fc9d2bf | 4749 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4750 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
4751 | L: [email protected] |
4752 | W: http://kvm.qumranet.com | |
920ed9f1 | 4753 | S: Supported |
679655da JP |
4754 | F: Documentation/ia64/kvm.txt |
4755 | F: arch/ia64/include/asm/kvm* | |
4756 | F: arch/ia64/kvm/ | |
920ed9f1 | 4757 | |
85f8fffe | 4758 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4759 | M: Christian Borntraeger <[email protected]> |
4ae57b6c | 4760 | M: Cornelia Huck <[email protected]> |
85f8fffe CB |
4761 | M: [email protected] |
4762 | L: [email protected] | |
4763 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4764 | S: Supported | |
679655da JP |
4765 | F: Documentation/s390/kvm.txt |
4766 | F: arch/s390/include/asm/kvm* | |
80811493 | 4767 | F: arch/s390/kvm/ |
a968cd3e | 4768 | F: drivers/s390/kvm/ |
85f8fffe | 4769 | |
a749474d | 4770 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 4771 | M: Christoffer Dall <[email protected]> |
a749474d CD |
4772 | L: [email protected] |
4773 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 4774 | S: Supported |
a749474d CD |
4775 | F: arch/arm/include/uapi/asm/kvm* |
4776 | F: arch/arm/include/asm/kvm* | |
4777 | F: arch/arm/kvm/ | |
4778 | ||
6394a3ec MZ |
4779 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4780 | M: Marc Zyngier <[email protected]> | |
4781 | L: [email protected] (moderated for non-subscribers) | |
4782 | L: [email protected] | |
4783 | S: Maintained | |
4784 | F: arch/arm64/include/uapi/asm/kvm* | |
4785 | F: arch/arm64/include/asm/kvm* | |
4786 | F: arch/arm64/kvm/ | |
4787 | ||
dc009d92 | 4788 | KEXEC |
8b58be88 | 4789 | M: Eric Biederman <[email protected]> |
2f327dad | 4790 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4791 | L: [email protected] |
dc009d92 | 4792 | S: Maintained |
679655da | 4793 | F: include/linux/kexec.h |
c117ab84 | 4794 | F: include/uapi/linux/kexec.h |
679655da | 4795 | F: kernel/kexec.c |
dc009d92 | 4796 | |
e971461f DH |
4797 | KEYS/KEYRINGS: |
4798 | M: David Howells <[email protected]> | |
4799 | L: [email protected] | |
4800 | S: Maintained | |
d410fa4e | 4801 | F: Documentation/security/keys.txt |
e971461f DH |
4802 | F: include/linux/key.h |
4803 | F: include/linux/key-type.h | |
4804 | F: include/keys/ | |
4805 | F: security/keys/ | |
4806 | ||
7f3c68be MZ |
4807 | KEYS-TRUSTED |
4808 | M: David Safford <[email protected]> | |
4809 | M: Mimi Zohar <[email protected]> | |
4810 | L: [email protected] | |
4811 | L: [email protected] | |
4812 | S: Supported | |
d410fa4e | 4813 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4814 | F: include/keys/trusted-type.h |
4815 | F: security/keys/trusted.c | |
4816 | F: security/keys/trusted.h | |
4817 | ||
4818 | KEYS-ENCRYPTED | |
4819 | M: Mimi Zohar <[email protected]> | |
4820 | M: David Safford <[email protected]> | |
4821 | L: [email protected] | |
4822 | L: [email protected] | |
4823 | S: Supported | |
d410fa4e | 4824 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4825 | F: include/keys/encrypted-type.h |
19c90aa6 | 4826 | F: security/keys/encrypted-keys/ |
7f3c68be | 4827 | |
5b778dad | 4828 | KGDB / KDB /debug_core |
8b58be88 | 4829 | M: Jason Wessel <[email protected]> |
4063eb5f | 4830 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4831 | L: [email protected] |
4832 | S: Maintained | |
679655da JP |
4833 | F: Documentation/DocBook/kgdb.tmpl |
4834 | F: drivers/misc/kgdbts.c | |
df621252 | 4835 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4836 | F: include/linux/kdb.h |
679655da | 4837 | F: include/linux/kgdb.h |
4063eb5f | 4838 | F: kernel/debug/ |
e3e2aaf7 | 4839 | |
456db8cc | 4840 | KMEMCHECK |
8b58be88 | 4841 | M: Vegard Nossum <[email protected]> |
2ed1c525 | 4842 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 4843 | S: Maintained |
410d7a97 JP |
4844 | F: Documentation/kmemcheck.txt |
4845 | F: arch/x86/include/asm/kmemcheck.h | |
4846 | F: arch/x86/mm/kmemcheck/ | |
4847 | F: include/linux/kmemcheck.h | |
4848 | F: mm/kmemcheck.c | |
b9ce08c0 | 4849 | |
c3bb4d24 | 4850 | KMEMLEAK |
8b58be88 | 4851 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
4852 | S: Maintained |
4853 | F: Documentation/kmemleak.txt | |
4854 | F: include/linux/kmemleak.h | |
4855 | F: mm/kmemleak.c | |
4856 | F: mm/kmemleak-test.c | |
4857 | ||
89559a61 | 4858 | KPROBES |
8b58be88 JP |
4859 | M: Ananth N Mavinakayanahalli <[email protected]> |
4860 | M: Anil S Keshavamurthy <[email protected]> | |
4861 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 4862 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 4863 | S: Maintained |
679655da JP |
4864 | F: Documentation/kprobes.txt |
4865 | F: include/linux/kprobes.h | |
4866 | F: kernel/kprobes.c | |
89559a61 | 4867 | |
70e84049 | 4868 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4869 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
4870 | W: http://miguelojeda.es/auxdisplay.htm |
4871 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4872 | S: Maintained |
679655da JP |
4873 | F: Documentation/auxdisplay/ks0108 |
4874 | F: drivers/auxdisplay/ks0108.c | |
4875 | F: include/linux/ks0108.h | |
70e84049 | 4876 | |
1da177e4 | 4877 | LAPB module |
1da177e4 | 4878 | L: [email protected] |
bf9915cc | 4879 | S: Orphan |
679655da JP |
4880 | F: Documentation/networking/lapb-module.txt |
4881 | F: include/*/lapb.h | |
4882 | F: net/lapb/ | |
1da177e4 LT |
4883 | |
4884 | LASI 53c700 driver for PARISC | |
8b58be88 | 4885 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4886 | L: [email protected] |
4887 | S: Maintained | |
679655da JP |
4888 | F: Documentation/scsi/53c700.txt |
4889 | F: drivers/scsi/53c700* | |
1da177e4 | 4890 | |
263de9b5 | 4891 | LED SUBSYSTEM |
c772fc26 | 4892 | M: Bryan Wu <[email protected]> |
8b58be88 | 4893 | M: Richard Purdie <[email protected]> |
aa69cb8c BW |
4894 | L: [email protected] |
4895 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4896 | S: Maintained |
679655da JP |
4897 | F: drivers/leds/ |
4898 | F: include/linux/leds.h | |
263de9b5 | 4899 | |
b0461a44 JD |
4900 | LEGACY EEPROM DRIVER |
4901 | M: Jean Delvare <[email protected]> | |
4902 | S: Maintained | |
4903 | F: Documentation/misc-devices/eeprom | |
4904 | F: drivers/misc/eeprom/eeprom.c | |
4905 | ||
1da177e4 | 4906 | LEGO USB Tower driver |
8b58be88 | 4907 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
4908 | L: [email protected] |
4909 | W: http://legousb.sourceforge.net/ | |
4910 | S: Maintained | |
679655da | 4911 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4912 | |
055616a8 MK |
4913 | LG2160 MEDIA DRIVER |
4914 | M: Michael Krufky <[email protected]> | |
4915 | L: [email protected] | |
4916 | W: http://linuxtv.org/ | |
4917 | W: http://github.com/mkrufky | |
4918 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4919 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4920 | S: Maintained | |
4921 | F: drivers/media/dvb-frontends/lg2160.* | |
4922 | ||
6f0e7725 MK |
4923 | LGDT3305 MEDIA DRIVER |
4924 | M: Michael Krufky <[email protected]> | |
4925 | L: [email protected] | |
4926 | W: http://linuxtv.org/ | |
4927 | W: http://github.com/mkrufky | |
4928 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4929 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4930 | S: Maintained | |
4931 | F: drivers/media/dvb-frontends/lgdt3305.* | |
4932 | ||
568a17ff | 4933 | LGUEST |
8b58be88 | 4934 | M: Rusty Russell <[email protected]> |
a4724ed6 | 4935 | L: [email protected] |
568a17ff | 4936 | W: http://lguest.ozlabs.org/ |
72e91863 | 4937 | S: Odd Fixes |
070f420b | 4938 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
4939 | F: arch/x86/lguest/ |
4940 | F: drivers/lguest/ | |
4941 | F: include/linux/lguest*.h | |
070f420b | 4942 | F: tools/lguest/ |
568a17ff | 4943 | |
1da177e4 | 4944 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 4945 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
4946 | W: http://www.ibm.com/linux/ltc/projects/ppc |
4947 | S: Supported | |
11c34c7d | 4948 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 4949 | |
852bb9f5 | 4950 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
4951 | M: Benjamin Herrenschmidt <[email protected]> |
4952 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 4953 | W: http://www.penguinppc.org/ |
a4724ed6 | 4954 | L: [email protected] |
8a6e2535 | 4955 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 4956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 4957 | S: Supported |
11c34c7d JP |
4958 | F: Documentation/powerpc/ |
4959 | F: arch/powerpc/ | |
1da177e4 LT |
4960 | |
4961 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 4962 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 4963 | W: http://www.penguinppc.org/ |
a4724ed6 | 4964 | L: [email protected] |
1da177e4 | 4965 | S: Maintained |
11c34c7d JP |
4966 | F: arch/powerpc/platforms/powermac/ |
4967 | F: drivers/macintosh/ | |
1da177e4 | 4968 | |
77a76369 | 4969 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 4970 | M: Anatolij Gustschin <[email protected]> |
a4724ed6 | 4971 | L: [email protected] |
a149507b | 4972 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 4973 | S: Maintained |
11c34c7d JP |
4974 | F: arch/powerpc/platforms/512x/ |
4975 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
4976 | |
4977 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 4978 | M: Josh Boyer <[email protected]> |
8b58be88 | 4979 | M: Matt Porter <[email protected]> |
1da177e4 | 4980 | W: http://www.penguinppc.org/ |
a4724ed6 | 4981 | L: [email protected] |
645609c0 | 4982 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 4983 | S: Maintained |
11c34c7d JP |
4984 | F: arch/powerpc/platforms/40x/ |
4985 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 4986 | |
260c02a9 | 4987 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 4988 | L: [email protected] |
cdeb8994 | 4989 | S: Orphan |
11c34c7d JP |
4990 | F: arch/powerpc/*/*virtex* |
4991 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 4992 | |
e93adf1e | 4993 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
4994 | M: Vitaly Bordug <[email protected]> |
4995 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 4996 | W: http://www.penguinppc.org/ |
a4724ed6 | 4997 | L: [email protected] |
e93adf1e | 4998 | S: Maintained |
a2b1f7c8 | 4999 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5000 | |
1da177e4 | 5001 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5002 | M: Kumar Gala <[email protected]> |
ce00f85c | 5003 | W: http://www.penguinppc.org/ |
a4724ed6 | 5004 | L: [email protected] |
ce00f85c | 5005 | S: Maintained |
11c34c7d | 5006 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5007 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5008 | |
ab06ff3a | 5009 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5010 | M: Olof Johansson <[email protected]> |
a4724ed6 | 5011 | L: [email protected] |
92e19709 | 5012 | S: Maintained |
11c34c7d JP |
5013 | F: arch/powerpc/platforms/pasemi/ |
5014 | F: drivers/*/*pasemi* | |
5015 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5016 | |
1da177e4 | 5017 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5018 | M: Chris Wright <[email protected]> |
1a4520be | 5019 | L: [email protected] |
1da177e4 LT |
5020 | S: Supported |
5021 | ||
a23ce6da HW |
5022 | LIS3LV02D ACCELEROMETER DRIVER |
5023 | M: Eric Piel <[email protected]> | |
5024 | S: Maintained | |
ff606677 JD |
5025 | F: Documentation/misc-devices/lis3lv02d |
5026 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5027 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5028 | |
e2d1d6c0 | 5029 | LLC (802.2) |
8b58be88 | 5030 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 5031 | S: Maintained |
679655da | 5032 | F: include/linux/llc.h |
c117ab84 | 5033 | F: include/uapi/linux/llc.h |
679655da JP |
5034 | F: include/net/llc* |
5035 | F: net/llc/ | |
e2d1d6c0 | 5036 | |
4e233cbe AD |
5037 | LM73 HARDWARE MONITOR DRIVER |
5038 | M: Guillaume Ligneul <[email protected]> | |
5039 | L: [email protected] | |
5040 | S: Maintained | |
5041 | F: drivers/hwmon/lm73.c | |
5042 | ||
156e2d1a JD |
5043 | LM78 HARDWARE MONITOR DRIVER |
5044 | M: Jean Delvare <[email protected]> | |
5045 | L: [email protected] | |
5046 | S: Maintained | |
5047 | F: Documentation/hwmon/lm78 | |
5048 | F: drivers/hwmon/lm78.c | |
5049 | ||
1da177e4 | 5050 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5051 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5052 | L: [email protected] |
1da177e4 | 5053 | S: Maintained |
679655da JP |
5054 | F: Documentation/hwmon/lm83 |
5055 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5056 | |
5057 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5058 | M: Jean Delvare <[email protected]> |
cc0b07ed | 5059 | L: [email protected] |
1da177e4 | 5060 | S: Maintained |
679655da JP |
5061 | F: Documentation/hwmon/lm90 |
5062 | F: drivers/hwmon/lm90.c | |
1da177e4 | 5063 | |
917cc4e6 GR |
5064 | LM95234 HARDWARE MONITOR DRIVER |
5065 | M: Guenter Roeck <[email protected]> | |
5066 | L: [email protected] | |
5067 | S: Maintained | |
5068 | F: Documentation/hwmon/lm95234 | |
5069 | F: drivers/hwmon/lm95234.c | |
5070 | ||
68620bdd MP |
5071 | LME2510 MEDIA DRIVER |
5072 | M: Malcolm Priestley <[email protected]> | |
5073 | L: [email protected] | |
5074 | W: http://linuxtv.org/ | |
5075 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5076 | S: Maintained | |
5077 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5078 | ||
512e67f9 | 5079 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5080 | M: Peter Zijlstra <[email protected]> |
5081 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 5082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5083 | S: Maintained |
679655da JP |
5084 | F: Documentation/lockdep*.txt |
5085 | F: Documentation/lockstat.txt | |
5086 | F: include/linux/lockdep.h | |
5087 | F: kernel/lockdep* | |
512e67f9 | 5088 | |
dde33348 | 5089 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5090 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
5091 | L: [email protected] |
5092 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5093 | S: Maintained |
679655da | 5094 | F: Documentation/ldm.txt |
20d16fef | 5095 | F: block/partitions/ldm.* |
1da177e4 | 5096 | |
ef6ada3d JE |
5097 | LogFS |
5098 | M: Joern Engel <[email protected]> | |
756ccb3c | 5099 | M: Prasad Joshi <[email protected]> |
ef6ada3d JE |
5100 | L: [email protected] |
5101 | W: logfs.org | |
5102 | S: Maintained | |
5103 | F: fs/logfs/ | |
5104 | ||
b62d7946 RS |
5105 | LPC32XX MACHINE SUPPORT |
5106 | M: Roland Stigge <[email protected]> | |
5107 | L: [email protected] (moderated for non-subscribers) | |
5108 | S: Maintained | |
5109 | F: arch/arm/mach-lpc32xx/ | |
5110 | ||
c87e34ef | 5111 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5112 | M: Nagalakshmi Nandigama <[email protected]> |
5113 | M: Sreekanth Reddy <[email protected]> | |
d8a82d7b | 5114 | M: [email protected] |
cec744fb | 5115 | L: [email protected] |
c87e34ef MED |
5116 | L: [email protected] |
5117 | W: http://www.lsilogic.com/support | |
5118 | S: Supported | |
679655da | 5119 | F: drivers/message/fusion/ |
500c152a | 5120 | F: drivers/scsi/mpt2sas/ |
5121 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5122 | |
1da177e4 | 5123 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5124 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
5125 | L: [email protected] |
5126 | S: Maintained | |
679655da | 5127 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5128 | |
e5f5c99a GR |
5129 | LTC4261 HARDWARE MONITOR DRIVER |
5130 | M: Guenter Roeck <[email protected]> | |
5131 | L: [email protected] | |
5132 | S: Maintained | |
5133 | F: Documentation/hwmon/ltc4261 | |
5134 | F: drivers/hwmon/ltc4261.c | |
5135 | ||
81365c31 | 5136 | LTP (Linux Test Project) |
7d1ae8a8 | 5137 | M: Shubham Goyal <[email protected]> |
28b8e8d4 | 5138 | M: Mike Frysinger <[email protected]> |
7d1ae8a8 WG |
5139 | M: Cyril Hrubis <[email protected]> |
5140 | M: Caspar Zhang <[email protected]> | |
5141 | M: Wanlong Gao <[email protected]> | |
81365c31 MF |
5142 | L: [email protected] (subscribers-only) |
5143 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5144 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5145 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5146 | S: Maintained |
5147 | ||
c12a54b3 | 5148 | M32R ARCHITECTURE |
8b58be88 | 5149 | M: Hirokazu Takata <[email protected]> |
0d89e54c | 5150 | L: [email protected] (moderated for non-subscribers) |
c12a54b3 HT |
5151 | L: [email protected] (in Japanese) |
5152 | W: http://www.linux-m32r.org/ | |
5153 | S: Maintained | |
679655da | 5154 | F: arch/m32r/ |
c12a54b3 | 5155 | |
1da177e4 | 5156 | M68K ARCHITECTURE |
8b58be88 | 5157 | M: Geert Uytterhoeven <[email protected]> |
1da177e4 LT |
5158 | L: [email protected] |
5159 | W: http://www.linux-m68k.org/ | |
54e5881d | 5160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5161 | S: Maintained |
679655da | 5162 | F: arch/m68k/ |
9db35182 | 5163 | F: drivers/zorro/ |
1da177e4 LT |
5164 | |
5165 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5166 | M: Joshua Thompson <[email protected]> |
1da177e4 | 5167 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5168 | L: [email protected] |
1da177e4 | 5169 | S: Maintained |
9db35182 | 5170 | F: arch/m68k/mac/ |
1da177e4 LT |
5171 | |
5172 | M68K ON HP9000/300 | |
8b58be88 | 5173 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
5174 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5175 | S: Maintained | |
679655da | 5176 | F: arch/m68k/hp300/ |
1da177e4 | 5177 | |
68620bdd MP |
5178 | M88RS2000 MEDIA DRIVER |
5179 | M: Malcolm Priestley <[email protected]> | |
5180 | L: [email protected] | |
5181 | W: http://linuxtv.org/ | |
5182 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5183 | S: Maintained | |
5184 | F: drivers/media/dvb-frontends/m88rs2000* | |
5185 | ||
07a092fa AK |
5186 | MA901 MASTERKIT USB FM RADIO DRIVER |
5187 | M: Alexey Klimov <[email protected]> | |
5188 | L: [email protected] | |
5189 | T: git git://linuxtv.org/media_tree.git | |
5190 | S: Maintained | |
5191 | F: drivers/media/radio/radio-ma901.c | |
5192 | ||
64a327a7 | 5193 | MAC80211 |
8b58be88 | 5194 | M: Johannes Berg <[email protected]> |
64a327a7 | 5195 | L: [email protected] |
491b26b4 | 5196 | W: http://wireless.kernel.org/ |
ce466579 JB |
5197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5199 | S: Maintained |
679655da JP |
5200 | F: Documentation/networking/mac80211-injection.txt |
5201 | F: include/net/mac80211.h | |
5202 | F: net/mac80211/ | |
64a327a7 | 5203 | |
1036d864 | 5204 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5205 | M: Stefano Brivio <[email protected]> |
5206 | M: Mattias Nissler <[email protected]> | |
1036d864 | 5207 | L: [email protected] |
491b26b4 | 5208 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5209 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5211 | S: Maintained |
679655da | 5212 | F: net/mac80211/rc80211_pid* |
1036d864 | 5213 | |
b863ceb7 | 5214 | MACVLAN DRIVER |
8b58be88 | 5215 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
5216 | L: [email protected] |
5217 | S: Maintained | |
679655da JP |
5218 | F: drivers/net/macvlan.c |
5219 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5220 | |
faf1668c | 5221 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5222 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 5223 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5224 | L: [email protected] |
1b53dc74 | 5225 | S: Maintained |
faf1668c | 5226 | |
44c14c1d | 5227 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5228 | M: Mirko Lindner <[email protected]> | |
adbbf69d | 5229 | M: Stephen Hemminger <[email protected]> |
44c14c1d | 5230 | L: [email protected] |
5231 | S: Maintained | |
5232 | F: drivers/net/ethernet/marvell/sk* | |
5233 | ||
74cda169 | 5234 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5235 | L: [email protected] |
8ac3e99e | 5236 | S: Orphan |
679655da | 5237 | F: drivers/net/wireless/libertas/ |
74cda169 | 5238 | |
b60d6975 | 5239 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 5240 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 5241 | L: [email protected] |
f5ca8502 | 5242 | S: Maintained |
527a6266 | 5243 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5244 | F: include/linux/mv643xx.h |
1da177e4 | 5245 | |
370b8ed9 TP |
5246 | MARVELL MVNETA ETHERNET DRIVER |
5247 | M: Thomas Petazzoni <[email protected]> | |
5248 | L: [email protected] | |
5249 | S: Maintained | |
5250 | F: drivers/net/ethernet/marvell/mvneta.* | |
5251 | ||
fcad584d BZ |
5252 | MARVELL MWIFIEX WIRELESS DRIVER |
5253 | M: Bing Zhao <[email protected]> | |
5254 | L: [email protected] | |
5255 | S: Maintained | |
5256 | F: drivers/net/wireless/mwifiex/ | |
5257 | ||
a2c3f656 | 5258 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5259 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 5260 | L: [email protected] |
16345910 | 5261 | S: Odd Fixes |
a2c3f656 LB |
5262 | F: drivers/net/wireless/mwl8k.c |
5263 | ||
2a69567b | 5264 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5265 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5266 | S: Odd Fixes |
1fa7e547 | 5267 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5268 | |
1da177e4 | 5269 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5270 | L: [email protected] |
52653199 | 5271 | S: Orphan |
679655da | 5272 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5273 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5274 | |
ca462085 GR |
5275 | MAX16065 HARDWARE MONITOR DRIVER |
5276 | M: Guenter Roeck <[email protected]> | |
5277 | L: [email protected] | |
5278 | S: Maintained | |
5279 | F: Documentation/hwmon/max16065 | |
5280 | F: drivers/hwmon/max16065.c | |
5281 | ||
d20620de | 5282 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5283 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
5284 | L: [email protected] |
5285 | S: Maintained | |
679655da JP |
5286 | F: Documentation/hwmon/max6650 |
5287 | F: drivers/hwmon/max6650.c | |
d20620de | 5288 | |
e89ab51f GR |
5289 | MAX6697 HARDWARE MONITOR DRIVER |
5290 | M: Guenter Roeck <[email protected]> | |
5291 | L: [email protected] | |
5292 | S: Maintained | |
5293 | F: Documentation/hwmon/max6697 | |
5294 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5295 | F: drivers/hwmon/max6697.c | |
5296 | F: include/linux/platform_data/max6697.h | |
5297 | ||
9be3c9a5 HV |
5298 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5299 | M: Hans Verkuil <[email protected]> | |
5300 | L: [email protected] | |
5301 | T: git git://linuxtv.org/media_tree.git | |
5302 | W: http://linuxtv.org | |
5303 | S: Maintained | |
5304 | F: drivers/media/radio/radio-maxiradio* | |
5305 | ||
127c49ae | 5306 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5307 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
5308 | P: LinuxTV.org Project |
5309 | L: [email protected] | |
5310 | W: http://linuxtv.org | |
8a6e2535 | 5311 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5312 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5313 | S: Maintained |
5314 | F: Documentation/dvb/ | |
5315 | F: Documentation/video4linux/ | |
ffe06198 | 5316 | F: Documentation/DocBook/media/ |
127c49ae | 5317 | F: drivers/media/ |
ffe06198 | 5318 | F: drivers/staging/media/ |
127c49ae | 5319 | F: include/media/ |
6c0f0359 MCC |
5320 | F: include/uapi/linux/dvb/ |
5321 | F: include/uapi/linux/videodev2.h | |
5322 | F: include/uapi/linux/media.h | |
5323 | F: include/uapi/linux/v4l2-* | |
5324 | F: include/uapi/linux/meye.h | |
5325 | F: include/uapi/linux/ivtv* | |
5326 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5327 | |
6149a936 HV |
5328 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5329 | M: Hans Verkuil <[email protected]> | |
5330 | L: [email protected] | |
5331 | T: git git://linuxtv.org/media_tree.git | |
5332 | W: http://linuxtv.org | |
5333 | S: Odd Fixes | |
5334 | F: drivers/media/parport/pms* | |
5335 | ||
757e0108 | 5336 | MEGARAID SCSI DRIVERS |
8b58be88 | 5337 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 5338 | L: [email protected] |
ce00f85c JC |
5339 | W: http://megaraid.lsilogic.com |
5340 | S: Maintained | |
679655da JP |
5341 | F: Documentation/scsi/megaraid.txt |
5342 | F: drivers/scsi/megaraid.* | |
5343 | F: drivers/scsi/megaraid/ | |
757e0108 | 5344 | |
2c46c9d5 AV |
5345 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5346 | M: Amir Vadai <[email protected]> | |
5347 | L: [email protected] | |
5348 | S: Supported | |
5349 | W: http://www.mellanox.com | |
5350 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5351 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5352 | ||
70ea91f1 SR |
5353 | MEMORY MANAGEMENT |
5354 | L: [email protected] | |
70ea91f1 SR |
5355 | W: http://www.linux-mm.org |
5356 | S: Maintained | |
679655da | 5357 | F: include/linux/mm.h |
551450bb CS |
5358 | F: include/linux/gfp.h |
5359 | F: include/linux/mmzone.h | |
5360 | F: include/linux/memory_hotplug.h | |
5361 | F: include/linux/vmalloc.h | |
679655da | 5362 | F: mm/ |
70ea91f1 | 5363 | |
938a9204 | 5364 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5365 | M: Johannes Weiner <[email protected]> |
5366 | M: Michal Hocko <[email protected]> | |
185e595f | 5367 | M: Balbir Singh <[email protected]> |
8b58be88 | 5368 | M: KAMEZAWA Hiroyuki <[email protected]> |
12340313 | 5369 | L: [email protected] |
938a9204 | 5370 | L: [email protected] |
938a9204 | 5371 | S: Maintained |
679655da | 5372 | F: mm/memcontrol.c |
4e4c941c | 5373 | F: mm/page_cgroup.c |
938a9204 | 5374 | |
f4e9ce66 | 5375 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5376 | M: David Woodhouse <[email protected]> |
1da177e4 | 5377 | L: [email protected] |
8a6e2535 JP |
5378 | W: http://www.linux-mtd.infradead.org/ |
5379 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5380 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5381 | S: Maintained |
679655da JP |
5382 | F: drivers/mtd/ |
5383 | F: include/linux/mtd/ | |
c117ab84 | 5384 | F: include/uapi/mtd/ |
1da177e4 | 5385 | |
26c57ef1 JT |
5386 | MEN A21 WATCHDOG DRIVER |
5387 | M: Johannes Thumshirn <[email protected]> | |
5388 | L: [email protected] | |
5389 | S: Supported | |
5390 | F: drivers/watchdog/mena21_wdt.c | |
5391 | ||
12285945 JH |
5392 | METAG ARCHITECTURE |
5393 | M: James Hogan <[email protected]> | |
5394 | S: Supported | |
5395 | F: arch/metag/ | |
5396 | F: Documentation/metag/ | |
5397 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5398 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5399 | F: drivers/irqchip/irq-metag.c |
5400 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5401 | F: drivers/tty/metag_da.c |
5402 | F: fs/imgdafs/ | |
12285945 | 5403 | |
c6375b0a | 5404 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5405 | M: Michal Simek <[email protected]> |
f3cb0e31 | 5406 | L: [email protected] (moderated for non-subscribers) |
c6375b0a MS |
5407 | W: http://www.monstr.eu/fdt/ |
5408 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5409 | S: Supported | |
0a8c7914 | 5410 | F: arch/microblaze/ |
1da177e4 LT |
5411 | |
5412 | MICROTEK X6 SCANNER | |
61eee9a7 | 5413 | M: Oliver Neukum <[email protected]> |
1da177e4 | 5414 | S: Maintained |
679655da | 5415 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5416 | |
5417 | MIPS | |
8b58be88 | 5418 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5419 | L: [email protected] |
6097050d | 5420 | W: http://www.linux-mips.org/ |
b05e988e | 5421 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5422 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5423 | S: Supported |
679655da JP |
5424 | F: Documentation/mips/ |
5425 | F: arch/mips/ | |
1da177e4 | 5426 | |
08b7620a HV |
5427 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5428 | M: Hans Verkuil <[email protected]> | |
5429 | L: [email protected] | |
5430 | T: git git://linuxtv.org/media_tree.git | |
5431 | W: http://linuxtv.org | |
5432 | S: Odd Fixes | |
5433 | F: drivers/media/radio/radio-miropcm20* | |
5434 | ||
e126ba97 EC |
5435 | Mellanox MLX5 core VPI driver |
5436 | M: Eli Cohen <[email protected]> | |
5437 | L: [email protected] | |
5438 | L: [email protected] | |
5439 | W: http://www.mellanox.com | |
5440 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5441 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5442 | T: git://openfabrics.org/~eli/connect-ib.git | |
5443 | S: Supported | |
5444 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5445 | F: include/linux/mlx5/ | |
5446 | ||
5447 | Mellanox MLX5 IB driver | |
5448 | M: Eli Cohen <[email protected]> | |
5449 | L: [email protected] | |
5450 | W: http://www.mellanox.com | |
5451 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5452 | T: git://openfabrics.org/~eli/connect-ib.git | |
5453 | S: Supported | |
5454 | F: include/linux/mlx5/ | |
5455 | F: drivers/infiniband/hw/mlx5/ | |
5456 | ||
1da177e4 | 5457 | MODULE SUPPORT |
8b58be88 | 5458 | M: Rusty Russell <[email protected]> |
1da177e4 | 5459 | S: Maintained |
679655da JP |
5460 | F: include/linux/module.h |
5461 | F: kernel/module.c | |
1da177e4 LT |
5462 | |
5463 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5464 | W: http://popies.net/meye/ |
b7788e13 | 5465 | S: Orphan |
679655da | 5466 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5467 | F: drivers/media/pci/meye/ |
6c0f0359 | 5468 | F: include/uapi/linux/meye.h |
1da177e4 | 5469 | |
b9705b60 | 5470 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5471 | M: Jiri Slaby <[email protected]> |
d735410a | 5472 | S: Maintained |
679655da | 5473 | F: Documentation/serial/moxa-smartio |
c897401b | 5474 | F: drivers/tty/mxser.* |
d735410a | 5475 | |
889b2f87 AK |
5476 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5477 | M: Alexey Klimov <[email protected]> | |
5478 | L: [email protected] | |
5479 | T: git git://linuxtv.org/media_tree.git | |
5480 | S: Maintained | |
5481 | F: drivers/media/radio/radio-mr800.c | |
5482 | ||
8c4c731a | 5483 | MSI LAPTOP SUPPORT |
182ae55c | 5484 | M: "Lee, Chun-Yi" <[email protected]> |
d0944853 | 5485 | L: [email protected] |
8c4c731a | 5486 | S: Maintained |
679655da | 5487 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5488 | |
0f1006b1 AA |
5489 | MSI WMI SUPPORT |
5490 | M: Anisse Astier <[email protected]> | |
d0944853 | 5491 | L: [email protected] |
0f1006b1 AA |
5492 | S: Supported |
5493 | F: drivers/platform/x86/msi-wmi.c | |
5494 | ||
0e837fb9 LP |
5495 | MT9M032 SENSOR DRIVER |
5496 | M: Laurent Pinchart <[email protected]> | |
5497 | L: [email protected] | |
5498 | T: git git://linuxtv.org/media_tree.git | |
5499 | S: Maintained | |
5500 | F: drivers/media/i2c/mt9m032.c | |
5501 | F: include/media/mt9m032.h | |
5502 | ||
5503 | MT9P031 SENSOR DRIVER | |
5504 | M: Laurent Pinchart <[email protected]> | |
5505 | L: [email protected] | |
5506 | T: git git://linuxtv.org/media_tree.git | |
5507 | S: Maintained | |
5508 | F: drivers/media/i2c/mt9p031.c | |
5509 | F: include/media/mt9p031.h | |
5510 | ||
5511 | MT9T001 SENSOR DRIVER | |
5512 | M: Laurent Pinchart <[email protected]> | |
5513 | L: [email protected] | |
5514 | T: git git://linuxtv.org/media_tree.git | |
5515 | S: Maintained | |
5516 | F: drivers/media/i2c/mt9t001.c | |
5517 | F: include/media/mt9t001.h | |
5518 | ||
5519 | MT9V032 SENSOR DRIVER | |
5520 | M: Laurent Pinchart <[email protected]> | |
5521 | L: [email protected] | |
5522 | T: git git://linuxtv.org/media_tree.git | |
5523 | S: Maintained | |
5524 | F: drivers/media/i2c/mt9v032.c | |
5525 | F: include/media/mt9v032.h | |
5526 | ||
4e0d13cb | 5527 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5528 | M: Samuel Ortiz <[email protected]> |
f7d3210e SO |
5529 | M: Lee Jones <[email protected]> |
5530 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5531 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5532 | S: Supported |
679655da | 5533 | F: drivers/mfd/ |
55b5940d | 5534 | F: include/linux/mfd/ |
4e0d13cb | 5535 | |
5c4e6f13 | 5536 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5537 | M: Chris Ball <[email protected]> |
b2503a94 | 5538 | L: [email protected] |
245feaa6 CB |
5539 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5540 | S: Maintained | |
679655da JP |
5541 | F: drivers/mmc/ |
5542 | F: include/linux/mmc/ | |
c117ab84 | 5543 | F: include/uapi/linux/mmc/ |
baca2da4 | 5544 | |
15a0580c | 5545 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5546 | S: Orphan |
679655da JP |
5547 | F: drivers/mmc/host/mmc_spi.c |
5548 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5549 | |
1da177e4 | 5550 | MULTISOUND SOUND DRIVER |
8b58be88 | 5551 | M: Andrew Veliath <[email protected]> |
1da177e4 | 5552 | S: Maintained |
679655da JP |
5553 | F: Documentation/sound/oss/MultiSound |
5554 | F: sound/oss/msnd* | |
1da177e4 | 5555 | |
d735410a | 5556 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5557 | S: Orphan |
c897401b | 5558 | F: drivers/tty/isicom.c |
679655da | 5559 | F: include/linux/isicom.h |
d735410a | 5560 | |
550a7375 | 5561 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5562 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 5563 | L: [email protected] |
43b416e5 | 5564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5565 | S: Maintained |
679655da | 5566 | F: drivers/usb/musb/ |
550a7375 | 5567 | |
ea0af5f6 MK |
5568 | MXL5007T MEDIA DRIVER |
5569 | M: Michael Krufky <[email protected]> | |
5570 | L: [email protected] | |
5571 | W: http://linuxtv.org/ | |
5572 | W: http://github.com/mkrufky | |
5573 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5574 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5575 | S: Maintained | |
5576 | F: drivers/media/tuners/mxl5007t.* | |
5577 | ||
2d3cf588 | 5578 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5579 | M: Hyong-Youb Kim <[email protected]> |
2d3cf588 | 5580 | L: [email protected] |
205057ae | 5581 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5582 | S: Supported |
93f7848b | 5583 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5584 | |
1da177e4 | 5585 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5586 | S: Orphan |
d9fb9f38 | 5587 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5588 | |
23dc05a3 DM |
5589 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5590 | M: Daniel Mack <[email protected]> | |
5591 | S: Maintained | |
5592 | L: [email protected] | |
5593 | W: http://www.native-instruments.com | |
5594 | F: sound/usb/caiaq/ | |
5595 | ||
1da177e4 | 5596 | NCP FILESYSTEM |
52653199 PV |
5597 | M: Petr Vandrovec <[email protected]> |
5598 | S: Odd Fixes | |
679655da | 5599 | F: fs/ncpfs/ |
1da177e4 LT |
5600 | |
5601 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5602 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
5603 | L: [email protected] |
5604 | S: Maintained | |
679655da | 5605 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5606 | |
4aa3eb4c GR |
5607 | NCT6775 HARDWARE MONITOR DRIVER |
5608 | M: Guenter Roeck <[email protected]> | |
5609 | L: [email protected] | |
5610 | S: Maintained | |
5611 | F: Documentation/hwmon/nct6775 | |
5612 | F: drivers/hwmon/nct6775.c | |
5613 | ||
3c2d774c | 5614 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5615 | M: Faisal Latif <[email protected]> |
e6cc0fd1 | 5616 | L: [email protected] |
e3d33cb1 | 5617 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5618 | S: Supported |
5619 | F: drivers/infiniband/hw/nes/ | |
5620 | ||
be2f2e84 | 5621 | NETEM NETWORK EMULATOR |
adbbf69d | 5622 | M: Stephen Hemminger <[email protected]> |
f318a63b | 5623 | L: [email protected] |
be2f2e84 | 5624 | S: Maintained |
679655da | 5625 | F: net/sched/sch_netem.c |
be2f2e84 | 5626 | |
b2f5a051 | 5627 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5628 | M: Jon Mason <[email protected]> |
4a58448b | 5629 | L: [email protected] |
4a58448b | 5630 | S: Supported |
679655da | 5631 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5632 | F: Documentation/networking/vxge.txt |
86387e1a | 5633 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5634 | |
42010ed0 | 5635 | NETFILTER/IPTABLES |
0e05e192 | 5636 | M: Pablo Neira Ayuso <[email protected]> |
8b58be88 | 5637 | M: Patrick McHardy <[email protected]> |
42010ed0 | 5638 | M: Jozsef Kadlecsik <[email protected]> |
1a03b81d PM |
5639 | L: [email protected] |
5640 | L: [email protected] | |
82b98543 | 5641 | L: [email protected] |
1da177e4 LT |
5642 | W: http://www.netfilter.org/ |
5643 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5644 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5645 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5647 | S: Supported |
679655da JP |
5648 | F: include/linux/netfilter* |
5649 | F: include/linux/netfilter/ | |
5650 | F: include/net/netfilter/ | |
c117ab84 CEB |
5651 | F: include/uapi/linux/netfilter* |
5652 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5653 | F: net/*/netfilter.c |
5654 | F: net/*/netfilter/ | |
5655 | F: net/netfilter/ | |
1da177e4 | 5656 | |
4cc67735 | 5657 | NETLABEL |
87a0874c | 5658 | M: Paul Moore <[email protected]> |
4cc67735 PM |
5659 | W: http://netlabel.sf.net |
5660 | L: [email protected] | |
87a0874c | 5661 | S: Maintained |
80811493 | 5662 | F: Documentation/netlabel/ |
679655da JP |
5663 | F: include/net/netlabel.h |
5664 | F: net/netlabel/ | |
4cc67735 | 5665 | |
1da177e4 | 5666 | NETROM NETWORK LAYER |
8b58be88 | 5667 | M: Ralf Baechle <[email protected]> |
1da177e4 | 5668 | L: [email protected] |
d34cb28a | 5669 | W: http://www.linux-ax25.org/ |
1da177e4 | 5670 | S: Maintained |
679655da | 5671 | F: include/net/netrom.h |
c117ab84 | 5672 | F: include/uapi/linux/netrom.h |
679655da | 5673 | F: net/netrom/ |
1da177e4 | 5674 | |
5ddb88c0 | 5675 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5676 | M: Paul Clements <[email protected]> |
1da177e4 | 5677 | S: Maintained |
5e4b269b | 5678 | L: [email protected] |
679655da JP |
5679 | F: Documentation/blockdev/nbd.txt |
5680 | F: drivers/block/nbd.c | |
5681 | F: include/linux/nbd.h | |
c117ab84 | 5682 | F: include/uapi/linux/nbd.h |
1da177e4 | 5683 | |
6e43650c NH |
5684 | NETWORK DROP MONITOR |
5685 | M: Neil Horman <[email protected]> | |
5686 | L: [email protected] | |
5687 | S: Maintained | |
5688 | W: https://fedorahosted.org/dropwatch/ | |
5689 | F: net/core/drop_monitor.c | |
5690 | ||
1da177e4 | 5691 | NETWORKING [GENERAL] |
8b58be88 | 5692 | M: "David S. Miller" <[email protected]> |
979b6c13 | 5693 | L: [email protected] |
b1e8fd54 | 5694 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5695 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5696 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5698 | S: Maintained |
679655da JP |
5699 | F: net/ |
5700 | F: include/net/ | |
018d21ed JP |
5701 | F: include/linux/in.h |
5702 | F: include/linux/net.h | |
5703 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5704 | F: include/uapi/linux/in.h |
5705 | F: include/uapi/linux/net.h | |
5706 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5707 | |
5708 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5709 | M: "David S. Miller" <[email protected]> |
5710 | M: Alexey Kuznetsov <[email protected]> | |
8b58be88 JP |
5711 | M: James Morris <[email protected]> |
5712 | M: Hideaki YOSHIFUJI <[email protected]> | |
5713 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 5714 | L: [email protected] |
08deed1e | 5715 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5716 | S: Maintained |
679655da JP |
5717 | F: net/ipv4/ |
5718 | F: net/ipv6/ | |
5719 | F: include/net/ip* | |
0a14842f | 5720 | F: arch/x86/net/* |
1da177e4 | 5721 | |
73b7656c DM |
5722 | NETWORKING [IPSEC] |
5723 | M: Steffen Klassert <[email protected]> | |
5724 | M: Herbert Xu <[email protected]> | |
5725 | M: "David S. Miller" <[email protected]> | |
5726 | L: [email protected] | |
5727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5728 | S: Maintained | |
5729 | F: net/xfrm/ | |
5730 | F: net/key/ | |
5731 | F: net/ipv4/xfrm* | |
5732 | F: net/ipv6/xfrm* | |
5733 | F: include/uapi/linux/xfrm.h | |
5734 | F: include/net/xfrm.h | |
5735 | ||
10e2ff1c | 5736 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5737 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
5738 | L: [email protected] |
5739 | S: Maintained | |
5740 | ||
29f8f632 | 5741 | NETWORKING [WIRELESS] |
8b58be88 | 5742 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 5743 | L: [email protected] |
8a6e2535 | 5744 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5745 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5746 | S: Maintained |
34b921cf JP |
5747 | F: net/mac80211/ |
5748 | F: net/rfkill/ | |
679655da JP |
5749 | F: net/wireless/ |
5750 | F: include/net/ieee80211* | |
cc8b4a2b | 5751 | F: include/linux/wireless.h |
c117ab84 | 5752 | F: include/uapi/linux/wireless.h |
c984e24d | 5753 | F: include/net/iw_handler.h |
34b921cf | 5754 | F: drivers/net/wireless/ |
29f8f632 | 5755 | |
788873ac JP |
5756 | NETWORKING DRIVERS |
5757 | L: [email protected] | |
5758 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5759 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5760 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5761 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5762 | S: Odd Fixes |
5763 | F: drivers/net/ | |
018d21ed | 5764 | F: include/linux/if_* |
0b63bf1f JD |
5765 | F: include/linux/netdevice.h |
5766 | F: include/linux/arcdevice.h | |
5767 | F: include/linux/etherdevice.h | |
5768 | F: include/linux/fcdevice.h | |
5769 | F: include/linux/fddidevice.h | |
5770 | F: include/linux/hippidevice.h | |
5771 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5772 | F: include/uapi/linux/if_* |
5773 | F: include/uapi/linux/netdevice.h | |
788873ac | 5774 | |
3d396eb1 | 5775 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5776 | M: Manish Chopra <[email protected]> |
83c07dde AKS |
5777 | M: Sony Chacko <[email protected]> |
5778 | M: Rajesh Borundia <[email protected]> | |
3d396eb1 | 5779 | L: [email protected] |
9c2b5bde | 5780 | W: http://www.qlogic.com |
3d396eb1 | 5781 | S: Supported |
aa43c215 | 5782 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5783 | |
6423d30f AAJ |
5784 | NFC SUBSYSTEM |
5785 | M: Lauro Ramos Venancio <[email protected]> | |
5786 | M: Aloisio Almeida Jr <[email protected]> | |
5787 | M: Samuel Ortiz <[email protected]> | |
5788 | L: [email protected] | |
5adf54de | 5789 | L: [email protected] (moderated for non-subscribers) |
6423d30f AAJ |
5790 | S: Maintained |
5791 | F: net/nfc/ | |
55eb94f9 | 5792 | F: include/net/nfc/ |
c117ab84 | 5793 | F: include/uapi/linux/nfc.h |
6423d30f | 5794 | F: drivers/nfc/ |
08eaa1e0 | 5795 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5796 | |
e8b43555 | 5797 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5798 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
5799 | L: [email protected] |
5800 | W: http://client.linux-nfs.org | |
5801 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5802 | S: Maintained |
679655da JP |
5803 | F: fs/lockd/ |
5804 | F: fs/nfs/ | |
5805 | F: fs/nfs_common/ | |
5806 | F: net/sunrpc/ | |
5807 | F: include/linux/lockd/ | |
5808 | F: include/linux/nfs* | |
5809 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5810 | F: include/uapi/linux/nfs* |
5811 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5812 | |
85ef9cea | 5813 | NILFS2 FILESYSTEM |
8b58be88 | 5814 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 5815 | L: [email protected] |
85ef9cea | 5816 | W: http://www.nilfs.org/en/ |
af1761f2 | 5817 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5818 | S: Supported |
679655da JP |
5819 | F: Documentation/filesystems/nilfs2.txt |
5820 | F: fs/nilfs2/ | |
5821 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5822 | |
1da177e4 | 5823 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5824 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
5825 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5826 | S: Maintained | |
679655da JP |
5827 | F: Documentation/scsi/NinjaSCSI.txt |
5828 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5829 | |
5830 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5831 | M: GOTO Masanori <[email protected]> |
5832 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
5833 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5834 | S: Maintained | |
679655da JP |
5835 | F: Documentation/scsi/NinjaSCSI.txt |
5836 | F: drivers/scsi/nsp32* | |
1da177e4 | 5837 | |
fce8a7bb JM |
5838 | NTB DRIVER |
5839 | M: Jon Mason <[email protected]> | |
5840 | S: Supported | |
5841 | F: drivers/ntb/ | |
548c237c | 5842 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
5843 | F: include/linux/ntb.h |
5844 | ||
1da177e4 | 5845 | NTFS FILESYSTEM |
2818ef50 | 5846 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 5847 | L: [email protected] |
2818ef50 | 5848 | W: http://www.tuxera.com/ |
e6f4dee7 | 5849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5850 | S: Supported |
679655da JP |
5851 | F: Documentation/filesystems/ntfs.txt |
5852 | F: fs/ntfs/ | |
1da177e4 | 5853 | |
9eb8ef74 | 5854 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5855 | M: Antonino Daplas <[email protected]> |
c69f677c | 5856 | L: [email protected] |
ce00f85c | 5857 | S: Maintained |
679655da JP |
5858 | F: drivers/video/riva/ |
5859 | F: drivers/video/nvidia/ | |
1da177e4 | 5860 | |
79461681 MW |
5861 | NVM EXPRESS DRIVER |
5862 | M: Matthew Wilcox <[email protected]> | |
5863 | L: [email protected] | |
5864 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
5865 | S: Supported | |
5be37bf9 | 5866 | F: drivers/block/nvme* |
79461681 MW |
5867 | F: include/linux/nvme.h |
5868 | ||
f5525786 | 5869 | OMAP SUPPORT |
0e24bdd4 | 5870 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
5871 | L: [email protected] |
5872 | W: http://www.muru.com/linux/omap/ | |
5873 | W: http://linux.omap.com/ | |
8a6e2535 | 5874 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5875 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5876 | S: Maintained |
4e04d5a3 | 5877 | F: arch/arm/*omap*/ |
046d0a37 JD |
5878 | F: drivers/i2c/busses/i2c-omap.c |
5879 | F: include/linux/i2c-omap.h | |
f5525786 | 5880 | |
50f29fbd TL |
5881 | OMAP DEVICE TREE SUPPORT |
5882 | M: Benoît Cousson <[email protected]> | |
5883 | M: Tony Lindgren <[email protected]> | |
5884 | L: [email protected] | |
d0fb18c5 | 5885 | L: [email protected] |
50f29fbd TL |
5886 | S: Maintained |
5887 | F: arch/arm/boot/dts/*omap* | |
5888 | F: arch/arm/boot/dts/*am3* | |
5889 | ||
f5525786 | 5890 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5891 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
5892 | L: [email protected] |
5893 | S: Maintained | |
5894 | F: arch/arm/*omap*/*clock* | |
5895 | ||
5896 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 5897 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
5898 | L: [email protected] |
5899 | S: Maintained | |
5900 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5901 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5902 | |
692ab1f3 PW |
5903 | OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT |
5904 | M: Rajendra Nayak <[email protected]> | |
5905 | M: Paul Walmsley <[email protected]> | |
5906 | L: [email protected] | |
5907 | S: Maintained | |
5908 | F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |
5909 | F: arch/arm/mach-omap2/powerdomain44xx.c | |
5910 | F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |
5911 | F: arch/arm/mach-omap2/clockdomain44xx.c | |
5912 | ||
f5525786 | 5913 | OMAP AUDIO SUPPORT |
6c284903 | 5914 | M: Peter Ujfalusi <[email protected]> |
7ec41ee5 | 5915 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
5916 | L: [email protected] (subscribers-only) |
5917 | L: [email protected] | |
5918 | S: Maintained | |
5919 | F: sound/soc/omap/ | |
5920 | ||
5921 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5922 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 5923 | L: [email protected] |
f5525786 TL |
5924 | L: [email protected] |
5925 | S: Maintained | |
5926 | F: drivers/video/omap/ | |
5927 | ||
676eec0d | 5928 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5929 | M: Tomi Valkeinen <[email protected]> |
178ff4c9 | 5930 | L: [email protected] |
676eec0d | 5931 | L: [email protected] |
178ff4c9 | 5932 | S: Maintained |
676eec0d | 5933 | F: drivers/video/omap2/ |
178ff4c9 TV |
5934 | F: Documentation/arm/OMAP/DSS |
5935 | ||
8b37fcfc OBC |
5936 | OMAP HARDWARE SPINLOCK SUPPORT |
5937 | M: Ohad Ben-Cohen <[email protected]> | |
5938 | L: [email protected] | |
5939 | S: Maintained | |
5940 | F: drivers/hwspinlock/omap_hwspinlock.c | |
5941 | F: arch/arm/mach-omap2/hwspinlock.c | |
5942 | ||
f5525786 | 5943 | OMAP MMC SUPPORT |
8b58be88 | 5944 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
5945 | L: [email protected] |
5946 | S: Maintained | |
653f41b5 MC |
5947 | F: drivers/mmc/host/omap.c |
5948 | ||
5949 | OMAP HS MMC SUPPORT | |
14006bfb | 5950 | M: Balaji T K <[email protected]> |
0a4585c6 | 5951 | L: [email protected] |
653f41b5 | 5952 | L: [email protected] |
0a4585c6 | 5953 | S: Maintained |
653f41b5 | 5954 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
5955 | |
5956 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 5957 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
5958 | S: Maintained |
5959 | F: drivers/char/hw_random/omap-rng.c | |
5960 | ||
f400c82e PW |
5961 | OMAP HWMOD SUPPORT |
5962 | M: Benoît Cousson <[email protected]> | |
5963 | M: Paul Walmsley <[email protected]> | |
5964 | L: [email protected] | |
5965 | S: Maintained | |
8fc8b12b | 5966 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
5967 | |
5968 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
5969 | M: Benoît Cousson <[email protected]> | |
5970 | L: [email protected] | |
5971 | S: Maintained | |
5972 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
5973 | ||
7e8970e1 LP |
5974 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
5975 | M: Laurent Pinchart <[email protected]> | |
5976 | L: [email protected] | |
5977 | S: Maintained | |
90d72ac6 | 5978 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 5979 | |
f5525786 | 5980 | OMAP USB SUPPORT |
f299470a | 5981 | M: Felipe Balbi <[email protected]> |
f5525786 TL |
5982 | L: [email protected] |
5983 | L: [email protected] | |
43b416e5 | 5984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 5985 | S: Maintained |
a16fbd65 JP |
5986 | F: drivers/usb/*/*omap* |
5987 | F: arch/arm/*omap*/usb* | |
f5525786 | 5988 | |
6d994710 KH |
5989 | OMAP GPIO DRIVER |
5990 | M: Santosh Shilimkar <[email protected]> | |
c69d72ae | 5991 | M: Kevin Hilman <[email protected]> |
6d994710 KH |
5992 | L: [email protected] |
5993 | S: Maintained | |
5994 | F: drivers/gpio/gpio-omap.c | |
5995 | ||
0ad122d9 | 5996 | OMFS FILESYSTEM |
8b58be88 | 5997 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
5998 | L: [email protected] |
5999 | S: Maintained | |
679655da JP |
6000 | F: Documentation/filesystems/omfs.txt |
6001 | F: fs/omfs/ | |
0ad122d9 | 6002 | |
c1986ee9 | 6003 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6004 | M: Harald Welte <[email protected]> |
c1986ee9 | 6005 | S: Maintained |
679655da JP |
6006 | F: drivers/char/pcmcia/cm4000_cs.c |
6007 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6008 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6009 | |
77c44ab1 | 6010 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6011 | M: Harald Welte <[email protected]> |
77c44ab1 | 6012 | S: Maintained |
679655da | 6013 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6014 | |
77d5140f | 6015 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6016 | M: Jonathan Corbet <[email protected]> |
661263b5 | 6017 | L: [email protected] |
275ffde4 | 6018 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6019 | S: Maintained |
90d72ac6 | 6020 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6021 | |
431bca73 | 6022 | ONENAND FLASH DRIVER |
8b58be88 | 6023 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
6024 | L: [email protected] |
6025 | S: Maintained | |
679655da JP |
6026 | F: drivers/mtd/onenand/ |
6027 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6028 | |
1da177e4 | 6029 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6030 | M: Willem Riede <[email protected]> |
1da177e4 LT |
6031 | L: [email protected] |
6032 | L: [email protected] | |
6033 | S: Maintained | |
f7269cfc JD |
6034 | F: Documentation/scsi/osst.txt |
6035 | F: drivers/scsi/osst.* | |
6036 | F: drivers/scsi/osst_*.h | |
6037 | F: drivers/scsi/st.h | |
1da177e4 | 6038 | |
e2d1d6c0 | 6039 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6040 | M: Peter Korsgaard <[email protected]> |
846557d3 | 6041 | L: [email protected] |
e2d1d6c0 | 6042 | S: Maintained |
679655da JP |
6043 | F: Documentation/i2c/busses/i2c-ocores |
6044 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6045 | |
860c44c1 | 6046 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6047 | M: Grant Likely <[email protected]> |
f910b831 | 6048 | M: Rob Herring <[email protected]> |
d0fb18c5 | 6049 | L: [email protected] |
860c44c1 | 6050 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6051 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6052 | S: Maintained |
f8828205 | 6053 | F: drivers/of/ |
860c44c1 | 6054 | F: include/linux/of*.h |
f8828205 | 6055 | F: scripts/dtc/ |
860c44c1 | 6056 | K: of_get_property |
d945fa0d | 6057 | K: of_match_table |
860c44c1 | 6058 | |
f8828205 GL |
6059 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6060 | M: Rob Herring <[email protected]> | |
6061 | M: Pawel Moll <[email protected]> | |
6062 | M: Mark Rutland <[email protected]> | |
6063 | M: Stephen Warren <[email protected]> | |
6064 | M: Ian Campbell <[email protected]> | |
6065 | L: [email protected] | |
6066 | S: Maintained | |
6067 | F: Documentation/devicetree/ | |
6068 | F: arch/*/boot/dts/ | |
6069 | F: include/dt-bindings/ | |
6070 | ||
19f9d392 JB |
6071 | OPENRISC ARCHITECTURE |
6072 | M: Jonas Bonn <[email protected]> | |
6073 | W: http://openrisc.net | |
eab7c1c0 | 6074 | L: [email protected] (moderated for non-subscribers) |
19f9d392 JB |
6075 | S: Maintained |
6076 | T: git git://openrisc.net/~jonas/linux | |
6077 | F: arch/openrisc | |
6078 | ||
ccb1352e JG |
6079 | OPENVSWITCH |
6080 | M: Jesse Gross <[email protected]> | |
6081 | L: [email protected] | |
6082 | W: http://openvswitch.org | |
6083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6084 | S: Maintained | |
6085 | F: net/openvswitch/ | |
6086 | ||
af39917d CL |
6087 | OPL4 DRIVER |
6088 | M: Clemens Ladisch <[email protected]> | |
6089 | L: [email protected] (moderated for non-subscribers) | |
6090 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6091 | S: Maintained | |
6092 | F: sound/drivers/opl4/ | |
6093 | ||
1da177e4 | 6094 | OPROFILE |
4cf7e718 | 6095 | M: Robert Richter <[email protected]> |
1da177e4 LT |
6096 | L: [email protected] |
6097 | S: Maintained | |
81c4a8a6 | 6098 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6099 | F: arch/*/oprofile/ |
6100 | F: drivers/oprofile/ | |
6101 | F: include/linux/oprofile.h | |
1da177e4 | 6102 | |
e2d1d6c0 | 6103 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6104 | M: Mark Fasheh <[email protected]> |
d6351db2 | 6105 | M: Joel Becker <[email protected]> |
e2d1d6c0 RD |
6106 | L: [email protected] (moderated for non-subscribers) |
6107 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6109 | S: Supported |
679655da JP |
6110 | F: Documentation/filesystems/ocfs2.txt |
6111 | F: Documentation/filesystems/dlmfs.txt | |
6112 | F: fs/ocfs2/ | |
e2d1d6c0 | 6113 | |
1da177e4 | 6114 | ORINOCO DRIVER |
724c6b35 | 6115 | L: [email protected] |
491b26b4 | 6116 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6117 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6118 | S: Orphan |
679655da | 6119 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6120 | |
42c55aa8 | 6121 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6122 | M: Boaz Harrosh <[email protected]> |
df4e33ad | 6123 | M: Benny Halevy <[email protected]> |
68274794 BH |
6124 | L: [email protected] |
6125 | W: http://open-osd.org | |
54e5881d | 6126 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6127 | S: Maintained |
42c55aa8 | 6128 | F: drivers/scsi/osd/ |
6b6f0b6c | 6129 | F: include/scsi/osd_* |
42c55aa8 | 6130 | F: fs/exofs/ |
68274794 | 6131 | |
e2d1d6c0 | 6132 | P54 WIRELESS DRIVER |
084cb0fe | 6133 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 6134 | L: [email protected] |
084cb0fe | 6135 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6136 | S: Maintained |
679655da | 6137 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6138 | |
f5cd7872 | 6139 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6140 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
6141 | L: [email protected] |
6142 | S: Maintained | |
ded19add | 6143 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6144 | |
beb58aa3 | 6145 | PA SEMI SMBUS DRIVER |
8b58be88 | 6146 | M: Olof Johansson <[email protected]> |
846557d3 | 6147 | L: [email protected] |
beb58aa3 | 6148 | S: Maintained |
679655da | 6149 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6150 | |
48fc267e SK |
6151 | PADATA PARALLEL EXECUTION MECHANISM |
6152 | M: Steffen Klassert <[email protected]> | |
48fc267e SK |
6153 | L: [email protected] |
6154 | S: Maintained | |
6155 | F: kernel/padata.c | |
6156 | F: include/linux/padata.h | |
6157 | F: Documentation/padata.txt | |
6158 | ||
709ee531 | 6159 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6160 | M: Harald Welte <[email protected]> |
d0944853 | 6161 | L: [email protected] |
709ee531 | 6162 | S: Maintained |
679655da | 6163 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6164 | |
368dd5ac | 6165 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6166 | M: David Howells <[email protected]> |
6167 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
6168 | L: [email protected] (moderated for non-subscribers) |
6169 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6170 | S: Maintained | |
679655da JP |
6171 | F: Documentation/mn10300/ |
6172 | F: arch/mn10300/ | |
4fa97181 | 6173 | |
1da177e4 | 6174 | PARALLEL PORT SUPPORT |
3dd1a329 | 6175 | L: [email protected] (subscribers-only) |
5fdc2abe | 6176 | S: Orphan |
679655da JP |
6177 | F: drivers/parport/ |
6178 | F: include/linux/parport*.h | |
6179 | F: drivers/char/ppdev.c | |
c117ab84 | 6180 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6181 | |
4cdf6bc2 | 6182 | PARAVIRT_OPS INTERFACE |
d633180c | 6183 | M: Jeremy Fitzhardinge <[email protected]> |
8b58be88 JP |
6184 | M: Chris Wright <[email protected]> |
6185 | M: Alok Kataria <[email protected]> | |
6186 | M: Rusty Russell <[email protected]> | |
c996d8b9 | 6187 | L: [email protected] |
4cdf6bc2 | 6188 | S: Supported |
679655da JP |
6189 | F: Documentation/ia64/paravirt_ops.txt |
6190 | F: arch/*/kernel/paravirt* | |
6191 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6192 | |
e2d1d6c0 | 6193 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6194 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
6195 | L: [email protected] (subscribers-only) |
6196 | W: http://www.torque.net/linux-pp.html | |
6197 | S: Maintained | |
679655da JP |
6198 | F: Documentation/blockdev/paride.txt |
6199 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6200 | |
6201 | PARISC ARCHITECTURE | |
b8828770 | 6202 | M: "James E.J. Bottomley" <[email protected]> |
b38a03b8 | 6203 | M: Helge Deller <[email protected]> |
e2d1d6c0 RD |
6204 | L: [email protected] |
6205 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6206 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6209 | S: Maintained |
679655da | 6210 | F: arch/parisc/ |
2b6bac9e | 6211 | F: Documentation/parisc/ |
679655da | 6212 | F: drivers/parisc/ |
2b6bac9e HD |
6213 | F: drivers/char/agp/parisc-agp.c |
6214 | F: drivers/input/serio/gscps2.c | |
6215 | F: drivers/parport/parport_gsc.* | |
6216 | F: drivers/tty/serial/8250/8250_gsc.c | |
6217 | F: drivers/video/sti* | |
6218 | F: drivers/video/console/sti* | |
6219 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6220 | |
1662d32c | 6221 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6222 | M: Jim Cromie <[email protected]> |
1662d32c JC |
6223 | L: [email protected] |
6224 | S: Maintained | |
679655da JP |
6225 | F: Documentation/hwmon/pc87360 |
6226 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6227 | |
6228 | PC8736x GPIO DRIVER | |
8b58be88 | 6229 | M: Jim Cromie <[email protected]> |
1662d32c | 6230 | S: Maintained |
679655da | 6231 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6232 | |
1ad107fd JD |
6233 | PC87427 HARDWARE MONITORING DRIVER |
6234 | M: Jean Delvare <[email protected]> | |
6235 | L: [email protected] | |
6236 | S: Maintained | |
6237 | F: Documentation/hwmon/pc87427 | |
6238 | F: drivers/hwmon/pc87427.c | |
6239 | ||
b26e0ed4 | 6240 | PCA9532 LED DRIVER |
8b58be88 | 6241 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 6242 | S: Maintained |
d5ca6918 JP |
6243 | F: drivers/leds/leds-pca9532.c |
6244 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6245 | |
5ce914a8 | 6246 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6247 | M: Guenter Roeck <[email protected]> |
5ce914a8 GR |
6248 | L: [email protected] |
6249 | S: Maintained | |
b4f0b74e | 6250 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6251 | |
3971dae5 | 6252 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6253 | M: Khalid Aziz <[email protected]> |
3971dae5 KA |
6254 | S: Maintained |
6255 | F: drivers/firmware/pcdp.* | |
6256 | ||
065c6359 | 6257 | PCI ERROR RECOVERY |
6305902c | 6258 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 6259 | L: [email protected] |
065c6359 | 6260 | S: Supported |
679655da | 6261 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6262 | |
1da177e4 | 6263 | PCI SUBSYSTEM |
5ac3a6d2 | 6264 | M: Bjorn Helgaas <[email protected]> |
2905474d | 6265 | L: [email protected] |
99662dd1 | 6266 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6268 | S: Supported |
679655da JP |
6269 | F: Documentation/PCI/ |
6270 | F: drivers/pci/ | |
6271 | F: include/linux/pci* | |
1da177e4 | 6272 | |
1da177e4 | 6273 | PCMCIA SUBSYSTEM |
4230dfc9 | 6274 | P: Linux PCMCIA Team |
f5df5881 | 6275 | L: [email protected] |
6650e0a5 | 6276 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6278 | S: Maintained |
679655da JP |
6279 | F: Documentation/pcmcia/ |
6280 | F: drivers/pcmcia/ | |
6281 | F: include/pcmcia/ | |
1da177e4 LT |
6282 | |
6283 | PCNET32 NETWORK DRIVER | |
227fb925 | 6284 | M: Don Fry <[email protected]> |
979b6c13 | 6285 | L: [email protected] |
1da177e4 | 6286 | S: Maintained |
b955f6ca | 6287 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6288 | |
48fc267e SK |
6289 | PCRYPT PARALLEL CRYPTO ENGINE |
6290 | M: Steffen Klassert <[email protected]> | |
6291 | L: [email protected] | |
6292 | S: Maintained | |
6293 | F: crypto/pcrypt.c | |
6294 | F: include/crypto/pcrypt.h | |
6295 | ||
e72df0b8 TH |
6296 | PER-CPU MEMORY ALLOCATOR |
6297 | M: Tejun Heo <[email protected]> | |
6298 | M: Christoph Lameter <[email protected]> | |
e72df0b8 TH |
6299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6300 | S: Maintained | |
6301 | F: include/linux/percpu*.h | |
6302 | F: mm/percpu*.c | |
6303 | F: arch/*/include/asm/percpu.h | |
6304 | ||
ad4ecbcb | 6305 | PER-TASK DELAY ACCOUNTING |
185e595f | 6306 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 6307 | S: Maintained |
679655da JP |
6308 | F: include/linux/delayacct.h |
6309 | F: kernel/delayacct.c | |
ad4ecbcb | 6310 | |
57c0c15b | 6311 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6312 | M: Peter Zijlstra <[email protected]> |
6313 | M: Paul Mackerras <[email protected]> | |
dd9b238c | 6314 | M: Ingo Molnar <[email protected]> |
4aafd3f7 | 6315 | M: Arnaldo Carvalho de Melo <[email protected]> |
75fc2d37 | 6316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6317 | S: Supported |
d53e8365 | 6318 | F: kernel/events/* |
a003236c | 6319 | F: include/linux/perf_event.h |
c117ab84 | 6320 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6321 | F: arch/*/kernel/perf_event*.c |
6322 | F: arch/*/kernel/*/perf_event*.c | |
6323 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6324 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6325 | F: arch/*/kernel/perf_callchain.c |
6326 | F: tools/perf/ | |
6c0b3244 | 6327 | |
dd49d0f5 | 6328 | PERSONALITY HANDLING |
8b58be88 | 6329 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
6330 | L: [email protected] |
6331 | S: Maintained | |
679655da | 6332 | F: include/linux/personality.h |
c117ab84 | 6333 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6334 | |
838e7a03 | 6335 | PHONET PROTOCOL |
2a06b40f | 6336 | M: Remi Denis-Courmont <[email protected]> |
838e7a03 RDC |
6337 | S: Supported |
6338 | F: Documentation/networking/phonet.txt | |
6339 | F: include/linux/phonet.h | |
6340 | F: include/net/phonet/ | |
c117ab84 | 6341 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6342 | F: net/phonet/ |
6343 | ||
1da177e4 | 6344 | PHRAM MTD DRIVER |
8b58be88 | 6345 | M: Joern Engel <[email protected]> |
1da177e4 LT |
6346 | L: [email protected] |
6347 | S: Maintained | |
679655da | 6348 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6349 | |
efdbb10e BP |
6350 | PICOLCD HID DRIVER |
6351 | M: Bruno Prémont <[email protected]> | |
6352 | L: [email protected] | |
6353 | S: Maintained | |
6354 | F: drivers/hid/hid-picolcd* | |
6355 | ||
a53bfa07 JI |
6356 | PICOXCELL SUPPORT |
6357 | M: Jamie Iles <[email protected]> | |
6358 | L: [email protected] (moderated for non-subscribers) | |
6359 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6360 | S: Supported | |
6361 | F: arch/arm/mach-picoxcell | |
6362 | F: drivers/*/picoxcell* | |
6363 | F: drivers/*/*/picoxcell* | |
6364 | ||
2744e8af LW |
6365 | PIN CONTROL SUBSYSTEM |
6366 | M: Linus Walleij <[email protected]> | |
6367 | S: Maintained | |
07f29ba6 | 6368 | F: drivers/pinctrl/ |
8e406fe4 | 6369 | F: include/linux/pinctrl/ |
2744e8af | 6370 | |
2201bbb8 JCPV |
6371 | PIN CONTROLLER - ATMEL AT91 |
6372 | M: Jean-Christophe Plagniol-Villard <[email protected]> | |
6373 | L: [email protected] (moderated for non-subscribers) | |
6374 | S: Maintained | |
6375 | F: drivers/pinctrl/pinctrl-at91.c | |
6376 | ||
b75e60d6 DA |
6377 | PIN CONTROLLER - SAMSUNG |
6378 | M: Tomasz Figa <[email protected]> | |
6379 | M: Thomas Abraham <[email protected]> | |
6380 | L: [email protected] (moderated for non-subscribers) | |
6381 | L: [email protected] (moderated for non-subscribers) | |
6382 | S: Maintained | |
6383 | F: drivers/pinctrl/pinctrl-exynos.* | |
6384 | F: drivers/pinctrl/pinctrl-s3c* | |
6385 | F: drivers/pinctrl/pinctrl-samsung.* | |
6386 | ||
deda8287 | 6387 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6388 | M: Viresh Kumar <[email protected]> |
deda8287 VK |
6389 | L: [email protected] |
6390 | L: [email protected] (moderated for non-subscribers) | |
6391 | W: http://www.st.com/spear | |
6392 | S: Maintained | |
8e406fe4 | 6393 | F: drivers/pinctrl/spear/ |
deda8287 | 6394 | |
249a6771 | 6395 | PKTCDVD DRIVER |
dbd47133 | 6396 | M: Jiri Kosina <[email protected]> |
249a6771 | 6397 | S: Maintained |
679655da JP |
6398 | F: drivers/block/pktcdvd.c |
6399 | F: include/linux/pktcdvd.h | |
c117ab84 | 6400 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6401 | |
b31d8273 G |
6402 | PKUNITY SOC DRIVERS |
6403 | M: Guan Xuetao <[email protected]> | |
6404 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6405 | S: Maintained | |
6406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6407 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6408 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6409 | F: drivers/video/fb-puv3.c |
2809e80b | 6410 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6411 | |
9d2ecfb7 | 6412 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6413 | M: Guenter Roeck <[email protected]> |
9d2ecfb7 GR |
6414 | L: [email protected] |
6415 | W: http://www.lm-sensors.org/ | |
6416 | W: http://www.roeck-us.net/linux/drivers/ | |
6417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6418 | S: Maintained | |
6419 | F: Documentation/hwmon/pmbus | |
6420 | F: drivers/hwmon/pmbus/ | |
6421 | F: include/linux/i2c/pmbus.h | |
6422 | ||
89a36810 | 6423 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6424 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
6425 | L: [email protected] |
6426 | W: http://www.pmc-sierra.com/ | |
6427 | S: Supported | |
6428 | F: drivers/scsi/pmcraid.* | |
6429 | ||
dbf9bfe6 | 6430 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6431 | M: [email protected] |
dbf9bfe6 | 6432 | M: [email protected] |
6433 | L: [email protected] | |
6434 | S: Supported | |
6435 | F: drivers/scsi/pm8001/ | |
6436 | ||
1da177e4 | 6437 | POSIX CLOCKS and TIMERS |
8b58be88 | 6438 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 6439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6440 | S: Supported |
679655da JP |
6441 | F: fs/timerfd.c |
6442 | F: include/linux/timer* | |
6443 | F: kernel/*timer* | |
1da177e4 | 6444 | |
3be86148 | 6445 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
9d5e2a02 | 6446 | M: Anton Vorontsov <[email protected]> |
8b58be88 | 6447 | M: David Woodhouse <[email protected]> |
54e5881d | 6448 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6449 | S: Maintained |
679655da | 6450 | F: include/linux/power_supply.h |
8cd725a1 | 6451 | F: drivers/power/ |
3be86148 | 6452 | |
1da177e4 | 6453 | PNP SUPPORT |
46a1f21a | 6454 | M: Rafael J. Wysocki <[email protected]> |
c2d197e8 | 6455 | M: Bjorn Helgaas <[email protected]> |
1da177e4 | 6456 | S: Maintained |
679655da | 6457 | F: drivers/pnp/ |
1da177e4 | 6458 | |
999445d4 | 6459 | PNXxxxx I2C DRIVER |
8b58be88 | 6460 | M: Vitaly Wool <[email protected]> |
846557d3 | 6461 | L: [email protected] |
999445d4 | 6462 | S: Maintained |
679655da | 6463 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6464 | |
1da177e4 | 6465 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6466 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
6467 | L: [email protected] |
6468 | S: Maintained | |
224cf5ad | 6469 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6470 | |
6471 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6472 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 6473 | S: Maintained |
679655da | 6474 | F: net/atm/pppoatm.c |
c117ab84 | 6475 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6476 | |
6477 | PPP OVER ETHERNET | |
8b58be88 | 6478 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 6479 | S: Maintained |
224cf5ad JK |
6480 | F: drivers/net/ppp/pppoe.c |
6481 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6482 | |
a6d2370b | 6483 | PPP OVER L2TP |
8b58be88 | 6484 | M: James Chapman <[email protected]> |
a6d2370b | 6485 | S: Maintained |
90ca28d1 | 6486 | F: net/l2tp/l2tp_ppp.c |
679655da | 6487 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6488 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6489 | |
eae9d2ba | 6490 | PPS SUPPORT |
8b58be88 | 6491 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
6492 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6493 | L: [email protected] (subscribers-only) | |
6494 | S: Maintained | |
cabaaf41 JP |
6495 | F: Documentation/pps/ |
6496 | F: drivers/pps/ | |
6497 | F: include/linux/pps*.h | |
eae9d2ba | 6498 | |
71a6d0af HW |
6499 | PPTP DRIVER |
6500 | M: Dmitry Kozlov <[email protected]> | |
6501 | L: [email protected] | |
6502 | S: Maintained | |
224cf5ad | 6503 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6504 | W: http://sourceforge.net/projects/accel-pptp |
6505 | ||
1da177e4 | 6506 | PREEMPTIBLE KERNEL |
8b58be88 | 6507 | M: Robert Love <[email protected]> |
1da177e4 LT |
6508 | L: [email protected] |
6509 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6510 | S: Supported | |
679655da JP |
6511 | F: Documentation/preempt-locking.txt |
6512 | F: include/linux/preempt.h | |
1da177e4 LT |
6513 | |
6514 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6515 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 6516 | L: [email protected] |
9ef80804 | 6517 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6518 | S: Obsolete |
679655da | 6519 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6520 | |
b3277dfa | 6521 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 6522 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
6523 | L: [email protected] |
6524 | S: Maintained | |
679655da | 6525 | F: drivers/ata/sata_promise.* |
b3277dfa | 6526 | |
02c18891 | 6527 | PS3 NETWORK SUPPORT |
b809b9ca | 6528 | M: Geoff Levand <[email protected]> |
02c18891 | 6529 | L: [email protected] |
a4724ed6 | 6530 | L: [email protected] |
b809b9ca | 6531 | S: Maintained |
8df158ac | 6532 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6533 | |
f58a9d17 | 6534 | PS3 PLATFORM SUPPORT |
b809b9ca | 6535 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
6536 | L: [email protected] |
6537 | L: [email protected] | |
b809b9ca | 6538 | S: Maintained |
679655da JP |
6539 | F: arch/powerpc/boot/ps3* |
6540 | F: arch/powerpc/include/asm/lv1call.h | |
6541 | F: arch/powerpc/include/asm/ps3*.h | |
6542 | F: arch/powerpc/platforms/ps3/ | |
6543 | F: drivers/*/ps3* | |
6544 | F: drivers/ps3/ | |
fec629b8 | 6545 | F: drivers/rtc/rtc-ps3.c |
679655da | 6546 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6547 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6548 | |
cffb4add | 6549 | PS3VRAM DRIVER |
8b58be88 | 6550 | M: Jim Paris <[email protected]> |
a4724ed6 | 6551 | L: [email protected] |
cffb4add | 6552 | S: Maintained |
8a3977cb | 6553 | F: drivers/block/ps3vram.c |
cffb4add | 6554 | |
8defe599 | 6555 | PSTORE FILESYSTEM |
9d5e2a02 | 6556 | M: Anton Vorontsov <[email protected]> |
8defe599 AV |
6557 | M: Colin Cross <[email protected]> |
6558 | M: Kees Cook <[email protected]> | |
6559 | M: Tony Luck <[email protected]> | |
6560 | S: Maintained | |
6561 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6562 | F: fs/pstore/ | |
6563 | F: include/linux/pstore* | |
04851772 | 6564 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6565 | F: drivers/acpi/apei/erst.c |
6566 | ||
7fbc415d RC |
6567 | PTP HARDWARE CLOCK SUPPORT |
6568 | M: Richard Cochran <[email protected]> | |
e7333e3c | 6569 | L: [email protected] |
7fbc415d RC |
6570 | S: Maintained |
6571 | W: http://linuxptp.sourceforge.net/ | |
6572 | F: Documentation/ABI/testing/sysfs-ptp | |
6573 | F: Documentation/ptp/* | |
0ecb3cdd | 6574 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6575 | F: drivers/net/phy/dp83640* |
6576 | F: drivers/ptp/* | |
6577 | F: include/linux/ptp_cl* | |
6578 | ||
cf94a4d1 | 6579 | PTRACE SUPPORT |
8b58be88 JP |
6580 | M: Roland McGrath <[email protected]> |
6581 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
6582 | S: Maintained |
6583 | F: include/asm-generic/syscall.h | |
6584 | F: include/linux/ptrace.h | |
6585 | F: include/linux/regset.h | |
6586 | F: include/linux/tracehook.h | |
c117ab84 | 6587 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6588 | F: kernel/ptrace.c |
6589 | ||
8320204a | 6590 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6591 | M: Mike Isely <[email protected]> |
16e9495d | 6592 | L: [email protected] (subscribers-only) |
661263b5 | 6593 | L: [email protected] |
8320204a | 6594 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6595 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6596 | S: Maintained |
679655da | 6597 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6598 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6599 | |
39532e6c HG |
6600 | PWC WEBCAM DRIVER |
6601 | M: Hans de Goede <[email protected]> | |
6602 | L: [email protected] | |
6603 | T: git git://linuxtv.org/media_tree.git | |
6604 | S: Maintained | |
6605 | F: drivers/media/usb/pwc/* | |
6606 | ||
200efedd | 6607 | PWM SUBSYSTEM |
aa3495f7 TR |
6608 | M: Thierry Reding <[email protected]> |
6609 | L: [email protected] | |
0c2498f1 | 6610 | S: Maintained |
200efedd TR |
6611 | W: http://gitorious.org/linux-pwm |
6612 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6613 | F: Documentation/pwm.txt | |
6614 | F: Documentation/devicetree/bindings/pwm/ | |
6615 | F: include/linux/pwm.h | |
0c2498f1 | 6616 | F: drivers/pwm/ |
a140b98d TR |
6617 | F: drivers/video/backlight/pwm_bl.c |
6618 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6619 | |
30ec261e | 6620 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6621 | M: Eric Miao <[email protected]> |
6622 | M: Russell King <[email protected]> | |
a323f664 | 6623 | M: Haojian Zhuang <[email protected]> |
efc03ecb | 6624 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6625 | T: git git://github.com/hzhuang1/linux.git |
6626 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6627 | S: Maintained |
679655da JP |
6628 | F: arch/arm/mach-pxa/ |
6629 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6630 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6631 | F: drivers/usb/gadget/pxa2* |
6632 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
6633 | F: sound/arm/pxa* |
6634 | F: sound/soc/pxa | |
1da177e4 | 6635 | |
3f640c61 | 6636 | MMP SUPPORT |
8b58be88 | 6637 | M: Eric Miao <[email protected]> |
a323f664 | 6638 | M: Haojian Zhuang <[email protected]> |
e8e6cb32 | 6639 | L: [email protected] (moderated for non-subscribers) |
3f640c61 HZ |
6640 | T: git git://github.com/hzhuang1/linux.git |
6641 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6642 | S: Maintained |
3f640c61 | 6643 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6644 | |
272f133a PO |
6645 | PXA MMCI DRIVER |
6646 | S: Orphan | |
6647 | ||
57f63bc8 | 6648 | PXA RTC DRIVER |
8b58be88 | 6649 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
6650 | L: [email protected] |
6651 | S: Maintained | |
6652 | ||
52a09a04 | 6653 | QIB DRIVER |
8473c603 | 6654 | M: Mike Marciniszyn <[email protected]> |
52a09a04 MM |
6655 | L: [email protected] |
6656 | S: Supported | |
6657 | F: drivers/infiniband/hw/qib/ | |
6658 | ||
5e9772b9 JS |
6659 | QLOGIC QLA1280 SCSI DRIVER |
6660 | M: Michael Reed <[email protected]> | |
6661 | L: [email protected] | |
6662 | S: Maintained | |
6663 | F: drivers/scsi/qla1280.[ch] | |
6664 | ||
1da177e4 | 6665 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6666 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 6667 | M: [email protected] |
1da177e4 LT |
6668 | L: [email protected] |
6669 | S: Supported | |
679655da JP |
6670 | F: Documentation/scsi/LICENSE.qla2xxx |
6671 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6672 | |
883c98fe RA |
6673 | QLOGIC QLA4XXX iSCSI DRIVER |
6674 | M: Ravi Anand <[email protected]> | |
6675 | M: Vikas Chaudhary <[email protected]> | |
6676 | M: [email protected] | |
6677 | L: [email protected] | |
6678 | S: Supported | |
6679 | F: drivers/scsi/qla4xxx/ | |
6680 | ||
5a4faa87 | 6681 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6682 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6683 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
6684 | M: [email protected] |
6685 | L: [email protected] | |
6686 | S: Supported | |
679655da | 6687 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6688 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6689 | |
0ec00f03 | 6690 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 6691 | M: Himanshu Madhani <[email protected]> |
195ca382 SC |
6692 | M: Rajesh Borundia <[email protected]> |
6693 | M: Shahed Shaikh <[email protected]> | |
2ab1c24b | 6694 | M: Jitendra Kalsaria <[email protected]> |
e987716b | 6695 | M: Sony Chacko <[email protected]> |
7ad031ee | 6696 | M: Sucheta Chakraborty <[email protected]> |
0ec00f03 AKS |
6697 | M: [email protected] |
6698 | L: [email protected] | |
6699 | S: Supported | |
aa43c215 | 6700 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6701 | |
c4e84bde | 6702 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6703 | M: Shahed Shaikh <[email protected]> |
b997d79a | 6704 | M: Jitendra Kalsaria <[email protected]> |
8b58be88 | 6705 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 6706 | M: [email protected] |
c4e84bde RM |
6707 | L: [email protected] |
6708 | S: Supported | |
aa43c215 | 6709 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6710 | |
1da177e4 | 6711 | QNX4 FILESYSTEM |
8b58be88 | 6712 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
6713 | W: http://www.alarsen.net/linux/qnx4fs/ |
6714 | S: Maintained | |
80811493 | 6715 | F: fs/qnx4/ |
c117ab84 CEB |
6716 | F: include/uapi/linux/qnx4_fs.h |
6717 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6718 | |
91952bc0 AP |
6719 | QT1010 MEDIA DRIVER |
6720 | M: Antti Palosaari <[email protected]> | |
6721 | L: [email protected] | |
6722 | W: http://linuxtv.org/ | |
6723 | W: http://palosaari.fi/linux/ | |
6724 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6725 | T: git git://linuxtv.org/anttip/media_tree.git | |
6726 | S: Maintained | |
6727 | F: drivers/media/tuners/qt1010* | |
6728 | ||
2ea0ffcb KV |
6729 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
6730 | M: Kalle Valo <[email protected]> | |
6731 | L: [email protected] | |
6732 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
6733 | T: git git://github.com/kvalo/ath.git | |
6734 | S: Supported | |
6735 | F: drivers/net/wireless/ath/ath10k/ | |
6736 | ||
4f4567cf RK |
6737 | QUALCOMM HEXAGON ARCHITECTURE |
6738 | M: Richard Kuo <[email protected]> | |
6739 | L: [email protected] | |
6740 | S: Supported | |
6741 | F: arch/hexagon/ | |
6742 | ||
35e3540b HV |
6743 | QUICKCAM PARALLEL PORT WEBCAMS |
6744 | M: Hans Verkuil <[email protected]> | |
6745 | L: [email protected] | |
6746 | T: git git://linuxtv.org/media_tree.git | |
6747 | W: http://linuxtv.org | |
6748 | S: Odd Fixes | |
6749 | F: drivers/media/parport/*-qcam* | |
6750 | ||
602adf40 | 6751 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6752 | M: Yehuda Sadeh <[email protected]> |
6753 | M: Sage Weil <[email protected]> | |
6754 | M: Alex Elder <[email protected]> | |
602adf40 | 6755 | M: [email protected] |
09d90327 SW |
6756 | W: http://ceph.com/ |
6757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6758 | S: Supported |
6759 | F: drivers/block/rbd.c | |
6760 | F: drivers/block/rbd_types.h | |
6761 | ||
1da177e4 | 6762 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6763 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 6764 | L: [email protected] |
1da177e4 | 6765 | S: Maintained |
679655da | 6766 | F: drivers/video/aty/radeon* |
c117ab84 | 6767 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6768 | |
c6c9b34c HG |
6769 | RADIOSHARK RADIO DRIVER |
6770 | M: Hans de Goede <[email protected]> | |
6771 | L: [email protected] | |
6772 | T: git git://linuxtv.org/media_tree.git | |
6773 | S: Maintained | |
6774 | F: drivers/media/radio/radio-shark.c | |
6775 | ||
6776 | RADIOSHARK2 RADIO DRIVER | |
6777 | M: Hans de Goede <[email protected]> | |
6778 | L: [email protected] | |
6779 | T: git git://linuxtv.org/media_tree.git | |
6780 | S: Maintained | |
6781 | F: drivers/media/radio/radio-shark2.c | |
6782 | F: drivers/media/radio/radio-tea5777.c | |
6783 | ||
1da177e4 | 6784 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6785 | M: Paul Mackerras <[email protected]> |
c69f677c | 6786 | L: [email protected] |
1da177e4 | 6787 | S: Maintained |
679655da | 6788 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6789 | |
e7839f25 | 6790 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6791 | P: rt2x00 project |
e1a6542f | 6792 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 6793 | M: Gertjan van Wingerde <[email protected]> |
f198f98e | 6794 | M: Helmut Schaa <[email protected]> |
95ea3627 | 6795 | L: [email protected] |
83fc9c89 | 6796 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
6797 | W: http://rt2x00.serialmonkey.com/ |
6798 | S: Maintained | |
54e5881d | 6799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6800 | F: drivers/net/wireless/rt2x00/ |
6801 | ||
9db5579b | 6802 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6803 | M: Nick Piggin <[email protected]> |
9db5579b | 6804 | S: Maintained |
679655da JP |
6805 | F: Documentation/blockdev/ramdisk.txt |
6806 | F: drivers/block/brd.c | |
9db5579b | 6807 | |
9e95ce27 | 6808 | RANDOM NUMBER DRIVER |
330e0a01 | 6809 | M: Theodore Ts'o" <[email protected]> |
9e95ce27 | 6810 | S: Maintained |
679655da | 6811 | F: drivers/char/random.c |
9e95ce27 | 6812 | |
394b701c | 6813 | RAPIDIO SUBSYSTEM |
8b58be88 | 6814 | M: Matt Porter <[email protected]> |
b8bc1dd3 | 6815 | M: Alexandre Bounine <[email protected]> |
394b701c | 6816 | S: Maintained |
679655da | 6817 | F: drivers/rapidio/ |
394b701c | 6818 | |
e2d1d6c0 | 6819 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6820 | L: [email protected] |
f52a5490 | 6821 | S: Orphan |
679655da | 6822 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6823 | |
6824 | RCUTORTURE MODULE | |
8b58be88 JP |
6825 | M: Josh Triplett <[email protected]> |
6826 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 6827 | S: Supported |
08deed1e | 6828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6829 | F: Documentation/RCU/torture.txt |
6830 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6831 | |
c1f766b5 | 6832 | RDC R-321X SoC |
8b58be88 | 6833 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
6834 | S: Maintained |
6835 | ||
db17f395 | 6836 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6837 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
6838 | L: [email protected] |
6839 | S: Maintained | |
58565a35 | 6840 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6841 | |
a09ed661 | 6842 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6843 | M: Venkat Venkatsubra <[email protected]> |
fbb5a558 | 6844 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 6845 | S: Supported |
679655da | 6846 | F: net/rds/ |
a09ed661 | 6847 | |
595182bc | 6848 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6849 | M: Dipankar Sarma <[email protected]> |
6850 | M: "Paul E. McKenney" <[email protected]> | |
9fab9787 | 6851 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6852 | S: Supported |
08deed1e | 6853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6854 | F: Documentation/RCU/ |
9fab9787 | 6855 | X: Documentation/RCU/torture.txt |
f9094d8e | 6856 | F: include/linux/rcu* |
f9094d8e | 6857 | F: kernel/rcu* |
f9094d8e | 6858 | X: kernel/rcutorture.c |
595182bc | 6859 | |
0c86edc0 | 6860 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6861 | M: Alessandro Zummo <[email protected]> |
76465493 | 6862 | L: [email protected] |
8a6e2535 | 6863 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6864 | S: Maintained |
679655da JP |
6865 | F: Documentation/rtc.txt |
6866 | F: drivers/rtc/ | |
6867 | F: include/linux/rtc.h | |
c117ab84 | 6868 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6869 | |
1da177e4 | 6870 | REISERFS FILE SYSTEM |
76c4e5ea | 6871 | L: [email protected] |
1da177e4 | 6872 | S: Supported |
679655da | 6873 | F: fs/reiserfs/ |
1da177e4 | 6874 | |
b83a313b | 6875 | REGISTER MAP ABSTRACTION |
b02e48f2 | 6876 | M: Mark Brown <[email protected]> |
b83a313b MB |
6877 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
6878 | S: Supported | |
6879 | F: drivers/base/regmap/ | |
6880 | F: include/linux/regmap.h | |
6881 | ||
400e64df OBC |
6882 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6883 | M: Ohad Ben-Cohen <[email protected]> | |
6bb697b6 | 6884 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6885 | S: Maintained |
6886 | F: drivers/remoteproc/ | |
6887 | F: Documentation/remoteproc.txt | |
6fc26488 | 6888 | F: include/linux/remoteproc.h |
400e64df | 6889 | |
d8115db5 OBC |
6890 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
6891 | M: Ohad Ben-Cohen <[email protected]> | |
6892 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
6893 | S: Maintained | |
6894 | F: drivers/rpmsg/ | |
6895 | F: Documentation/rpmsg.txt | |
6896 | F: include/linux/rpmsg.h | |
6897 | ||
e0897645 | 6898 | RFKILL |
8b58be88 | 6899 | M: Johannes Berg <[email protected]> |
19d337df | 6900 | L: [email protected] |
ce466579 JB |
6901 | W: http://wireless.kernel.org/ |
6902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6903 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6904 | S: Maintained |
505c9247 | 6905 | F: Documentation/rfkill.txt |
80811493 | 6906 | F: net/rfkill/ |
e0897645 | 6907 | |
67e054e9 ML |
6908 | RICOH SMARTMEDIA/XD DRIVER |
6909 | M: Maxim Levitsky <[email protected]> | |
6910 | S: Maintained | |
21c26f50 JP |
6911 | F: drivers/mtd/nand/r852.c |
6912 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6913 | |
92634125 ML |
6914 | RICOH R5C592 MEMORYSTICK DRIVER |
6915 | M: Maxim Levitsky <[email protected]> | |
6916 | S: Maintained | |
6917 | F: drivers/memstick/host/r592.* | |
6918 | ||
1da177e4 LT |
6919 | ROCKETPORT DRIVER |
6920 | P: Comtrol Corp. | |
1da177e4 LT |
6921 | W: http://www.comtrol.com |
6922 | S: Maintained | |
679655da | 6923 | F: Documentation/serial/rocket.txt |
c897401b | 6924 | F: drivers/tty/rocket* |
1da177e4 LT |
6925 | |
6926 | ROSE NETWORK LAYER | |
8b58be88 | 6927 | M: Ralf Baechle <[email protected]> |
1da177e4 | 6928 | L: [email protected] |
d34cb28a | 6929 | W: http://www.linux-ax25.org/ |
1da177e4 | 6930 | S: Maintained |
679655da | 6931 | F: include/net/rose.h |
c117ab84 | 6932 | F: include/uapi/linux/rose.h |
679655da | 6933 | F: net/rose/ |
1da177e4 | 6934 | |
91952bc0 AP |
6935 | RTL2830 MEDIA DRIVER |
6936 | M: Antti Palosaari <[email protected]> | |
6937 | L: [email protected] | |
6938 | W: http://linuxtv.org/ | |
6939 | W: http://palosaari.fi/linux/ | |
6940 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6941 | T: git git://linuxtv.org/anttip/media_tree.git | |
6942 | S: Maintained | |
6943 | F: drivers/media/dvb-frontends/rtl2830* | |
6944 | ||
27a0aacf AP |
6945 | RTL2832 MEDIA DRIVER |
6946 | M: Antti Palosaari <[email protected]> | |
6947 | L: [email protected] | |
6948 | W: http://linuxtv.org/ | |
6949 | W: http://palosaari.fi/linux/ | |
6950 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6951 | T: git git://linuxtv.org/anttip/media_tree.git | |
6952 | S: Maintained | |
6953 | F: drivers/media/dvb-frontends/rtl2832* | |
6954 | ||
59840488 | 6955 | RTL8180 WIRELESS DRIVER |
8b58be88 | 6956 | M: "John W. Linville" <[email protected]> |
605bebe2 | 6957 | L: [email protected] |
491b26b4 | 6958 | W: http://wireless.kernel.org/ |
54e5881d | 6959 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 6960 | S: Maintained |
3cfeb0c3 | 6961 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 6962 | |
59840488 | 6963 | RTL8187 WIRELESS DRIVER |
9f0939bf | 6964 | M: Herton Ronaldo Krzesinski <[email protected]> |
8b58be88 JP |
6965 | M: Hin-Tak Leung <[email protected]> |
6966 | M: Larry Finger <[email protected]> | |
7d2c86b5 | 6967 | L: [email protected] |
491b26b4 | 6968 | W: http://wireless.kernel.org/ |
54e5881d | 6969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 6970 | S: Maintained |
3cfeb0c3 | 6971 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 6972 | |
3cf0c8ad LF |
6973 | RTL8192CE WIRELESS DRIVER |
6974 | M: Larry Finger <[email protected]> | |
6975 | M: Chaoming Li <[email protected]> | |
6976 | L: [email protected] | |
491b26b4 | 6977 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
6978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
6979 | S: Maintained | |
6980 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 6981 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 6982 | |
9eb8ef74 | 6983 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 6984 | M: Antonino Daplas <[email protected]> |
c69f677c | 6985 | L: [email protected] |
ce00f85c | 6986 | S: Maintained |
679655da | 6987 | F: drivers/video/savage/ |
9eb8ef74 | 6988 | |
1da177e4 | 6989 | S390 |
8b58be88 JP |
6990 | M: Martin Schwidefsky <[email protected]> |
6991 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 6992 | M: [email protected] |
d58140cc | 6993 | L: [email protected] |
5238da45 HC |
6994 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6995 | S: Supported | |
679655da | 6996 | F: arch/s390/ |
a968cd3e | 6997 | F: drivers/s390/ |
20d16fef | 6998 | F: block/partitions/ibm.c |
3bfe6858 JN |
6999 | F: Documentation/s390/ |
7000 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7001 | |
7002 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7003 | M: Ursula Braun <[email protected]> |
7004 | M: Frank Blaschka <[email protected]> | |
5238da45 | 7005 | M: [email protected] |
d58140cc | 7006 | L: [email protected] |
5238da45 HC |
7007 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7008 | S: Supported | |
679655da | 7009 | F: drivers/s390/net/ |
5238da45 | 7010 | |
feed9b62 | 7011 | S390 ZCRYPT DRIVER |
5c8d0983 | 7012 | M: Ingo Tuchscherer <[email protected]> |
feed9b62 FB |
7013 | M: [email protected] |
7014 | L: [email protected] | |
a968cd3e | 7015 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7016 | S: Supported |
d5ca6918 | 7017 | F: drivers/s390/crypto/ |
feed9b62 | 7018 | |
5238da45 | 7019 | S390 ZFCP DRIVER |
d38e19d0 | 7020 | M: Steffen Maier <[email protected]> |
5238da45 | 7021 | M: [email protected] |
d58140cc | 7022 | L: [email protected] |
5238da45 | 7023 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7024 | S: Supported |
679655da | 7025 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7026 | |
dd96df2c | 7027 | S390 IUCV NETWORK LAYER |
8b58be88 | 7028 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
7029 | M: [email protected] |
7030 | L: [email protected] | |
7031 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7032 | S: Supported | |
679655da JP |
7033 | F: drivers/s390/net/*iucv* |
7034 | F: include/net/iucv/ | |
7035 | F: net/iucv/ | |
dd96df2c | 7036 | |
4dde7f75 | 7037 | S3C24XX SD/MMC Driver |
8b58be88 | 7038 | M: Ben Dooks <[email protected]> |
efc03ecb | 7039 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 7040 | S: Supported |
679655da | 7041 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7042 | |
1f15a229 HV |
7043 | SAA6588 RDS RECEIVER DRIVER |
7044 | M: Hans Verkuil <[email protected]> | |
7045 | L: [email protected] | |
7046 | T: git git://linuxtv.org/media_tree.git | |
7047 | W: http://linuxtv.org | |
7048 | S: Odd Fixes | |
7049 | F: drivers/media/i2c/saa6588* | |
7050 | ||
98ed12e6 | 7051 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7052 | M: Mauro Carvalho Chehab <[email protected]> |
98ed12e6 MCC |
7053 | L: [email protected] |
7054 | W: http://linuxtv.org | |
7055 | T: git git://linuxtv.org/media_tree.git | |
7056 | S: Odd fixes | |
e42bf501 | 7057 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7058 | F: drivers/media/pci/saa7134/ |
7059 | ||
1da177e4 | 7060 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7061 | M: Hans Verkuil <[email protected]> |
661263b5 | 7062 | L: [email protected] |
275ffde4 | 7063 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7064 | S: Maintained |
90d72ac6 MCC |
7065 | F: drivers/media/common/saa7146/ |
7066 | F: drivers/media/pci/saa7146/ | |
7067 | F: include/media/saa7146* | |
1da177e4 | 7068 | |
92304a40 | 7069 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7070 | M: Corentin Chary <[email protected]> |
92304a40 CC |
7071 | L: [email protected] |
7072 | S: Maintained | |
7073 | F: drivers/platform/x86/samsung-laptop.c | |
7074 | ||
4a109cc0 | 7075 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7076 | M: Sangbeom Kim <[email protected]> |
4a109cc0 MB |
7077 | L: [email protected] (moderated for non-subscribers) |
7078 | S: Supported | |
7a939419 | 7079 | F: sound/soc/samsung |
4a109cc0 | 7080 | |
0d89a28b JH |
7081 | SAMSUNG FRAMEBUFFER DRIVER |
7082 | M: Jingoo Han <[email protected]> | |
7083 | L: [email protected] | |
7084 | S: Maintained | |
7085 | F: drivers/video/s3c-fb.c | |
7086 | ||
f69d3a17 SK |
7087 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7088 | M: Sangbeom Kim <[email protected]> | |
7089 | L: [email protected] | |
7090 | S: Supported | |
7091 | F: drivers/mfd/sec*.c | |
7092 | F: drivers/regulator/s2m*.c | |
7093 | F: drivers/regulator/s5m*.c | |
7094 | F: drivers/rtc/rtc-sec.c | |
7095 | F: include/linux/mfd/samsung/ | |
7096 | ||
038f5c4b SN |
7097 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7098 | M: Kyungmin Park <[email protected]> | |
7099 | M: Sylwester Nawrocki <[email protected]> | |
7100 | L: [email protected] | |
7101 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7102 | S: Supported | |
7103 | F: drivers/media/platform/exynos4-is/ | |
7104 | F: include/media/s5p_fimc.h | |
7105 | ||
6fd86ab2 SN |
7106 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7107 | M: Sylwester Nawrocki <[email protected]> | |
7108 | L: [email protected] | |
7109 | L: [email protected] (moderated for non-subscribers) | |
7110 | S: Maintained | |
7111 | F: drivers/media/platform/s3c-camif/ | |
7112 | F: include/media/s3c_camif.h | |
7113 | ||
b84ef24e AH |
7114 | SAMSUNG S5C73M3 CAMERA DRIVER |
7115 | M: Kyungmin Park <[email protected]> | |
7116 | M: Andrzej Hajda <[email protected]> | |
7117 | L: [email protected] | |
7118 | S: Supported | |
7119 | F: drivers/media/i2c/s5c73m3/* | |
7120 | ||
ca749e2a | 7121 | SERIAL DRIVERS |
5e30bbb7 | 7122 | M: Greg Kroah-Hartman <[email protected]> |
ca749e2a | 7123 | L: [email protected] |
5e30bbb7 | 7124 | S: Maintained |
ca749e2a AC |
7125 | F: drivers/tty/serial |
7126 | ||
aecb7b64 | 7127 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7128 | M: Viresh Kumar <[email protected]> |
aecb7b64 VK |
7129 | S: Maintained |
7130 | F: include/linux/dw_dmac.h | |
61a76496 | 7131 | F: drivers/dma/dw/ |
aecb7b64 | 7132 | |
f9e37137 SJ |
7133 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7134 | M: Seungwon Jeon <[email protected]> | |
7135 | M: Jaehoon Chung <[email protected]> | |
7136 | L: [email protected] | |
7137 | S: Maintained | |
7138 | F: include/linux/mmc/dw_mmc.h | |
7139 | F: drivers/mmc/host/dw_mmc* | |
7140 | ||
88606e80 | 7141 | TIMEKEEPING, NTP |
50363737 | 7142 | M: John Stultz <[email protected]> |
88606e80 | 7143 | M: Thomas Gleixner <[email protected]> |
75fc2d37 | 7144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7145 | S: Supported |
7146 | F: include/linux/clocksource.h | |
7147 | F: include/linux/time.h | |
7148 | F: include/linux/timex.h | |
c117ab84 CEB |
7149 | F: include/uapi/linux/time.h |
7150 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7151 | F: kernel/time/clocksource.c |
7152 | F: kernel/time/time*.c | |
7153 | F: kernel/time/ntp.c | |
bbe7b8be | 7154 | F: drivers/clocksource |
88606e80 | 7155 | |
5b3f03f0 | 7156 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7157 | M: Huang Shijie <[email protected]> |
a545e2ea HV |
7158 | M: Hans Verkuil <[email protected]> |
7159 | S: Odd Fixes | |
0c0d06ca | 7160 | F: drivers/media/usb/tlg2300 |
5b3f03f0 | 7161 | |
1da177e4 | 7162 | SC1200 WDT DRIVER |
8b58be88 | 7163 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 7164 | S: Maintained |
679655da | 7165 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7166 | |
7167 | SCHEDULER | |
dd9b238c | 7168 | M: Ingo Molnar <[email protected]> |
8b58be88 | 7169 | M: Peter Zijlstra <[email protected]> |
75fc2d37 | 7170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7171 | S: Maintained |
95c0d71d | 7172 | F: kernel/sched/ |
679655da | 7173 | F: include/linux/sched.h |
c117ab84 | 7174 | F: include/uapi/linux/sched.h |
1da177e4 | 7175 | |
6bcf6737 | 7176 | SCORE ARCHITECTURE |
a2681a75 JP |
7177 | M: Chen Liqin <[email protected]> |
7178 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
7179 | W: http://www.sunplusct.com |
7180 | S: Supported | |
a2681a75 | 7181 | F: arch/score/ |
6bcf6737 | 7182 | |
1da177e4 | 7183 | SCSI CDROM DRIVER |
8b58be88 | 7184 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
7185 | L: [email protected] |
7186 | W: http://www.kernel.dk | |
7187 | S: Maintained | |
679655da | 7188 | F: drivers/scsi/sr* |
1da177e4 | 7189 | |
fb50a83d RD |
7190 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7191 | M: David Dillow <[email protected]> | |
7192 | L: [email protected] | |
7193 | S: Supported | |
7194 | W: http://www.openfabrics.org | |
7195 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7197 | F: drivers/infiniband/ulp/srp/ | |
7198 | F: include/scsi/srp.h | |
7199 | ||
1da177e4 | 7200 | SCSI SG DRIVER |
8b58be88 | 7201 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
7202 | L: [email protected] |
7203 | W: http://www.torque.net/sg | |
7204 | S: Maintained | |
679655da JP |
7205 | F: drivers/scsi/sg.c |
7206 | F: include/scsi/sg.h | |
1da177e4 LT |
7207 | |
7208 | SCSI SUBSYSTEM | |
c95286d8 | 7209 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 7210 | L: [email protected] |
54e5881d JP |
7211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7214 | S: Maintained |
679655da JP |
7215 | F: drivers/scsi/ |
7216 | F: include/scsi/ | |
1da177e4 LT |
7217 | |
7218 | SCSI TAPE DRIVER | |
8b58be88 | 7219 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
7220 | L: [email protected] |
7221 | S: Maintained | |
679655da | 7222 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7223 | F: drivers/scsi/st.* |
7224 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7225 | |
7226 | SCTP PROTOCOL | |
8b6efb75 | 7227 | M: Vlad Yasevich <[email protected]> |
02c38d0a | 7228 | M: Neil Horman <[email protected]> |
1a418796 | 7229 | L: [email protected] |
5f85813c | 7230 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7231 | S: Maintained |
679655da JP |
7232 | F: Documentation/networking/sctp.txt |
7233 | F: include/linux/sctp.h | |
7234 | F: include/net/sctp/ | |
7235 | F: net/sctp/ | |
1da177e4 LT |
7236 | |
7237 | SCx200 CPU SUPPORT | |
8b58be88 | 7238 | M: Jim Cromie <[email protected]> |
1662d32c | 7239 | S: Odd Fixes |
679655da | 7240 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7241 | F: arch/x86/platform/scx200/ |
679655da JP |
7242 | F: drivers/watchdog/scx200_wdt.c |
7243 | F: drivers/i2c/busses/scx200* | |
7244 | F: drivers/mtd/maps/scx200_docflash.c | |
7245 | F: include/linux/scx200.h | |
1662d32c JC |
7246 | |
7247 | SCx200 GPIO DRIVER | |
8b58be88 | 7248 | M: Jim Cromie <[email protected]> |
1662d32c | 7249 | S: Maintained |
679655da JP |
7250 | F: drivers/char/scx200_gpio.c |
7251 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7252 | |
7253 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7254 | M: Jim Cromie <[email protected]> |
1662d32c | 7255 | S: Maintained |
679655da | 7256 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7257 | |
6a36913a | 7258 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7259 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
7260 | L: [email protected] (subscribers-only) |
7261 | S: Maintained | |
679655da | 7262 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7263 | |
e7839f25 | 7264 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7265 | M: Chris Ball <[email protected]> |
7a241d6e | 7266 | L: [email protected] |
245feaa6 CB |
7267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7268 | S: Maintained | |
7a241d6e | 7269 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7270 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7271 | |
3085e9c1 | 7272 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7273 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 7274 | L: [email protected] |
7a241d6e | 7275 | L: [email protected] |
e2d1d6c0 | 7276 | S: Maintained |
d4a45787 | 7277 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7278 | |
0d1bb41a | 7279 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7280 | M: Ben Dooks <[email protected]> |
7a241d6e | 7281 | L: [email protected] |
0d1bb41a BD |
7282 | S: Maintained |
7283 | F: drivers/mmc/host/sdhci-s3c.c | |
7284 | ||
c63b3cba | 7285 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7286 | M: Viresh Kumar <[email protected]> |
fbfa0748 | 7287 | L: [email protected] |
c63b3cba VK |
7288 | L: [email protected] |
7289 | S: Maintained | |
7290 | F: drivers/mmc/host/sdhci-spear.c | |
7291 | ||
8711cca2 | 7292 | SECURITY SUBSYSTEM |
9b45c0d2 | 7293 | M: James Morris <[email protected]> |
8711cca2 | 7294 | L: [email protected] (suggested Cc:) |
89879a7e | 7295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7296 | W: http://kernsec.org/ |
8711cca2 | 7297 | S: Supported |
7d2c86b5 | 7298 | F: security/ |
8711cca2 | 7299 | |
1da177e4 | 7300 | SECURITY CONTACT |
8b58be88 | 7301 | M: Security Officers <[email protected]> |
1da177e4 LT |
7302 | S: Supported |
7303 | ||
7304 | SELINUX SECURITY MODULE | |
8b58be88 | 7305 | M: Stephen Smalley <[email protected]> |
9b45c0d2 | 7306 | M: James Morris <[email protected]> |
8b58be88 | 7307 | M: Eric Paris <[email protected]> |
7d2c86b5 | 7308 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 7309 | W: http://selinuxproject.org |
6bde95ce | 7310 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 7311 | S: Supported |
679655da JP |
7312 | F: include/linux/selinux* |
7313 | F: security/selinux/ | |
6bde95ce | 7314 | F: scripts/selinux/ |
1da177e4 | 7315 | |
c1c124e9 JJ |
7316 | APPARMOR SECURITY MODULE |
7317 | M: John Johansen <[email protected]> | |
7318 | L: [email protected] (subscribers-only, general discussion) | |
7319 | W: apparmor.wiki.kernel.org | |
7320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7321 | S: Supported | |
7322 | F: security/apparmor/ | |
7323 | ||
cef2cf07 | 7324 | SENSABLE PHANTOM |
8b58be88 | 7325 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 7326 | S: Maintained |
679655da | 7327 | F: drivers/misc/phantom.c |
c117ab84 | 7328 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7329 | |
4480f15b | 7330 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7331 | M: Tejun Heo <[email protected]> |
1da177e4 | 7332 | L: [email protected] |
3d9b9350 | 7333 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7334 | S: Supported |
d5ca6918 JP |
7335 | F: drivers/ata/ |
7336 | F: include/linux/ata.h | |
7337 | F: include/linux/libata.h | |
1da177e4 | 7338 | |
6733b39a | 7339 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7340 | M: Jayamohan Kallickal <[email protected]> |
3387f656 | 7341 | L: [email protected] |
0ca43cc0 | 7342 | W: http://www.emulex.com |
3387f656 JP |
7343 | S: Supported |
7344 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7345 | |
6b7c5b94 | 7346 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7347 | M: Sathya Perla <[email protected]> |
7348 | M: Subbu Seetharaman <[email protected]> | |
7349 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 | 7350 | L: [email protected] |
fea3af67 | 7351 | W: http://www.emulex.com |
7d2c86b5 | 7352 | S: Supported |
9aebddd1 | 7353 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7354 | |
8ceee660 | 7355 | SFC NETWORK DRIVER |
c06f51ea | 7356 | M: Solarflare linux maintainers <[email protected]> |
c06f51ea JP |
7357 | M: Ben Hutchings <[email protected]> |
7358 | L: [email protected] | |
8ceee660 | 7359 | S: Supported |
874aeea5 | 7360 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7361 | |
e2d1d6c0 | 7362 | SGI GRU DRIVER |
cc883afc BH |
7363 | M: Dimitri Sivanich <[email protected]> |
7364 | M: Robin Holt <[email protected]> | |
e2d1d6c0 | 7365 | S: Maintained |
679655da | 7366 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7367 | |
7368 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7369 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
7370 | L: [email protected] |
7371 | S: Supported | |
679655da | 7372 | F: Documentation/ia64/serial.txt |
df621252 | 7373 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7374 | F: include/linux/ioc?.h |
e2d1d6c0 | 7375 | |
1da177e4 | 7376 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7377 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
7378 | L: [email protected] |
7379 | W: http://linux-visws.sf.net | |
7380 | S: Maintained for 2.6. | |
679655da | 7381 | F: Documentation/sgi-visws.txt |
1da177e4 | 7382 | |
75312619 | 7383 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 7384 | M: Robin Holt <[email protected]> |
75312619 | 7385 | S: Maintained |
679655da | 7386 | F: drivers/misc/sgi-xp/ |
75312619 | 7387 | |
49cc629d HV |
7388 | SI470X FM RADIO RECEIVER I2C DRIVER |
7389 | M: Hans Verkuil <[email protected]> | |
7390 | L: [email protected] | |
7391 | T: git git://linuxtv.org/media_tree.git | |
7392 | W: http://linuxtv.org | |
7393 | S: Odd Fixes | |
7394 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7395 | ||
7396 | SI470X FM RADIO RECEIVER USB DRIVER | |
7397 | M: Hans Verkuil <[email protected]> | |
7398 | L: [email protected] | |
7399 | T: git git://linuxtv.org/media_tree.git | |
7400 | W: http://linuxtv.org | |
7401 | S: Maintained | |
7402 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7403 | F: drivers/media/radio/si470x/radio-si470x.h | |
7404 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7405 | ||
c937ca03 EV |
7406 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7407 | M: Eduardo Valentin <[email protected]> | |
7408 | L: [email protected] | |
7409 | T: git git://linuxtv.org/media_tree.git | |
7410 | W: http://linuxtv.org | |
7411 | S: Odd Fixes | |
7412 | F: drivers/media/radio/si4713-i2c.? | |
7413 | ||
7414 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7415 | M: Eduardo Valentin <[email protected]> | |
7416 | L: [email protected] | |
7417 | T: git git://linuxtv.org/media_tree.git | |
7418 | W: http://linuxtv.org | |
7419 | S: Odd Fixes | |
7420 | F: drivers/media/radio/radio-si4713.h | |
7421 | ||
beb91d46 | 7422 | SIANO DVB DRIVER |
1b2c14b4 | 7423 | M: Mauro Carvalho Chehab <[email protected]> |
beb91d46 MCC |
7424 | L: [email protected] |
7425 | W: http://linuxtv.org | |
7426 | T: git git://linuxtv.org/media_tree.git | |
7427 | S: Odd fixes | |
7428 | F: drivers/media/common/siano/ | |
7429 | F: drivers/media/dvb/siano/ | |
7430 | F: drivers/media/usb/siano/ | |
7431 | F: drivers/media/mmc/siano | |
7432 | ||
b618b69c GL |
7433 | SH_VEU V4L2 MEM2MEM DRIVER |
7434 | M: Guennadi Liakhovetski <[email protected]> | |
7435 | L: [email protected] | |
7436 | S: Maintained | |
7437 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7438 | |
7439 | SH_VOU V4L2 OUTPUT DRIVER | |
7440 | M: Guennadi Liakhovetski <[email protected]> | |
7441 | L: [email protected] | |
4290fd1a | 7442 | S: Odd Fixes |
b618b69c GL |
7443 | F: drivers/media/platform/sh_vou.c |
7444 | F: include/media/sh_vou.h | |
7445 | ||
6349d997 | 7446 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7447 | M: Len Brown <[email protected]> |
6349d997 LB |
7448 | L: [email protected] |
7449 | W: http://simplefirmware.org/ | |
7450 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7451 | S: Supported |
943fc810 | 7452 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7453 | F: drivers/sfi/ |
7454 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7455 | |
1da177e4 LT |
7456 | SIMTEC EB110ATX (Chalice CATS) |
7457 | P: Ben Dooks | |
b16957c6 BD |
7458 | P: Vincent Sanders <[email protected]> |
7459 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7460 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7461 | S: Supported | |
7462 | ||
7463 | SIMTEC EB2410ITX (BAST) | |
7464 | P: Ben Dooks | |
b16957c6 BD |
7465 | P: Vincent Sanders <[email protected]> |
7466 | M: Simtec Linux Team <[email protected]> | |
1da177e4 LT |
7467 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7468 | S: Supported | |
58322038 BD |
7469 | F: arch/arm/mach-s3c2410/mach-bast.c |
7470 | F: arch/arm/mach-s3c2410/bast-ide.c | |
7471 | F: arch/arm/mach-s3c2410/bast-irq.c | |
1da177e4 | 7472 | |
4c5adde7 | 7473 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7474 | M: Sekhar Nori <[email protected]> |
c69d72ae | 7475 | M: Kevin Hilman <[email protected]> |
f296ed78 | 7476 | L: [email protected] (moderated for non-subscribers) |
c9f46a85 | 7477 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7478 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
7479 | S: Supported |
7480 | F: arch/arm/mach-davinci | |
046d0a37 | 7481 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7482 | |
8d4b3f08 | 7483 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7484 | M: Lad, Prabhakar <[email protected]> |
8d4b3f08 LP |
7485 | L: [email protected] |
7486 | L: [email protected] (moderated for non-subscribers) | |
7487 | W: http://linuxtv.org/ | |
7488 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7489 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7490 | S: Maintained |
8d4b3f08 LP |
7491 | F: drivers/media/platform/davinci/ |
7492 | F: include/media/davinci/ | |
7493 | ||
92aab3c0 | 7494 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7495 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
7496 | L: [email protected] |
7497 | S: Maintained | |
8c7de408 | 7498 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7499 | |
1da177e4 | 7500 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7501 | M: Daniele Venzano <[email protected]> |
1da177e4 | 7502 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7503 | L: [email protected] |
1da177e4 | 7504 | S: Maintained |
8c7de408 | 7505 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7506 | |
7507 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7508 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 7509 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7510 | S: Maintained |
679655da JP |
7511 | F: Documentation/fb/sisfb.txt |
7512 | F: drivers/video/sis/ | |
7513 | F: include/video/sisfb.h | |
1da177e4 LT |
7514 | |
7515 | SIS USB2VGA DRIVER | |
8b58be88 | 7516 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
7517 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7518 | S: Maintained | |
679655da | 7519 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7520 | |
415ad26d | 7521 | SLAB ALLOCATOR |
8b58be88 | 7522 | M: Christoph Lameter <[email protected]> |
2ed1c525 | 7523 | M: Pekka Enberg <[email protected]> |
8b58be88 | 7524 | M: Matt Mackall <[email protected]> |
415ad26d CL |
7525 | L: [email protected] |
7526 | S: Maintained | |
679655da JP |
7527 | F: include/linux/sl?b*.h |
7528 | F: mm/sl?b.c | |
415ad26d | 7529 | |
9fab9787 PM |
7530 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7531 | M: Lai Jiangshan <[email protected]> | |
7532 | M: "Paul E. McKenney" <[email protected]> | |
7533 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7534 | S: Supported | |
7535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7536 | F: include/linux/srcu* | |
7537 | F: kernel/srcu* | |
7538 | ||
66372841 CS |
7539 | SMACK SECURITY MODULE |
7540 | M: Casey Schaufler <[email protected]> | |
7541 | L: [email protected] | |
7542 | W: http://schaufler-ca.com | |
7543 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7544 | S: Maintained | |
7545 | F: Documentation/security/Smack.txt | |
7546 | F: security/smack/ | |
7547 | ||
1da177e4 | 7548 | SMC91x ETHERNET DRIVER |
2f82af08 | 7549 | M: Nicolas Pitre <[email protected]> |
18e2842b | 7550 | S: Odd Fixes |
ae150435 | 7551 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7552 | |
e8e31622 SA |
7553 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7554 | M: Sakari Ailus <[email protected]> | |
7555 | L: [email protected] | |
7556 | S: Maintained | |
7557 | F: drivers/media/i2c/smiapp | |
7558 | F: include/media/smiapp.h | |
7559 | F: drivers/media/i2c/smiapp-pll.c | |
7560 | F: drivers/media/i2c/smiapp-pll.h | |
7561 | ||
920fa1ff GR |
7562 | SMM665 HARDWARE MONITOR DRIVER |
7563 | M: Guenter Roeck <[email protected]> | |
7564 | L: [email protected] | |
7565 | S: Maintained | |
7566 | F: Documentation/hwmon/smm665 | |
7567 | F: drivers/hwmon/smm665.c | |
7568 | ||
9df7305b | 7569 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7570 | M: Steve Glendinning <[email protected]> |
9df7305b | 7571 | L: [email protected] |
90b24cfb | 7572 | S: Maintained |
9df7305b SG |
7573 | F: Documentation/hwmon/emc2103 |
7574 | F: drivers/hwmon/emc2103.c | |
7575 | ||
a98d506c HG |
7576 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7577 | M: Hans de Goede <[email protected]> | |
7578 | L: [email protected] | |
7579 | S: Supported | |
7580 | F: Documentation/hwmon/sch5627 | |
7581 | F: drivers/hwmon/sch5627.c | |
7582 | ||
6ea884db | 7583 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7584 | M: Jean Delvare <[email protected]> |
6ea884db MH |
7585 | L: [email protected] |
7586 | S: Maintained | |
679655da JP |
7587 | F: Documentation/hwmon/smsc47b397 |
7588 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7589 | |
fd9abb3d | 7590 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7591 | M: Steve Glendinning <[email protected]> |
2cb37728 | 7592 | L: [email protected] |
90b24cfb | 7593 | S: Maintained |
679655da | 7594 | F: include/linux/smsc911x.h |
ae150435 | 7595 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7596 | |
7597 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7598 | M: Steve Glendinning <[email protected]> |
fd9abb3d | 7599 | L: [email protected] |
90b24cfb | 7600 | S: Maintained |
ae150435 | 7601 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7602 | |
3c8a63e2 | 7603 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7604 | M: Steve Glendinning <[email protected]> |
3c8a63e2 | 7605 | L: [email protected] |
90b24cfb | 7606 | S: Maintained |
3c8a63e2 SG |
7607 | F: drivers/video/smscufx.c |
7608 | ||
668acf32 | 7609 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7610 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 7611 | L: [email protected] |
275ffde4 | 7612 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7613 | S: Maintained |
90d72ac6 MCC |
7614 | F: include/media/soc* |
7615 | F: drivers/media/i2c/soc_camera/ | |
7616 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7617 | |
e2d1d6c0 | 7618 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7619 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 7620 | S: Maintained |
679655da | 7621 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7622 | |
1da177e4 | 7623 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7624 | M: Neil Brown <[email protected]> |
1da177e4 | 7625 | L: [email protected] |
524418bb | 7626 | S: Supported |
679655da JP |
7627 | F: drivers/md/ |
7628 | F: include/linux/raid/ | |
c117ab84 | 7629 | F: include/uapi/linux/raid/ |
1da177e4 | 7630 | |
1da177e4 | 7631 | SONIC NETWORK DRIVER |
8b58be88 | 7632 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 7633 | L: [email protected] |
1da177e4 | 7634 | S: Maintained |
d9fb9f38 | 7635 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7636 | |
61e115a5 | 7637 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7638 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
7639 | L: [email protected] |
7640 | S: Maintained | |
679655da JP |
7641 | F: drivers/ssb/ |
7642 | F: include/linux/ssb/ | |
61e115a5 | 7643 | |
1da177e4 | 7644 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7645 | M: Mattia Dongili <[email protected]> |
d0944853 | 7646 | L: [email protected] |
5b18167d | 7647 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7648 | S: Maintained |
679655da JP |
7649 | F: Documentation/laptops/sony-laptop.txt |
7650 | F: drivers/char/sonypi.c | |
7651 | F: drivers/platform/x86/sony-laptop.c | |
7652 | F: include/linux/sony-laptop.h | |
1da177e4 | 7653 | |
baf8532a | 7654 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7655 | M: Alex Dubov <[email protected]> |
baf8532a AD |
7656 | W: http://tifmxx.berlios.de/ |
7657 | S: Maintained | |
679655da | 7658 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7659 | |
1da177e4 | 7660 | SOUND |
8b58be88 JP |
7661 | M: Jaroslav Kysela <[email protected]> |
7662 | M: Takashi Iwai <[email protected]> | |
93711660 | 7663 | L: [email protected] (moderated for non-subscribers) |
3126a179 | 7664 | W: http://www.alsa-project.org/ |
dde7ad8d | 7665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7666 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7667 | S: Maintained |
3126a179 JP |
7668 | F: Documentation/sound/ |
7669 | F: include/sound/ | |
c117ab84 | 7670 | F: include/uapi/sound/ |
679655da | 7671 | F: sound/ |
1da177e4 | 7672 | |
bd903bde | 7673 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7674 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 7675 | M: Mark Brown <[email protected]> |
86f14df8 | 7676 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7677 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 7678 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7679 | S: Supported |
679655da | 7680 | F: sound/soc/ |
e6e55122 | 7681 | F: include/sound/soc* |
eb1a6af3 | 7682 | |
473321fc | 7683 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7684 | M: "David S. Miller" <[email protected]> |
1da177e4 | 7685 | L: [email protected] |
8a6e2535 | 7686 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7689 | S: Maintained |
679655da | 7690 | F: arch/sparc/ |
7765b8bb | 7691 | F: drivers/sbus/ |
1da177e4 | 7692 | |
6404fcca DM |
7693 | SPARC SERIAL DRIVERS |
7694 | M: "David S. Miller" <[email protected]> | |
7695 | L: [email protected] | |
08deed1e JP |
7696 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7698 | S: Maintained |
6816383a | 7699 | F: include/linux/sunserialcore.h |
df621252 | 7700 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7701 | F: drivers/tty/serial/sunhv.c |
7702 | F: drivers/tty/serial/sunsab.c | |
7703 | F: drivers/tty/serial/sunsab.h | |
7704 | F: drivers/tty/serial/sunsu.c | |
7705 | F: drivers/tty/serial/sunzilog.c | |
7706 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7707 | |
389325b4 CL |
7708 | SPARSE CHECKER |
7709 | M: "Christopher Li" <[email protected]> | |
7710 | L: [email protected] | |
7711 | W: https://sparse.wiki.kernel.org/ | |
7712 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7713 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7714 | S: Maintained | |
7715 | F: include/linux/compiler.h | |
7716 | ||
fc0c195a | 7717 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7718 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7719 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7720 | L: [email protected] |
7721 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7722 | W: http://www.st.com/spear |
7723 | S: Maintained | |
7724 | F: arch/arm/plat-spear/ | |
7725 | ||
71e09a9e | 7726 | SPEAR13XX MACHINE SUPPORT |
2d8a3b3d | 7727 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7728 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7729 | L: [email protected] |
7730 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7731 | W: http://www.st.com/spear |
7732 | S: Maintained | |
71e09a9e | 7733 | F: arch/arm/mach-spear13xx/ |
fc0c195a | 7734 | |
fc0c195a | 7735 | SPEAR3XX MACHINE SUPPORT |
2d8a3b3d | 7736 | M: Viresh Kumar <[email protected]> |
71e09a9e | 7737 | M: Shiraz Hashim <[email protected]> |
fbfa0748 VK |
7738 | L: [email protected] |
7739 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7740 | W: http://www.st.com/spear |
7741 | S: Maintained | |
7742 | F: arch/arm/mach-spear3xx/ | |
7743 | ||
7744 | SPEAR6XX MACHINE SUPPORT | |
7745 | M: Rajeev Kumar <[email protected]> | |
71e09a9e | 7746 | M: Shiraz Hashim <[email protected]> |
2d8a3b3d | 7747 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7748 | L: [email protected] |
7749 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7750 | W: http://www.st.com/spear |
7751 | S: Maintained | |
7752 | F: arch/arm/mach-spear6xx/ | |
7753 | ||
7754 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7755 | M: Viresh Kumar <[email protected]> |
fbfa0748 VK |
7756 | L: [email protected] |
7757 | L: [email protected] (moderated for non-subscribers) | |
fc0c195a VK |
7758 | W: http://www.st.com/spear |
7759 | S: Maintained | |
5df33a62 | 7760 | F: drivers/clk/spear/ |
fc0c195a | 7761 | |
e2d1d6c0 | 7762 | SPI SUBSYSTEM |
b02e48f2 | 7763 | M: Mark Brown <[email protected]> |
dfbe403c | 7764 | L: [email protected] |
e7e4e13c | 7765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7766 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7767 | S: Maintained |
679655da JP |
7768 | F: Documentation/spi/ |
7769 | F: drivers/spi/ | |
7770 | F: include/linux/spi/ | |
c117ab84 | 7771 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7772 | |
2752e401 | 7773 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7774 | M: Ishizaki Kou <[email protected]> |
7775 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
7776 | L: [email protected] |
7777 | S: Supported | |
679655da | 7778 | F: Documentation/networking/spider_net.txt |
8df158ac | 7779 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7780 | |
e2d1d6c0 | 7781 | SPU FILE SYSTEM |
8b58be88 | 7782 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
7783 | L: [email protected] |
7784 | L: [email protected] | |
e2d1d6c0 RD |
7785 | W: http://www.ibm.com/developerworks/power/cell/ |
7786 | S: Supported | |
679655da JP |
7787 | F: Documentation/filesystems/spufs.txt |
7788 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7789 | |
fc555841 | 7790 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7791 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
7792 | L: [email protected] (subscribers-only) |
7793 | W: http://squashfs.org.uk | |
7794 | S: Maintained | |
679655da JP |
7795 | F: Documentation/filesystems/squashfs.txt |
7796 | F: fs/squashfs/ | |
fc555841 | 7797 | |
1da177e4 | 7798 | SRM (Alpha) environment access |
8b58be88 | 7799 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 7800 | S: Maintained |
679655da | 7801 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7802 | |
26e9a397 | 7803 | STABLE BRANCH |
879a5a00 | 7804 | M: Greg Kroah-Hartman <[email protected]> |
bc7a2f3a | 7805 | L: [email protected] |
879a5a00 | 7806 | S: Supported |
7b175c46 | 7807 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 7808 | |
26e9a397 | 7809 | STAGING SUBSYSTEM |
879a5a00 | 7810 | M: Greg Kroah-Hartman <[email protected]> |
630081fd | 7811 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7812 | L: [email protected] |
879a5a00 | 7813 | S: Supported |
679655da | 7814 | F: drivers/staging/ |
dbc6c2cc | 7815 | |
c8c8b105 JP |
7816 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7817 | M: Henk de Groot <[email protected]> | |
7818 | S: Odd Fixes | |
7819 | F: drivers/staging/wlags49_h2/ | |
7820 | F: drivers/staging/wlags49_h25/ | |
7821 | ||
c9555159 JP |
7822 | STAGING - ASUS OLED |
7823 | M: Jakub Schmidtke <[email protected]> | |
7824 | S: Odd Fixes | |
7825 | F: drivers/staging/asus_oled/ | |
7826 | ||
ebd3d010 JP |
7827 | STAGING - COMEDI |
7828 | M: Ian Abbott <[email protected]> | |
81b884c9 | 7829 | M: H Hartley Sweeten <[email protected]> |
ebd3d010 JP |
7830 | S: Odd Fixes |
7831 | F: drivers/staging/comedi/ | |
7832 | ||
8ca572c9 JP |
7833 | STAGING - CRYSTAL HD VIDEO DECODER |
7834 | M: Naren Sankar <[email protected]> | |
7835 | M: Jarod Wilson <[email protected]> | |
7836 | M: Scott Davilla <[email protected]> | |
7837 | M: Manu Abraham <[email protected]> | |
7838 | S: Odd Fixes | |
7839 | F: drivers/staging/crystalhd/ | |
7840 | ||
0f16ffc4 JP |
7841 | STAGING - ECHO CANCELLER |
7842 | M: Steve Underwood <[email protected]> | |
7843 | M: David Rowe <[email protected]> | |
7844 | S: Odd Fixes | |
7845 | F: drivers/staging/echo/ | |
7846 | ||
8dc2bbe7 ME |
7847 | STAGING - ET131X NETWORK DRIVER |
7848 | M: Mark Einon <[email protected]> | |
7849 | S: Odd Fixes | |
7850 | F: drivers/staging/et131x/ | |
7851 | ||
a0138163 JP |
7852 | STAGING - FLARION FT1000 DRIVERS |
7853 | M: Marek Belisko <[email protected]> | |
7854 | S: Odd Fixes | |
7855 | F: drivers/staging/ft1000/ | |
7856 | ||
ec3fab92 JP |
7857 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7858 | M: David Täht <[email protected]> | |
7859 | S: Odd Fixes | |
7860 | F: drivers/staging/frontier/ | |
7861 | ||
98ded590 HV |
7862 | STAGING - GO7007 MPEG CODEC |
7863 | M: Hans Verkuil <[email protected]> | |
7864 | S: Maintained | |
7865 | F: drivers/staging/media/go7007/ | |
7866 | ||
6c1bb424 JP |
7867 | STAGING - INDUSTRIAL IO |
7868 | M: Jonathan Cameron <[email protected]> | |
a0138163 | 7869 | L: [email protected] |
6c1bb424 JP |
7870 | S: Odd Fixes |
7871 | F: drivers/staging/iio/ | |
7872 | ||
a0138163 JP |
7873 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7874 | M: Jarod Wilson <[email protected]> | |
7875 | W: http://www.lirc.org/ | |
7876 | S: Odd Fixes | |
b2b0186d | 7877 | F: drivers/staging/media/lirc/ |
a0138163 | 7878 | |
7c6b6c71 | 7879 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7880 | M: Julian Andres Klode <[email protected]> |
7c6b6c71 MD |
7881 | M: Marc Dietrich <[email protected]> |
7882 | L: [email protected] (moderated for non-subscribers) | |
5d96bf4d | 7883 | L: [email protected] |
7c6b6c71 MD |
7884 | S: Maintained |
7885 | F: drivers/staging/nvec/ | |
7886 | ||
a0138163 JP |
7887 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
7888 | M: Andres Salomon <[email protected]> | |
7889 | M: Chris Ball <[email protected]> | |
7890 | M: Jon Nettleton <[email protected]> | |
7891 | W: http://wiki.laptop.org/go/DCON | |
7892 | S: Odd Fixes | |
7893 | F: drivers/staging/olpc_dcon/ | |
7894 | ||
94cfdd15 | 7895 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 7896 | M: Rupesh Gujare <[email protected]> |
94cfdd15 CK |
7897 | S: Maintained |
7898 | F: drivers/staging/ozwpan/ | |
7899 | ||
a0138163 | 7900 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7901 | M: Willy Tarreau <[email protected]> |
7902 | S: Odd Fixes | |
7903 | F: drivers/staging/panel/ | |
7904 | ||
a0138163 JP |
7905 | STAGING - REALTEK RTL8712U DRIVERS |
7906 | M: Larry Finger <[email protected]> | |
7907 | M: Florian Schilhabel <[email protected]>. | |
7908 | S: Odd Fixes | |
7909 | F: drivers/staging/rtl8712/ | |
7910 | ||
9629fa86 JP |
7911 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7912 | M: Teddy Wang <[email protected]> | |
7913 | S: Odd Fixes | |
9df0a245 | 7914 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 7915 | |
a0138163 | 7916 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
7917 | M: Ismael Luceno <[email protected]> |
7918 | S: Supported | |
b2b0186d | 7919 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
7920 | |
7921 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
7922 | M: William Hubbs <[email protected]> | |
7923 | M: Chris Brannon <[email protected]> | |
d33bce31 | 7924 | M: Kirk Reiser <[email protected]> |
a0138163 JP |
7925 | M: Samuel Thibault <[email protected]> |
7926 | L: [email protected] | |
7927 | W: http://www.linux-speakup.org/ | |
7928 | S: Odd Fixes | |
7929 | F: drivers/staging/speakup/ | |
7930 | ||
7931 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 7932 | M: Omar Ramirez Luna <[email protected]> |
a0138163 JP |
7933 | S: Odd Fixes |
7934 | F: drivers/staging/tidspbridge/ | |
7935 | ||
a0138163 JP |
7936 | STAGING - USB ENE SM/MS CARD READER DRIVER |
7937 | M: Al Cho <[email protected]> | |
7938 | S: Odd Fixes | |
7939 | F: drivers/staging/keucr/ | |
7940 | ||
b3e871ce JP |
7941 | STAGING - VIA VT665X DRIVERS |
7942 | M: Forest Bond <[email protected]> | |
7943 | S: Odd Fixes | |
7944 | F: drivers/staging/vt665?/ | |
7945 | ||
81a9a526 JP |
7946 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
7947 | M: Pavel Machek <[email protected]> | |
7948 | S: Odd Fixes | |
7949 | F: drivers/staging/winbond/ | |
7950 | ||
709bcb07 | 7951 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 7952 | M: Arnaud Patard <[email protected]> |
709bcb07 JP |
7953 | S: Odd Fixes |
7954 | F: drivers/staging/xgifb/ | |
7955 | ||
1da177e4 | 7956 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 7957 | M: Ion Badulescu <[email protected]> |
b4f90189 | 7958 | S: Odd Fixes |
9bba23b0 | 7959 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 7960 | |
e2d1d6c0 | 7961 | SUN3/3X |
8b58be88 | 7962 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
7963 | W: http://sammy.net/sun3/ |
7964 | S: Maintained | |
679655da JP |
7965 | F: arch/m68k/kernel/*sun3* |
7966 | F: arch/m68k/sun3*/ | |
7967 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 7968 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 7969 | |
2cbb12a4 | 7970 | SUPERH |
8b58be88 | 7971 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 7972 | L: [email protected] |
1da177e4 | 7973 | W: http://www.linux-sh.org |
8a6e2535 | 7974 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 7975 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 7976 | S: Supported |
066069e1 | 7977 | F: Documentation/sh/ |
679655da | 7978 | F: arch/sh/ |
066069e1 | 7979 | F: drivers/sh/ |
1da177e4 | 7980 | |
4480f15b | 7981 | SUSPEND TO RAM |
8b58be88 JP |
7982 | M: Len Brown <[email protected]> |
7983 | M: Pavel Machek <[email protected]> | |
7984 | M: "Rafael J. Wysocki" <[email protected]> | |
bf1c138e | 7985 | L: [email protected] |
e2d1d6c0 | 7986 | S: Supported |
679655da JP |
7987 | F: Documentation/power/ |
7988 | F: arch/x86/kernel/acpi/ | |
7989 | F: drivers/base/power/ | |
7990 | F: kernel/power/ | |
7991 | F: include/linux/suspend.h | |
7992 | F: include/linux/freezer.h | |
7993 | F: include/linux/pm.h | |
1da177e4 LT |
7994 | |
7995 | SVGA HANDLING | |
8b58be88 | 7996 | M: Martin Mares <[email protected]> |
1da177e4 LT |
7997 | L: [email protected] |
7998 | S: Maintained | |
679655da JP |
7999 | F: Documentation/svga.txt |
8000 | F: arch/x86/boot/video* | |
1da177e4 | 8001 | |
6e28b761 KRW |
8002 | SWIOTLB SUBSYSTEM |
8003 | M: Konrad Rzeszutek Wilk <[email protected]> | |
8004 | L: [email protected] | |
8005 | S: Supported | |
8006 | F: lib/swiotlb.c | |
8007 | F: arch/*/kernel/pci-swiotlb.c | |
8008 | F: include/linux/swiotlb.h | |
8009 | ||
db8e35d5 VG |
8010 | SYNOPSYS ARC ARCHITECTURE |
8011 | M: Vineet Gupta <[email protected]> | |
db8e35d5 VG |
8012 | S: Supported |
8013 | F: arch/arc/ | |
6659a20a VG |
8014 | F: Documentation/devicetree/bindings/arc/ |
8015 | F: drivers/tty/serial/arc-uart.c | |
db8e35d5 | 8016 | |
1da177e4 | 8017 | SYSV FILESYSTEM |
8b58be88 | 8018 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 8019 | S: Maintained |
679655da JP |
8020 | F: Documentation/filesystems/sysv-fs.txt |
8021 | F: fs/sysv/ | |
8022 | F: include/linux/sysv_fs.h | |
1da177e4 | 8023 | |
86cfa7fc NB |
8024 | TARGET SUBSYSTEM |
8025 | M: Nicholas A. Bellinger <[email protected]> | |
8026 | L: [email protected] | |
b9f5edc2 | 8027 | L: [email protected] |
86cfa7fc NB |
8028 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8029 | W: http://www.linux-iscsi.org | |
452cf324 | 8030 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8031 | S: Supported |
8032 | F: drivers/target/ | |
8033 | F: include/target/ | |
8034 | F: Documentation/target/ | |
8035 | ||
4e68852d | 8036 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8037 | M: Balbir Singh <[email protected]> |
4e68852d | 8038 | S: Maintained |
679655da JP |
8039 | F: Documentation/accounting/taskstats* |
8040 | F: include/linux/taskstats* | |
8041 | F: kernel/taskstats.c | |
4e68852d | 8042 | |
781b456a | 8043 | TC CLASSIFIER |
f935f3f8 | 8044 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
8045 | L: [email protected] |
8046 | S: Maintained | |
679655da | 8047 | F: include/net/pkt_cls.h |
c117ab84 | 8048 | F: include/uapi/linux/pkt_cls.h |
679655da | 8049 | F: net/sched/ |
781b456a | 8050 | |
5067f08a | 8051 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8052 | M: "Wong Hoi Sing, Edison" <[email protected]> |
8053 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
8054 | W: http://tcp-lp-mod.sourceforge.net/ |
8055 | S: Maintained | |
679655da | 8056 | F: net/ipv4/tcp_lp.c |
5067f08a | 8057 | |
91952bc0 AP |
8058 | TDA10071 MEDIA DRIVER |
8059 | M: Antti Palosaari <[email protected]> | |
8060 | L: [email protected] | |
8061 | W: http://linuxtv.org/ | |
8062 | W: http://palosaari.fi/linux/ | |
8063 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8064 | T: git git://linuxtv.org/anttip/media_tree.git | |
8065 | S: Maintained | |
8066 | F: drivers/media/dvb-frontends/tda10071* | |
8067 | ||
8068 | TDA18212 MEDIA DRIVER | |
8069 | M: Antti Palosaari <[email protected]> | |
8070 | L: [email protected] | |
8071 | W: http://linuxtv.org/ | |
8072 | W: http://palosaari.fi/linux/ | |
8073 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8074 | T: git git://linuxtv.org/anttip/media_tree.git | |
8075 | S: Maintained | |
8076 | F: drivers/media/tuners/tda18212* | |
8077 | ||
8078 | TDA18218 MEDIA DRIVER | |
8079 | M: Antti Palosaari <[email protected]> | |
8080 | L: [email protected] | |
8081 | W: http://linuxtv.org/ | |
8082 | W: http://palosaari.fi/linux/ | |
8083 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8084 | T: git git://linuxtv.org/anttip/media_tree.git | |
8085 | S: Maintained | |
8086 | F: drivers/media/tuners/tda18218* | |
8087 | ||
3b2f6aba MK |
8088 | TDA18271 MEDIA DRIVER |
8089 | M: Michael Krufky <[email protected]> | |
8090 | L: [email protected] | |
8091 | W: http://linuxtv.org/ | |
8092 | W: http://github.com/mkrufky | |
8093 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8094 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8095 | S: Maintained | |
8096 | F: drivers/media/tuners/tda18271* | |
8097 | ||
e48307a9 MK |
8098 | TDA827x MEDIA DRIVER |
8099 | M: Michael Krufky <[email protected]> | |
8100 | L: [email protected] | |
8101 | W: http://linuxtv.org/ | |
8102 | W: http://github.com/mkrufky | |
8103 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8104 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8105 | S: Maintained | |
8106 | F: drivers/media/tuners/tda8290.* | |
8107 | ||
66cf9212 MK |
8108 | TDA8290 MEDIA DRIVER |
8109 | M: Michael Krufky <[email protected]> | |
8110 | L: [email protected] | |
8111 | W: http://linuxtv.org/ | |
8112 | W: http://github.com/mkrufky | |
8113 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8114 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8115 | S: Maintained | |
8116 | F: drivers/media/tuners/tda8290.* | |
8117 | ||
4b9fba30 HV |
8118 | TDA9840 MEDIA DRIVER |
8119 | M: Hans Verkuil <[email protected]> | |
8120 | L: [email protected] | |
8121 | T: git git://linuxtv.org/media_tree.git | |
8122 | W: http://linuxtv.org | |
8123 | S: Maintained | |
8124 | F: drivers/media/i2c/tda9840* | |
8125 | ||
2cb654fd | 8126 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8127 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8128 | L: [email protected] |
8129 | W: http://linuxtv.org | |
8130 | T: git git://linuxtv.org/media_tree.git | |
8131 | S: Odd fixes | |
8132 | F: drivers/media/tuners/tea5761.* | |
8133 | ||
8134 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8135 | M: Mauro Carvalho Chehab <[email protected]> |
2cb654fd MCC |
8136 | L: [email protected] |
8137 | W: http://linuxtv.org | |
8138 | T: git git://linuxtv.org/media_tree.git | |
8139 | S: Maintained | |
8140 | F: drivers/media/tuners/tea5767.* | |
8141 | ||
4b9fba30 HV |
8142 | TEA6415C MEDIA DRIVER |
8143 | M: Hans Verkuil <[email protected]> | |
8144 | L: [email protected] | |
8145 | T: git git://linuxtv.org/media_tree.git | |
8146 | W: http://linuxtv.org | |
8147 | S: Maintained | |
8148 | F: drivers/media/i2c/tea6415c* | |
8149 | ||
8150 | TEA6420 MEDIA DRIVER | |
8151 | M: Hans Verkuil <[email protected]> | |
8152 | L: [email protected] | |
8153 | T: git git://linuxtv.org/media_tree.git | |
8154 | W: http://linuxtv.org | |
8155 | S: Maintained | |
8156 | F: drivers/media/i2c/tea6420* | |
8157 | ||
3d249d4c | 8158 | TEAM DRIVER |
dca9ab92 | 8159 | M: Jiri Pirko <[email protected]> |
3d249d4c JP |
8160 | L: [email protected] |
8161 | S: Supported | |
8162 | F: drivers/net/team/ | |
8163 | F: include/linux/if_team.h | |
c117ab84 | 8164 | F: include/uapi/linux/if_team.h |
3d249d4c | 8165 | |
7d029125 VD |
8166 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8167 | M: Savoir-faire Linux Inc. <[email protected]> | |
8168 | S: Maintained | |
8169 | F: arch/x86/platform/ts5500/ | |
8170 | ||
40ad4a30 SY |
8171 | TECHNOTREND USB IR RECEIVER |
8172 | M: Sean Young <[email protected]> | |
8173 | L: [email protected] | |
8174 | S: Maintained | |
8175 | F: drivers/media/rc/ttusbir.c | |
8176 | ||
84b9414b | 8177 | TEGRA SUPPORT |
243d58ec | 8178 | M: Stephen Warren <[email protected]> |
84b9414b | 8179 | L: [email protected] |
fd117cd1 OJ |
8180 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8182 | S: Supported |
bbbe96ed | 8183 | N: [^a-z]tegra |
84b9414b | 8184 | |
1a348ccc | 8185 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8186 | M: Andy Gospodarek <[email protected]> |
1a348ccc AG |
8187 | L: [email protected] |
8188 | S: Supported | |
ef7f5429 | 8189 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8190 | |
4e68852d | 8191 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8192 | M: Mark Gross <[email protected]> |
4e68852d | 8193 | S: Supported |
679655da | 8194 | F: drivers/char/tlclk.c |
4e68852d | 8195 | |
4480f15b | 8196 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8197 | M: Chris Zankel <[email protected]> |
f959ed2f CZ |
8198 | M: Max Filippov <[email protected]> |
8199 | L: [email protected] | |
4e68852d | 8200 | S: Maintained |
679655da | 8201 | F: arch/xtensa/ |
4e68852d | 8202 | |
d3fb6955 ZR |
8203 | THERMAL |
8204 | M: Zhang Rui <[email protected]> | |
fa3031d7 | 8205 | M: Eduardo Valentin <[email protected]> |
d3fb6955 ZR |
8206 | L: [email protected] |
8207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8209 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8210 | S: Supported |
8211 | F: drivers/thermal/ | |
8212 | F: include/linux/thermal.h | |
cfaf7179 | 8213 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8214 | |
30ba2fbd VD |
8215 | THINGM BLINK(1) USB RGB LED DRIVER |
8216 | M: Vivien Didelot <[email protected]> | |
8217 | S: Maintained | |
8218 | F: drivers/hid/hid-thingm.c | |
8219 | ||
4e68852d | 8220 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8221 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 8222 | L: [email protected] |
d0944853 | 8223 | L: [email protected] |
4e68852d AC |
8224 | W: http://ibm-acpi.sourceforge.net |
8225 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8226 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8227 | S: Maintained |
679655da | 8228 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8229 | |
1b46f2a2 EV |
8230 | TI BANDGAP AND THERMAL DRIVER |
8231 | M: Eduardo Valentin <[email protected]> | |
8232 | L: [email protected] | |
794b2e25 EV |
8233 | S: Supported |
8234 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8235 | |
4020f2d7 | 8236 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8237 | M: Alex Dubov <[email protected]> |
795fb7e7 | 8238 | S: Maintained |
679655da JP |
8239 | F: drivers/misc/tifm* |
8240 | F: drivers/mmc/host/tifm_sd.c | |
8241 | F: include/linux/tifm.h | |
4020f2d7 | 8242 | |
152ad442 SR |
8243 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8244 | M: M R Swami Reddy <[email protected]> | |
d392dead | 8245 | M: Vishwas A Deshpande <[email protected]> |
152ad442 SR |
8246 | L: [email protected] (moderated for non-subscribers) |
8247 | S: Maintained | |
8248 | F: sound/soc/codecs/lm49453* | |
d392dead | 8249 | F: sound/soc/codecs/isabelle* |
152ad442 | 8250 | |
0edd807d KM |
8251 | TI LP855x BACKLIGHT DRIVER |
8252 | M: Milo Kim <[email protected]> | |
8253 | S: Maintained | |
8254 | F: Documentation/backlight/lp855x-driver.txt | |
8255 | F: drivers/video/backlight/lp855x_bl.c | |
8256 | F: include/linux/platform_data/lp855x.h | |
8257 | ||
faf13f6d KM |
8258 | TI LP8727 CHARGER DRIVER |
8259 | M: Milo Kim <[email protected]> | |
8260 | S: Maintained | |
8261 | F: drivers/power/lp8727_charger.c | |
8262 | F: include/linux/platform_data/lp8727.h | |
8263 | ||
22f1229f KM |
8264 | TI LP8788 MFD DRIVER |
8265 | M: Milo Kim <[email protected]> | |
8266 | S: Maintained | |
8267 | F: drivers/iio/adc/lp8788_adc.c | |
8268 | F: drivers/leds/leds-lp8788.c | |
8269 | F: drivers/mfd/lp8788*.c | |
8270 | F: drivers/power/lp8788-charger.c | |
8271 | F: drivers/regulator/lp8788-*.c | |
8272 | F: include/linux/mfd/lp8788*.h | |
8273 | ||
dd5e8e6b | 8274 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8275 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
8276 | L: [email protected] (moderated for non-subscribers) |
8277 | S: Maintained | |
8278 | F: sound/soc/codecs/twl4030* | |
8279 | ||
90921014 | 8280 | TI WILINK WIRELESS DRIVERS |
d6158a55 | 8281 | M: Luciano Coelho <[email protected]> |
90921014 LC |
8282 | L: [email protected] |
8283 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8284 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8285 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8286 | S: Maintained | |
8287 | F: drivers/net/wireless/ti/ | |
8288 | F: include/linux/wl12xx.h | |
8289 | ||
e86eaa3a | 8290 | TIPC NETWORK LAYER |
8b58be88 JP |
8291 | M: Jon Maloy <[email protected]> |
8292 | M: Allan Stephens <[email protected]> | |
633d2bde AS |
8293 | L: [email protected] (core kernel code) |
8294 | L: [email protected] (user apps, general discussion) | |
e86eaa3a | 8295 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8296 | S: Maintained |
c117ab84 | 8297 | F: include/uapi/linux/tipc*.h |
679655da | 8298 | F: net/tipc/ |
e86eaa3a | 8299 | |
867e359b CM |
8300 | TILE ARCHITECTURE |
8301 | M: Chris Metcalf <[email protected]> | |
8302 | W: http://www.tilera.com/scm/ | |
8303 | S: Supported | |
8304 | F: arch/tile/ | |
a2e6093c | 8305 | F: drivers/tty/hvc/hvc_tile.c |
cdd80bd4 | 8306 | F: drivers/net/ethernet/tile/ |
5c770755 | 8307 | F: drivers/edac/tile_edac.c |
867e359b | 8308 | |
1da177e4 | 8309 | TLAN NETWORK DRIVER |
8b58be88 | 8310 | M: Samuel Chessman <[email protected]> |
88c07dde | 8311 | L: [email protected] (subscribers-only) |
1da177e4 LT |
8312 | W: http://sourceforge.net/projects/tlan/ |
8313 | S: Maintained | |
679655da | 8314 | F: Documentation/networking/tlan.txt |
b544dbac | 8315 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8316 | |
d74db3b2 | 8317 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8318 | M: Kentaro Takeda <[email protected]> |
8319 | M: Tetsuo Handa <[email protected]> | |
d03a5d88 TH |
8320 | L: [email protected] (subscribers-only, for developers in English) |
8321 | L: [email protected] (subscribers-only, for users in English) | |
d74db3b2 KT |
8322 | L: [email protected] (subscribers-only, for developers in Japanese) |
8323 | L: [email protected] (subscribers-only, for users in Japanese) | |
8324 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8325 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8326 | S: Maintained |
679655da | 8327 | F: security/tomoyo/ |
d74db3b2 | 8328 | |
9caeb532 | 8329 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8330 | M: Herton Ronaldo Krzesinski <[email protected]> |
d0944853 | 8331 | L: [email protected] |
9caeb532 HRK |
8332 | S: Maintained |
8333 | F: drivers/platform/x86/topstar-laptop.c | |
8334 | ||
1da177e4 | 8335 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8336 | L: [email protected] |
15065531 | 8337 | S: Orphan |
679655da | 8338 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8339 | |
8340 | TOSHIBA SMM DRIVER | |
8b58be88 | 8341 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
8342 | L: [email protected] |
8343 | W: http://www.buzzard.org.uk/toshiba/ | |
8344 | S: Maintained | |
679655da JP |
8345 | F: drivers/char/toshiba.c |
8346 | F: include/linux/toshiba.h | |
c117ab84 | 8347 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8348 | |
d719f900 | 8349 | TMIO MMC DRIVER |
d1057c40 | 8350 | M: Guennadi Liakhovetski <[email protected]> |
8b58be88 | 8351 | M: Ian Molton <[email protected]> |
d1057c40 | 8352 | L: [email protected] |
d719f900 | 8353 | S: Maintained |
d1057c40 GL |
8354 | F: drivers/mmc/host/tmio_mmc* |
8355 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8356 | F: include/linux/mmc/tmio.h | |
8357 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8358 | |
917cc4e6 GR |
8359 | TMP401 HARDWARE MONITOR DRIVER |
8360 | M: Guenter Roeck <[email protected]> | |
8361 | L: [email protected] | |
8362 | S: Maintained | |
8363 | F: Documentation/hwmon/tmp401 | |
8364 | F: drivers/hwmon/tmp401.c | |
8365 | ||
98f32602 | 8366 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8367 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
8368 | L: [email protected] |
8369 | S: Maintained | |
8370 | F: include/linux/shmem_fs.h | |
8371 | F: mm/shmem.c | |
8372 | ||
45f95b53 | 8373 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8374 | M: Mauro Carvalho Chehab <[email protected]> |
45f95b53 MCC |
8375 | L: [email protected] |
8376 | W: http://linuxtv.org | |
8377 | T: git git://linuxtv.org/media_tree.git | |
8378 | S: Odd fixes | |
8379 | F: drivers/media/usb/tm6000/ | |
8380 | ||
4e68852d | 8381 | TPM DEVICE DRIVER |
5b88e270 KY |
8382 | M: Leonidas Da Silva Barbosa <[email protected]> |
8383 | M: Ashley Lai <[email protected]> | |
cbb2d5e4 | 8384 | M: Rajiv Andrade <[email protected]> |
4e68852d | 8385 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8386 | M: Marcel Selhorst <[email protected]> |
8387 | M: Sirrix AG <[email protected]> | |
7dcce133 | 8388 | W: http://www.sirrix.com |
63a10dfd | 8389 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 8390 | S: Maintained |
679655da | 8391 | F: drivers/char/tpm/ |
4e68852d | 8392 | |
d6f005a1 JP |
8393 | TRACING |
8394 | M: Steven Rostedt <[email protected]> | |
8395 | M: Frederic Weisbecker <[email protected]> | |
8396 | M: Ingo Molnar <[email protected]> | |
75fc2d37 | 8397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8398 | S: Maintained |
8399 | F: Documentation/trace/ftrace.txt | |
8400 | F: arch/*/*/*/ftrace.h | |
8401 | F: arch/*/kernel/ftrace.c | |
8402 | F: include/*/ftrace.h | |
8403 | F: include/linux/trace*.h | |
8404 | F: include/trace/ | |
8405 | F: kernel/trace/ | |
8406 | ||
1da177e4 | 8407 | TRIVIAL PATCHES |
8b58be88 | 8408 | M: Jiri Kosina <[email protected]> |
54e5881d | 8409 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8410 | S: Maintained |
86ef925f | 8411 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8412 | |
4e68852d | 8413 | TTY LAYER |
879a5a00 | 8414 | M: Greg Kroah-Hartman <[email protected]> |
25e6c11f | 8415 | M: Jiri Slaby <[email protected]> |
879a5a00 | 8416 | S: Supported |
08deed1e | 8417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8418 | F: drivers/tty/ |
df621252 | 8419 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8420 | F: include/linux/serial_core.h |
8421 | F: include/linux/serial.h | |
8422 | F: include/linux/tty.h | |
c117ab84 CEB |
8423 | F: include/uapi/linux/serial_core.h |
8424 | F: include/uapi/linux/serial.h | |
8425 | F: include/uapi/linux/tty.h | |
4e68852d | 8426 | |
91952bc0 AP |
8427 | TUA9001 MEDIA DRIVER |
8428 | M: Antti Palosaari <[email protected]> | |
8429 | L: [email protected] | |
8430 | W: http://linuxtv.org/ | |
8431 | W: http://palosaari.fi/linux/ | |
8432 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8433 | T: git git://linuxtv.org/anttip/media_tree.git | |
8434 | S: Maintained | |
8435 | F: drivers/media/tuners/tua9001* | |
8436 | ||
740db6d7 | 8437 | TULIP NETWORK DRIVERS |
8b58be88 | 8438 | M: Grant Grundler <[email protected]> |
740db6d7 GG |
8439 | L: [email protected] |
8440 | S: Maintained | |
0f04e2aa | 8441 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8442 | |
8443 | TUN/TAP driver | |
ba57b6f2 | 8444 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
8445 | W: http://vtun.sourceforge.net/tun |
8446 | S: Maintained | |
679655da JP |
8447 | F: Documentation/networking/tuntap.txt |
8448 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8449 | |
b454cc66 | 8450 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8451 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 8452 | S: Maintained |
679655da JP |
8453 | F: drivers/tc/ |
8454 | F: include/linux/tc.h | |
b454cc66 | 8455 | |
1da177e4 | 8456 | U14-34F SCSI DRIVER |
8b58be88 | 8457 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
8458 | L: [email protected] |
8459 | S: Maintained | |
679655da | 8460 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8461 | |
e2d1d6c0 | 8462 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8463 | M: Artem Bityutskiy <[email protected]> |
cc8f9b99 | 8464 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 8465 | L: [email protected] |
e2966cbe | 8466 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8467 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8468 | S: Maintained | |
679655da JP |
8469 | F: Documentation/filesystems/ubifs.txt |
8470 | F: fs/ubifs/ | |
e2d1d6c0 | 8471 | |
cc2020e6 | 8472 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8473 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
8474 | W: http://www.uclinux.org/ |
8475 | L: [email protected] (subscribers-only) | |
8476 | S: Maintained | |
61bc02bb JP |
8477 | F: arch/m68k/*/*_no.* |
8478 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8479 | |
14fadca7 | 8480 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 8481 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
8482 | W: http://uclinux-h8.sourceforge.jp/ |
8483 | S: Supported | |
a7e4fd93 JP |
8484 | F: arch/h8300/ |
8485 | F: drivers/ide/ide-h8300.c | |
644570b8 | 8486 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 8487 | |
1da177e4 | 8488 | UDF FILESYSTEM |
8b58be88 | 8489 | M: Jan Kara <[email protected]> |
1da177e4 | 8490 | S: Maintained |
679655da JP |
8491 | F: Documentation/filesystems/udf.txt |
8492 | F: fs/udf/ | |
1da177e4 | 8493 | |
cc2020e6 | 8494 | UFS FILESYSTEM |
8b58be88 | 8495 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 8496 | S: Maintained |
679655da JP |
8497 | F: Documentation/filesystems/ufs.txt |
8498 | F: fs/ufs/ | |
cc2020e6 | 8499 | |
0a09d3ab DR |
8500 | UHID USERSPACE HID IO DRIVER: |
8501 | M: David Herrmann <[email protected]> | |
8502 | L: [email protected] | |
8503 | S: Maintained | |
8504 | F: drivers/hid/uhid.c | |
c117ab84 | 8505 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8506 | |
18332a80 | 8507 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8508 | L: [email protected] |
10c6c9c9 | 8509 | S: Orphan |
355ffe69 | 8510 | F: drivers/uwb/ |
679655da JP |
8511 | F: include/linux/uwb.h |
8512 | F: include/linux/uwb/ | |
18332a80 | 8513 | |
b31d8273 G |
8514 | UNICORE32 ARCHITECTURE: |
8515 | M: Guan Xuetao <[email protected]> | |
8516 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8517 | S: Maintained | |
8518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8519 | F: arch/unicore32/ | |
8520 | ||
d8379ab1 TF |
8521 | UNIFDEF |
8522 | M: Tony Finch <[email protected]> | |
8523 | W: http://dotat.at/prog/unifdef | |
8524 | S: Maintained | |
8525 | F: scripts/unifdef.c | |
8526 | ||
1da177e4 | 8527 | UNIFORM CDROM DRIVER |
8b58be88 | 8528 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
8529 | W: http://www.kernel.dk |
8530 | S: Maintained | |
679655da JP |
8531 | F: Documentation/cdrom/ |
8532 | F: drivers/cdrom/cdrom.c | |
8533 | F: include/linux/cdrom.h | |
c117ab84 | 8534 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8535 | |
9941fa6e VH |
8536 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8537 | M: Vinayak Holikatti <[email protected]> | |
8538 | M: Santosh Y <[email protected]> | |
8539 | L: [email protected] | |
8540 | S: Supported | |
8541 | F: Documentation/scsi/ufs.txt | |
8542 | F: drivers/scsi/ufs/ | |
8543 | ||
e2d1d6c0 | 8544 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8545 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
8546 | W: http://www.linux-mtd.infradead.org/ |
8547 | L: [email protected] | |
e2966cbe | 8548 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8549 | S: Maintained |
80811493 | 8550 | F: drivers/mtd/ubi/ |
679655da | 8551 | F: include/linux/mtd/ubi.h |
c117ab84 | 8552 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8553 | |
76ac66e4 RW |
8554 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8555 | M: Richard Weinberger <[email protected]> | |
8556 | L: [email protected] | |
8557 | S: Maintained | |
8558 | F: drivers/mtd/ubi/fastmap.c | |
8559 | ||
1da177e4 | 8560 | USB ACM DRIVER |
61eee9a7 | 8561 | M: Oliver Neukum <[email protected]> |
6372594a | 8562 | L: [email protected] |
1da177e4 | 8563 | S: Maintained |
679655da JP |
8564 | F: Documentation/usb/acm.txt |
8565 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8566 | |
b7d572e1 PF |
8567 | USB AR5523 WIRELESS DRIVER |
8568 | M: Pontus Fuchs <[email protected]> | |
8569 | L: [email protected] | |
8570 | S: Maintained | |
8571 | F: drivers/net/wireless/ath/ar5523/ | |
8572 | ||
115bb1ff MW |
8573 | USB ATTACHED SCSI |
8574 | M: Matthew Wilcox <[email protected]> | |
8575 | M: Sarah Sharp <[email protected]> | |
8eae0fb7 | 8576 | M: Gerd Hoffmann <[email protected]> |
115bb1ff MW |
8577 | L: [email protected] |
8578 | L: [email protected] | |
8eae0fb7 | 8579 | S: Maintained |
115bb1ff MW |
8580 | F: drivers/usb/storage/uas.c |
8581 | ||
1da177e4 | 8582 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8583 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8584 | L: [email protected] |
1da177e4 | 8585 | S: Maintained |
679655da | 8586 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8587 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8588 | |
b02b371e | 8589 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8590 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
8591 | L: [email protected] |
8592 | S: Maintained | |
679655da | 8593 | F: drivers/usb/c67x00/ |
b02b371e | 8594 | |
d0374f4f | 8595 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8596 | M: Peter Korsgaard <[email protected]> |
043600a6 | 8597 | L: [email protected] |
d0374f4f PK |
8598 | W: http://www.linux-usb.org/usbnet |
8599 | S: Maintained | |
679655da | 8600 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8601 | |
cc2020e6 | 8602 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8603 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
8604 | L: [email protected] |
8605 | W: http://rio500.sourceforge.net | |
8606 | S: Maintained | |
679655da | 8607 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8608 | |
1da177e4 | 8609 | USB EHCI DRIVER |
578333ab | 8610 | M: Alan Stern <[email protected]> |
795fb7e7 | 8611 | L: [email protected] |
578333ab | 8612 | S: Maintained |
679655da JP |
8613 | F: Documentation/usb/ehci.txt |
8614 | F: drivers/usb/host/ehci* | |
1da177e4 | 8615 | |
69ae9e3e | 8616 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8617 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 8618 | L: [email protected] |
69ae9e3e | 8619 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8620 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8621 | S: Maintained | |
679655da JP |
8622 | F: drivers/usb/gadget/ |
8623 | F: include/linux/usb/gadget* | |
69ae9e3e | 8624 | |
2dea64b4 | 8625 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8626 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 8627 | L: [email protected] |
54e5881d | 8628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8629 | S: Maintained |
c2f01971 | 8630 | F: Documentation/hid/hiddev.txt |
679655da | 8631 | F: drivers/hid/usbhid/ |
1da177e4 | 8632 | |
857aab34 | 8633 | USB/IP DRIVERS |
8634 | M: Matt Mooney <[email protected]> | |
8635 | L: [email protected] | |
8636 | S: Maintained | |
8637 | F: drivers/staging/usbip/ | |
8638 | ||
959eea21 | 8639 | USB ISP116X DRIVER |
8b58be88 | 8640 | M: Olav Kongas <[email protected]> |
795fb7e7 | 8641 | L: [email protected] |
959eea21 | 8642 | S: Maintained |
679655da JP |
8643 | F: drivers/usb/host/isp116x* |
8644 | F: include/linux/usb/isp116x.h | |
959eea21 | 8645 | |
1da177e4 | 8646 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8647 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 8648 | L: [email protected] |
1da177e4 | 8649 | S: Maintained |
679655da | 8650 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8651 | |
8652 | USB MASS STORAGE DRIVER | |
8b58be88 | 8653 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 8654 | L: [email protected] |
8836aeb8 | 8655 | L: [email protected] |
1da177e4 LT |
8656 | S: Maintained |
8657 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8658 | F: drivers/usb/storage/ |
1da177e4 | 8659 | |
af39917d CL |
8660 | USB MIDI DRIVER |
8661 | M: Clemens Ladisch <[email protected]> | |
8662 | L: [email protected] (moderated for non-subscribers) | |
8663 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8664 | S: Maintained | |
8665 | F: sound/usb/midi.* | |
8666 | ||
1da177e4 | 8667 | USB OHCI DRIVER |
578333ab | 8668 | M: Alan Stern <[email protected]> |
795fb7e7 | 8669 | L: [email protected] |
578333ab | 8670 | S: Maintained |
679655da JP |
8671 | F: Documentation/usb/ohci.txt |
8672 | F: drivers/usb/host/ohci* | |
1da177e4 | 8673 | |
ba460e48 | 8674 | USB OPTION-CARD DRIVER |
8b58be88 | 8675 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 8676 | L: [email protected] |
ba460e48 | 8677 | S: Maintained |
679655da | 8678 | F: drivers/usb/serial/option.c |
ba460e48 | 8679 | |
1da177e4 | 8680 | USB PEGASUS DRIVER |
a16b945c | 8681 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8682 | L: [email protected] |
043600a6 | 8683 | L: [email protected] |
a16b945c | 8684 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8685 | W: http://pegasus2.sourceforge.net/ |
8686 | S: Maintained | |
679655da | 8687 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8688 | |
d3ad558f FB |
8689 | USB PHY LAYER |
8690 | M: Felipe Balbi <[email protected]> | |
8691 | L: [email protected] | |
8692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8693 | S: Maintained | |
8694 | F: drivers/usb/phy/ | |
8695 | F: drivers/usb/otg/ | |
8696 | ||
73e4fb3f | 8697 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8698 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 8699 | L: [email protected] |
73e4fb3f | 8700 | S: Supported |
679655da | 8701 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8702 | |
8703 | USB RTL8150 DRIVER | |
a16b945c | 8704 | M: Petko Manolov <[email protected]> |
795fb7e7 | 8705 | L: [email protected] |
043600a6 | 8706 | L: [email protected] |
a16b945c | 8707 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8708 | W: http://pegasus2.sourceforge.net/ |
8709 | S: Maintained | |
679655da | 8710 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8711 | |
4e68852d | 8712 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8713 | M: William Greathouse <[email protected]> |
795fb7e7 | 8714 | L: [email protected] |
4e68852d | 8715 | S: Maintained |
679655da | 8716 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8717 | |
8718 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8719 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 8720 | L: [email protected] |
4e68852d AC |
8721 | S: Maintained |
8722 | W: http://geocities.com/i0xox0i | |
8723 | W: http://firstlight.net/cvs | |
679655da | 8724 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8725 | |
1da177e4 | 8726 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8727 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
8728 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8729 | S: Maintained | |
679655da | 8730 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8731 | |
8732 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8733 | M: Peter Berger <[email protected]> |
8734 | M: Al Borchers <[email protected]> | |
795fb7e7 | 8735 | L: [email protected] |
1da177e4 | 8736 | S: Maintained |
679655da | 8737 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8738 | |
8739 | USB SERIAL DRIVER | |
879a5a00 | 8740 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8741 | L: [email protected] |
1da177e4 | 8742 | S: Supported |
679655da JP |
8743 | F: Documentation/usb/usb-serial.txt |
8744 | F: drivers/usb/serial/generic.c | |
8745 | F: drivers/usb/serial/usb-serial.c | |
8746 | F: include/linux/usb/serial.h | |
1da177e4 | 8747 | |
1da177e4 | 8748 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8749 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 8750 | L: [email protected] |
1da177e4 | 8751 | S: Maintained |
679655da | 8752 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8753 | |
8754 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8755 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8756 | L: [email protected] |
1da177e4 | 8757 | S: Maintained |
679655da | 8758 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8759 | |
8760 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8761 | M: Support Department <[email protected]> |
795fb7e7 | 8762 | L: [email protected] |
1da177e4 LT |
8763 | W: http://www.connecttech.com |
8764 | S: Supported | |
679655da | 8765 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8766 | |
b3f0db1c SG |
8767 | USB SMSC75XX ETHERNET DRIVER |
8768 | M: Steve Glendinning <[email protected]> | |
8769 | L: [email protected] | |
8770 | S: Maintained | |
8771 | F: drivers/net/usb/smsc75xx.* | |
8772 | ||
2f7ca802 | 8773 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8774 | M: Steve Glendinning <[email protected]> |
2f7ca802 | 8775 | L: [email protected] |
90b24cfb | 8776 | S: Maintained |
679655da | 8777 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8778 | |
f423b9a8 | 8779 | USB SN9C1xx DRIVER |
8b58be88 | 8780 | M: Luca Risolia <[email protected]> |
795fb7e7 | 8781 | L: [email protected] |
661263b5 | 8782 | L: [email protected] |
275ffde4 | 8783 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8784 | W: http://www.linux-projects.org |
8785 | S: Maintained | |
679655da | 8786 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8787 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8788 | |
8789 | USB SUBSYSTEM | |
879a5a00 | 8790 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 8791 | L: [email protected] |
1da177e4 | 8792 | W: http://www.linux-usb.org |
08deed1e | 8793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8794 | S: Supported |
679655da JP |
8795 | F: Documentation/usb/ |
8796 | F: drivers/net/usb/ | |
8797 | F: drivers/usb/ | |
8798 | F: include/linux/usb.h | |
8799 | F: include/linux/usb/ | |
1da177e4 LT |
8800 | |
8801 | USB UHCI DRIVER | |
8b58be88 | 8802 | M: Alan Stern <[email protected]> |
795fb7e7 | 8803 | L: [email protected] |
1da177e4 | 8804 | S: Maintained |
679655da | 8805 | F: drivers/usb/host/uhci* |
1da177e4 | 8806 | |
69ae9e3e | 8807 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8808 | M: Oliver Neukum <[email protected]> |
043600a6 | 8809 | L: [email protected] |
69ae9e3e | 8810 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8811 | S: Maintained |
679655da JP |
8812 | F: drivers/net/usb/usbnet.c |
8813 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8814 | |
c0efd232 | 8815 | USB VIDEO CLASS |
c53ac071 | 8816 | M: Laurent Pinchart <[email protected]> |
616bd4e2 | 8817 | L: [email protected] (subscribers-only) |
661263b5 | 8818 | L: [email protected] |
275ffde4 | 8819 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8820 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8821 | S: Maintained |
0c0d06ca | 8822 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8823 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8824 | |
b60b9c45 HV |
8825 | USB VISION DRIVER |
8826 | M: Hans Verkuil <[email protected]> | |
8827 | L: [email protected] | |
8828 | T: git git://linuxtv.org/media_tree.git | |
8829 | W: http://linuxtv.org | |
8830 | S: Odd Fixes | |
8831 | F: drivers/media/usb/usbvision/ | |
8832 | ||
8282da47 LP |
8833 | USB WEBCAM GADGET |
8834 | M: Laurent Pinchart <[email protected]> | |
8835 | L: [email protected] | |
8836 | S: Maintained | |
8837 | F: drivers/usb/gadget/*uvc*.c | |
8838 | F: drivers/usb/gadget/webcam.c | |
8839 | ||
bf164cc0 | 8840 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 8841 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
8842 | L: [email protected] |
8843 | S: Maintained | |
679655da | 8844 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8845 | |
eb6bab13 | 8846 | USB XHCI DRIVER |
36d0344c | 8847 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
8848 | L: [email protected] |
8849 | S: Supported | |
36d0344c SS |
8850 | F: drivers/usb/host/xhci* |
8851 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8852 | |
1da177e4 | 8853 | USB ZD1201 DRIVER |
4086b9ca | 8854 | L: [email protected] |
1da177e4 | 8855 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8856 | S: Orphan |
679655da | 8857 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8858 | |
b7eee616 | 8859 | USB ZR364XX DRIVER |
8b58be88 | 8860 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 8861 | L: [email protected] |
661263b5 | 8862 | L: [email protected] |
275ffde4 | 8863 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8864 | W: http://royale.zerezo.com/zr364xx/ |
8865 | S: Maintained | |
679655da | 8866 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8867 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8868 | |
e7839f25 | 8869 | USER-MODE LINUX (UML) |
8b58be88 | 8870 | M: Jeff Dike <[email protected]> |
b15194b7 | 8871 | M: Richard Weinberger <[email protected]> |
1da177e4 LT |
8872 | L: [email protected] |
8873 | L: [email protected] | |
8874 | W: http://user-mode-linux.sourceforge.net | |
8875 | S: Maintained | |
61516587 | 8876 | F: Documentation/virtual/uml/ |
679655da | 8877 | F: arch/um/ |
b070989a | 8878 | F: arch/x86/um/ |
679655da JP |
8879 | F: fs/hostfs/ |
8880 | F: fs/hppfs/ | |
b7eee616 | 8881 | |
e5f114e9 | 8882 | USERSPACE I/O (UIO) |
6a534c9d | 8883 | M: "Hans J. Koch" <[email protected]> |
879a5a00 | 8884 | M: Greg Kroah-Hartman <[email protected]> |
e5f114e9 | 8885 | S: Maintained |
679655da JP |
8886 | F: Documentation/DocBook/uio-howto.tmpl |
8887 | F: drivers/uio/ | |
8888 | F: include/linux/uio*.h | |
e5f114e9 | 8889 | |
256cccbe | 8890 | UTIL-LINUX PACKAGE |
8b58be88 | 8891 | M: Karel Zak <[email protected]> |
256cccbe KZ |
8892 | L: [email protected] |
8893 | W: http://en.wikipedia.org/wiki/Util-linux | |
8894 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8895 | S: Maintained |
8896 | ||
c1fd1c07 | 8897 | UVESAFB DRIVER |
8b58be88 | 8898 | M: Michal Januszewski <[email protected]> |
c69f677c | 8899 | L: [email protected] |
c1fd1c07 MJ |
8900 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8901 | S: Maintained | |
679655da JP |
8902 | F: Documentation/fb/uvesafb.txt |
8903 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 8904 | |
4480f15b | 8905 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 8906 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 8907 | S: Maintained |
679655da JP |
8908 | F: Documentation/filesystems/vfat.txt |
8909 | F: fs/fat/ | |
1da177e4 | 8910 | |
cba3345c AW |
8911 | VFIO DRIVER |
8912 | M: Alex Williamson <[email protected]> | |
8913 | L: [email protected] | |
8914 | S: Maintained | |
8915 | F: Documentation/vfio.txt | |
8916 | F: drivers/vfio/ | |
8917 | F: include/linux/vfio.h | |
c117ab84 | 8918 | F: include/uapi/linux/vfio.h |
cba3345c | 8919 | |
9e6f3438 PO |
8920 | VIDEOBUF2 FRAMEWORK |
8921 | M: Pawel Osciak <[email protected]> | |
8922 | M: Marek Szyprowski <[email protected]> | |
e76e4706 | 8923 | M: Kyungmin Park <[email protected]> |
9e6f3438 PO |
8924 | L: [email protected] |
8925 | S: Maintained | |
90d72ac6 | 8926 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
8927 | F: include/media/videobuf2-* |
8928 | ||
9a82446b AS |
8929 | VIRTIO CONSOLE DRIVER |
8930 | M: Amit Shah <[email protected]> | |
8931 | L: [email protected] | |
8932 | S: Maintained | |
8933 | F: drivers/char/virtio_console.c | |
8934 | F: include/linux/virtio_console.h | |
c117ab84 | 8935 | F: include/uapi/linux/virtio_console.h |
9a82446b | 8936 | |
2426ec8f MT |
8937 | VIRTIO CORE, NET AND BLOCK DRIVERS |
8938 | M: Rusty Russell <[email protected]> | |
8939 | M: "Michael S. Tsirkin" <[email protected]> | |
8940 | L: [email protected] | |
8941 | S: Maintained | |
8942 | F: drivers/virtio/ | |
c893c8d7 | 8943 | F: tools/virtio/ |
2426ec8f MT |
8944 | F: drivers/net/virtio_net.c |
8945 | F: drivers/block/virtio_blk.c | |
8946 | F: include/linux/virtio_*.h | |
916cdabc | 8947 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 8948 | |
3a4d5c94 MT |
8949 | VIRTIO HOST (VHOST) |
8950 | M: "Michael S. Tsirkin" <[email protected]> | |
8951 | L: [email protected] | |
c996d8b9 | 8952 | L: [email protected] |
3a4d5c94 MT |
8953 | L: [email protected] |
8954 | S: Maintained | |
8955 | F: drivers/vhost/ | |
c117ab84 | 8956 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 8957 | |
1da177e4 | 8958 | VIA RHINE NETWORK DRIVER |
8b58be88 | 8959 | M: Roger Luethi <[email protected]> |
1da177e4 | 8960 | S: Maintained |
f2148a47 | 8961 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 8962 | |
f0bf7f61 | 8963 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 8964 | M: Bruce Chang <[email protected]> |
8b58be88 | 8965 | M: Harald Welte <[email protected]> |
f0bf7f61 HW |
8966 | S: Maintained |
8967 | F: drivers/mmc/host/via-sdmmc.c | |
8968 | ||
69e4a7c2 | 8969 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 8970 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 8971 | L: [email protected] |
69e4a7c2 | 8972 | S: Maintained |
c7babebd FTS |
8973 | F: include/linux/via-core.h |
8974 | F: include/linux/via-gpio.h | |
8975 | F: include/linux/via_i2c.h | |
679655da | 8976 | F: drivers/video/via/ |
69e4a7c2 | 8977 | |
01f20734 | 8978 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 8979 | M: Francois Romieu <[email protected]> |
01f20734 FR |
8980 | L: [email protected] |
8981 | S: Maintained | |
f2148a47 | 8982 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 8983 | |
0b7bc1fa HV |
8984 | VIVI VIRTUAL VIDEO DRIVER |
8985 | M: Hans Verkuil <[email protected]> | |
8986 | L: [email protected] | |
8987 | T: git git://linuxtv.org/media_tree.git | |
8988 | W: http://linuxtv.org | |
8989 | S: Maintained | |
8990 | F: drivers/media/platform/vivi* | |
8991 | ||
be7f8273 | 8992 | VLAN (802.1Q) |
8b58be88 | 8993 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
8994 | L: [email protected] |
8995 | S: Maintained | |
679655da JP |
8996 | F: drivers/net/macvlan.c |
8997 | F: include/linux/if_*vlan.h | |
8998 | F: net/8021q/ | |
be7f8273 | 8999 | |
55e331cf | 9000 | VLYNQ BUS |
8b58be88 | 9001 | M: Florian Fainelli <[email protected]> |
8578d7af | 9002 | L: [email protected] (subscribers-only) |
55e331cf FF |
9003 | S: Maintained |
9004 | F: drivers/vlynq/vlynq.c | |
9005 | F: include/linux/vlynq.h | |
9006 | ||
390beae4 MW |
9007 | VME SUBSYSTEM |
9008 | M: Martyn Welch <[email protected]> | |
1bd289d1 | 9009 | M: Manohar Vanga <[email protected]> |
390beae4 MW |
9010 | M: Greg Kroah-Hartman <[email protected]> |
9011 | L: [email protected] | |
9012 | S: Maintained | |
9013 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9014 | F: Documentation/vme_api.txt | |
9015 | F: drivers/staging/vme/ | |
9016 | F: drivers/vme/ | |
9017 | F: include/linux/vme* | |
9018 | ||
d1a890fa | 9019 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9020 | M: Shreyas Bhatewara <[email protected]> |
9021 | M: "VMware, Inc." <[email protected]> | |
9022 | L: [email protected] | |
9023 | S: Maintained | |
9024 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9025 | |
851b1642 | 9026 | VMware PVSCSI driver |
f2d7e40e | 9027 | M: Arvind Kumar <[email protected]> |
851b1642 AK |
9028 | M: VMware PV-Drivers <[email protected]> |
9029 | L: [email protected] | |
9030 | S: Maintained | |
9031 | F: drivers/scsi/vmw_pvscsi.c | |
9032 | F: drivers/scsi/vmw_pvscsi.h | |
9033 | ||
e53e86c7 | 9034 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9035 | M: Liam Girdwood <[email protected]> |
b02e48f2 | 9036 | M: Mark Brown <[email protected]> |
e53e86c7 | 9037 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9038 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9040 | S: Supported |
679655da JP |
9041 | F: drivers/regulator/ |
9042 | F: include/linux/regulator/ | |
e53e86c7 | 9043 | |
ab41319e | 9044 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9045 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
9046 | L: [email protected] |
9047 | S: Maintained | |
679655da JP |
9048 | F: Documentation/hwmon/vt1211 |
9049 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9050 | |
1de9e371 | 9051 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9052 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
9053 | L: [email protected] |
9054 | S: Maintained | |
679655da | 9055 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9056 | |
88095e7b TO |
9057 | VUB300 USB to SDIO/SD/MMC bridge chip |
9058 | M: Tony Olech <[email protected]> | |
9059 | L: [email protected] | |
9060 | L: [email protected] | |
9061 | S: Supported | |
9062 | F: drivers/mmc/host/vub300.c | |
9063 | ||
1da177e4 | 9064 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9065 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 9066 | S: Maintained |
679655da JP |
9067 | F: Documentation/w1/ |
9068 | F: drivers/w1/ | |
1da177e4 | 9069 | |
13927079 | 9070 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9071 | M: Marc Hulsman <[email protected]> |
13927079 | 9072 | L: [email protected] |
25845c22 | 9073 | S: Maintained |
679655da JP |
9074 | F: Documentation/hwmon/w83791d |
9075 | F: drivers/hwmon/w83791d.c | |
13927079 | 9076 | |
61db011d | 9077 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9078 | M: Rudolf Marek <[email protected]> |
61db011d RM |
9079 | L: [email protected] |
9080 | S: Maintained | |
679655da JP |
9081 | F: Documentation/hwmon/w83793 |
9082 | F: drivers/hwmon/w83793.c | |
61db011d | 9083 | |
e3760b43 JD |
9084 | W83795 HARDWARE MONITORING DRIVER |
9085 | M: Jean Delvare <[email protected]> | |
9086 | L: [email protected] | |
9087 | S: Maintained | |
9088 | F: drivers/hwmon/w83795.c | |
9089 | ||
1da177e4 | 9090 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9091 | M: Pierre Ossman <[email protected]> |
1da177e4 | 9092 | S: Maintained |
679655da | 9093 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9094 | |
3527761c | 9095 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9096 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
9097 | L: [email protected] |
9098 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9099 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9100 | S: Maintained |
679655da JP |
9101 | F: Documentation/watchdog/ |
9102 | F: drivers/watchdog/ | |
9103 | F: include/linux/watchdog.h | |
c117ab84 | 9104 | F: include/uapi/linux/watchdog.h |
3527761c | 9105 | |
1da177e4 | 9106 | WD7000 SCSI DRIVER |
8b58be88 | 9107 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
9108 | L: [email protected] |
9109 | S: Maintained | |
679655da | 9110 | F: drivers/scsi/wd7000.c |
1da177e4 | 9111 | |
b22e00f3 DR |
9112 | WIIMOTE HID DRIVER |
9113 | M: David Herrmann <[email protected]> | |
9114 | L: [email protected] | |
9115 | S: Maintained | |
9116 | F: drivers/hid/hid-wiimote* | |
9117 | ||
e258b80e | 9118 | WINBOND CIR DRIVER |
364e9e18 | 9119 | M: David Härdeman <[email protected]> |
e258b80e | 9120 | S: Maintained |
116ab806 | 9121 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9122 | |
8a70da82 | 9123 | WIMAX STACK |
8b58be88 | 9124 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
9125 | M: [email protected] |
9126 | L: [email protected] | |
9127 | S: Supported | |
9128 | W: http://linuxwimax.org | |
315987dc | 9129 | F: Documentation/wimax/README.wimax |
315987dc JP |
9130 | F: include/linux/wimax/debug.h |
9131 | F: include/net/wimax.h | |
c117ab84 | 9132 | F: include/uapi/linux/wimax.h |
315987dc | 9133 | F: net/wimax/ |
8a70da82 | 9134 | |
5fc14680 | 9135 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9136 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 9137 | S: Maintained |
679655da | 9138 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9139 | |
1da177e4 | 9140 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9141 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 9142 | L: [email protected] |
926554c4 | 9143 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9144 | S: Maintained |
679655da | 9145 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9146 | |
febf1dff | 9147 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9148 | M: Mark Brown <[email protected]> |
8b58be88 | 9149 | M: Liam Girdwood <[email protected]> |
febf1dff MB |
9150 | L: [email protected] |
9151 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9152 | W: http://opensource.wolfsonmicro.com/node/7 | |
9153 | S: Supported | |
679655da JP |
9154 | F: drivers/input/touchscreen/*wm97* |
9155 | F: include/linux/wm97xx.h | |
febf1dff | 9156 | |
055bcbcb | 9157 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9158 | L: [email protected] |
cf8eda3e | 9159 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9160 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9161 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9162 | S: Supported |
3768f0b1 | 9163 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9164 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9165 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9166 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9167 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9168 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9169 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9170 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9171 | F: drivers/input/misc/wm831x-on.c |
9172 | F: drivers/input/touchscreen/wm831x-ts.c | |
9173 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9174 | F: drivers/mfd/arizona* |
9175 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9176 | F: drivers/power/wm83*.c |
9177 | F: drivers/rtc/rtc-wm83*.c | |
9178 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9179 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9180 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9181 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9182 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9183 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9184 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9185 | F: include/linux/wm97xx.h |
055bcbcb | 9186 | F: include/sound/wm????.h |
9c309598 | 9187 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9188 | F: sound/soc/codecs/wm* |
b75ea16a | 9189 | |
3e6cd7a4 TH |
9190 | WORKQUEUE |
9191 | M: Tejun Heo <[email protected]> | |
3e6cd7a4 TH |
9192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9193 | S: Maintained | |
9194 | F: include/linux/workqueue.h | |
9195 | F: kernel/workqueue.c | |
9196 | F: Documentation/workqueue.txt | |
9197 | ||
1da177e4 | 9198 | X.25 NETWORK LAYER |
8bf28059 | 9199 | M: Andrew Hendry <[email protected]> |
1da177e4 | 9200 | L: [email protected] |
8bf28059 | 9201 | S: Odd Fixes |
679655da JP |
9202 | F: Documentation/networking/x25* |
9203 | F: include/net/x25* | |
9204 | F: net/x25/ | |
1da177e4 | 9205 | |
e2d1d6c0 | 9206 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9207 | M: Thomas Gleixner <[email protected]> |
9208 | M: Ingo Molnar <[email protected]> | |
9209 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 9210 | M: [email protected] |
75fc2d37 | 9211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9212 | S: Maintained |
679655da JP |
9213 | F: Documentation/x86/ |
9214 | F: arch/x86/ | |
e2d1d6c0 | 9215 | |
d0944853 | 9216 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9217 | M: Matthew Garrett <[email protected]> |
d0944853 | 9218 | L: [email protected] |
28b8e8d4 | 9219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
9220 | S: Maintained |
9221 | F: drivers/platform/x86 | |
9222 | ||
c1f5c54b IM |
9223 | X86 MCE INFRASTRUCTURE |
9224 | M: Tony Luck <[email protected]> | |
487ba8e8 | 9225 | M: Borislav Petkov <[email protected]> |
c1f5c54b IM |
9226 | L: [email protected] |
9227 | S: Maintained | |
9228 | F: arch/x86/kernel/cpu/mcheck/* | |
9229 | ||
d6fad502 | 9230 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9231 | M: Mauro Carvalho Chehab <[email protected]> |
d6fad502 MCC |
9232 | L: [email protected] |
9233 | W: http://linuxtv.org | |
9234 | T: git git://linuxtv.org/media_tree.git | |
9235 | S: Maintained | |
9236 | F: drivers/media/tuners/tuner-xc2028.* | |
9237 | ||
c4468085 | 9238 | XEN HYPERVISOR INTERFACE |
c4468085 | 9239 | M: Konrad Rzeszutek Wilk <[email protected]> |
d633180c | 9240 | M: Jeremy Fitzhardinge <[email protected]> |
c4468085 IC |
9241 | L: [email protected] (moderated for non-subscribers) |
9242 | L: [email protected] | |
9243 | S: Supported | |
9244 | F: arch/x86/xen/ | |
9245 | F: drivers/*/xen-*front.c | |
9246 | F: drivers/xen/ | |
9247 | F: arch/x86/include/asm/xen/ | |
9248 | F: include/xen/ | |
c117ab84 | 9249 | F: include/uapi/xen/ |
c4468085 | 9250 | |
77bfb479 SS |
9251 | XEN HYPERVISOR ARM |
9252 | M: Stefano Stabellini <[email protected]> | |
9253 | L: [email protected] (moderated for non-subscribers) | |
9254 | S: Supported | |
9255 | F: arch/arm/xen/ | |
9256 | F: arch/arm/include/asm/xen/ | |
9257 | ||
b475e83f SS |
9258 | XEN HYPERVISOR ARM64 |
9259 | M: Stefano Stabellini <[email protected]> | |
9260 | L: [email protected] (moderated for non-subscribers) | |
9261 | S: Supported | |
9262 | F: arch/arm64/xen/ | |
9263 | F: arch/arm64/include/asm/xen/ | |
9264 | ||
9b57e1a7 IC |
9265 | XEN NETWORK BACKEND DRIVER |
9266 | M: Ian Campbell <[email protected]> | |
9267 | L: [email protected] (moderated for non-subscribers) | |
9268 | L: [email protected] | |
9269 | S: Supported | |
9270 | F: drivers/net/xen-netback/* | |
9271 | ||
c5f8e29d KRW |
9272 | XEN PCI SUBSYSTEM |
9273 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9274 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9275 | S: Supported |
9276 | F: arch/x86/pci/*xen* | |
9277 | F: drivers/pci/*xen* | |
9278 | ||
9279 | XEN SWIOTLB SUBSYSTEM | |
9280 | M: Konrad Rzeszutek Wilk <[email protected]> | |
b74831e6 | 9281 | L: [email protected] (moderated for non-subscribers) |
c5f8e29d KRW |
9282 | S: Supported |
9283 | F: arch/x86/xen/*swiotlb* | |
9284 | F: drivers/xen/*swiotlb* | |
9285 | ||
1da177e4 LT |
9286 | XFS FILESYSTEM |
9287 | P: Silicon Graphics Inc | |
c8891329 AE |
9288 | M: Ben Myers <[email protected]> |
9289 | M: Alex Elder <[email protected]> | |
18caa67a | 9290 | M: [email protected] |
d7ede1aa | 9291 | L: [email protected] |
1da177e4 | 9292 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9293 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9294 | S: Supported |
679655da JP |
9295 | F: Documentation/filesystems/xfs.txt |
9296 | F: fs/xfs/ | |
1da177e4 | 9297 | |
8a3b7a25 | 9298 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9299 | M: Anirudha Sarangi <[email protected]> |
9300 | M: John Linn <[email protected]> | |
8a3b7a25 DB |
9301 | S: Maintained |
9302 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9303 | ||
c9d3d8ec | 9304 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9305 | S: Orphan |
679655da | 9306 | F: drivers/block/xsysace.c |
c9d3d8ec | 9307 | |
238b8721 | 9308 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9309 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
9310 | L: [email protected] |
9311 | S: Maintained | |
df621252 | 9312 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9313 | |
1da177e4 | 9314 | YAM DRIVER FOR AX.25 |
8b58be88 | 9315 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
9316 | L: [email protected] |
9317 | S: Maintained | |
679655da JP |
9318 | F: drivers/net/hamradio/yam* |
9319 | F: include/linux/yam.h | |
1da177e4 | 9320 | |
af64a5eb | 9321 | YEALINK PHONE DRIVER |
8b58be88 | 9322 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
9323 | L: [email protected] |
9324 | S: Maintained | |
679655da JP |
9325 | F: Documentation/input/yealink.txt |
9326 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9327 | |
1da177e4 | 9328 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9329 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
9330 | W: http://yaina.de/jreuter/ |
9331 | W: http://www.qsl.net/dl1bke/ | |
9332 | L: [email protected] | |
9333 | S: Maintained | |
679655da JP |
9334 | F: Documentation/networking/z8530drv.txt |
9335 | F: drivers/net/hamradio/*scc.c | |
9336 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9337 | |
0cf31ec1 SJ |
9338 | ZBUD COMPRESSED PAGE ALLOCATOR |
9339 | M: Seth Jennings <[email protected]> | |
9340 | L: [email protected] | |
9341 | S: Maintained | |
9342 | F: mm/zbud.c | |
9343 | F: include/linux/zbud.h | |
9344 | ||
7c0c3afb | 9345 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9346 | M: Daniel Drake <[email protected]> |
9347 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 9348 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9349 | L: [email protected] |
7c0c3afb DD |
9350 | L: [email protected] (subscribers-only) |
9351 | S: Maintained | |
679655da | 9352 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9353 | |
1da177e4 | 9354 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9355 | L: [email protected] |
f63145e2 | 9356 | L: [email protected] |
1da177e4 | 9357 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9358 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9359 | S: Odd Fixes | |
90d72ac6 | 9360 | F: drivers/media/pci/zoran/ |
1da177e4 | 9361 | |
8b4a4080 | 9362 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9363 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 9364 | S: Maintained |
df621252 | 9365 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9366 | |
0cf31ec1 SJ |
9367 | ZSWAP COMPRESSED SWAP CACHING |
9368 | M: Seth Jennings <[email protected]> | |
9369 | L: [email protected] | |
9370 | S: Maintained | |
9371 | F: mm/zswap.c | |
9372 | ||
1da177e4 | 9373 | THE REST |
8b58be88 | 9374 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 9375 | L: [email protected] |
8a6e2535 | 9376 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9378 | S: Buried alive in reporters |
34d03cc1 JP |
9379 | F: * |
9380 | F: */ |