]>
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: security@kernel.org, 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> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
129 | L: netdev@vger.kernel.org |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 136 | L: netdev@vger.kernel.org |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 142 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
149 | L: linux-scsi@vger.kernel.org |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf AA |
153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
154 | M: Alexander Aring <alex.aring@gmail.com> | |
155 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) | |
156 | L: linux-bluetooth@vger.kernel.org | |
157 | S: Maintained | |
158 | F: net/6lowpan/ | |
6304f8fc | 159 | F: include/net/6lowpan.h |
68d96dcf | 160 | |
1da177e4 | 161 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 162 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
163 | L: linux-hams@vger.kernel.org |
164 | S: Maintained | |
679655da | 165 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 166 | |
1da177e4 | 167 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 168 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 169 | L: netdev@vger.kernel.org |
1da177e4 | 170 | S: Maintained |
a8fe65b8 | 171 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
172 | |
173 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 174 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
175 | L: linux-serial@vger.kernel.org |
176 | W: http://serial.sourceforge.net | |
8ee16a1b | 177 | S: Maintained |
08deed1e | 178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 179 | F: drivers/tty/serial/8250* |
679655da | 180 | F: include/linux/serial_8250.h |
1da177e4 LT |
181 | |
182 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 183 | L: netdev@vger.kernel.org |
0cf445ce | 184 | S: Orphan / Obsolete |
644570b8 | 185 | F: drivers/net/ethernet/8390/ |
1da177e4 | 186 | |
67543e50 | 187 | 9P FILE SYSTEM |
8b58be88 JP |
188 | M: Eric Van Hensbergen <ericvh@gmail.com> |
189 | M: Ron Minnich <rminnich@sandia.gov> | |
190 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 191 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 192 | W: http://swik.net/v9fs |
8a6e2535 | 193 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 195 | S: Maintained |
679655da JP |
196 | F: Documentation/filesystems/9p.txt |
197 | F: fs/9p/ | |
2315cb14 RL |
198 | F: net/9p/ |
199 | F: include/net/9p/ | |
200 | F: include/uapi/linux/virtio_9p.h | |
201 | F: include/trace/events/9p.h | |
202 | ||
67543e50 | 203 | |
91952bc0 AP |
204 | A8293 MEDIA DRIVER |
205 | M: Antti Palosaari <crope@iki.fi> | |
206 | L: linux-media@vger.kernel.org | |
207 | W: http://linuxtv.org/ | |
208 | W: http://palosaari.fi/linux/ | |
209 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
210 | T: git git://linuxtv.org/anttip/media_tree.git | |
211 | S: Maintained | |
212 | F: drivers/media/dvb-frontends/a8293* | |
213 | ||
e2d1d6c0 | 214 | AACRAID SCSI RAID DRIVER |
8b58be88 | 215 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
216 | L: linux-scsi@vger.kernel.org |
217 | W: http://www.adaptec.com/ | |
1da177e4 | 218 | S: Supported |
679655da JP |
219 | F: Documentation/scsi/aacraid.txt |
220 | F: drivers/scsi/aacraid/ | |
1da177e4 | 221 | |
ea8f8fc8 JT |
222 | ABI/API |
223 | L: linux-api@vger.kernel.org | |
224 | F: Documentation/ABI/ | |
225 | F: include/linux/syscalls.h | |
226 | F: include/uapi/ | |
227 | F: kernel/sys_ni.c | |
228 | ||
249e3c85 | 229 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 230 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
231 | L: lm-sensors@lm-sensors.org |
232 | S: Maintained | |
679655da | 233 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 234 | |
249e3c85 | 235 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 236 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
237 | L: lm-sensors@lm-sensors.org |
238 | S: Maintained | |
679655da | 239 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 240 | |
1da177e4 | 241 | ACENIC DRIVER |
8b58be88 | 242 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
243 | L: linux-acenic@sunsite.dk |
244 | S: Maintained | |
531c4f89 | 245 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 246 | |
e86435eb | 247 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 248 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 249 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
250 | W: http://piie.net/?section=acerhdf |
251 | S: Maintained | |
252 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 253 | |
745a5d21 | 254 | ACER WMI LAPTOP EXTRAS |
182ae55c | 255 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 256 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 257 | S: Maintained |
679655da | 258 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 259 | |
1da177e4 | 260 | ACPI |
49db1903 | 261 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
7fb06082 | 262 | M: Len Brown <lenb@kernel.org> |
6968e50c | 263 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
264 | W: https://01.org/linux-acpi |
265 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 267 | S: Supported |
679655da JP |
268 | F: drivers/acpi/ |
269 | F: drivers/pnp/pnpacpi/ | |
270 | F: include/linux/acpi.h | |
43368e74 | 271 | F: include/acpi/ |
994b942f | 272 | F: Documentation/acpi |
89ca78a0 | 273 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
274 | F: drivers/pci/*acpi* |
275 | F: drivers/pci/*/*acpi* | |
276 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 277 | F: tools/power/acpi |
8b59a454 | 278 | |
3774929d RW |
279 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
280 | M: Robert Moore <robert.moore@intel.com> | |
281 | M: Lv Zheng <lv.zheng@intel.com> | |
282 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> | |
283 | L: linux-acpi@vger.kernel.org | |
284 | L: devel@acpica.org | |
285 | W: https://acpica.org/ | |
286 | W: https://github.com/acpica/acpica/ | |
287 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
289 | S: Supported | |
290 | F: drivers/acpi/acpica/ | |
291 | F: include/acpi/ | |
2754c447 | 292 | F: tools/power/acpi/ |
3774929d | 293 | |
8b59a454 | 294 | ACPI FAN DRIVER |
8b58be88 | 295 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 296 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 297 | W: https://01.org/linux-acpi |
8b59a454 | 298 | S: Supported |
679655da | 299 | F: drivers/acpi/fan.c |
1da177e4 | 300 | |
8b59a454 | 301 | ACPI THERMAL DRIVER |
8b58be88 | 302 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 303 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 304 | W: https://01.org/linux-acpi |
8b59a454 | 305 | S: Supported |
679655da | 306 | F: drivers/acpi/*thermal* |
998be20f | 307 | |
359acec8 | 308 | ACPI VIDEO DRIVER |
8b58be88 | 309 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 310 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 311 | W: https://01.org/linux-acpi |
8b59a454 | 312 | S: Supported |
679655da | 313 | F: drivers/acpi/video.c |
998be20f | 314 | |
bff431e4 | 315 | ACPI WMI DRIVER |
d0944853 | 316 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 317 | S: Orphan |
679655da | 318 | F: drivers/platform/x86/wmi.c |
bff431e4 | 319 | |
2f39d519 | 320 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 321 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
322 | W: http://wiki.parisc-linux.org/AD1889 |
323 | L: linux-parisc@vger.kernel.org | |
324 | S: Maintained | |
679655da | 325 | F: sound/pci/ad1889.* |
2f39d519 | 326 | |
527a1a83 MH |
327 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
328 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 329 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 330 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
331 | S: Supported |
332 | F: drivers/misc/ad525x_dpot.c | |
333 | ||
334 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
335 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 336 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 337 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
338 | S: Supported |
339 | F: drivers/regulator/ad5398.c | |
340 | ||
341 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
342 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 343 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 344 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
345 | S: Supported |
346 | F: drivers/input/misc/ad714x.c | |
347 | ||
348 | AD7877 TOUCHSCREEN DRIVER | |
349 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 350 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 351 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
352 | S: Supported |
353 | F: drivers/input/touchscreen/ad7877.c | |
354 | ||
355 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
356 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 357 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 358 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
359 | S: Supported |
360 | F: drivers/input/touchscreen/ad7879.c | |
361 | ||
1330b0dc JK |
362 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
363 | M: Jiri Kosina <jkosina@suse.cz> | |
364 | S: Maintained | |
365 | ||
1da177e4 | 366 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 367 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 368 | L: lm-sensors@lm-sensors.org |
1da177e4 | 369 | S: Maintained |
679655da JP |
370 | F: Documentation/hwmon/adm1025 |
371 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 372 | |
cae2caae | 373 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 374 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
375 | L: lm-sensors@lm-sensors.org |
376 | S: Maintained | |
679655da | 377 | F: drivers/hwmon/adm1029.c |
cae2caae | 378 | |
cc0b88cf | 379 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 380 | L: linux-wireless@vger.kernel.org |
491b26b4 | 381 | W: http://wireless.kernel.org/ |
e71bcbd0 | 382 | S: Orphan |
679655da | 383 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 384 | |
e8e31622 SA |
385 | ADP1653 FLASH CONTROLLER DRIVER |
386 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
387 | L: linux-media@vger.kernel.org | |
388 | S: Maintained | |
389 | F: drivers/media/i2c/adp1653.c | |
390 | F: include/media/adp1653.h | |
391 | ||
527a1a83 MH |
392 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
393 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 394 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 395 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
396 | S: Supported |
397 | F: drivers/mfd/adp5520.c | |
398 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 399 | F: drivers/leds/leds-adp5520.c |
77278d50 | 400 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
401 | F: drivers/input/keyboard/adp5520-keys.c |
402 | ||
403 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
404 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 405 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 406 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
407 | S: Supported |
408 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 409 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
410 | |
411 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
412 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 413 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 414 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
415 | S: Supported |
416 | F: drivers/video/backlight/adp8860_bl.c | |
417 | ||
8c22a8f5 DE |
418 | ADS1015 HARDWARE MONITOR DRIVER |
419 | M: Dirk Eibach <eibach@gdsys.de> | |
420 | L: lm-sensors@lm-sensors.org | |
421 | S: Maintained | |
422 | F: Documentation/hwmon/ads1015 | |
423 | F: drivers/hwmon/ads1015.c | |
424 | F: include/linux/i2c/ads1015.h | |
425 | ||
1da177e4 | 426 | ADT746X FAN DRIVER |
8b58be88 | 427 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 428 | S: Maintained |
679655da | 429 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 430 | |
b058b859 | 431 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 432 | M: Jean Delvare <jdelvare@suse.de> |
b058b859 JD |
433 | L: lm-sensors@lm-sensors.org |
434 | S: Maintained | |
435 | F: Documentation/hwmon/adt7475 | |
436 | F: drivers/hwmon/adt7475.c | |
437 | ||
527a1a83 MH |
438 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
439 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 440 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 441 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
442 | S: Supported |
443 | F: drivers/input/misc/adxl34x.c | |
444 | ||
8c6af9e1 | 445 | ADVANSYS SCSI DRIVER |
8b58be88 | 446 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
447 | L: linux-scsi@vger.kernel.org |
448 | S: Maintained | |
679655da JP |
449 | F: Documentation/scsi/advansys.txt |
450 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 451 | |
1da177e4 | 452 | AEDSP16 DRIVER |
8b58be88 | 453 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 454 | S: Maintained |
679655da | 455 | F: sound/oss/aedsp16.c |
1da177e4 | 456 | |
91952bc0 AP |
457 | AF9013 MEDIA DRIVER |
458 | M: Antti Palosaari <crope@iki.fi> | |
459 | L: linux-media@vger.kernel.org | |
460 | W: http://linuxtv.org/ | |
461 | W: http://palosaari.fi/linux/ | |
462 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
463 | T: git git://linuxtv.org/anttip/media_tree.git | |
464 | S: Maintained | |
465 | F: drivers/media/dvb-frontends/af9013* | |
466 | ||
467 | AF9033 MEDIA DRIVER | |
468 | M: Antti Palosaari <crope@iki.fi> | |
469 | L: linux-media@vger.kernel.org | |
470 | W: http://linuxtv.org/ | |
471 | W: http://palosaari.fi/linux/ | |
472 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
473 | T: git git://linuxtv.org/anttip/media_tree.git | |
474 | S: Maintained | |
475 | F: drivers/media/dvb-frontends/af9033* | |
476 | ||
1da177e4 | 477 | AFFS FILE SYSTEM |
6cf515e1 GU |
478 | L: linux-fsdevel@vger.kernel.org |
479 | S: Orphan | |
679655da JP |
480 | F: Documentation/filesystems/affs.txt |
481 | F: fs/affs/ | |
1da177e4 | 482 | |
e2d1d6c0 | 483 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 484 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
485 | L: linux-afs@lists.infradead.org |
486 | S: Supported | |
679655da JP |
487 | F: fs/afs/ |
488 | F: include/net/af_rxrpc.h | |
489 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 490 | |
1da177e4 | 491 | AGPGART DRIVER |
8b58be88 | 492 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 493 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 494 | S: Maintained |
679655da JP |
495 | F: drivers/char/agp/ |
496 | F: include/linux/agp* | |
c117ab84 | 497 | F: include/uapi/linux/agp* |
1da177e4 LT |
498 | |
499 | AHA152X SCSI DRIVER | |
8b58be88 | 500 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
501 | L: linux-scsi@vger.kernel.org |
502 | S: Maintained | |
679655da JP |
503 | F: drivers/scsi/aha152x* |
504 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 505 | |
64624d4f | 506 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 507 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 508 | L: linux-scsi@vger.kernel.org |
1da177e4 | 509 | S: Maintained |
679655da | 510 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 511 | |
450500ad HV |
512 | AIMSLAB FM RADIO RECEIVER DRIVER |
513 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
514 | L: linux-media@vger.kernel.org | |
515 | T: git git://linuxtv.org/media_tree.git | |
516 | W: http://linuxtv.org | |
517 | S: Maintained | |
518 | F: drivers/media/radio/radio-aimslab* | |
519 | ||
e2d1d6c0 | 520 | AIO |
8b58be88 | 521 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
522 | L: linux-aio@kvack.org |
523 | S: Supported | |
679655da JP |
524 | F: fs/aio.c |
525 | F: include/linux/*aio*.h | |
e2d1d6c0 | 526 | |
469d4ec8 AP |
527 | AIRSPY MEDIA DRIVER |
528 | M: Antti Palosaari <crope@iki.fi> | |
529 | L: linux-media@vger.kernel.org | |
530 | W: http://linuxtv.org/ | |
531 | W: http://palosaari.fi/linux/ | |
532 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
533 | T: git git://linuxtv.org/anttip/media_tree.git | |
534 | S: Maintained | |
535 | F: drivers/media/usb/airspy/ | |
536 | ||
1da177e4 | 537 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 538 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 539 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
540 | W: http://www.linux-usb.org/SpeedTouch/ |
541 | S: Maintained | |
679655da JP |
542 | F: drivers/usb/atm/speedtch.c |
543 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 544 | |
272f133a | 545 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 546 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 547 | S: Maintained |
679655da | 548 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 549 | |
4a4e5787 | 550 | ALI1563 I2C DRIVER |
8b58be88 | 551 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 552 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 553 | S: Maintained |
679655da JP |
554 | F: Documentation/i2c/busses/i2c-ali1563 |
555 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 556 | |
1da177e4 | 557 | ALPHA PORT |
8b58be88 | 558 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 559 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 560 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 561 | S: Odd Fixes |
a9406699 | 562 | L: linux-alpha@vger.kernel.org |
679655da | 563 | F: arch/alpha/ |
1da177e4 | 564 | |
16b8b922 | 565 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
0d9327ab | 566 | M: Vince Bridgers <vbridgers2013@gmail.com> |
16b8b922 VB |
567 | L: netdev@vger.kernel.org |
568 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
569 | S: Maintained | |
570 | F: drivers/net/ethernet/altera/ | |
571 | ||
adf9251f TK |
572 | ALTERA UART/JTAG UART SERIAL DRIVERS |
573 | M: Tobias Klauser <tklauser@distanz.ch> | |
574 | L: linux-serial@vger.kernel.org | |
61bd0943 | 575 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
576 | S: Maintained |
577 | F: drivers/tty/serial/altera_uart.c | |
578 | F: drivers/tty/serial/altera_jtaguart.c | |
579 | F: include/linux/altera_uart.h | |
580 | F: include/linux/altera_jtaguart.h | |
581 | ||
f4875e12 TL |
582 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
583 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
584 | L: linux-crypto@vger.kernel.org | |
585 | S: Supported | |
586 | F: drivers/crypto/ccp/ | |
587 | F: include/linux/ccp.h | |
588 | ||
512d1027 | 589 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 590 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
591 | L: lm-sensors@lm-sensors.org |
592 | S: Maintained | |
593 | F: Documentation/hwmon/fam15h_power | |
594 | F: drivers/hwmon/fam15h_power.c | |
595 | ||
167a675a | 596 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 597 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 598 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 599 | S: Supported |
faf2e1db | 600 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 601 | |
f90b8116 | 602 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 603 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 604 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
605 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
606 | S: Supported | |
679655da JP |
607 | F: drivers/char/hw_random/geode-rng.c |
608 | F: drivers/crypto/geode* | |
8a61f013 | 609 | F: drivers/video/fbdev/geode/ |
679655da | 610 | F: arch/x86/include/asm/geode.h |
f90b8116 | 611 | |
919ee7dd | 612 | AMD IOMMU (AMD-VI) |
e4110568 | 613 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 614 | L: iommu@lists.linux-foundation.org |
525b233c | 615 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 616 | S: Maintained |
b2c16391 JP |
617 | F: drivers/iommu/amd_iommu*.[ch] |
618 | F: include/linux/amd-iommu.h | |
919ee7dd | 619 | |
e7f5b309 | 620 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 621 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 622 | L: amd64-microcode@amd64.org |
943482d0 | 623 | S: Maintained |
73d425fd | 624 | F: arch/x86/kernel/cpu/microcode/amd* |
e7f5b309 | 625 | |
45198c7b LT |
626 | AMD XGBE DRIVER |
627 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
628 | L: netdev@vger.kernel.org | |
629 | S: Supported | |
630 | F: drivers/net/ethernet/amd/xgbe/ | |
631 | F: drivers/net/phy/amd-xgbe-phy.c | |
632 | ||
284f42b6 | 633 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 634 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 635 | S: Supported |
bd5f47ec | 636 | F: drivers/macintosh/ams/ |
284f42b6 | 637 | |
f94b533d | 638 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
639 | M: Tom Tucker <tom@opengridcomputing.com> |
640 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 641 | L: linux-rdma@vger.kernel.org |
f94b533d | 642 | S: Maintained |
679655da | 643 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 644 | |
531fca16 HV |
645 | ANALOG DEVICES INC AD9389B DRIVER |
646 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
647 | L: linux-media@vger.kernel.org | |
648 | S: Maintained | |
649 | F: drivers/media/i2c/ad9389b* | |
650 | ||
c40ddfa3 HV |
651 | ANALOG DEVICES INC ADV7511 DRIVER |
652 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
653 | L: linux-media@vger.kernel.org | |
654 | S: Maintained | |
655 | F: drivers/media/i2c/adv7511* | |
656 | ||
531fca16 HV |
657 | ANALOG DEVICES INC ADV7604 DRIVER |
658 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
659 | L: linux-media@vger.kernel.org | |
660 | S: Maintained | |
661 | F: drivers/media/i2c/adv7604* | |
662 | ||
c40ddfa3 HV |
663 | ANALOG DEVICES INC ADV7842 DRIVER |
664 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
665 | L: linux-media@vger.kernel.org | |
666 | S: Maintained | |
667 | F: drivers/media/i2c/adv7842* | |
668 | ||
527a1a83 | 669 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 670 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 671 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 672 | W: http://wiki.analog.com/ |
a4edbc10 | 673 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 674 | S: Supported |
39c9d199 | 675 | F: sound/soc/codecs/adau* |
cc52688a | 676 | F: sound/soc/codecs/adav* |
4bdef3bd | 677 | F: sound/soc/codecs/ad1* |
ae48f5ef | 678 | F: sound/soc/codecs/ad7* |
4bdef3bd | 679 | F: sound/soc/codecs/ssm* |
40216ce7 | 680 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 681 | |
527a1a83 | 682 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 683 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
684 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
685 | W: http://blackfin.uclinux.org/ | |
686 | S: Supported | |
687 | F: sound/soc/blackfin/* | |
688 | ||
42269063 | 689 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 690 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 691 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 692 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 693 | S: Maintained |
679655da | 694 | F: sound/aoa/ |
42269063 | 695 | |
1da177e4 | 696 | APM DRIVER |
81024fc4 JK |
697 | M: Jiri Kosina <jkosina@suse.cz> |
698 | S: Odd fixes | |
679655da JP |
699 | F: arch/x86/kernel/apm_32.c |
700 | F: include/linux/apm_bios.h | |
c117ab84 | 701 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 702 | F: drivers/char/apm-emulation.c |
1da177e4 | 703 | |
bd7aa4b2 | 704 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 705 | M: Henrik Rydberg <rydberg@euromail.se> |
bd7aa4b2 HR |
706 | L: linux-input@vger.kernel.org |
707 | S: Maintained | |
679655da | 708 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 709 | |
6f2fad74 | 710 | APPLE SMC DRIVER |
d618540f HR |
711 | M: Henrik Rydberg <rydberg@euromail.se> |
712 | L: lm-sensors@lm-sensors.org | |
6f2fad74 | 713 | S: Maintained |
679655da | 714 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 715 | |
1da177e4 | 716 | APPLETALK NETWORK LAYER |
8b58be88 | 717 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 718 | S: Maintained |
679655da JP |
719 | F: drivers/net/appletalk/ |
720 | F: net/appletalk/ | |
1da177e4 | 721 | |
24299502 IS |
722 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
723 | M: Iyappan Subramanian <isubramanian@apm.com> | |
724 | M: Keyur Chudgar <kchudgar@apm.com> | |
725 | M: Ravi Patel <rapatel@apm.com> | |
726 | S: Supported | |
727 | F: drivers/net/ethernet/apm/xgene/ | |
728 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
729 | ||
62a37dc7 LP |
730 | APTINA CAMERA SENSOR PLL |
731 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
732 | L: linux-media@vger.kernel.org | |
733 | S: Maintained | |
734 | F: drivers/media/i2c/aptina-pll.* | |
735 | ||
a480167b | 736 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 737 | M: Viresh Kumar <viresh.linux@gmail.com> |
a480167b VK |
738 | L: linux-ide@vger.kernel.org |
739 | S: Maintained | |
740 | F: include/linux/pata_arasan_cf_data.h | |
741 | F: drivers/ata/pata_arasan_cf.c | |
742 | ||
1154ea7d | 743 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 744 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 745 | S: Maintained |
8a61f013 JH |
746 | F: drivers/video/fbdev/arcfb.c |
747 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 748 | |
1da177e4 | 749 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 750 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 751 | S: Maintained |
679655da JP |
752 | F: arch/arm/lib/floppydma.S |
753 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 754 | |
6f96521f WD |
755 | ARM PMU PROFILING AND DEBUGGING |
756 | M: Will Deacon <will.deacon@arm.com> | |
757 | S: Maintained | |
758 | F: arch/arm/kernel/perf_event* | |
759 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
760 | F: arch/arm/include/asm/pmu.h |
761 | F: arch/arm/kernel/hw_breakpoint.c | |
762 | F: arch/arm/include/asm/hw_breakpoint.h | |
763 | ||
d4275354 | 764 | ARM PORT |
8b58be88 | 765 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 766 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
767 | W: http://www.arm.linux.org.uk/ |
768 | S: Maintained | |
769 | F: arch/arm/ | |
770 | ||
d323c243 SB |
771 | ARM SUB-ARCHITECTURES |
772 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 773 | S: Maintained |
d323c243 SB |
774 | F: arch/arm/mach-*/ |
775 | F: arch/arm/plat-*/ | |
776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
777 | ||
cefbf4ea RK |
778 | ARM PRIMECELL AACI PL041 DRIVER |
779 | M: Russell King <linux@arm.linux.org.uk> | |
780 | S: Maintained | |
781 | F: sound/arm/aaci.* | |
782 | ||
783 | ARM PRIMECELL CLCD PL110 DRIVER | |
784 | M: Russell King <linux@arm.linux.org.uk> | |
785 | S: Maintained | |
8a61f013 | 786 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
787 | |
788 | ARM PRIMECELL KMI PL050 DRIVER | |
789 | M: Russell King <linux@arm.linux.org.uk> | |
790 | S: Maintained | |
791 | F: drivers/input/serio/ambakmi.* | |
792 | F: include/linux/amba/kmi.h | |
793 | ||
2761f5c2 | 794 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
795 | M: Russell King <linux@arm.linux.org.uk> |
796 | S: Maintained | |
679655da | 797 | F: drivers/mmc/host/mmci.* |
2f748aaa | 798 | F: include/linux/amba/mmci.h |
2761f5c2 | 799 | |
1b4304e5 RK |
800 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
801 | M: Russell King <linux@arm.linux.org.uk> | |
802 | S: Maintained | |
803 | F: drivers/tty/serial/amba-pl01*.c | |
804 | F: include/linux/amba/serial.h | |
2761f5c2 | 805 | |
cefbf4ea RK |
806 | ARM PRIMECELL BUS SUPPORT |
807 | M: Russell King <linux@arm.linux.org.uk> | |
808 | S: Maintained | |
809 | F: drivers/amba/ | |
810 | F: include/linux/amba/bus.h | |
811 | ||
2b7a52a4 | 812 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 813 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 814 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
815 | S: Maintained |
816 | ||
9c784f95 | 817 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 818 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 819 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
820 | S: Maintained |
821 | ||
2b7a52a4 | 822 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 823 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 824 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
825 | S: Maintained |
826 | ||
1b106699 MR |
827 | ARM/Allwinner A1X SoC support |
828 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
829 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
830 | S: Maintained | |
60b0f380 MR |
831 | N: sun[x4567]i |
832 | ||
833 | ARM/Allwinner SoC Clock Support | |
834 | M: Emilio López <emilio@elopez.com.ar> | |
835 | S: Maintained | |
836 | F: drivers/clk/sunxi/ | |
1b106699 | 837 | |
c1fc8675 | 838 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 839 | M: Andrew Victor <linux@maxim.org.za> |
c1fc8675 NF |
840 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
841 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
efc03ecb | 842 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
795fb7e7 | 843 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
844 | W: http://www.linux4sam.org |
845 | S: Supported | |
846 | F: arch/arm/mach-at91/ | |
70e389cc MB |
847 | F: arch/arm/boot/dts/at91*.dts |
848 | F: arch/arm/boot/dts/at91*.dtsi | |
849 | F: arch/arm/boot/dts/sama*.dts | |
850 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 851 | |
6e05dd4e BB |
852 | ARM/ATMEL AT91 Clock Support |
853 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
854 | S: Maintained | |
855 | F: drivers/clk/at91 | |
856 | ||
986cf2e9 | 857 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 858 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
859 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
860 | S: Maintained | |
861 | F: arch/arm/mach-highbank/ | |
862 | ||
d94f944e | 863 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 864 | M: Anton Vorontsov <anton@enomsg.org> |
d94f944e AV |
865 | S: Maintained |
866 | F: arch/arm/mach-cns3xxx/ | |
867 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
868 | ||
386ab516 AS |
869 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
870 | M: Alexander Shiyan <shc_work@mail.ru> | |
871 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
872 | S: Odd Fixes | |
b8ba3874 | 873 | N: clps711x |
386ab516 | 874 | |
2b7a52a4 | 875 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 876 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 877 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 878 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 879 | S: Maintained |
d19d3667 HS |
880 | F: arch/arm/mach-ep93xx/ |
881 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
882 | |
883 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 884 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 885 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
886 | S: Maintained |
887 | ||
d4275354 | 888 | ARM/CLKDEV SUPPORT |
8b58be88 | 889 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 890 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 891 | S: Maintained |
d4275354 | 892 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 893 | F: drivers/clk/clkdev.c |
d4275354 | 894 | |
d48134e7 | 895 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 896 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 897 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
898 | S: Maintained |
899 | ||
94150095 HF |
900 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
901 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
902 | S: Maintained | |
903 | F: arch/arm/mach-ep93xx/micro9.c | |
904 | ||
1da177e4 | 905 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 906 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
907 | S: Maintained |
908 | ||
881a95f9 | 909 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 910 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 911 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 HUK |
912 | T: git git://git.berlios.de/gemini-board |
913 | S: Maintained | |
f49afbb5 | 914 | F: arch/arm/mach-gemini/ |
881a95f9 | 915 | |
a990cbd8 | 916 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 917 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 919 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
920 | S: Maintained |
921 | F: arch/arm/mach-prima2/ | |
4a9c44f1 | 922 | F: drivers/clk/sirf/ |
05f30e8d BS |
923 | F: drivers/clocksource/timer-prima2.c |
924 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 925 | N: [^a-z]sirf |
a990cbd8 | 926 | |
d4275354 | 927 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 928 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 929 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
930 | W: http://www.arm.linux.org.uk/ |
931 | S: Maintained | |
932 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 933 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 934 | |
4721f3ce UKK |
935 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
936 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
937 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
938 | S: Maintained | |
939 | N: efm32 | |
940 | ||
a9da4f7e | 941 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
942 | M: Daniel Ribeiro <drwyrm@gmail.com> |
943 | M: Stefan Schmidt <stefan@openezx.org> | |
944 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 945 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
946 | W: http://www.openezx.org/ |
947 | S: Maintained | |
cafc2265 SS |
948 | T: topgit git://git.openezx.org/openezx.git |
949 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 950 | |
6a915af9 | 951 | ARM/FARADAY FA526 PORT |
162500b3 | 952 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 953 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 954 | S: Maintained |
1fa7e547 | 955 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 956 | F: arch/arm/mm/*-fa* |
6a915af9 | 957 | |
d4275354 | 958 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 959 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
961 | W: http://www.arm.linux.org.uk/ |
962 | S: Maintained | |
963 | F: arch/arm/include/asm/hardware/dec21285.h | |
964 | F: arch/arm/mach-footbridge/ | |
965 | ||
86183a5f | 966 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
f1c12837 | 967 | M: Shawn Guo <shawn.guo@freescale.com> |
8b58be88 | 968 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 969 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 970 | S: Maintained |
f1c12837 | 971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 972 | F: arch/arm/mach-imx/ |
ce515a6b | 973 | F: arch/arm/mach-mxs/ |
2a82f95c | 974 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 975 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 976 | |
2b7a52a4 | 977 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 978 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 979 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
980 | S: Maintained |
981 | ||
90b8fc34 | 982 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 983 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 984 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
985 | S: Maintained |
986 | ||
ef47d5f0 | 987 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 988 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
989 | M: Paul Parsons <lost.distance@yahoo.com> |
990 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
991 | S: Maintained |
992 | F: arch/arm/mach-pxa/hx4700.c | |
993 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 994 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 995 | |
4dfad069 WX |
996 | ARM/HISILICON SOC SUPPORT |
997 | M: Wei Xu <xuwei5@hisilicon.com> | |
998 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
999 | W: http://www.hisilicon.com | |
1000 | S: Supported | |
1001 | T: git git://github.com/hisilicon/linux-hisi.git | |
1002 | F: arch/arm/mach-hisi/ | |
1003 | ||
21f37bc3 | 1004 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1005 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1006 | W: www.jlime.com |
1007 | S: Maintained | |
084bad91 KE |
1008 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1009 | F: arch/arm/mach-sa1100/jornada720.c | |
1010 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1011 | |
5e767ab9 JMC |
1012 | ARM/IGEP MACHINE SUPPORT |
1013 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1014 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1015 | L: linux-omap@vger.kernel.org | |
1016 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1017 | S: Maintained | |
06ff74fd | 1018 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1019 | |
403d2971 MV |
1020 | ARM/INCOME PXA270 SUPPORT |
1021 | M: Marek Vasut <marek.vasut@gmail.com> | |
1022 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1023 | S: Maintained | |
ec154082 | 1024 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1025 | |
2b7a52a4 | 1026 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1027 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 1028 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1029 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1030 | S: Maintained |
e2bdb176 DW |
1031 | |
1032 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 1033 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1034 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1035 | S: Maintained |
2b7a52a4 LB |
1036 | |
1037 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1038 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 1039 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1040 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1041 | S: Maintained |
2b7a52a4 LB |
1042 | |
1043 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1044 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 1045 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1046 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1047 | S: Maintained |
2b7a52a4 | 1048 | |
2b7a52a4 | 1049 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1050 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1051 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1052 | S: Maintained |
1053 | ||
dfdd8cc9 KH |
1054 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1055 | M: Imre Kaloz <kaloz@openwrt.org> | |
1056 | M: Krzysztof Halasa <khc@pm.waw.pl> | |
baea7b94 | 1057 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1058 | S: Maintained |
1059 | F: arch/arm/mach-ixp4xx/ | |
1060 | ||
838553c5 | 1061 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1062 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1063 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1064 | S: Maintained | |
1065 | F: arch/arm/mach-pxa/stargate2.c | |
1066 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1067 | ||
2b7a52a4 | 1068 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1069 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 1070 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1071 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1072 | S: Maintained |
2b7a52a4 LB |
1073 | |
1074 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1075 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1076 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1077 | S: Maintained |
1078 | ||
1154f858 SS |
1079 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1080 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1081 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1082 | S: Maintained | |
1083 | F: arch/arm/mach-keystone/ | |
317929cd | 1084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1085 | |
bc6aa566 SS |
1086 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
1087 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1088 | L: linux-kernel@vger.kernel.org | |
1089 | S: Maintained | |
1090 | F: drivers/clk/keystone/ | |
1091 | ||
1092 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
1093 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1094 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1095 | L: linux-kernel@vger.kernel.org | |
1096 | S: Maintained | |
1097 | F: drivers/clocksource/timer-keystone.c | |
1098 | ||
1099 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
1100 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1101 | L: linux-kernel@vger.kernel.org | |
1102 | S: Maintained | |
1103 | F: drivers/power/reset/keystone-reset.c | |
1104 | ||
1105 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
1106 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1107 | L: linux-kernel@vger.kernel.org | |
1108 | S: Maintained | |
1109 | F: drivers/memory/*emif* | |
1110 | ||
2b7a52a4 | 1111 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1112 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1113 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1114 | S: Maintained |
1115 | ||
3b886171 | 1116 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1117 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1118 | S: Maintained |
1119 | ||
75f41273 TP |
1120 | ARM/Marvell Armada 370 and Armada XP SOC support |
1121 | M: Jason Cooper <jason@lakedaemon.net> | |
1122 | M: Andrew Lunn <andrew@lunn.ch> | |
1123 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1124 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1125 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1126 | S: Maintained | |
1127 | F: arch/arm/mach-mvebu/ | |
1128 | ||
40f4978b SH |
1129 | ARM/Marvell Berlin SoC support |
1130 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1131 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1132 | S: Maintained | |
1133 | F: arch/arm/mach-berlin/ | |
1134 | ||
4cfab57e | 1135 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1136 | M: Jason Cooper <jason@lakedaemon.net> |
1137 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1138 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
efc03ecb | 1139 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1140 | S: Maintained |
1141 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1142 | F: arch/arm/mach-mv78xx0/ |
1143 | F: arch/arm/mach-orion5x/ | |
1144 | F: arch/arm/plat-orion/ | |
3b886171 | 1145 | |
d69ac131 AC |
1146 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1147 | M: Alexander Clouter <alex@digriz.org.uk> | |
1148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1149 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1150 | S: Maintained | |
1151 | F: arch/arm/mach-orion5x/ts78xx-* | |
1152 | ||
adcb079f AB |
1153 | ARM/MICREL KS8695 ARCHITECTURE |
1154 | M: Greg Ungerer <gerg@uclinux.org> | |
1155 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1156 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1157 | S: Odd Fixes |
1158 | ||
d78ff0a5 | 1159 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1160 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1161 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1162 | F: arch/arm/mach-pxa/mioa701.c |
1163 | S: Maintained | |
1164 | ||
9624dfe6 | 1165 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1166 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1167 | S: Maintained |
1168 | ||
e0ee9851 | 1169 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1170 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1171 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1172 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1173 | S: Maintained | |
1174 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1175 | F: drivers/pinctrl/nomadik/ |
87572880 | 1176 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1178 | |
9d76295a | 1179 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1180 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1181 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1182 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1183 | S: Supported | |
1184 | ||
0c19d21e DW |
1185 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1186 | M: David Brown <davidb@codeaurora.org> | |
b4c9bfab | 1187 | M: Daniel Walker <dwalker@fifo99.com> |
0c19d21e | 1188 | M: Bryan Huntsman <bryanh@codeaurora.org> |
c68af41d | 1189 | L: linux-arm-msm@vger.kernel.org |
0c19d21e | 1190 | F: arch/arm/mach-msm/ |
8a61f013 | 1191 | F: drivers/video/fbdev/msm/ |
0c19d21e DW |
1192 | F: drivers/mmc/host/msm_sdcc.c |
1193 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1194 | F: drivers/tty/serial/msm_serial.h |
1195 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1196 | F: drivers/*/pm8???-* |
0a759c6e | 1197 | F: drivers/mfd/ssbi.c |
8cd5c866 | 1198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1199 | S: Maintained |
1200 | ||
8459c159 | 1201 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1202 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1203 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1204 | S: Maintained |
1205 | ||
5d783a2d | 1206 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1207 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1208 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1209 | W: http://hackndev.com |
1210 | S: Maintained | |
933d35f0 JP |
1211 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1212 | F: arch/arm/mach-pxa/palmtx.c | |
1213 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1214 | F: arch/arm/mach-pxa/palmt5.c | |
1215 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1216 | F: arch/arm/mach-pxa/palmld.c | |
1217 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1218 | F: arch/arm/mach-pxa/palmte2.c | |
1219 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1220 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1221 | |
b57fe924 | 1222 | ARM/PALM TREO SUPPORT |
8b58be88 | 1223 | M: Tomas Cech <sleep_walker@suse.cz> |
75280787 | 1224 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1225 | W: http://hackndev.com |
1226 | S: Maintained | |
b57fe924 JP |
1227 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1228 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1229 | |
c49e1e63 | 1230 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1231 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1232 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1233 | W: http://hackndev.com |
1234 | S: Maintained | |
933d35f0 JP |
1235 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1236 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1237 | |
1da177e4 | 1238 | ARM/PLEB SUPPORT |
8b58be88 | 1239 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1240 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1241 | S: Maintained | |
1242 | ||
1243 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1244 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1245 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1246 | W: http://www.arm.linux.org.uk/ |
1247 | S: Maintained | |
1248 | ||
8fc1b0f8 KG |
1249 | ARM/QUALCOMM SUPPORT |
1250 | M: Kumar Gala <galak@codeaurora.org> | |
1251 | M: David Brown <davidb@codeaurora.org> | |
1252 | L: linux-arm-msm@vger.kernel.org | |
1253 | S: Maintained | |
1254 | F: arch/arm/mach-qcom/ | |
1255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | |
1256 | ||
2b7a52a4 | 1257 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1258 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1260 | S: Maintained |
1261 | ||
d4275354 | 1262 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1263 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1264 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1265 | W: http://www.arm.linux.org.uk/ |
1266 | S: Maintained | |
d4275354 RK |
1267 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1268 | F: arch/arm/include/asm/hardware/ioc.h | |
1269 | F: arch/arm/include/asm/hardware/iomd.h | |
1270 | F: arch/arm/include/asm/hardware/memc.h | |
1271 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1272 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1273 | F: drivers/net/ethernet/i825xx/ether1* |
1274 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1275 | F: drivers/scsi/arm/ |
1276 | ||
08ddbb0a HS |
1277 | ARM/Rockchip SoC support |
1278 | M: Heiko Stuebner <heiko@sntech.de> | |
1279 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1280 | L: linux-rockchip@lists.infradead.org |
08ddbb0a | 1281 | S: Maintained |
541555e9 | 1282 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1283 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1284 | F: drivers/clk/rockchip/ |
1285 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1286 | F: drivers/*/*rockchip* |
541555e9 HS |
1287 | F: drivers/*/*/*rockchip* |
1288 | F: sound/soc/rockchip/ | |
08ddbb0a | 1289 | |
b21477f9 | 1290 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1291 | M: Ben Dooks <ben-linux@fluff.org> |
482ce512 | 1292 | M: Kukjin Kim <kgene.kim@samsung.com> |
efc03ecb | 1293 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1294 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 BD |
1295 | W: http://www.fluff.org/ben/linux/ |
1296 | S: Maintained | |
6f0589c8 MB |
1297 | F: arch/arm/boot/dts/s3c* |
1298 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1299 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1300 | F: arch/arm/mach-s3c24*/ |
1301 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1302 | F: drivers/*/*s3c2410* |
1303 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1304 | F: drivers/spi/spi-s3c* |
1305 | F: sound/soc/samsung/* | |
1da177e4 | 1306 | |
0dcecae2 | 1307 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1308 | M: Kukjin Kim <kgene.kim@samsung.com> |
1309 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1310 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1311 | S: Maintained | |
1312 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1313 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1314 | N: exynos |
f556cb07 | 1315 | |
10ffa964 KP |
1316 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1317 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1318 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1319 | S: Maintained | |
1320 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1321 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1322 | |
3ce4ccb6 KD |
1323 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1324 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1325 | M: Kamil Debski <k.debski@samsung.com> | |
1326 | L: linux-arm-kernel@lists.infradead.org | |
1327 | L: linux-media@vger.kernel.org | |
1328 | S: Maintained | |
1329 | F: drivers/media/platform/s5p-g2d/ | |
1330 | ||
e6a476fd MS |
1331 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1332 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1333 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1334 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1335 | L: linux-arm-kernel@lists.infradead.org |
1336 | L: linux-media@vger.kernel.org | |
1337 | S: Maintained | |
934455d7 | 1338 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1339 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1340 | |
1341 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1342 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1343 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1344 | L: linux-arm-kernel@lists.infradead.org | |
1345 | L: linux-media@vger.kernel.org | |
1346 | S: Maintained | |
90d72ac6 | 1347 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1348 | |
d48d38e8 | 1349 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1350 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1351 | M: Magnus Damm <magnus.damm@gmail.com> |
1352 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1353 | W: http://oss.renesas.com |
bbff48f5 | 1354 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1356 | S: Supported |
0b514fdb SH |
1357 | F: arch/arm/boot/dts/emev2* |
1358 | F: arch/arm/boot/dts/r7s* | |
1359 | F: arch/arm/boot/dts/r8a* | |
1360 | F: arch/arm/boot/dts/sh* | |
1361 | F: arch/arm/configs/ape6evm_defconfig | |
1362 | F: arch/arm/configs/armadillo800eva_defconfig | |
1363 | F: arch/arm/configs/bockw_defconfig | |
1364 | F: arch/arm/configs/genmai_defconfig | |
1365 | F: arch/arm/configs/koelsch_defconfig | |
1366 | F: arch/arm/configs/kzm9g_defconfig | |
1367 | F: arch/arm/configs/lager_defconfig | |
1368 | F: arch/arm/configs/mackerel_defconfig | |
1369 | F: arch/arm/configs/marzen_defconfig | |
1370 | F: arch/arm/configs/shmobile_defconfig | |
d48d38e8 PM |
1371 | F: arch/arm/mach-shmobile/ |
1372 | F: drivers/sh/ | |
1373 | ||
66314223 DN |
1374 | ARM/SOCFPGA ARCHITECTURE |
1375 | M: Dinh Nguyen <dinguyen@altera.com> | |
1376 | S: Maintained | |
1377 | F: arch/arm/mach-socfpga/ | |
1378 | ||
1379 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1380 | M: Dinh Nguyen <dinguyen@altera.com> | |
1381 | S: Maintained | |
1382 | F: drivers/clk/socfpga/ | |
1383 | ||
65ebcc11 | 1384 | ARM/STI ARCHITECTURE |
a92177ea SK |
1385 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1386 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1387 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1388 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1389 | L: kernel@stlinux.com | |
1390 | W: http://www.stlinux.com | |
1391 | S: Maintained | |
1392 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1393 | F: arch/arm/boot/dts/sti* |
1394 | F: drivers/clocksource/arm_global_timer.c | |
1395 | F: drivers/reset/sti/ | |
1396 | F: drivers/pinctrl/pinctrl-st.c | |
1397 | F: drivers/media/rc/st_rc.c | |
1398 | F: drivers/i2c/busses/i2c-st.c | |
1399 | F: drivers/tty/serial/st-asc.c | |
f53b2bff | 1400 | F: drivers/mmc/host/sdhci-st.c |
65ebcc11 | 1401 | |
2b7a52a4 | 1402 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1403 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1404 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1405 | S: Maintained |
1406 | ||
1bbd7089 | 1407 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1408 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1409 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1410 | S: Maintained | |
1411 | ||
2b7a52a4 | 1412 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1413 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1414 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1415 | S: Maintained |
1416 | ||
98ad6e3b | 1417 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1418 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1419 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1420 | W: http://www.mcuos.com |
1421 | S: Maintained | |
4e89e8f6 | 1422 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1423 | F: drivers/input/keyboard/w90p910_keypad.c |
1424 | F: drivers/input/touchscreen/w90p910_ts.c | |
1425 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1426 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1427 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1428 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1429 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1430 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1431 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1432 | |
54274d71 | 1433 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1434 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1435 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1436 | S: Supported | |
1437 | F: arch/arm/mach-u300/ | |
9affbd24 | 1438 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1439 | F: drivers/i2c/busses/i2c-stu300.c |
1440 | F: drivers/rtc/rtc-coh901331.c | |
1441 | F: drivers/watchdog/coh901327_wdt.c | |
1442 | F: drivers/dma/coh901318* | |
87572880 LW |
1443 | F: drivers/mfd/ab3100* |
1444 | F: drivers/rtc/rtc-ab3100.c | |
1445 | F: drivers/rtc/rtc-coh901331.c | |
1446 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1447 | |
87572880 | 1448 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1449 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1450 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1451 | S: Maintained | |
1452 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1453 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1454 | F: drivers/dma/ste_dma40* |
e4651a9f | 1455 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1456 | F: drivers/mfd/abx500* |
1457 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1458 | F: drivers/mfd/dbx500* |
1459 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1460 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1461 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1462 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1463 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1465 | |
e93fde28 UH |
1466 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1467 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1468 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1469 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1470 | S: Maintained | |
1471 | F: drivers/clk/ux500/ | |
1472 | F: include/linux/platform_data/clk-ux500.h | |
1473 | ||
d4275354 | 1474 | ARM/VFP SUPPORT |
8b58be88 | 1475 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1476 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1477 | W: http://www.arm.linux.org.uk/ |
1478 | S: Maintained | |
1479 | F: arch/arm/vfp/ | |
1480 | ||
e66b6d8e MV |
1481 | ARM/VOIPAC PXA270 SUPPORT |
1482 | M: Marek Vasut <marek.vasut@gmail.com> | |
1483 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1484 | S: Maintained | |
1485 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1486 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1487 | |
04529fe2 TP |
1488 | ARM/VT8500 ARM ARCHITECTURE |
1489 | M: Tony Prisk <linux@prisktech.co.nz> | |
1490 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1491 | S: Maintained | |
1492 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1493 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1494 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1495 | F: drivers/mmc/host/wmt-sdmmc.c |
1496 | F: drivers/pwm/pwm-vt8500.c | |
1497 | F: drivers/rtc/rtc-vt8500.c | |
1498 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1499 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1500 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1501 | F: drivers/video/fbdev/vt8500lcdfb.* |
1502 | F: drivers/video/fbdev/wm8505fb* | |
1503 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1504 | |
e66b6d8e MV |
1505 | ARM/ZIPIT Z2 SUPPORT |
1506 | M: Marek Vasut <marek.vasut@gmail.com> | |
1507 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1508 | S: Maintained | |
1509 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1510 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1511 | |
51f29d44 MS |
1512 | ARM/ZYNQ ARCHITECTURE |
1513 | M: Michal Simek <michal.simek@xilinx.com> | |
1514 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1515 | W: http://wiki.xilinx.com | |
1516 | T: git git://git.xilinx.com/linux-xlnx.git | |
1517 | S: Supported | |
1518 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1519 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1520 | N: zynq |
1521 | N: xilinx | |
1522 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1523 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1524 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1525 | |
b8f9879e WD |
1526 | ARM SMMU DRIVER |
1527 | M: Will Deacon <will.deacon@arm.com> | |
1528 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1529 | S: Maintained | |
1530 | F: drivers/iommu/arm-smmu.c | |
1531 | ||
38074229 CM |
1532 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1533 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1534 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1535 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1536 | S: Maintained | |
1537 | F: arch/arm64/ | |
d19766ec | 1538 | F: Documentation/arm64/ |
38074229 | 1539 | |
9d7005f9 LP |
1540 | AS3645A LED FLASH CONTROLLER DRIVER |
1541 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1542 | L: linux-media@vger.kernel.org | |
1543 | T: git git://linuxtv.org/media_tree.git | |
1544 | S: Maintained | |
1545 | F: drivers/media/i2c/as3645a.c | |
1546 | F: include/media/as3645a.h | |
1547 | ||
d58de038 GJ |
1548 | ASC7621 HARDWARE MONITOR DRIVER |
1549 | M: George Joseph <george.joseph@fairview5.com> | |
1550 | L: lm-sensors@lm-sensors.org | |
1551 | S: Maintained | |
1552 | F: Documentation/hwmon/asc7621 | |
1553 | F: drivers/hwmon/asc7621.c | |
1554 | ||
b229ece9 | 1555 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1556 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1557 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1558 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1559 | W: http://acpi4asus.sf.net |
85091b71 | 1560 | S: Maintained |
b229ece9 CC |
1561 | F: drivers/platform/x86/asus*.c |
1562 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1563 | |
953a6479 | 1564 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1565 | M: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1566 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1567 | S: Maintained |
679655da JP |
1568 | F: Documentation/crypto/async-tx-api.txt |
1569 | F: crypto/async_tx/ | |
1570 | F: drivers/dma/ | |
1571 | F: include/linux/dmaengine.h | |
1572 | F: include/linux/async_tx.h | |
b3e5f263 | 1573 | |
a1867d36 | 1574 | AT24 EEPROM DRIVER |
14d77c4d | 1575 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1576 | L: linux-i2c@vger.kernel.org |
1577 | S: Maintained | |
1578 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1579 | F: include/linux/platform_data/at24.h |
a1867d36 | 1580 | |
e7839f25 | 1581 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1582 | M: "Ed L. Cashin" <ecashin@coraid.com> |
eecdf226 | 1583 | W: http://support.coraid.com/support/linux |
1da177e4 | 1584 | S: Supported |
679655da JP |
1585 | F: Documentation/aoe/ |
1586 | F: drivers/block/aoe/ | |
1da177e4 | 1587 | |
9a10a870 | 1588 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1589 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1590 | L: linux-wireless@vger.kernel.org |
1591 | S: Supported | |
1592 | F: drivers/net/wireless/ath/* | |
1593 | ||
fa1c114f | 1594 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1595 | M: Jiri Slaby <jirislaby@gmail.com> |
1596 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1597 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f JS |
1598 | L: linux-wireless@vger.kernel.org |
1599 | L: ath5k-devel@lists.ath5k.org | |
72c706b7 | 1600 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1601 | S: Maintained |
fa451753 | 1602 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1603 | |
12e62d6f KV |
1604 | ATHEROS ATH6KL WIRELESS DRIVER |
1605 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1606 | L: linux-wireless@vger.kernel.org | |
1607 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1608 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1609 | S: Supported |
1610 | F: drivers/net/wireless/ath/ath6kl/ | |
1611 | ||
2be7d22f VK |
1612 | WILOCITY WIL6210 WIRELESS DRIVER |
1613 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1614 | L: linux-wireless@vger.kernel.org | |
1615 | L: wil6210@qca.qualcomm.com | |
1616 | S: Supported | |
1617 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1618 | F: drivers/net/wireless/ath/wil6210/ | |
1619 | ||
1d7e1e6b CL |
1620 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1621 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1622 | L: linux-wireless@vger.kernel.org | |
1623 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1624 | S: Maintained | |
1625 | F: drivers/net/wireless/ath/carl9170/ | |
1626 | ||
2c2a6172 LT |
1627 | ATK0110 HWMON DRIVER |
1628 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1629 | L: lm-sensors@lm-sensors.org | |
1630 | S: Maintained | |
1631 | F: drivers/hwmon/asus_atk0110.c | |
1632 | ||
6f69a6d7 | 1633 | ATI_REMOTE2 DRIVER |
8b58be88 | 1634 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1635 | S: Maintained |
679655da | 1636 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1637 | |
7ae115b4 | 1638 | ATLX ETHERNET DRIVERS |
8b58be88 | 1639 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1640 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1641 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1642 | W: http://sourceforge.net/projects/atl1 |
1643 | W: http://atl1.sourceforge.net | |
1644 | S: Maintained | |
2b133ad6 | 1645 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1646 | |
1da177e4 | 1647 | ATM |
8b58be88 | 1648 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
476604de | 1649 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1650 | L: netdev@vger.kernel.org |
1da177e4 LT |
1651 | W: http://linux-atm.sourceforge.net |
1652 | S: Maintained | |
679655da JP |
1653 | F: drivers/atm/ |
1654 | F: include/linux/atm* | |
c117ab84 | 1655 | F: include/uapi/linux/atm* |
1da177e4 | 1656 | |
04ac2f46 | 1657 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1658 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1659 | S: Maintained |
1660 | F: drivers/mmc/host/atmel-mci.c | |
1661 | F: drivers/mmc/host/atmel-mci-regs.h | |
1662 | ||
a1cfac48 | 1663 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1664 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1665 | S: Supported |
df621252 | 1666 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1667 | |
b414dc16 NF |
1668 | ATMEL DMA DRIVER |
1669 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1670 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1671 | S: Supported | |
1672 | F: drivers/dma/at_hdmac.c | |
1673 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1674 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1675 | |
888f2804 LD |
1676 | ATMEL I2C DRIVER |
1677 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1678 | L: linux-i2c@vger.kernel.org | |
1679 | S: Supported | |
1680 | F: drivers/i2c/busses/i2c-at91.c | |
1681 | ||
15515545 JW |
1682 | ATMEL ISI DRIVER |
1683 | M: Josh Wu <josh.wu@atmel.com> | |
1684 | L: linux-media@vger.kernel.org | |
1685 | S: Supported | |
f2294c2d | 1686 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1687 | F: include/media/atmel-isi.h |
1688 | ||
8f4c79ce | 1689 | ATMEL LCDFB DRIVER |
8b58be88 | 1690 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1691 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1692 | S: Maintained |
8a61f013 | 1693 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1694 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1695 | |
89e5785f | 1696 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1697 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1698 | S: Supported |
9f2f381f | 1699 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1700 | |
754ce4f2 | 1701 | ATMEL SPI DRIVER |
a02875a6 | 1702 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1703 | S: Supported |
9df92e6c | 1704 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1705 | |
e9cb1c5a NF |
1706 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1707 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1708 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1709 | S: Supported | |
1710 | F: drivers/misc/atmel_tclib.c | |
1711 | F: drivers/clocksource/tcb_clksrc.c | |
1712 | ||
914a3f3b | 1713 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1714 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1715 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1716 | S: Supported |
faf2e1db | 1717 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 1718 | |
1da177e4 | 1719 | ATMEL WIRELESS DRIVER |
8b58be88 | 1720 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1721 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1722 | W: http://www.thekelleys.org.uk/atmel |
1723 | W: http://atmelwlandriver.sourceforge.net/ | |
1724 | S: Maintained | |
679655da | 1725 | F: drivers/net/wireless/atmel* |
1da177e4 | 1726 | |
26780d9e | 1727 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1728 | M: Bradley Grove <linuxdrivers@attotech.com> |
1729 | L: linux-scsi@vger.kernel.org | |
1730 | W: http://www.attotech.com | |
1731 | S: Supported | |
1732 | F: drivers/scsi/esas2r | |
26780d9e | 1733 | |
a92b7b80 | 1734 | AUDIT SUBSYSTEM |
8b58be88 | 1735 | M: Eric Paris <eparis@redhat.com> |
b9a06207 | 1736 | L: linux-audit@redhat.com (subscribers-only) |
ad3f9a22 | 1737 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1738 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1739 | S: Maintained |
679655da | 1740 | F: include/linux/audit.h |
c117ab84 | 1741 | F: include/uapi/linux/audit.h |
679655da | 1742 | F: kernel/audit* |
a92b7b80 | 1743 | |
70e84049 | 1744 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1745 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1746 | W: http://miguelojeda.es/auxdisplay.htm |
1747 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1748 | S: Maintained |
679655da JP |
1749 | F: drivers/auxdisplay/ |
1750 | F: include/linux/cfag12864b.h | |
70e84049 | 1751 | |
5f97f7f9 | 1752 | AVR32 ARCHITECTURE |
e336f61f HCE |
1753 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1754 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 1755 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1756 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1757 | W: http://avrfreaks.net/ |
e336f61f | 1758 | S: Maintained |
679655da | 1759 | F: arch/avr32/ |
5f97f7f9 HS |
1760 | |
1761 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1762 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1763 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
1764 | S: Maintained | |
679655da | 1765 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1766 | |
1da177e4 | 1767 | AX.25 NETWORK LAYER |
8b58be88 | 1768 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 1769 | L: linux-hams@vger.kernel.org |
d34cb28a | 1770 | W: http://www.linux-ax25.org/ |
1da177e4 | 1771 | S: Maintained |
c117ab84 | 1772 | F: include/uapi/linux/ax25.h |
679655da JP |
1773 | F: include/net/ax25.h |
1774 | F: net/ax25/ | |
1da177e4 | 1775 | |
d5269395 | 1776 | AZ6007 DVB DRIVER |
1b2c14b4 | 1777 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d5269395 MCC |
1778 | L: linux-media@vger.kernel.org |
1779 | W: http://linuxtv.org | |
1780 | T: git git://linuxtv.org/media_tree.git | |
1781 | S: Maintained | |
1782 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1783 | ||
6777376e HV |
1784 | AZTECH FM RADIO RECEIVER DRIVER |
1785 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
1786 | L: linux-media@vger.kernel.org | |
1787 | T: git git://linuxtv.org/media_tree.git | |
1788 | W: http://linuxtv.org | |
1789 | S: Maintained | |
1790 | F: drivers/media/radio/radio-aztech* | |
1791 | ||
e2d1d6c0 | 1792 | B43 WIRELESS DRIVER |
8b58be88 | 1793 | M: Stefano Brivio <stefano.brivio@polimi.it> |
e2d1d6c0 | 1794 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1795 | L: b43-dev@lists.infradead.org |
491b26b4 | 1796 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1797 | S: Maintained |
679655da | 1798 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1799 | |
1800 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1801 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1802 | M: Stefano Brivio <stefano.brivio@polimi.it> | |
e2d1d6c0 | 1803 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1804 | L: b43-dev@lists.infradead.org |
491b26b4 | 1805 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1806 | S: Maintained |
679655da | 1807 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1808 | |
300abeb5 | 1809 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1810 | M: Jingoo Han <jg1.han@samsung.com> |
70d14fcf JH |
1811 | M: Bryan Wu <cooloney@gmail.com> |
1812 | M: Lee Jones <lee.jones@linaro.org> | |
300abeb5 | 1813 | S: Maintained |
679655da JP |
1814 | F: drivers/video/backlight/ |
1815 | F: include/linux/backlight.h | |
300abeb5 | 1816 | |
c6c8fea2 | 1817 | BATMAN ADVANCED |
207df49e | 1818 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 1819 | M: Simon Wunderlich <sw@simonwunderlich.de> |
207df49e | 1820 | M: Antonio Quartulli <antonio@meshcoding.com> |
c6c8fea2 SE |
1821 | L: b.a.t.m.a.n@lists.open-mesh.org |
1822 | W: http://www.open-mesh.org/ | |
1823 | S: Maintained | |
1824 | F: net/batman-adv/ | |
1825 | ||
e2d1d6c0 | 1826 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1827 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
1828 | L: linux-hams@vger.kernel.org |
1829 | W: http://www.baycom.org/~tom/ham/ham.html | |
1830 | S: Maintained | |
679655da | 1831 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1832 | |
cafe5635 | 1833 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1834 | M: Kent Overstreet <kmo@daterainc.com> |
cafe5635 KO |
1835 | L: linux-bcache@vger.kernel.org |
1836 | W: http://bcache.evilpiepirate.org | |
1837 | S: Maintained: | |
1838 | F: drivers/md/bcache/ | |
1839 | ||
3faece9d KM |
1840 | BECEEM BCS200/BCS220-3/BCSM250 WIMAX SUPPORT |
1841 | M: Kevin McKinney <klmckinney1@gmail.com> | |
1842 | M: Matthias Beyer <mail@beyermatthias.de> | |
1843 | L: devel@driverdev.osuosl.org | |
1844 | S: Maintained | |
1845 | F: drivers/staging/bcm* | |
1846 | ||
e2d1d6c0 | 1847 | BEFS FILE SYSTEM |
55817d3d | 1848 | S: Orphan |
679655da JP |
1849 | F: Documentation/filesystems/befs.txt |
1850 | F: fs/befs/ | |
e2d1d6c0 | 1851 | |
564ee360 DM |
1852 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
1853 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> | |
1854 | L: netdev@vger.kernel.org | |
1855 | S: Maintained | |
1856 | F: drivers/net/ethernet/ec_bhf.c | |
1857 | ||
e2d1d6c0 | 1858 | BFS FILE SYSTEM |
8b58be88 | 1859 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 1860 | S: Maintained |
679655da JP |
1861 | F: Documentation/filesystems/bfs.txt |
1862 | F: fs/bfs/ | |
c117ab84 | 1863 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1864 | |
1394f032 | 1865 | BLACKFIN ARCHITECTURE |
a4edbc10 | 1866 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 1867 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 1868 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1869 | W: http://blackfin.uclinux.org |
1870 | S: Supported | |
679655da | 1871 | F: arch/blackfin/ |
566da5b2 | 1872 | |
e190d6b1 | 1873 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 1874 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
1875 | W: http://blackfin.uclinux.org |
1876 | S: Supported | |
7b35f033 | 1877 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1878 | |
566da5b2 | 1879 | BLACKFIN RTC DRIVER |
b3fe92b0 | 1880 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
1881 | W: http://blackfin.uclinux.org |
1882 | S: Supported | |
679655da | 1883 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1884 | |
936ed49a | 1885 | BLACKFIN SDH DRIVER |
109ec8c3 | 1886 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1887 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
1888 | W: http://blackfin.uclinux.org |
1889 | S: Supported | |
1890 | F: drivers/mmc/host/bfin_sdh.c | |
1891 | ||
1394f032 | 1892 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1893 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1894 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
1895 | W: http://blackfin.uclinux.org |
1896 | S: Supported | |
8460241e | 1897 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1898 | |
1e6d320f | 1899 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 1900 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
1901 | W: http://blackfin.uclinux.org |
1902 | S: Supported | |
679655da | 1903 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1904 | |
d24ecfcc | 1905 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1906 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1907 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
1908 | W: http://blackfin.uclinux.org/ |
1909 | S: Supported | |
679655da | 1910 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1911 | |
1e204377 SJ |
1912 | BLACKFIN MEDIA DRIVER |
1913 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 1914 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
1915 | W: http://blackfin.uclinux.org/ |
1916 | S: Supported | |
1917 | F: drivers/media/platform/blackfin/ | |
1918 | F: drivers/media/i2c/adv7183* | |
1919 | F: drivers/media/i2c/vs6624* | |
1920 | ||
b54cf35a JSM |
1921 | BLINKM RGB LED DRIVER |
1922 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
1923 | S: Maintained | |
1924 | F: drivers/leds/leds-blinkm.c | |
1925 | ||
1da177e4 | 1926 | BLOCK LAYER |
8b58be88 | 1927 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 1928 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1929 | S: Maintained |
679655da | 1930 | F: block/ |
1da177e4 | 1931 | |
2b54aaef | 1932 | BLOCK2MTD DRIVER |
8b58be88 | 1933 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
1934 | L: linux-mtd@lists.infradead.org |
1935 | S: Maintained | |
679655da | 1936 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1937 | |
63fbd24e | 1938 | BLUETOOTH DRIVERS |
8b58be88 | 1939 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1940 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1941 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 1942 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 1943 | W: http://www.bluez.org/ |
22e7a424 MH |
1944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1946 | S: Maintained |
679655da | 1947 | F: drivers/bluetooth/ |
1da177e4 | 1948 | |
63fbd24e | 1949 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1950 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1951 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1952 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
1953 | L: linux-bluetooth@vger.kernel.org |
1954 | W: http://www.bluez.org/ | |
22e7a424 MH |
1955 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1957 | S: Maintained |
679655da JP |
1958 | F: net/bluetooth/ |
1959 | F: include/net/bluetooth/ | |
1da177e4 LT |
1960 | |
1961 | BONDING DRIVER | |
79b30750 | 1962 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 1963 | M: Veaceslav Falico <vfalico@gmail.com> |
4cd72c6e | 1964 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 1965 | L: netdev@vger.kernel.org |
ce00f85c JC |
1966 | W: http://sourceforge.net/projects/bonding/ |
1967 | S: Supported | |
679655da | 1968 | F: drivers/net/bonding/ |
c117ab84 | 1969 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1970 | |
b5f4df34 AS |
1971 | BPF (Safe dynamic programs and tools) |
1972 | M: Alexei Starovoitov <ast@kernel.org> | |
1973 | L: netdev@vger.kernel.org | |
1974 | L: linux-kernel@vger.kernel.org | |
1975 | S: Supported | |
1976 | F: kernel/bpf/ | |
1977 | ||
39105890 | 1978 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1979 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
1980 | L: netdev@vger.kernel.org |
1981 | S: Supported | |
adfc5217 | 1982 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1983 | |
32ec90d5 FF |
1984 | BROADCOM GENET ETHERNET DRIVER |
1985 | M: Florian Fainelli <f.fainelli@gmail.com> | |
1986 | L: netdev@vger.kernel.org | |
1987 | S: Supported | |
1988 | F: drivers/net/ethernet/broadcom/genet/ | |
1989 | ||
948c51e6 | 1990 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
1991 | M: Sony Chacko <sony.chacko@qlogic.com> |
1992 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
1993 | L: netdev@vger.kernel.org |
1994 | S: Supported | |
adfc5217 JK |
1995 | F: drivers/net/ethernet/broadcom/bnx2.* |
1996 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1997 | |
4d9d2cb0 | 1998 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 1999 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2000 | L: netdev@vger.kernel.org |
2001 | S: Supported | |
adfc5217 | 2002 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2003 | |
90f4c594 | 2004 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
497a045d | 2005 | M: Christian Daudt <bcm@fixthebug.org> |
a3db2bba | 2006 | M: Matt Porter <mporter@linaro.org> |
497a045d | 2007 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2008 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2009 | S: Maintained |
2010 | F: arch/arm/mach-bcm/ | |
2011 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2012 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
2013 | F: arch/arm/boot/dts/bcm281* |
2014 | F: arch/arm/configs/bcm_defconfig | |
e4ef47f2 | 2015 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2016 | F: drivers/clocksource/bcm_kona_timer.c |
2017 | ||
f680f25c SW |
2018 | BROADCOM BCM2835 ARM ARCHICTURE |
2019 | M: Stephen Warren <swarren@wwwdotorg.org> | |
2020 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) | |
2021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
2022 | S: Maintained | |
d30fe627 | 2023 | F: arch/arm/mach-bcm/board_bcm2835.c |
f680f25c SW |
2024 | F: arch/arm/boot/dts/bcm2835* |
2025 | F: arch/arm/configs/bcm2835_defconfig | |
2026 | F: drivers/*/*bcm2835* | |
2027 | ||
5b293ebe HM |
2028 | BROADCOM BCM5301X ARM ARCHICTURE |
2029 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2030 | L: linux-arm-kernel@lists.infradead.org | |
2031 | S: Maintained | |
2032 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2033 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2034 | F: arch/arm/boot/dts/bcm470* | |
2035 | ||
2df94fd6 BN |
2036 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2037 | M: Marc Carino <marc.ceeeee@gmail.com> | |
2038 | M: Brian Norris <computersforpeace@gmail.com> | |
2039 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2040 | S: Maintained | |
2041 | F: arch/arm/mach-bcm/*brcmstb* | |
2042 | F: arch/arm/boot/dts/bcm7*.dts* | |
2043 | ||
948c51e6 | 2044 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2045 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2046 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2047 | L: netdev@vger.kernel.org |
2048 | S: Supported | |
adfc5217 | 2049 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2050 | |
a9533e7e HP |
2051 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2052 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 2053 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 2054 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 2055 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 2056 | L: linux-wireless@vger.kernel.org |
5615171c | 2057 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 2058 | S: Supported |
f62ebdd5 | 2059 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 2060 | |
9958d6f9 | 2061 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2062 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2063 | L: linux-scsi@vger.kernel.org |
2064 | S: Supported | |
2065 | F: drivers/scsi/bnx2fc/ | |
2066 | ||
6a6b5ad0 | 2067 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2068 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2069 | L: linux-scsi@vger.kernel.org |
2070 | S: Supported | |
2071 | F: drivers/scsi/bnx2i/ | |
2072 | ||
7b7f588b | 2073 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2074 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2075 | L: bcm-kernel-feedback-list@broadcom.com |
2076 | S: Supported | |
2077 | F: drivers/gpio/gpio-bcm-kona.c | |
2078 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt | |
2079 | ||
c9678d86 RM |
2080 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2081 | M: Rafał Miłecki <zajec5@gmail.com> | |
2082 | L: linux-wireless@vger.kernel.org | |
2083 | S: Maintained | |
2084 | F: drivers/bcma/ | |
2085 | F: include/linux/bcma/ | |
2086 | ||
b8302205 FF |
2087 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2088 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2089 | L: netdev@vger.kernel.org | |
2090 | S: Supported | |
2091 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2092 | ||
7725ccfd | 2093 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2094 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2095 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2096 | L: linux-scsi@vger.kernel.org |
2097 | S: Supported | |
2098 | F: drivers/scsi/bfa/ | |
7725ccfd | 2099 | |
8b230ed8 RM |
2100 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
2101 | M: Rasesh Mody <rmody@brocade.com> | |
8b230ed8 RM |
2102 | L: netdev@vger.kernel.org |
2103 | S: Supported | |
f844a0ea | 2104 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2105 | |
5cdf7f76 | 2106 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2107 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2108 | L: linux-scsi@vger.kernel.org |
2109 | S: Supported | |
679655da JP |
2110 | F: block/bsg.c |
2111 | F: include/linux/bsg.h | |
c117ab84 | 2112 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2113 | |
af39917d CL |
2114 | BT87X AUDIO DRIVER |
2115 | M: Clemens Ladisch <clemens@ladisch.de> | |
2116 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2117 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2118 | S: Maintained | |
2119 | F: Documentation/sound/alsa/Bt87x.txt | |
2120 | F: sound/pci/bt87x.c | |
2121 | ||
ff1d5c2f | 2122 | BT8XXGPIO DRIVER |
eb032b98 | 2123 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2124 | W: http://bu3sch.de/btgpio.php |
2125 | S: Maintained | |
72dbb705 | 2126 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2127 | |
eb1eb04f | 2128 | BTRFS FILE SYSTEM |
c0778e25 CM |
2129 | M: Chris Mason <clm@fb.com> |
2130 | M: Josef Bacik <jbacik@fb.com> | |
eb1eb04f JP |
2131 | L: linux-btrfs@vger.kernel.org |
2132 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2133 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2135 | S: Maintained |
679655da JP |
2136 | F: Documentation/filesystems/btrfs.txt |
2137 | F: fs/btrfs/ | |
eb1eb04f | 2138 | |
1da177e4 | 2139 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 2140 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
661263b5 | 2141 | L: linux-media@vger.kernel.org |
96b6aba0 | 2142 | W: http://linuxtv.org |
275ffde4 | 2143 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2144 | S: Odd fixes |
679655da | 2145 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2146 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2147 | |
1f34923c KA |
2148 | BUSLOGIC SCSI DRIVER |
2149 | M: Khalid Aziz <khalid@gonehiking.org> | |
2150 | L: linux-scsi@vger.kernel.org | |
2151 | S: Maintained | |
2152 | F: drivers/scsi/BusLogic.* | |
2153 | F: drivers/scsi/FlashPoint.* | |
2154 | ||
af39917d CL |
2155 | C-MEDIA CMI8788 DRIVER |
2156 | M: Clemens Ladisch <clemens@ladisch.de> | |
2157 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2158 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2159 | S: Maintained | |
2160 | F: sound/pci/oxygen/ | |
2161 | ||
2141355f MS |
2162 | C6X ARCHITECTURE |
2163 | M: Mark Salter <msalter@redhat.com> | |
2164 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2165 | L: linux-c6x-dev@linux-c6x.org | |
2166 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2167 | S: Maintained | |
2168 | F: arch/c6x/ | |
2169 | ||
a5432f5a | 2170 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2171 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
2172 | L: linux-cachefs@redhat.com |
2173 | S: Supported | |
2174 | F: Documentation/filesystems/caching/cachefiles.txt | |
2175 | F: fs/cachefiles/ | |
2176 | ||
c815ca39 HV |
2177 | CADET FM/AM RADIO RECEIVER DRIVER |
2178 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2179 | L: linux-media@vger.kernel.org | |
2180 | T: git git://linuxtv.org/media_tree.git | |
2181 | W: http://linuxtv.org | |
2182 | S: Maintained | |
2183 | F: drivers/media/radio/radio-cadet* | |
2184 | ||
77d5140f | 2185 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2186 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2187 | L: linux-media@vger.kernel.org |
275ffde4 | 2188 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2189 | S: Maintained |
679655da | 2190 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2191 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2192 | |
201b6bab | 2193 | CAIF NETWORK LAYER |
5c574f50 | 2194 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2195 | L: netdev@vger.kernel.org |
2196 | S: Supported | |
2197 | F: Documentation/networking/caif/ | |
2198 | F: drivers/net/caif/ | |
c117ab84 | 2199 | F: include/uapi/linux/caif/ |
201b6bab JP |
2200 | F: include/net/caif/ |
2201 | F: net/caif/ | |
2202 | ||
77dac90f | 2203 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2204 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2205 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2206 | L: discuss@x86-64.org |
2207 | S: Maintained | |
679655da JP |
2208 | F: arch/x86/kernel/pci-calgary_64.c |
2209 | F: arch/x86/kernel/tce_64.c | |
2210 | F: arch/x86/include/asm/calgary.h | |
2211 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2212 | |
e2d1d6c0 | 2213 | CAN NETWORK LAYER |
8d15d386 | 2214 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
1caa60b6 | 2215 | L: linux-can@vger.kernel.org |
ec78213a | 2216 | W: http://gitorious.org/linux-can |
405cc273 | 2217 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2218 | S: Maintained |
f35f6c8f | 2219 | F: Documentation/networking/can.txt |
8d15d386 | 2220 | F: net/can/ |
8d15d386 | 2221 | F: include/linux/can/core.h |
c117ab84 CEB |
2222 | F: include/uapi/linux/can.h |
2223 | F: include/uapi/linux/can/bcm.h | |
2224 | F: include/uapi/linux/can/raw.h | |
2225 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2226 | |
4261a204 | 2227 | CAN NETWORK DRIVERS |
8b58be88 | 2228 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2229 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2230 | L: linux-can@vger.kernel.org |
ec78213a | 2231 | W: http://gitorious.org/linux-can |
405cc273 | 2232 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2233 | S: Maintained |
8d15d386 OH |
2234 | F: drivers/net/can/ |
2235 | F: include/linux/can/dev.h | |
8d15d386 | 2236 | F: include/linux/can/platform/ |
c117ab84 CEB |
2237 | F: include/uapi/linux/can/error.h |
2238 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2239 | |
95d16c72 JM |
2240 | CAPABILITIES |
2241 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2242 | L: linux-security-module@vger.kernel.org | |
6305902c | 2243 | S: Supported |
95d16c72 | 2244 | F: include/linux/capability.h |
c117ab84 | 2245 | F: include/uapi/linux/capability.h |
95d16c72 | 2246 | F: security/capability.c |
6305902c | 2247 | F: security/commoncap.c |
38a94118 | 2248 | F: kernel/capability.c |
95d16c72 | 2249 | |
b8154542 | 2250 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2251 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 SR |
2252 | L: linuxppc-dev@lists.ozlabs.org |
2253 | L: cbe-oss-dev@lists.ozlabs.org | |
b8154542 AB |
2254 | W: http://www.ibm.com/developerworks/power/cell/ |
2255 | S: Supported | |
679655da | 2256 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2257 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2258 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2259 | F: arch/powerpc/oprofile/*cell* |
2260 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2261 | |
9030aaf9 | 2262 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2263 | M: Sage Weil <sage@inktank.com> |
82593f87 | 2264 | L: ceph-devel@vger.kernel.org |
09d90327 | 2265 | W: http://ceph.com/ |
fb99f881 | 2266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2267 | S: Supported |
2268 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2269 | F: fs/ceph/ |
2270 | F: net/ceph/ | |
2271 | F: include/linux/ceph/ | |
2272 | F: include/linux/crush/ | |
9030aaf9 | 2273 | |
18332a80 | 2274 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2275 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2276 | S: Orphan |
679655da JP |
2277 | F: Documentation/usb/WUSB-Design-overview.txt |
2278 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2279 | F: drivers/usb/host/hwa-hc.c |
2280 | F: drivers/usb/host/whci/ | |
679655da JP |
2281 | F: drivers/usb/wusbcore/ |
2282 | F: include/linux/usb/wusb* | |
18332a80 | 2283 | |
70e84049 | 2284 | CFAG12864B LCD DRIVER |
8b58be88 | 2285 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2286 | W: http://miguelojeda.es/auxdisplay.htm |
2287 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2288 | S: Maintained |
679655da JP |
2289 | F: drivers/auxdisplay/cfag12864b.c |
2290 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2291 | |
2292 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2293 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2294 | W: http://miguelojeda.es/auxdisplay.htm |
2295 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2296 | S: Maintained |
679655da JP |
2297 | F: drivers/auxdisplay/cfag12864bfb.c |
2298 | F: include/linux/cfag12864b.h | |
70e84049 | 2299 | |
704232c2 | 2300 | CFG80211 and NL80211 |
8b58be88 | 2301 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2302 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2303 | W: http://wireless.kernel.org/ |
2304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2305 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2306 | S: Maintained |
c117ab84 | 2307 | F: include/uapi/linux/nl80211.h |
679655da JP |
2308 | F: include/net/cfg80211.h |
2309 | F: net/wireless/* | |
2310 | X: net/wireless/wext* | |
704232c2 | 2311 | |
46e64261 GKH |
2312 | CHAR and MISC DRIVERS |
2313 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2314 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2316 | S: Supported |
46e64261 GKH |
2317 | F: drivers/char/* |
2318 | F: drivers/misc/* | |
471322a8 | 2319 | F: include/linux/miscdevice.h |
46e64261 | 2320 | |
0a920b5b | 2321 | CHECKPATCH |
8b58be88 | 2322 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2323 | M: Joe Perches <joe@perches.com> |
2324 | S: Maintained | |
679655da | 2325 | F: scripts/checkpatch.pl |
0a920b5b | 2326 | |
f8407f26 HW |
2327 | CHINESE DOCUMENTATION |
2328 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2329 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2330 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2331 | S: Maintained | |
2332 | F: Documentation/zh_CN/ | |
2333 | ||
2721ea2c | 2334 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2335 | M: Peter Chen <Peter.Chen@freescale.com> |
cea8321c | 2336 | T: git git://github.com/hzpeterchen/linux-usb.git |
2721ea2c AS |
2337 | L: linux-usb@vger.kernel.org |
2338 | S: Maintained | |
2339 | F: drivers/usb/chipidea/ | |
2340 | ||
ab043105 OJ |
2341 | CHROME HARDWARE PLATFORM SUPPORT |
2342 | M: Olof Johansson <olof@lixom.net> | |
2343 | S: Maintained | |
2344 | F: drivers/platform/chrome/ | |
2345 | ||
641cb85e | 2346 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2347 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2348 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 2349 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 2350 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 2351 | S: Supported |
a6a5580c | 2352 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2353 | |
e3cf00d0 | 2354 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2355 | M: Upinder Malhi <umalhi@cisco.com> |
2356 | S: Supported | |
2357 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2358 | |
2b7a52a4 | 2359 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2360 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2361 | L: netdev@vger.kernel.org |
2362 | S: Maintained | |
57d0b7a0 | 2363 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2364 | |
3d4cfdc9 MB |
2365 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2366 | M: Brian Austin <brian.austin@cirrus.com> | |
2367 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2368 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2369 | S: Maintained | |
2370 | F: sound/soc/codecs/cs* | |
2371 | ||
94574d9a KRW |
2372 | CLEANCACHE API |
2373 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2374 | L: linux-kernel@vger.kernel.org | |
2375 | S: Maintained | |
2376 | F: mm/cleancache.c | |
2377 | F: include/linux/cleancache.h | |
2378 | ||
d4275354 | 2379 | CLK API |
8b58be88 | 2380 | M: Russell King <linux@arm.linux.org.uk> |
37417046 | 2381 | S: Maintained |
d4275354 RK |
2382 | F: include/linux/clk.h |
2383 | ||
9222d247 JS |
2384 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2385 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2386 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2387 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2389 | S: Supported | |
2390 | F: drivers/clocksource | |
2391 | ||
5df6d737 | 2392 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2393 | M: Hiral Patel <hiralpat@cisco.com> |
2394 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2395 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2396 | L: linux-scsi@vger.kernel.org |
2397 | S: Supported | |
2a99921a | 2398 | F: drivers/scsi/fnic/ |
5df6d737 | 2399 | |
529aa8cb TLSC |
2400 | CMPC ACPI DRIVER |
2401 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2402 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2403 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2404 | S: Supported |
2405 | F: drivers/platform/x86/classmate-laptop.c | |
2406 | ||
74425eee | 2407 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2408 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2409 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2410 | M: Nicolas Palix <nicolas.palix@imag.fr> |
c00b5110 | 2411 | M: Michal Marek <mmarek@suse.cz> |
26de9c26 | 2412 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2414 | W: http://coccinelle.lip6.fr/ |
2415 | S: Supported | |
4b92b2aa | 2416 | F: Documentation/coccinelle.txt |
74425eee NP |
2417 | F: scripts/coccinelle/ |
2418 | F: scripts/coccicheck | |
2419 | ||
1da177e4 | 2420 | CODA FILE SYSTEM |
8b58be88 | 2421 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2422 | M: coda@cs.cmu.edu |
2423 | L: codalist@coda.cs.cmu.edu | |
2424 | W: http://www.coda.cs.cmu.edu/ | |
2425 | S: Maintained | |
679655da JP |
2426 | F: Documentation/filesystems/coda.txt |
2427 | F: fs/coda/ | |
2428 | F: include/linux/coda*.h | |
c117ab84 | 2429 | F: include/uapi/linux/coda*.h |
1da177e4 | 2430 | |
7704addb | 2431 | COMMON CLK FRAMEWORK |
7704addb | 2432 | M: Mike Turquette <mturquette@linaro.org> |
35c1983e | 2433 | L: linux-kernel@vger.kernel.org |
7704addb MT |
2434 | T: git git://git.linaro.org/people/mturquette/linux.git |
2435 | S: Maintained | |
60bea3b5 SW |
2436 | F: drivers/clk/ |
2437 | X: drivers/clk/clkdev.c | |
7704addb | 2438 | F: include/linux/clk-pr* |
60bea3b5 | 2439 | F: include/linux/clk/ |
7704addb | 2440 | |
e2d1d6c0 | 2441 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2442 | M: Steve French <sfrench@samba.org> |
51223df6 | 2443 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2444 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2445 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2446 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2447 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2448 | S: Supported |
ec421a71 | 2449 | F: Documentation/filesystems/cifs/ |
679655da | 2450 | F: fs/cifs/ |
e2d1d6c0 | 2451 | |
1da177e4 | 2452 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2453 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2454 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2455 | S: Maintained |
679655da | 2456 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2457 | |
2458 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2459 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2460 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2461 | S: Maintained |
679655da | 2462 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2463 | |
2464 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2465 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2466 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2467 | S: Maintained |
679655da | 2468 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2469 | |
5411552c | 2470 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2471 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2472 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2473 | S: Maintained |
679655da | 2474 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2475 | |
949be0f7 | 2476 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2477 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2478 | L: accessrunner-general@lists.sourceforge.net |
2479 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2480 | S: Maintained |
679655da | 2481 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2482 | |
e2d1d6c0 | 2483 | CONFIGFS |
d6351db2 JB |
2484 | M: Joel Becker <jlbec@evilplan.org> |
2485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2486 | S: Supported |
679655da JP |
2487 | F: fs/configfs/ |
2488 | F: include/linux/configfs.h | |
e2d1d6c0 | 2489 | |
acb9c1b2 | 2490 | CONNECTOR |
8b58be88 | 2491 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2492 | L: netdev@vger.kernel.org |
2493 | S: Maintained | |
2494 | F: drivers/connector/ | |
2495 | ||
a3e3354d | 2496 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2497 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2498 | M: Li Zefan <lizefan@huawei.com> |
12340313 | 2499 | L: cgroups@vger.kernel.org |
860ca0e6 | 2500 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2501 | S: Maintained |
a3e3354d | 2502 | F: Documentation/cgroups/ |
679655da JP |
2503 | F: include/linux/cgroup* |
2504 | F: kernel/cgroup* | |
a3e3354d TH |
2505 | |
2506 | CONTROL GROUP - CPUSET | |
2507 | M: Li Zefan <lizefan@huawei.com> | |
2508 | L: cgroups@vger.kernel.org | |
2509 | W: http://www.bullopensource.org/cpuset/ | |
2510 | W: http://oss.sgi.com/projects/cpusets/ | |
2511 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2512 | S: Maintained | |
2513 | F: Documentation/cgroups/cpusets.txt | |
2514 | F: include/linux/cpuset.h | |
2515 | F: kernel/cpuset.c | |
2516 | ||
2517 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2518 | M: Johannes Weiner <hannes@cmpxchg.org> | |
2519 | M: Michal Hocko <mhocko@suse.cz> | |
2520 | L: cgroups@vger.kernel.org | |
2521 | L: linux-mm@kvack.org | |
2522 | S: Maintained | |
2523 | F: mm/memcontrol.c | |
2524 | F: mm/page_cgroup.c | |
fb3a0fb6 | 2525 | |
bebe4678 | 2526 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2527 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2528 | L: lm-sensors@lm-sensors.org |
2529 | S: Maintained | |
679655da JP |
2530 | F: Documentation/hwmon/coretemp |
2531 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2532 | |
1da177e4 | 2533 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2534 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2535 | W: http://www.fi.muni.cz/~kas/cosa/ |
2536 | S: Maintained | |
679655da | 2537 | F: drivers/net/wan/cosa* |
1da177e4 | 2538 | |
4371ee35 | 2539 | CPMAC ETHERNET DRIVER |
8b58be88 | 2540 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2541 | L: netdev@vger.kernel.org |
2542 | S: Maintained | |
b544dbac | 2543 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2544 | |
1da177e4 | 2545 | CPU FREQUENCY DRIVERS |
49db1903 | 2546 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
45c009a9 | 2547 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 2548 | L: linux-pm@vger.kernel.org |
1da177e4 | 2549 | S: Maintained |
27209d91 VK |
2550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2551 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2552 | F: drivers/cpufreq/ |
2553 | F: include/linux/cpufreq.h | |
1da177e4 | 2554 | |
8a67f0ef VK |
2555 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2556 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 2557 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
2558 | L: linux-pm@vger.kernel.org |
2559 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2560 | S: Maintained | |
2561 | F: drivers/cpufreq/arm_big_little.h | |
2562 | F: drivers/cpufreq/arm_big_little.c | |
2563 | F: drivers/cpufreq/arm_big_little_dt.c | |
2564 | ||
14d2c34c | 2565 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2566 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
2567 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2568 | L: linux-pm@vger.kernel.org | |
2569 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 2570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2571 | S: Maintained |
2572 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2573 | |
a8e39c35 | 2574 | CPUIDLE DRIVERS |
49db1903 | 2575 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
a8e39c35 DL |
2576 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2577 | L: linux-pm@vger.kernel.org | |
2578 | S: Maintained | |
cea8321c | 2579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2580 | F: drivers/cpuidle/* |
2581 | F: include/linux/cpuidle.h | |
2582 | ||
1da177e4 | 2583 | CPUID/MSR DRIVER |
8b58be88 | 2584 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2585 | S: Maintained |
679655da JP |
2586 | F: arch/x86/kernel/cpuid.c |
2587 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2588 | |
7fe2f639 | 2589 | CPU POWER MONITORING SUBSYSTEM |
7fe2f639 | 2590 | M: Thomas Renninger <trenn@suse.de> |
103f1790 | 2591 | L: linux-pm@vger.kernel.org |
7fe2f639 | 2592 | S: Maintained |
14430813 | 2593 | F: tools/power/cpupower/ |
7fe2f639 | 2594 | |
1da177e4 | 2595 | CRAMFS FILESYSTEM |
ce00f85c | 2596 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2597 | S: Orphan / Obsolete |
679655da JP |
2598 | F: Documentation/filesystems/cramfs.txt |
2599 | F: fs/cramfs/ | |
1da177e4 LT |
2600 | |
2601 | CRIS PORT | |
8b58be88 JP |
2602 | M: Mikael Starvik <starvik@axis.com> |
2603 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 2604 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
2605 | W: http://developer.axis.com |
2606 | S: Maintained | |
679655da | 2607 | F: arch/cris/ |
df621252 | 2608 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2609 | |
2610 | CRYPTO API | |
8b58be88 JP |
2611 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2612 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 2613 | L: linux-crypto@vger.kernel.org |
54e5881d | 2614 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2615 | S: Maintained |
679655da JP |
2616 | F: Documentation/crypto/ |
2617 | F: arch/*/crypto/ | |
2618 | F: crypto/ | |
2619 | F: drivers/crypto/ | |
2620 | F: include/crypto/ | |
1da177e4 | 2621 | |
5b07bd57 | 2622 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2623 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
2624 | L: linux-crypto@vger.kernel.org |
2625 | S: Maintained | |
51a2228a JP |
2626 | F: crypto/ansi_cprng.c |
2627 | F: crypto/rng.c | |
5b07bd57 | 2628 | |
9b4ffa48 | 2629 | CS5535 Audio ALSA driver |
8b58be88 | 2630 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 2631 | S: Maintained |
679655da | 2632 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2633 | |
a910e4a9 | 2634 | CW1200 WLAN driver |
b75f0050 JP |
2635 | M: Solomon Peachy <pizza@shaftnet.org> |
2636 | S: Maintained | |
2637 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2638 | |
6d8425b1 | 2639 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2640 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 2641 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 2642 | L: linux-media@vger.kernel.org |
275ffde4 | 2643 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2644 | W: http://linuxtv.org |
30e10993 | 2645 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2646 | S: Maintained |
679655da | 2647 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2648 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2649 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2650 | |
3f101d91 HV |
2651 | CX2341X MPEG ENCODER HELPER MODULE |
2652 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2653 | L: linux-media@vger.kernel.org | |
2654 | T: git git://linuxtv.org/media_tree.git | |
2655 | W: http://linuxtv.org | |
2656 | S: Maintained | |
c368360b | 2657 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2658 | F: include/media/cx2341x* |
2659 | ||
20357578 | 2660 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2661 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
20357578 MCC |
2662 | L: linux-media@vger.kernel.org |
2663 | W: http://linuxtv.org | |
2664 | T: git git://linuxtv.org/media_tree.git | |
2665 | S: Odd fixes | |
2666 | F: Documentation/video4linux/cx88/ | |
2667 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2668 | |
91952bc0 AP |
2669 | CXD2820R MEDIA DRIVER |
2670 | M: Antti Palosaari <crope@iki.fi> | |
2671 | L: linux-media@vger.kernel.org | |
2672 | W: http://linuxtv.org/ | |
2673 | W: http://palosaari.fi/linux/ | |
2674 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2675 | T: git git://linuxtv.org/anttip/media_tree.git | |
2676 | S: Maintained | |
2677 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2678 | |
e5ec3789 | 2679 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2680 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
2681 | L: netdev@vger.kernel.org |
2682 | W: http://www.chelsio.com | |
2683 | S: Supported | |
f7917c00 | 2684 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2685 | |
2686 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2687 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 2688 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
2689 | W: http://www.openfabrics.org |
2690 | S: Supported | |
679655da | 2691 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2692 | |
be4c9bad | 2693 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 2694 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
2695 | L: netdev@vger.kernel.org |
2696 | W: http://www.chelsio.com | |
2697 | S: Supported | |
f7917c00 | 2698 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2699 | |
2700 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2701 | M: Steve Wise <swise@chelsio.com> | |
2702 | L: linux-rdma@vger.kernel.org | |
2703 | W: http://www.openfabrics.org | |
2704 | S: Supported | |
2705 | F: drivers/infiniband/hw/cxgb4/ | |
2706 | ||
5c20a5c7 CL |
2707 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2708 | M: Casey Leedom <leedom@chelsio.com> | |
2709 | L: netdev@vger.kernel.org | |
2710 | W: http://www.chelsio.com | |
2711 | S: Supported | |
f7917c00 | 2712 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2713 | |
b52b97a3 GC |
2714 | STMMAC ETHERNET DRIVER |
2715 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
2716 | L: netdev@vger.kernel.org | |
2717 | W: http://www.stlinux.com | |
2718 | S: Supported | |
7ac6653a | 2719 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2720 | |
1da177e4 | 2721 | CYBERPRO FB DRIVER |
8b58be88 | 2722 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 2723 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
2724 | W: http://www.arm.linux.org.uk/ |
2725 | S: Maintained | |
8a61f013 | 2726 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 2727 | |
1da177e4 | 2728 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2729 | W: http://www.cyclades.com/ |
d459883e | 2730 | S: Orphan |
c897401b | 2731 | F: drivers/tty/cyclades.c |
679655da | 2732 | F: include/linux/cyclades.h |
c117ab84 | 2733 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2734 | |
2735 | CYCLADES PC300 DRIVER | |
1da177e4 | 2736 | W: http://www.cyclades.com/ |
d459883e | 2737 | S: Orphan |
679655da | 2738 | F: drivers/net/wan/pc300* |
1da177e4 | 2739 | |
402f6ae4 AP |
2740 | CYPRESS_FIRMWARE MEDIA DRIVER |
2741 | M: Antti Palosaari <crope@iki.fi> | |
2742 | L: linux-media@vger.kernel.org | |
2743 | W: http://linuxtv.org/ | |
2744 | W: http://palosaari.fi/linux/ | |
2745 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2746 | T: git git://linuxtv.org/anttip/media_tree.git | |
2747 | S: Maintained | |
2748 | F: drivers/media/common/cypress_firmware* | |
2749 | ||
e3ae3525 | 2750 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2751 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 2752 | L: linux-input@vger.kernel.org |
be9a6f40 | 2753 | S: Supported |
6305902c JP |
2754 | F: drivers/input/touchscreen/cyttsp* |
2755 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2756 | |
1da177e4 | 2757 | DAMA SLAVE for AX.25 |
8b58be88 | 2758 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
2759 | W: http://yaina.de/jreuter/ |
2760 | W: http://www.qsl.net/dl1bke/ | |
2761 | L: linux-hams@vger.kernel.org | |
2762 | S: Maintained | |
679655da JP |
2763 | F: net/ax25/af_ax25.c |
2764 | F: net/ax25/ax25_dev.c | |
2765 | F: net/ax25/ax25_ds_* | |
2766 | F: net/ax25/ax25_in.c | |
2767 | F: net/ax25/ax25_out.c | |
2768 | F: net/ax25/ax25_timer.c | |
2769 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2770 | |
e2d1d6c0 | 2771 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2772 | L: netdev@vger.kernel.org |
5ff77428 | 2773 | S: Orphan |
679655da | 2774 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2775 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2776 | |
2777 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2778 | M: Kurt Garloff <garloff@suse.de> |
e2d1d6c0 | 2779 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2780 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
e2d1d6c0 | 2781 | S: Maintained |
679655da | 2782 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2783 | |
1da177e4 | 2784 | DC395x SCSI driver |
61eee9a7 | 2785 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
2786 | M: Ali Akcaagac <aliakc@web.de> |
2787 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 2788 | L: dc395x@twibble.org |
cf015e9f JP |
2789 | W: http://twibble.org/dist/dc395x/ |
2790 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 2791 | S: Maintained |
679655da JP |
2792 | F: Documentation/scsi/dc395x.txt |
2793 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2794 | |
eb8edb08 | 2795 | DCCP PROTOCOL |
a89d030e | 2796 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 2797 | L: dccp@vger.kernel.org |
c996d8b9 | 2798 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2799 | S: Maintained |
679655da | 2800 | F: include/linux/dccp.h |
c117ab84 | 2801 | F: include/uapi/linux/dccp.h |
679655da JP |
2802 | F: include/linux/tfrc.h |
2803 | F: net/dccp/ | |
eb8edb08 | 2804 | |
1da177e4 | 2805 | DECnet NETWORK LAYER |
1da177e4 LT |
2806 | W: http://linux-decnet.sourceforge.net |
2807 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 2808 | S: Orphan |
679655da JP |
2809 | F: Documentation/networking/decnet.txt |
2810 | F: net/decnet/ | |
1da177e4 | 2811 | |
ebff05b9 MR |
2812 | DECSTATION PLATFORM SUPPORT |
2813 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
2814 | L: linux-mips@linux-mips.org | |
2815 | W: http://www.linux-mips.org/wiki/DECstation | |
2816 | S: Maintained | |
2817 | F: arch/mips/dec/ | |
2818 | F: arch/mips/include/asm/dec/ | |
2819 | F: arch/mips/include/asm/mach-dec/ | |
2820 | ||
1da177e4 | 2821 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 2822 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 2823 | S: Maintained |
33f810b2 | 2824 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2825 | |
ad8f07cc | 2826 | DELL LAPTOP DRIVER |
8b58be88 | 2827 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
d0944853 | 2828 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 2829 | S: Maintained |
679655da | 2830 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2831 | |
1da177e4 | 2832 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2833 | M: Guenter Roeck <linux@roeck-us.net> |
679655da | 2834 | F: drivers/char/i8k.c |
c117ab84 | 2835 | F: include/uapi/linux/i8k.h |
1da177e4 | 2836 | |
90563ec4 | 2837 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2838 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 2839 | S: Maintained |
679655da JP |
2840 | F: Documentation/dcdbas.txt |
2841 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2842 | |
0b3f6109 | 2843 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2844 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
0b3f6109 | 2845 | S: Maintained |
36b3a96f | 2846 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2847 | |
5efc75e3 PZ |
2848 | DESIGNWARE USB2 DRD IP DRIVER |
2849 | M: Paul Zimmerman <paulz@synopsys.com> | |
2850 | L: linux-usb@vger.kernel.org | |
2851 | S: Maintained | |
197ba5f4 | 2852 | F: drivers/usb/dwc2/ |
5efc75e3 | 2853 | |
94ab23dd FB |
2854 | DESIGNWARE USB3 DRD IP DRIVER |
2855 | M: Felipe Balbi <balbi@ti.com> | |
2856 | L: linux-usb@vger.kernel.org | |
2857 | L: linux-omap@vger.kernel.org | |
2858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2859 | S: Maintained | |
2860 | F: drivers/usb/dwc3/ | |
2861 | ||
89d07767 KP |
2862 | DEVICE FREQUENCY (DEVFREQ) |
2863 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
2864 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 2865 | L: linux-pm@vger.kernel.org |
89d07767 KP |
2866 | S: Maintained |
2867 | F: drivers/devfreq/ | |
2868 | ||
1da177e4 | 2869 | DEVICE NUMBER REGISTRY |
8b58be88 | 2870 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 2871 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2872 | S: Maintained |
2873 | ||
e2d1d6c0 | 2874 | DEVICE-MAPPER (LVM) |
854ecaad | 2875 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 2876 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 2877 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
2878 | L: dm-devel@redhat.com |
2879 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2880 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2881 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2882 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2883 | S: Maintained |
679655da JP |
2884 | F: Documentation/device-mapper/ |
2885 | F: drivers/md/dm* | |
854ecaad | 2886 | F: drivers/md/persistent-data/ |
679655da JP |
2887 | F: include/linux/device-mapper.h |
2888 | F: include/linux/dm-*.h | |
8504eed3 | 2889 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2890 | |
c0d995aa OST |
2891 | DIALOG SEMICONDUCTOR DRIVERS |
2892 | M: Support Opensource <support.opensource@diasemi.com> | |
2893 | W: http://www.dialog-semiconductor.com/products | |
2894 | S: Supported | |
2895 | F: Documentation/hwmon/da90?? | |
2896 | F: drivers/gpio/gpio-da90??.c | |
2897 | F: drivers/hwmon/da90??-hwmon.c | |
2898 | F: drivers/input/misc/da90??_onkey.c | |
2899 | F: drivers/input/touchscreen/da9052_tsi.c | |
2900 | F: drivers/leds/leds-da90??.c | |
2901 | F: drivers/mfd/da903x.c | |
2902 | F: drivers/mfd/da90??-*.c | |
2903 | F: drivers/power/da9052-battery.c | |
2904 | F: drivers/regulator/da903x.c | |
2905 | F: drivers/regulator/da9???-regulator.[ch] | |
2906 | F: drivers/rtc/rtc-da90??.c | |
2907 | F: drivers/video/backlight/da90??_bl.c | |
2908 | F: drivers/watchdog/da90??_wdt.c | |
2909 | F: include/linux/mfd/da903x.h | |
2910 | F: include/linux/mfd/da9052/ | |
2911 | F: include/linux/mfd/da9055/ | |
2912 | F: include/linux/mfd/da9063/ | |
2913 | F: include/sound/da[79]*.h | |
2914 | F: sound/soc/codecs/da[79]*.[ch] | |
2915 | ||
599aa697 LL |
2916 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2917 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 2918 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
2919 | L: driverdev-devel@linuxdriverproject.org |
2920 | S: Maintained | |
2921 | F: drivers/staging/dgnc/ | |
2922 | ||
2923 | DIGI EPCA PCI PRODUCTS | |
2924 | M: Lidza Louina <lidza.louina@gmail.com> | |
abeb935f | 2925 | M: Mark Hounschell <markh@compro.net> |
6d825f79 | 2926 | M: Daeseok Youn <daeseok.youn@gmail.com> |
599aa697 LL |
2927 | L: driverdev-devel@linuxdriverproject.org |
2928 | S: Maintained | |
2929 | F: drivers/staging/dgap/ | |
2930 | ||
335d7c58 | 2931 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2932 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
2933 | L: linux-i2c@vger.kernel.org |
2934 | S: Maintained | |
2935 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2936 | ||
e7839f25 | 2937 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2938 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 2939 | S: Maintained |
679655da JP |
2940 | F: Documentation/filesystems/dnotify.txt |
2941 | F: fs/notify/dnotify/ | |
2942 | F: include/linux/dnotify.h | |
1da177e4 LT |
2943 | |
2944 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2945 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
2946 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2947 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2948 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2949 | S: Maintained | |
2950 | ||
4480f15b | 2951 | DISKQUOTA |
8b58be88 | 2952 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 2953 | S: Maintained |
679655da JP |
2954 | F: Documentation/filesystems/quota.txt |
2955 | F: fs/quota/ | |
2956 | F: include/linux/quota*.h | |
c117ab84 | 2957 | F: include/uapi/linux/quota*.h |
1da177e4 | 2958 | |
702686ad BT |
2959 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2960 | M: Bernie Thompson <bernie@plugable.com> | |
2961 | L: linux-fbdev@vger.kernel.org | |
2962 | S: Maintained | |
2963 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 2964 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
2965 | F: include/video/udlfb.h |
2966 | F: Documentation/fb/udlfb.txt | |
2967 | ||
e7839f25 | 2968 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2969 | M: Christine Caulfield <ccaulfie@redhat.com> |
2970 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 2971 | L: cluster-devel@redhat.com |
5be7b50f | 2972 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2974 | S: Supported |
679655da | 2975 | F: fs/dlm/ |
5be7b50f | 2976 | |
53b6b3e0 SS |
2977 | DMA BUFFER SHARING FRAMEWORK |
2978 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
2979 | S: Maintained | |
2980 | L: linux-media@vger.kernel.org | |
2981 | L: dri-devel@lists.freedesktop.org | |
2982 | L: linaro-mm-sig@lists.linaro.org | |
35fac7e3 | 2983 | F: drivers/dma-buf/ |
e46d12c6 JP |
2984 | F: include/linux/dma-buf* |
2985 | F: include/linux/reservation.h | |
2986 | F: include/linux/*fence.h | |
53b6b3e0 SS |
2987 | F: Documentation/dma-buf-sharing.txt |
2988 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2989 | ||
b3e5f263 | 2990 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2991 | M: Vinod Koul <vinod.koul@intel.com> |
ab5f8c6e | 2992 | M: Dan Williams <dan.j.williams@intel.com> |
17b59560 VK |
2993 | L: dmaengine@vger.kernel.org |
2994 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2995 | S: Supported |
679655da JP |
2996 | F: drivers/dma/ |
2997 | F: include/linux/dma* | |
5dbd05d4 VK |
2998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2999 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 3000 | |
b825037d | 3001 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3002 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
3003 | L: lm-sensors@lm-sensors.org |
3004 | S: Maintained | |
679655da JP |
3005 | F: Documentation/hwmon/dme1737 |
3006 | F: drivers/hwmon/dme1737.c | |
b825037d | 3007 | |
5b9c9bf6 | 3008 | DOCKING STATION DRIVER |
8b58be88 | 3009 | M: Shaohua Li <shaohua.li@intel.com> |
5b9c9bf6 | 3010 | L: linux-acpi@vger.kernel.org |
8b59a454 | 3011 | S: Supported |
679655da | 3012 | F: drivers/acpi/dock.c |
5b9c9bf6 | 3013 | |
7d2c86b5 | 3014 | DOCUMENTATION |
01358e56 | 3015 | M: Randy Dunlap <rdunlap@infradead.org> |
795fb7e7 | 3016 | L: linux-doc@vger.kernel.org |
01358e56 | 3017 | T: quilt http://www.infradead.org/~rdunlap/Doc/patches/ |
795fb7e7 | 3018 | S: Maintained |
679655da | 3019 | F: Documentation/ |
97be078b RD |
3020 | X: Documentation/ABI/ |
3021 | X: Documentation/devicetree/ | |
3022 | X: Documentation/[a-z][a-z]_[A-Z][A-Z]/ | |
abbaeff3 | 3023 | |
1da177e4 | 3024 | DOUBLETALK DRIVER |
8b58be88 | 3025 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3026 | L: blinux-list@redhat.com |
3027 | S: Maintained | |
679655da JP |
3028 | F: drivers/char/dtlk.c |
3029 | F: include/linux/dtlk.h | |
1da177e4 | 3030 | |
e2d1d6c0 | 3031 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3032 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3033 | L: linux-scsi@vger.kernel.org |
3034 | W: http://www.adaptec.com/ | |
3035 | S: Maintained | |
679655da JP |
3036 | F: drivers/scsi/dpt* |
3037 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3038 | |
b411b363 | 3039 | DRBD DRIVER |
28b8e8d4 JP |
3040 | P: Philipp Reisner |
3041 | P: Lars Ellenberg | |
3042 | M: drbd-dev@lists.linbit.com | |
3043 | L: drbd-user@lists.linbit.com | |
3044 | W: http://www.drbd.org | |
3045 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
3046 | T: git git://git.drbd.org/drbd-8.3.git | |
3047 | S: Supported | |
3048 | F: drivers/block/drbd/ | |
3049 | F: lib/lru_cache.c | |
3050 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3051 | |
87544653 | 3052 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 3053 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3055 | S: Supported |
679655da | 3056 | F: Documentation/kobject.txt |
7cfc51b9 | 3057 | F: drivers/base/ |
679655da | 3058 | F: fs/sysfs/ |
87544653 | 3059 | F: fs/debugfs/ |
679655da | 3060 | F: include/linux/kobj* |
87544653 | 3061 | F: include/linux/debugfs.h |
679655da | 3062 | F: lib/kobj* |
1da177e4 LT |
3063 | |
3064 | DRM DRIVERS | |
8b58be88 | 3065 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3066 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3067 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3068 | S: Maintained |
679655da | 3069 | F: drivers/gpu/drm/ |
433e3b34 | 3070 | F: drivers/gpu/vga/ |
850e9411 | 3071 | F: include/drm/ |
c117ab84 | 3072 | F: include/uapi/drm/ |
1da177e4 | 3073 | |
566f5939 AD |
3074 | RADEON DRM DRIVERS |
3075 | M: Alex Deucher <alexander.deucher@amd.com> | |
3076 | M: Christian König <christian.koenig@amd.com> | |
3077 | L: dri-devel@lists.freedesktop.org | |
3078 | T: git git://people.freedesktop.org/~agd5f/linux | |
3079 | S: Supported | |
3080 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3081 | F: include/uapi/drm/radeon* |
3082 | ||
03e255b9 TR |
3083 | DRM PANEL DRIVERS |
3084 | M: Thierry Reding <thierry.reding@gmail.com> | |
3085 | L: dri-devel@lists.freedesktop.org | |
3086 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3087 | S: Maintained | |
3088 | F: drivers/gpu/drm/drm_panel.c | |
3089 | F: drivers/gpu/drm/panel/ | |
3090 | F: include/drm/drm_panel.h | |
3091 | F: Documentation/devicetree/bindings/panel/ | |
3092 | ||
8daf7473 | 3093 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 3094 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
47f95647 | 3095 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3096 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3097 | L: dri-devel@lists.freedesktop.org |
47f95647 | 3098 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3099 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3100 | S: Supported |
14430813 | 3101 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3102 | F: include/drm/i915* |
c117ab84 | 3103 | F: include/uapi/drm/i915* |
8daf7473 | 3104 | |
398a6d4a KP |
3105 | DRM DRIVERS FOR EXYNOS |
3106 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
3107 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3108 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
3109 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 3110 | L: dri-devel@lists.freedesktop.org |
25a58030 | 3111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3112 | S: Supported |
14430813 | 3113 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3114 | F: include/drm/exynos* |
c117ab84 | 3115 | F: include/uapi/drm/exynos* |
398a6d4a | 3116 | |
bd3b49f2 | 3117 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3118 | M: Thierry Reding <thierry.reding@gmail.com> |
3119 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
3120 | L: dri-devel@lists.freedesktop.org |
3121 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 3122 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3123 | S: Supported |
dee8268f | 3124 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3125 | F: drivers/gpu/host1x/ |
e1e90644 | 3126 | F: include/linux/host1x.h |
a5ad7a63 | 3127 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
3128 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3129 | ||
a284e9d1 LP |
3130 | DRM DRIVERS FOR RENESAS |
3131 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
3132 | L: dri-devel@lists.freedesktop.org | |
3133 | L: linux-sh@vger.kernel.org | |
3134 | T: git git://people.freedesktop.org/~airlied/linux | |
3135 | S: Supported | |
3136 | F: drivers/gpu/drm/rcar-du/ | |
3137 | F: drivers/gpu/drm/shmobile/ | |
3138 | F: include/linux/platform_data/rcar-du.h | |
3139 | F: include/linux/platform_data/shmob_drm.h | |
3140 | ||
598df1ac AK |
3141 | DSBR100 USB FM RADIO DRIVER |
3142 | M: Alexey Klimov <klimov.linux@gmail.com> | |
3143 | L: linux-media@vger.kernel.org | |
3144 | T: git git://linuxtv.org/media_tree.git | |
3145 | S: Maintained | |
3146 | F: drivers/media/radio/dsbr100.c | |
3147 | ||
1da177e4 | 3148 | DSCC4 DRIVER |
8b58be88 | 3149 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 3150 | L: netdev@vger.kernel.org |
1da177e4 | 3151 | S: Maintained |
679655da | 3152 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3153 | |
91952bc0 AP |
3154 | DVB_USB_AF9015 MEDIA DRIVER |
3155 | M: Antti Palosaari <crope@iki.fi> | |
3156 | L: linux-media@vger.kernel.org | |
3157 | W: http://linuxtv.org/ | |
3158 | W: http://palosaari.fi/linux/ | |
3159 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3160 | T: git git://linuxtv.org/anttip/media_tree.git | |
3161 | S: Maintained | |
3162 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3163 | ||
3164 | DVB_USB_AF9035 MEDIA DRIVER | |
3165 | M: Antti Palosaari <crope@iki.fi> | |
3166 | L: linux-media@vger.kernel.org | |
3167 | W: http://linuxtv.org/ | |
3168 | W: http://palosaari.fi/linux/ | |
3169 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3170 | T: git git://linuxtv.org/anttip/media_tree.git | |
3171 | S: Maintained | |
3172 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3173 | ||
3174 | DVB_USB_ANYSEE MEDIA DRIVER | |
3175 | M: Antti Palosaari <crope@iki.fi> | |
3176 | L: linux-media@vger.kernel.org | |
3177 | W: http://linuxtv.org/ | |
3178 | W: http://palosaari.fi/linux/ | |
3179 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3180 | T: git git://linuxtv.org/anttip/media_tree.git | |
3181 | S: Maintained | |
3182 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3183 | ||
3184 | DVB_USB_AU6610 MEDIA DRIVER | |
3185 | M: Antti Palosaari <crope@iki.fi> | |
3186 | L: linux-media@vger.kernel.org | |
3187 | W: http://linuxtv.org/ | |
3188 | W: http://palosaari.fi/linux/ | |
3189 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3190 | T: git git://linuxtv.org/anttip/media_tree.git | |
3191 | S: Maintained | |
3192 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3193 | ||
3194 | DVB_USB_CE6230 MEDIA DRIVER | |
3195 | M: Antti Palosaari <crope@iki.fi> | |
3196 | L: linux-media@vger.kernel.org | |
3197 | W: http://linuxtv.org/ | |
3198 | W: http://palosaari.fi/linux/ | |
3199 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3200 | T: git git://linuxtv.org/anttip/media_tree.git | |
3201 | S: Maintained | |
3202 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3203 | ||
d099dea2 MK |
3204 | DVB_USB_CXUSB MEDIA DRIVER |
3205 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3206 | L: linux-media@vger.kernel.org | |
3207 | W: http://linuxtv.org/ | |
3208 | W: http://github.com/mkrufky | |
3209 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3210 | T: git git://linuxtv.org/media_tree.git | |
3211 | S: Maintained | |
9819da66 | 3212 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3213 | |
91952bc0 | 3214 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3215 | M: Antti Palosaari <crope@iki.fi> |
3216 | L: linux-media@vger.kernel.org | |
3217 | W: http://linuxtv.org/ | |
3218 | W: http://palosaari.fi/linux/ | |
3219 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3220 | T: git git://linuxtv.org/anttip/media_tree.git | |
3221 | S: Maintained | |
91952bc0 | 3222 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3223 | |
5560983b | 3224 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3225 | M: Antti Palosaari <crope@iki.fi> |
3226 | L: linux-media@vger.kernel.org | |
3227 | W: http://linuxtv.org/ | |
91952bc0 AP |
3228 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3229 | T: git git://linuxtv.org/anttip/media_tree.git | |
3230 | S: Maintained | |
5560983b | 3231 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3232 | |
8856f5f2 MK |
3233 | DVB_USB_MXL111SF MEDIA DRIVER |
3234 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3235 | L: linux-media@vger.kernel.org | |
3236 | W: http://linuxtv.org/ | |
3237 | W: http://github.com/mkrufky | |
3238 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3239 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3240 | S: Maintained | |
3241 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3242 | ||
91952bc0 AP |
3243 | DVB_USB_RTL28XXU MEDIA DRIVER |
3244 | M: Antti Palosaari <crope@iki.fi> | |
3245 | L: linux-media@vger.kernel.org | |
3246 | W: http://linuxtv.org/ | |
3247 | W: http://palosaari.fi/linux/ | |
3248 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3249 | T: git git://linuxtv.org/anttip/media_tree.git | |
3250 | S: Maintained | |
3251 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3252 | ||
3253 | DVB_USB_V2 MEDIA DRIVER | |
3254 | M: Antti Palosaari <crope@iki.fi> | |
3255 | L: linux-media@vger.kernel.org | |
3256 | W: http://linuxtv.org/ | |
3257 | W: http://palosaari.fi/linux/ | |
3258 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3259 | T: git git://linuxtv.org/anttip/media_tree.git | |
3260 | S: Maintained | |
3261 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3262 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3263 | ||
ac0ac38f | 3264 | DYNAMIC DEBUG |
5c4a97d1 | 3265 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3266 | S: Maintained |
3267 | F: lib/dynamic_debug.c | |
3268 | F: include/linux/dynamic_debug.h | |
3269 | ||
789c7048 | 3270 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3271 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3272 | S: Maintained |
df621252 | 3273 | F: drivers/tty/serial/dz.* |
789c7048 | 3274 | |
91952bc0 AP |
3275 | E4000 MEDIA DRIVER |
3276 | M: Antti Palosaari <crope@iki.fi> | |
3277 | L: linux-media@vger.kernel.org | |
3278 | W: http://linuxtv.org/ | |
3279 | W: http://palosaari.fi/linux/ | |
3280 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3281 | T: git git://linuxtv.org/anttip/media_tree.git | |
3282 | S: Maintained | |
3283 | F: drivers/media/tuners/e4000* | |
3284 | ||
1da177e4 | 3285 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3286 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3287 | L: linux-scsi@vger.kernel.org |
3288 | S: Maintained | |
679655da | 3289 | F: drivers/scsi/eata.c |
1da177e4 | 3290 | |
91952bc0 AP |
3291 | EC100 MEDIA DRIVER |
3292 | M: Antti Palosaari <crope@iki.fi> | |
3293 | L: linux-media@vger.kernel.org | |
3294 | W: http://linuxtv.org/ | |
3295 | W: http://palosaari.fi/linux/ | |
3296 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3297 | T: git git://linuxtv.org/anttip/media_tree.git | |
3298 | S: Maintained | |
3299 | F: drivers/media/dvb-frontends/ec100* | |
3300 | ||
237fead6 | 3301 | ECRYPT FILE SYSTEM |
0de9adf2 | 3302 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3303 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3304 | W: http://ecryptfs.org |
6dc7516e | 3305 | W: https://launchpad.net/ecryptfs |
237fead6 | 3306 | S: Supported |
679655da JP |
3307 | F: Documentation/filesystems/ecryptfs.txt |
3308 | F: fs/ecryptfs/ | |
237fead6 | 3309 | |
da9bb1d2 | 3310 | EDAC-CORE |
8b58be88 | 3311 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e BP |
3312 | M: Borislav Petkov <bp@alien8.de> |
3313 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> | |
91445c72 | 3314 | L: linux-edac@vger.kernel.org |
0e438e3f | 3315 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3316 | S: Supported |
679655da | 3317 | F: Documentation/edac.txt |
91445c72 | 3318 | F: drivers/edac/ |
679655da | 3319 | F: include/linux/edac.h |
0e438e3f | 3320 | |
c476c23b | 3321 | EDAC-AMD64 |
8b58be88 | 3322 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3323 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3324 | L: linux-edac@vger.kernel.org |
c476c23b | 3325 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3326 | S: Maintained |
c476c23b BP |
3327 | F: drivers/edac/amd64_edac* |
3328 | ||
836dae5d RR |
3329 | EDAC-CALXEDA |
3330 | M: Doug Thompson <dougthompson@xmission.com> | |
3331 | M: Robert Richter <rric@kernel.org> | |
3332 | L: linux-edac@vger.kernel.org | |
3333 | W: bluesmoke.sourceforge.net | |
3334 | S: Maintained | |
3335 | F: drivers/edac/highbank* | |
3336 | ||
f65aad41 RB |
3337 | EDAC-CAVIUM |
3338 | M: Ralf Baechle <ralf@linux-mips.org> | |
3339 | M: David Daney <david.daney@cavium.com> | |
3340 | L: linux-edac@vger.kernel.org | |
3341 | L: linux-mips@linux-mips.org | |
3342 | W: bluesmoke.sourceforge.net | |
3343 | S: Supported | |
3344 | F: drivers/edac/octeon_edac* | |
3345 | ||
0e438e3f | 3346 | EDAC-E752X |
8b58be88 JP |
3347 | M: Mark Gross <mark.gross@intel.com> |
3348 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3349 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3350 | W: bluesmoke.sourceforge.net |
3351 | S: Maintained | |
679655da | 3352 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3353 | |
3354 | EDAC-E7XXX | |
8b58be88 | 3355 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3356 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3357 | W: bluesmoke.sourceforge.net |
3358 | S: Maintained | |
679655da | 3359 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3360 | |
77c5f5d2 | 3361 | EDAC-GHES |
1b2c14b4 | 3362 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
77c5f5d2 MCC |
3363 | L: linux-edac@vger.kernel.org |
3364 | W: bluesmoke.sourceforge.net | |
3365 | S: Maintained | |
2caa67a6 | 3366 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3367 | |
6bc78404 | 3368 | EDAC-I82443BXGX |
8b58be88 | 3369 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3370 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3371 | W: bluesmoke.sourceforge.net |
3372 | S: Maintained | |
679655da | 3373 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3374 | |
3375 | EDAC-I3000 | |
8b58be88 | 3376 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3377 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3378 | W: bluesmoke.sourceforge.net |
3379 | S: Maintained | |
679655da | 3380 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3381 | |
3382 | EDAC-I5000 | |
8b58be88 | 3383 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3384 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3385 | W: bluesmoke.sourceforge.net |
3386 | S: Maintained | |
679655da | 3387 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3388 | |
44c12cb2 | 3389 | EDAC-I5400 |
1b2c14b4 | 3390 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 | 3391 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
3392 | W: bluesmoke.sourceforge.net |
3393 | S: Maintained | |
679655da | 3394 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3395 | |
3c9c92b6 | 3396 | EDAC-I7300 |
1b2c14b4 | 3397 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3c9c92b6 MCC |
3398 | L: linux-edac@vger.kernel.org |
3399 | W: bluesmoke.sourceforge.net | |
3400 | S: Maintained | |
3401 | F: drivers/edac/i7300_edac.c | |
3402 | ||
67c89316 | 3403 | EDAC-I7CORE |
1b2c14b4 | 3404 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 MCC |
3405 | L: linux-edac@vger.kernel.org |
3406 | W: bluesmoke.sourceforge.net | |
3407 | S: Maintained | |
70aff0ce | 3408 | F: drivers/edac/i7core_edac.c |
67c89316 | 3409 | |
ba9a5918 | 3410 | EDAC-I82975X |
8b58be88 | 3411 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 3412 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 3413 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3414 | W: bluesmoke.sourceforge.net |
3415 | S: Maintained | |
679655da | 3416 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3417 | |
791b4706 JB |
3418 | EDAC-IE31200 |
3419 | M: Jason Baron <jbaron@akamai.com> | |
3420 | L: linux-edac@vger.kernel.org | |
3421 | W: bluesmoke.sourceforge.net | |
3422 | S: Maintained | |
3423 | F: drivers/edac/ie31200_edac.c | |
3424 | ||
ccdfb979 JT |
3425 | EDAC-MPC85XX |
3426 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
3427 | L: linux-edac@vger.kernel.org | |
3428 | W: bluesmoke.sourceforge.net | |
3429 | S: Maintained | |
3430 | F: drivers/edac/mpc85xx_edac.[ch] | |
3431 | ||
ba9a5918 | 3432 | EDAC-PASEMI |
8b58be88 | 3433 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 3434 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3435 | W: bluesmoke.sourceforge.net |
3436 | S: Maintained | |
679655da | 3437 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3438 | |
0e438e3f | 3439 | EDAC-R82600 |
8b58be88 | 3440 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3441 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3442 | W: bluesmoke.sourceforge.net |
3443 | S: Maintained | |
679655da | 3444 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3445 | |
4d096ca7 | 3446 | EDAC-SBRIDGE |
1b2c14b4 | 3447 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
4d096ca7 MCC |
3448 | L: linux-edac@vger.kernel.org |
3449 | W: bluesmoke.sourceforge.net | |
3450 | S: Maintained | |
3451 | F: drivers/edac/sb_edac.c | |
3452 | ||
af39917d CL |
3453 | EDIROL UA-101/UA-1000 DRIVER |
3454 | M: Clemens Ladisch <clemens@ladisch.de> | |
3455 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3456 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3457 | S: Maintained | |
3458 | F: sound/usb/misc/ua101.c | |
3459 | ||
1f7df953 MF |
3460 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3461 | M: Matt Fleming <matt.fleming@intel.com> | |
3462 | L: linux-efi@vger.kernel.org | |
78bef24e | 3463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 3464 | S: Maintained |
fb2efb5c | 3465 | F: Documentation/efi-stub.txt |
1f7df953 MF |
3466 | F: arch/ia64/kernel/efi.c |
3467 | F: arch/x86/boot/compressed/eboot.[ch] | |
3468 | F: arch/x86/include/asm/efi.h | |
3469 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3470 | F: drivers/firmware/efi/* |
1f7df953 MF |
3471 | F: include/linux/efi*.h |
3472 | ||
d68772b7 MF |
3473 | EFI VARIABLE FILESYSTEM |
3474 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
3475 | M: Jeremy Kerr <jk@ozlabs.org> | |
3476 | M: Matt Fleming <matt.fleming@intel.com> | |
3477 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3478 | L: linux-efi@vger.kernel.org | |
3479 | S: Maintained | |
3480 | F: fs/efivarfs/ | |
3481 | ||
85a00d9b PJ |
3482 | EFIFB FRAMEBUFFER DRIVER |
3483 | L: linux-fbdev@vger.kernel.org | |
3484 | M: Peter Jones <pjones@redhat.com> | |
3485 | S: Maintained | |
8a61f013 | 3486 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 3487 | |
0bee8d28 JT |
3488 | EFS FILESYSTEM |
3489 | W: http://aeschi.ch.eu.org/efs/ | |
3490 | S: Orphan | |
679655da | 3491 | F: fs/efs/ |
0bee8d28 | 3492 | |
4480f15b | 3493 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3494 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
3495 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 3496 | L: linux-rdma@vger.kernel.org |
fab97220 | 3497 | S: Supported |
679655da | 3498 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3499 | |
aa8a9e25 | 3500 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3501 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
3502 | L: netdev@vger.kernel.org |
3503 | S: Maintained | |
9aa32835 | 3504 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3505 | |
f0319efe | 3506 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3507 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
f0319efe MCC |
3508 | L: linux-media@vger.kernel.org |
3509 | W: http://linuxtv.org | |
3510 | T: git git://linuxtv.org/media_tree.git | |
3511 | S: Maintained | |
3512 | F: drivers/media/usb/em28xx/ | |
3513 | ||
3e3a7d66 | 3514 | EMBEDDED LINUX |
8b58be88 JP |
3515 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
3516 | M: Matt Mackall <mpm@selenic.com> | |
3517 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
3518 | L: linux-embedded@vger.kernel.org |
3519 | S: Maintained | |
3520 | ||
3a1c1d44 | 3521 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3522 | M: James Smart <james.smart@emulex.com> |
ce00f85c JC |
3523 | L: linux-scsi@vger.kernel.org |
3524 | W: http://sourceforge.net/projects/lpfcxxxx | |
3525 | S: Supported | |
679655da | 3526 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3527 | |
5f5bac82 | 3528 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3529 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
3530 | S: Maintained |
3531 | F: drivers/misc/cb710/ | |
3532 | F: drivers/mmc/host/cb710-mmc.* | |
3533 | F: include/linux/cb710.h | |
3534 | ||
931e39a1 ML |
3535 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3536 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
3537 | S: Maintained | |
2a837449 | 3538 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3539 | |
ec207dcc GS |
3540 | ENHANCED ERROR HANDLING (EEH) |
3541 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
3542 | L: linuxppc-dev@lists.ozlabs.org | |
3543 | S: Supported | |
3544 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3545 | F: arch/powerpc/kernel/eeh*.c | |
3546 | ||
d5ca9006 | 3547 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3548 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 3549 | S: Maintained |
084bad91 | 3550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 3551 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 3552 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 3553 | |
1da177e4 | 3554 | ETHERNET BRIDGE |
adbbf69d | 3555 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 3556 | L: bridge@lists.linux-foundation.org |
4c325313 | 3557 | L: netdev@vger.kernel.org |
c996d8b9 | 3558 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3559 | S: Maintained |
679655da JP |
3560 | F: include/linux/netfilter_bridge/ |
3561 | F: net/bridge/ | |
1da177e4 | 3562 | |
22f08ad9 FF |
3563 | ETHERNET PHY LIBRARY |
3564 | M: Florian Fainelli <f.fainelli@gmail.com> | |
3565 | L: netdev@vger.kernel.org | |
3566 | S: Maintained | |
3567 | F: include/linux/phy.h | |
3568 | F: include/linux/phy_fixed.h | |
3569 | F: drivers/net/phy/ | |
3570 | F: Documentation/networking/phy.txt | |
3571 | F: drivers/of/of_mdio.c | |
3572 | F: drivers/of/of_net.c | |
3573 | ||
1da177e4 | 3574 | EXT2 FILE SYSTEM |
01971952 | 3575 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 3576 | L: linux-ext4@vger.kernel.org |
1da177e4 | 3577 | S: Maintained |
679655da JP |
3578 | F: Documentation/filesystems/ext2.txt |
3579 | F: fs/ext2/ | |
3580 | F: include/linux/ext2* | |
1da177e4 LT |
3581 | |
3582 | EXT3 FILE SYSTEM | |
01971952 | 3583 | M: Jan Kara <jack@suse.cz> |
8b58be88 | 3584 | M: Andrew Morton <akpm@linux-foundation.org> |
3c373a5f | 3585 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf EM |
3586 | L: linux-ext4@vger.kernel.org |
3587 | S: Maintained | |
679655da JP |
3588 | F: Documentation/filesystems/ext3.txt |
3589 | F: fs/ext3/ | |
72be2ccf EM |
3590 | |
3591 | EXT4 FILE SYSTEM | |
8b58be88 | 3592 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 3593 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 3594 | L: linux-ext4@vger.kernel.org |
08a225f1 | 3595 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3596 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3597 | S: Maintained |
679655da JP |
3598 | F: Documentation/filesystems/ext4.txt |
3599 | F: fs/ext4/ | |
1da177e4 | 3600 | |
c5532b09 | 3601 | Extended Verification Module (EVM) |
74dd744f MZ |
3602 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
3603 | L: linux-ima-devel@lists.sourceforge.net | |
3604 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
3605 | S: Supported |
3606 | F: security/integrity/evm/ | |
3607 | ||
df6b3cfe MH |
3608 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3609 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3610 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3611 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 3612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3613 | S: Maintained |
3614 | F: drivers/extcon/ | |
3615 | F: Documentation/extcon/ | |
3616 | ||
e2a75c44 JH |
3617 | EXYNOS DP DRIVER |
3618 | M: Jingoo Han <jg1.han@samsung.com> | |
3619 | L: dri-devel@lists.freedesktop.org | |
3620 | S: Maintained | |
3621 | F: drivers/gpu/drm/exynos/exynos_dp* | |
3622 | ||
33ad3912 DL |
3623 | EXYNOS MIPI DISPLAY DRIVERS |
3624 | M: Inki Dae <inki.dae@samsung.com> | |
3625 | M: Donghwa Lee <dh09.lee@samsung.com> | |
3626 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3627 | L: linux-fbdev@vger.kernel.org | |
3628 | S: Maintained | |
8a61f013 | 3629 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
3630 | F: include/video/exynos_mipi* |
3631 | ||
e53004e2 | 3632 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3633 | M: Jean Delvare <jdelvare@suse.de> |
e53004e2 JD |
3634 | L: lm-sensors@lm-sensors.org |
3635 | S: Maintained | |
679655da JP |
3636 | F: Documentation/hwmon/f71805f |
3637 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3638 | |
eea977ed MB |
3639 | FC0011 TUNER DRIVER |
3640 | M: Michael Buesch <m@bues.ch> | |
3641 | L: linux-media@vger.kernel.org | |
3642 | S: Maintained | |
ccae7af2 MCC |
3643 | F: drivers/media/tuners/fc0011.h |
3644 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3645 | |
91952bc0 AP |
3646 | FC2580 MEDIA DRIVER |
3647 | M: Antti Palosaari <crope@iki.fi> | |
3648 | L: linux-media@vger.kernel.org | |
3649 | W: http://linuxtv.org/ | |
3650 | W: http://palosaari.fi/linux/ | |
3651 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3652 | T: git git://linuxtv.org/anttip/media_tree.git | |
3653 | S: Maintained | |
3654 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3655 | |
88b2dbdb EP |
3656 | FANOTIFY |
3657 | M: Eric Paris <eparis@redhat.com> | |
3658 | S: Maintained | |
3659 | F: fs/notify/fanotify/ | |
3660 | F: include/linux/fanotify.h | |
c117ab84 | 3661 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3662 | |
1da177e4 | 3663 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3664 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
3665 | W: http://www.farsite.co.uk/ |
3666 | S: Supported | |
679655da | 3667 | F: drivers/net/wan/farsync.* |
1da177e4 | 3668 | |
c5408b88 | 3669 | FAULT INJECTION SUPPORT |
8b58be88 | 3670 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 3671 | S: Supported |
679655da JP |
3672 | F: Documentation/fault-injection/ |
3673 | F: lib/fault-inject.c | |
c5408b88 | 3674 | |
cae727db RL |
3675 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3676 | M: Robert Love <robert.w.love@intel.com> | |
f4aaea6d | 3677 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
3678 | W: www.Open-FCoE.org |
3679 | S: Supported | |
3680 | F: drivers/scsi/libfc/ | |
3681 | F: drivers/scsi/fcoe/ | |
3682 | F: include/scsi/fc/ | |
3683 | F: include/scsi/libfc.h | |
3684 | F: include/scsi/libfcoe.h | |
c117ab84 | 3685 | F: include/uapi/scsi/fc/ |
cae727db | 3686 | |
e2d1d6c0 | 3687 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 3688 | M: Jeff Layton <jlayton@poochiereds.net> |
18156e7e | 3689 | M: J. Bruce Fields <bfields@fieldses.org> |
e2d1d6c0 | 3690 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 3691 | S: Maintained |
679655da JP |
3692 | F: include/linux/fcntl.h |
3693 | F: include/linux/fs.h | |
c117ab84 CEB |
3694 | F: include/uapi/linux/fcntl.h |
3695 | F: include/uapi/linux/fs.h | |
679655da JP |
3696 | F: fs/fcntl.c |
3697 | F: fs/locks.c | |
1da177e4 | 3698 | |
e2d1d6c0 | 3699 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3700 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 3701 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 3702 | S: Maintained |
679655da | 3703 | F: fs/* |
173acc7c | 3704 | |
b26e0ed4 | 3705 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3706 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
3707 | L: lm-sensors@lm-sensors.org |
3708 | S: Maintained | |
d5ca6918 JP |
3709 | F: drivers/hwmon/f75375s.c |
3710 | F: include/linux/f75375s.h | |
b26e0ed4 | 3711 | |
a331b0c3 CL |
3712 | FIREWIRE AUDIO DRIVERS |
3713 | M: Clemens Ladisch <clemens@ladisch.de> | |
3714 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3715 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3716 | S: Maintained | |
3717 | F: sound/firewire/ | |
3718 | ||
eb86ec51 SR |
3719 | FIREWIRE MEDIA DRIVERS (firedtv) |
3720 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
3721 | L: linux-media@vger.kernel.org | |
3722 | L: linux1394-devel@lists.sourceforge.net | |
3723 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3724 | S: Maintained | |
3725 | F: drivers/media/firewire/ | |
3726 | ||
a511ce33 CB |
3727 | FIREWIRE SBP-2 TARGET |
3728 | M: Chris Boot <bootc@bootc.net> | |
3729 | L: linux-scsi@vger.kernel.org | |
3730 | L: target-devel@vger.kernel.org | |
3731 | L: linux1394-devel@lists.sourceforge.net | |
3732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3733 | S: Maintained | |
3734 | F: drivers/target/sbp/ | |
3735 | ||
7d2c86b5 | 3736 | FIREWIRE SUBSYSTEM |
8b58be88 | 3737 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 3738 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 3739 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3740 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3741 | S: Maintained |
679655da | 3742 | F: drivers/firewire/ |
8f06ce3b SR |
3743 | F: include/linux/firewire.h |
3744 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3745 | F: tools/firewire/ |
e2d1d6c0 RD |
3746 | |
3747 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3748 | M: Ming Lei <ming.lei@canonical.com> |
3749 | L: linux-kernel@vger.kernel.org | |
3750 | S: Maintained | |
679655da JP |
3751 | F: Documentation/firmware_class/ |
3752 | F: drivers/base/firmware*.c | |
3753 | F: include/linux/firmware.h | |
e2d1d6c0 | 3754 | |
f730e3dc | 3755 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3756 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
3757 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
3758 | S: Maintained | |
3759 | F: drivers/block/rsxx/ | |
3760 | ||
8206f664 JK |
3761 | FLOPPY DRIVER |
3762 | M: Jiri Kosina <jkosina@suse.cz> | |
3763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3764 | S: Odd fixes | |
3765 | F: drivers/block/floppy.c | |
3766 | ||
9c9f32ed AR |
3767 | FMC SUBSYSTEM |
3768 | M: Alessandro Rubini <rubini@gnudd.com> | |
3769 | W: http://www.ohwr.org/projects/fmc-bus | |
3770 | S: Supported | |
3771 | F: drivers/fmc/ | |
3772 | F: include/linux/fmc*.h | |
3773 | F: include/linux/ipmi-fru.h | |
3774 | K: fmc_d.*register | |
3775 | ||
e2d1d6c0 | 3776 | FPU EMULATOR |
8b58be88 | 3777 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 3778 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3779 | S: Maintained |
679655da | 3780 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3781 | |
3782 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3783 | L: netdev@vger.kernel.org |
c173bfac | 3784 | S: Orphan |
679655da JP |
3785 | F: drivers/net/wan/dlci.c |
3786 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3787 | |
3788 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3789 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
3790 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 3791 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 3792 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3793 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3795 | S: Maintained |
679655da | 3796 | F: Documentation/fb/ |
d958c62c | 3797 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3798 | F: drivers/video/ |
3799 | F: include/video/ | |
679655da | 3800 | F: include/linux/fb.h |
c117ab84 CEB |
3801 | F: include/uapi/video/ |
3802 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3803 | |
a57c188e | 3804 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3805 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 3806 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 3807 | S: Maintained |
8a61f013 | 3808 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 3809 | |
e2d1d6c0 | 3810 | FREESCALE DMA DRIVER |
8b58be88 JP |
3811 | M: Li Yang <leoli@freescale.com> |
3812 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 3813 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 3814 | S: Maintained |
679655da | 3815 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3816 | |
3817 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3818 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 3819 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 3820 | L: linux-i2c@vger.kernel.org |
0d2b405a | 3821 | S: Maintained |
679655da | 3822 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3823 | |
60e8c5ab | 3824 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3825 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 3826 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 3827 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 3828 | S: Maintained |
bad985a1 | 3829 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 3830 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 3831 | |
4689a6b1 | 3832 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3833 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3834 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 3835 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
3836 | L: netdev@vger.kernel.org |
3837 | S: Maintained | |
ec21e2ec | 3838 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3839 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3840 | |
d9e9d82c | 3841 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3842 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3843 | S: Orphan |
679655da JP |
3844 | F: arch/powerpc/sysdev/qe_lib/ |
3845 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3846 | |
b55ef929 | 3847 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3848 | M: Li Yang <leoli@freescale.com> |
6372594a | 3849 | L: linux-usb@vger.kernel.org |
a4724ed6 | 3850 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 3851 | S: Maintained |
faf2e1db | 3852 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 3853 | |
beaf53bf | 3854 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3855 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 3856 | L: netdev@vger.kernel.org |
a4724ed6 | 3857 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 3858 | S: Maintained |
ec21e2ec | 3859 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3860 | |
d9e9d82c | 3861 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3862 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 3863 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3864 | S: Maintained |
df621252 | 3865 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3866 | |
3867 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3868 | M: Timur Tabi <timur@tabi.org> |
dc85950a MB |
3869 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
3870 | M: Xiubo Li <Li.Xiubo@freescale.com> | |
93711660 | 3871 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 3872 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3873 | S: Maintained |
69aefcea | 3874 | F: sound/soc/fsl/fsl* |
dc85950a | 3875 | F: sound/soc/fsl/imx* |
69aefcea | 3876 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 3877 | |
1da177e4 | 3878 | FREEVXFS FILESYSTEM |
8b58be88 | 3879 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
3880 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3881 | S: Maintained | |
679655da | 3882 | F: fs/freevxfs/ |
1da177e4 | 3883 | |
71038f52 | 3884 | FREEZER |
49db1903 | 3885 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 3886 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 3887 | L: linux-pm@vger.kernel.org |
71038f52 | 3888 | S: Supported |
679655da JP |
3889 | F: Documentation/power/freezing-of-tasks.txt |
3890 | F: include/linux/freezer.h | |
3891 | F: kernel/freezer.c | |
71038f52 | 3892 | |
839a1f79 KRW |
3893 | FRONTSWAP API |
3894 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3895 | L: linux-kernel@vger.kernel.org | |
3896 | S: Maintained | |
3897 | F: mm/frontswap.c | |
3898 | F: include/linux/frontswap.h | |
3899 | ||
a5432f5a | 3900 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3901 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
3902 | L: linux-cachefs@redhat.com |
3903 | S: Supported | |
3904 | F: Documentation/filesystems/caching/ | |
3905 | F: fs/fscache/ | |
3906 | F: include/linux/fscache*.h | |
3907 | ||
f58ad8f5 | 3908 | F2FS FILE SYSTEM |
9b29d481 | 3909 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 3910 | M: Changman Lee <cm224.lee@samsung.com> |
f58ad8f5 JK |
3911 | L: linux-f2fs-devel@lists.sourceforge.net |
3912 | W: http://en.wikipedia.org/wiki/F2FS | |
3913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3914 | S: Maintained | |
3915 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3916 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3917 | F: fs/f2fs/ |
3918 | F: include/linux/f2fs_fs.h | |
3919 | ||
5ab7ffea | 3920 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3921 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 3922 | S: Maintained |
679655da | 3923 | F: arch/frv/ |
1da177e4 | 3924 | |
20b93734 | 3925 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3926 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 3927 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 3928 | S: Maintained |
679655da | 3929 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3930 | |
4da621b6 HK |
3931 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3932 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3933 | M: Heungjun Kim <riverful.kim@samsung.com> | |
3934 | L: linux-media@vger.kernel.org | |
3935 | S: Maintained | |
90d72ac6 | 3936 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3937 | F: include/media/m5mols.h |
3938 | ||
2d24c490 RG |
3939 | FUJITSU TABLET EXTRAS |
3940 | M: Robert Gerlach <khnz@gmx.de> | |
3941 | L: platform-driver-x86@vger.kernel.org | |
3942 | S: Maintained | |
3943 | F: drivers/platform/x86/fujitsu-tablet.c | |
3944 | ||
04578f17 | 3945 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3946 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
3947 | L: fuse-devel@lists.sourceforge.net |
3948 | W: http://fuse.sourceforge.net/ | |
3949 | S: Maintained | |
679655da | 3950 | F: fs/fuse/ |
c117ab84 | 3951 | F: include/uapi/linux/fuse.h |
04578f17 | 3952 | |
1da177e4 | 3953 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3954 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 3955 | L: linux-scsi@vger.kernel.org |
baaea1dc | 3956 | S: Odd Fixes (e.g., new signatures) |
679655da | 3957 | F: drivers/scsi/fdomain.* |
1da177e4 | 3958 | |
d8e2162c PO |
3959 | GCOV BASED KERNEL PROFILING |
3960 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
3961 | S: Maintained | |
3962 | F: kernel/gcov/ | |
3963 | F: Documentation/gcov.txt | |
3964 | ||
1da177e4 | 3965 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3966 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
3967 | L: linux-scsi@vger.kernel.org |
3968 | W: http://www.icp-vortex.com/ | |
3969 | S: Supported | |
679655da | 3970 | F: drivers/scsi/gdt* |
1da177e4 | 3971 | |
3169a1c7 HV |
3972 | GEMTEK FM RADIO RECEIVER DRIVER |
3973 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3974 | L: linux-media@vger.kernel.org | |
3975 | T: git git://linuxtv.org/media_tree.git | |
3976 | W: http://linuxtv.org | |
3977 | S: Maintained | |
3978 | F: drivers/media/radio/radio-gemtek* | |
3979 | ||
1c23af90 | 3980 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3981 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 3982 | S: Supported |
679655da JP |
3983 | F: drivers/i2c/busses/i2c-gpio.c |
3984 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3985 | |
92ed1a76 PK |
3986 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3987 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
3988 | L: linux-i2c@vger.kernel.org | |
3989 | S: Supported | |
e7065e20 JD |
3990 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3991 | F: include/linux/i2c-mux-gpio.h | |
3992 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3993 | |
9251ce95 | 3994 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3995 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
3996 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3997 | S: Maintained | |
679655da JP |
3998 | F: drivers/net/wan/c101.c |
3999 | F: drivers/net/wan/hd6457* | |
4000 | F: drivers/net/wan/hdlc* | |
4001 | F: drivers/net/wan/n2.c | |
4002 | F: drivers/net/wan/pc300too.c | |
4003 | F: drivers/net/wan/pci200syn.c | |
4004 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4005 | |
1527aab6 | 4006 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4007 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
4008 | L: linux-arch@vger.kernel.org |
4009 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4010 | S: Maintained | |
14430813 JP |
4011 | F: include/asm-generic/ |
4012 | F: include/uapi/asm-generic/ | |
1527aab6 | 4013 | |
ff764963 KVA |
4014 | GENERIC PHY FRAMEWORK |
4015 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
4016 | L: linux-kernel@vger.kernel.org | |
4017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4018 | S: Supported | |
4019 | F: drivers/phy/ | |
4020 | F: include/linux/phy/ | |
4021 | ||
ccb86a69 | 4022 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4023 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 4024 | L: kvm@vger.kernel.org |
ccb86a69 MT |
4025 | S: Supported |
4026 | F: drivers/uio/uio_pci_generic.c | |
4027 | ||
f8f1ec73 JP |
4028 | GET_MAINTAINER SCRIPT |
4029 | M: Joe Perches <joe@perches.com> | |
4030 | S: Maintained | |
4031 | F: scripts/get_maintainer.pl | |
4032 | ||
5be7b50f | 4033 | GFS2 FILE SYSTEM |
8b58be88 | 4034 | M: Steven Whitehouse <swhiteho@redhat.com> |
a4644184 | 4035 | L: cluster-devel@redhat.com |
5be7b50f | 4036 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
4037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
4038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 4039 | S: Supported |
679655da JP |
4040 | F: Documentation/filesystems/gfs2*.txt |
4041 | F: fs/gfs2/ | |
c117ab84 | 4042 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4043 | |
0a34eb8f | 4044 | GIGASET ISDN DRIVERS |
8b58be88 JP |
4045 | M: Hansjoerg Lipp <hjlipp@web.de> |
4046 | M: Tilman Schmidt <tilman@imap.cc> | |
0a34eb8f HL |
4047 | L: gigaset307x-common@lists.sourceforge.net |
4048 | W: http://gigaset307x.sourceforge.net/ | |
4049 | S: Maintained | |
679655da JP |
4050 | F: Documentation/isdn/README.gigaset |
4051 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4052 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4053 | |
7eea35fe JP |
4054 | GO7007 MPEG CODEC |
4055 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
4056 | L: linux-media@vger.kernel.org | |
4057 | S: Maintained | |
4058 | F: drivers/media/usb/go7007/ | |
4059 | ||
a0dc00b4 | 4060 | GPIO SUBSYSTEM |
e4651a9f | 4061 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 4062 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 4063 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
4064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4065 | S: Maintained | |
4066 | F: Documentation/gpio/ | |
a0dc00b4 | 4067 | F: drivers/gpio/ |
bdc6e95e AC |
4068 | F: include/linux/gpio/ |
4069 | F: include/linux/gpio.h | |
9b692346 | 4070 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4071 | |
71a6d0af HW |
4072 | GRE DEMULTIPLEXER DRIVER |
4073 | M: Dmitry Kozlov <xeb@mail.ru> | |
4074 | L: netdev@vger.kernel.org | |
4075 | S: Maintained | |
11c26770 JP |
4076 | F: net/ipv4/gre_demux.c |
4077 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4078 | F: include/net/gre.h |
4079 | ||
d4c41139 KG |
4080 | GRETH 10/100/1G Ethernet MAC device driver |
4081 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
4082 | L: netdev@vger.kernel.org | |
4083 | S: Maintained | |
a31a96ad | 4084 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4085 | |
e8deeae2 | 4086 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4087 | M: Frank Zago <frank@zago.net> |
661263b5 | 4088 | L: linux-media@vger.kernel.org |
275ffde4 | 4089 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4090 | S: Maintained |
0c0d06ca | 4091 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4092 | |
4b3fa3c4 OL |
4093 | GSPCA GL860 SUBDRIVER |
4094 | M: Olivier Lorin <o.lorin@laposte.net> | |
4095 | L: linux-media@vger.kernel.org | |
275ffde4 | 4096 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4097 | S: Maintained |
0c0d06ca | 4098 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4099 | |
e8deeae2 | 4100 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4101 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 4102 | L: linux-media@vger.kernel.org |
275ffde4 | 4103 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4104 | S: Maintained |
0c0d06ca | 4105 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4106 | |
4107 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4108 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4109 | L: linux-media@vger.kernel.org |
275ffde4 | 4110 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4111 | S: Maintained |
0c0d06ca | 4112 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4113 | |
261982f1 | 4114 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4115 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 4116 | L: linux-media@vger.kernel.org |
275ffde4 | 4117 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4118 | S: Maintained |
0c0d06ca | 4119 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4120 | |
e8deeae2 | 4121 | GSPCA T613 SUBDRIVER |
8b58be88 | 4122 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 4123 | L: linux-media@vger.kernel.org |
275ffde4 | 4124 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4125 | S: Maintained |
0c0d06ca | 4126 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4127 | |
4128 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4129 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4130 | L: linux-media@vger.kernel.org |
275ffde4 | 4131 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4132 | S: Maintained |
0c0d06ca | 4133 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4134 | |
584ec979 DB |
4135 | GUID PARTITION TABLE (GPT) |
4136 | M: Davidlohr Bueso <davidlohr@hp.com> | |
4137 | L: linux-efi@vger.kernel.org | |
4138 | S: Maintained | |
4139 | F: block/partitions/efi.* | |
4140 | ||
aa3c598b EG |
4141 | STK1160 USB VIDEO CAPTURE DRIVER |
4142 | M: Ezequiel Garcia <elezegarcia@gmail.com> | |
4143 | L: linux-media@vger.kernel.org | |
275ffde4 | 4144 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4145 | S: Maintained |
4146 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4147 | |
71a6d0af HW |
4148 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4149 | M: Frank Seidel <frank@f-seidel.de> | |
4150 | L: platform-driver-x86@vger.kernel.org | |
4151 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4152 | S: Maintained | |
4153 | F: drivers/platform/x86/hdaps.c | |
4154 | ||
48fc9e26 HV |
4155 | HDPVR USB VIDEO ENCODER DRIVER |
4156 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4157 | L: linux-media@vger.kernel.org | |
4158 | T: git git://linuxtv.org/media_tree.git | |
4159 | W: http://linuxtv.org | |
4160 | S: Odd Fixes | |
14430813 | 4161 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4162 | |
71a6d0af | 4163 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4164 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4165 | L: linux-mm@kvack.org |
71a6d0af HW |
4166 | S: Maintained |
4167 | F: mm/memory-failure.c | |
4168 | F: mm/hwpoison-inject.c | |
4169 | ||
4170 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4171 | L: linuxppc-dev@lists.ozlabs.org | |
4172 | S: Odd Fixes | |
4173 | F: drivers/tty/hvc/ | |
4174 | ||
5b543965 | 4175 | HARDWARE MONITORING |
7c81c60f | 4176 | M: Jean Delvare <jdelvare@suse.de> |
ca462085 | 4177 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4178 | L: lm-sensors@lm-sensors.org |
595142e0 | 4179 | W: http://www.lm-sensors.org/ |
9e012c1a | 4180 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 4181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4182 | S: Maintained |
047f4ec2 | 4183 | F: Documentation/hwmon/ |
679655da | 4184 | F: drivers/hwmon/ |
047f4ec2 | 4185 | F: include/linux/hwmon*.h |
5b543965 | 4186 | |
844dd05f | 4187 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4188 | M: Matt Mackall <mpm@selenic.com> |
4189 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
4190 | S: Odd fixes | |
679655da JP |
4191 | F: Documentation/hw_random.txt |
4192 | F: drivers/char/hw_random/ | |
4193 | F: include/linux/hw_random.h | |
844dd05f | 4194 | |
8b37fcfc OBC |
4195 | HARDWARE SPINLOCK CORE |
4196 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4197 | S: Maintained | |
4198 | F: Documentation/hwspinlock.txt | |
4199 | F: drivers/hwspinlock/hwspinlock_* | |
4200 | F: include/linux/hwspinlock.h | |
4201 | ||
1da177e4 | 4202 | HARMONY SOUND DRIVER |
ac6aecbf | 4203 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4204 | S: Maintained |
679655da | 4205 | F: sound/parisc/harmony.* |
1da177e4 | 4206 | |
91952bc0 AP |
4207 | HD29L2 MEDIA DRIVER |
4208 | M: Antti Palosaari <crope@iki.fi> | |
4209 | L: linux-media@vger.kernel.org | |
4210 | W: http://linuxtv.org/ | |
4211 | W: http://palosaari.fi/linux/ | |
4212 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4213 | T: git git://linuxtv.org/anttip/media_tree.git | |
4214 | S: Maintained | |
4215 | F: drivers/media/dvb-frontends/hd29l2* | |
4216 | ||
e2d1d6c0 | 4217 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 4218 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
e2d1d6c0 RD |
4219 | L: iss_storagedev@hp.com |
4220 | S: Maintained | |
679655da JP |
4221 | F: Documentation/blockdev/cpqarray.txt |
4222 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4223 | |
9257aa49 | 4224 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 4225 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
9257aa49 SC |
4226 | L: iss_storagedev@hp.com |
4227 | S: Supported | |
4228 | F: Documentation/scsi/hpsa.txt | |
4229 | F: drivers/scsi/hpsa*.[ch] | |
4230 | F: include/linux/cciss*.h | |
c117ab84 | 4231 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4232 | |
e2d1d6c0 | 4233 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 4234 | M: Mike Miller <mike.miller@hp.com> |
e2d1d6c0 RD |
4235 | L: iss_storagedev@hp.com |
4236 | S: Supported | |
679655da JP |
4237 | F: Documentation/blockdev/cciss.txt |
4238 | F: drivers/block/cciss* | |
4239 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4240 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4241 | |
1da177e4 | 4242 | HFS FILESYSTEM |
6cf515e1 GU |
4243 | L: linux-fsdevel@vger.kernel.org |
4244 | S: Orphan | |
679655da JP |
4245 | F: Documentation/filesystems/hfs.txt |
4246 | F: fs/hfs/ | |
1da177e4 | 4247 | |
ef575f47 GU |
4248 | HFSPLUS FILESYSTEM |
4249 | L: linux-fsdevel@vger.kernel.org | |
4250 | S: Orphan | |
4251 | F: Documentation/filesystems/hfsplus.txt | |
4252 | F: fs/hfsplus/ | |
4253 | ||
1da177e4 | 4254 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4255 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
4256 | L: linux-nvidia@lists.surfsouth.com |
4257 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4258 | S: Maintained | |
8a61f013 | 4259 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 4260 | |
4480f15b | 4261 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4262 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4263 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4264 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 4265 | S: Supported |
679655da JP |
4266 | F: arch/x86/power/ |
4267 | F: drivers/base/power/ | |
4268 | F: kernel/power/ | |
4269 | F: include/linux/suspend.h | |
4270 | F: include/linux/freezer.h | |
4271 | F: include/linux/pm.h | |
679655da | 4272 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4273 | |
4ef4caad | 4274 | HID CORE LAYER |
8b58be88 | 4275 | M: Jiri Kosina <jkosina@suse.cz> |
eb76c5c0 | 4276 | L: linux-input@vger.kernel.org |
54e5881d | 4277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4278 | S: Maintained |
679655da JP |
4279 | F: drivers/hid/ |
4280 | F: include/linux/hid* | |
c117ab84 | 4281 | F: include/uapi/linux/hid* |
4ef4caad | 4282 | |
38bed542 | 4283 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4284 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 4285 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 4286 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4287 | S: Maintained |
679655da | 4288 | F: Documentation/timers/ |
5cee9645 | 4289 | F: kernel/time/hrtimer.c |
88606e80 TG |
4290 | F: kernel/time/clockevents.c |
4291 | F: kernel/time/tick*.* | |
4292 | F: kernel/time/timer_*.c | |
05ed8490 | 4293 | F: include/linux/clockchips.h |
679655da | 4294 | F: include/linux/hrtimer.h |
38bed542 | 4295 | |
1da177e4 | 4296 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4297 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 4298 | S: Orphan |
679655da JP |
4299 | F: drivers/net/hamradio/dmascc.c |
4300 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4301 | |
ede1e6f8 | 4302 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4303 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
4304 | W: http://www.highpoint-tech.com |
4305 | S: Supported | |
679655da JP |
4306 | F: Documentation/scsi/hptiop.txt |
4307 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4308 | |
1da177e4 | 4309 | HIPPI |
8b58be88 | 4310 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
4311 | L: linux-hippi@sunsite.dk |
4312 | S: Maintained | |
679655da | 4313 | F: include/linux/hippidevice.h |
c117ab84 | 4314 | F: include/uapi/linux/if_hippi.h |
679655da | 4315 | F: net/802/hippi.c |
ff5a3b50 | 4316 | F: drivers/net/hippi/ |
1da177e4 | 4317 | |
ff1d2767 | 4318 | HOST AP DRIVER |
8b58be88 | 4319 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 4320 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 4321 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
4322 | W: http://hostap.epitest.fi/ |
4323 | S: Maintained | |
679655da | 4324 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4325 | |
dd8cd779 | 4326 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4327 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 4328 | S: Orphan |
679655da | 4329 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4330 | |
e2d1d6c0 | 4331 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4332 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4333 | S: Maintained |
7e25d724 | 4334 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4335 | |
7d2c86b5 | 4336 | HPET: High Precision Event Timers driver |
8b58be88 | 4337 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 4338 | S: Maintained |
679655da JP |
4339 | F: Documentation/timers/hpet.txt |
4340 | F: drivers/char/hpet.c | |
4341 | F: include/linux/hpet.h | |
c117ab84 | 4342 | F: include/uapi/linux/hpet.h |
b9b0332f | 4343 | |
e07b5d79 | 4344 | HPET: x86 |
9e06f631 | 4345 | S: Orphan |
679655da JP |
4346 | F: arch/x86/kernel/hpet.c |
4347 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4348 | |
1da177e4 | 4349 | HPFS FILESYSTEM |
8b58be88 | 4350 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
4351 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4352 | S: Maintained | |
679655da | 4353 | F: fs/hpfs/ |
1da177e4 | 4354 | |
3441cded | 4355 | HSI SUBSYSTEM |
56459ea9 SR |
4356 | M: Sebastian Reichel <sre@kernel.org> |
4357 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4358 | S: Maintained |
4359 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4360 | F: Documentation/hsi.txt |
3441cded SR |
4361 | F: drivers/hsi/ |
4362 | F: include/linux/hsi/ | |
4363 | F: include/uapi/linux/hsi/ | |
4364 | ||
7d2c86b5 | 4365 | HSO 3G MODEM DRIVER |
8b58be88 | 4366 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
4367 | W: http://www.pharscape.org |
4368 | S: Maintained | |
679655da | 4369 | F: drivers/net/usb/hso.c |
11cd29b0 | 4370 | |
19990e29 AB |
4371 | HSR NETWORK PROTOCOL |
4372 | M: Arvid Brodin <arvid.brodin@alten.se> | |
4373 | L: netdev@vger.kernel.org | |
4374 | S: Maintained | |
4375 | F: net/hsr/ | |
4376 | ||
5a18c343 | 4377 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4378 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
4379 | L: linux-input@vger.kernel.org |
4380 | S: Maintained | |
679655da | 4381 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4382 | |
1da177e4 | 4383 | HUGETLB FILESYSTEM |
6d49e352 | 4384 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 4385 | S: Maintained |
679655da | 4386 | F: fs/hugetlbfs/ |
1da177e4 | 4387 | |
05183189 S |
4388 | Hyper-V CORE AND DRIVERS |
4389 | M: K. Y. Srinivasan <kys@microsoft.com> | |
4390 | M: Haiyang Zhang <haiyangz@microsoft.com> | |
4391 | L: devel@linuxdriverproject.org | |
4392 | S: Maintained | |
a4162747 HZ |
4393 | F: arch/x86/include/asm/mshyperv.h |
4394 | F: arch/x86/include/uapi/asm/hyperv.h | |
4395 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4396 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4397 | F: drivers/hv/ |
f92ca80b | 4398 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4399 | F: drivers/net/hyperv/ |
a4162747 | 4400 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 4401 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
4402 | F: include/linux/hyperv.h |
4403 | F: tools/hv/ | |
05183189 | 4404 | |
d85c8a6a | 4405 | I2C OVER PARALLEL PORT |
7c81c60f | 4406 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4407 | L: linux-i2c@vger.kernel.org |
4408 | S: Maintained | |
4409 | F: Documentation/i2c/busses/i2c-parport | |
4410 | F: Documentation/i2c/busses/i2c-parport-light | |
4411 | F: drivers/i2c/busses/i2c-parport.c | |
4412 | F: drivers/i2c/busses/i2c-parport-light.c | |
4413 | ||
4414 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4415 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4416 | L: linux-i2c@vger.kernel.org |
4417 | S: Maintained | |
4418 | F: Documentation/i2c/busses/i2c-ali1535 | |
4419 | F: Documentation/i2c/busses/i2c-ali1563 | |
4420 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4421 | F: Documentation/i2c/busses/i2c-amd756 | |
4422 | F: Documentation/i2c/busses/i2c-amd8111 | |
4423 | F: Documentation/i2c/busses/i2c-i801 | |
4424 | F: Documentation/i2c/busses/i2c-nforce2 | |
4425 | F: Documentation/i2c/busses/i2c-piix4 | |
4426 | F: Documentation/i2c/busses/i2c-sis5595 | |
4427 | F: Documentation/i2c/busses/i2c-sis630 | |
4428 | F: Documentation/i2c/busses/i2c-sis96x | |
4429 | F: Documentation/i2c/busses/i2c-via | |
4430 | F: Documentation/i2c/busses/i2c-viapro | |
4431 | F: drivers/i2c/busses/i2c-ali1535.c | |
4432 | F: drivers/i2c/busses/i2c-ali1563.c | |
4433 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4434 | F: drivers/i2c/busses/i2c-amd756.c | |
4435 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4436 | F: drivers/i2c/busses/i2c-amd8111.c | |
4437 | F: drivers/i2c/busses/i2c-i801.c | |
4438 | F: drivers/i2c/busses/i2c-isch.c | |
4439 | F: drivers/i2c/busses/i2c-nforce2.c | |
4440 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4441 | F: drivers/i2c/busses/i2c-piix4.c | |
4442 | F: drivers/i2c/busses/i2c-sis5595.c | |
4443 | F: drivers/i2c/busses/i2c-sis630.c | |
4444 | F: drivers/i2c/busses/i2c-sis96x.c | |
4445 | F: drivers/i2c/busses/i2c-via.c | |
4446 | F: drivers/i2c/busses/i2c-viapro.c | |
4447 | ||
cb7f07a4 NH |
4448 | I2C/SMBUS ISMT DRIVER |
4449 | M: Seth Heasley <seth.heasley@intel.com> | |
4450 | M: Neil Horman <nhorman@tuxdriver.com> | |
4451 | L: linux-i2c@vger.kernel.org | |
4452 | F: drivers/i2c/busses/i2c-ismt.c | |
4453 | F: Documentation/i2c/busses/i2c-ismt | |
4454 | ||
6ea884db | 4455 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4456 | M: Jean Delvare <jdelvare@suse.de> |
846557d3 | 4457 | L: linux-i2c@vger.kernel.org |
6ea884db | 4458 | S: Maintained |
8547a5bc | 4459 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4460 | |
5b543965 | 4461 | I2C SUBSYSTEM |
14d77c4d | 4462 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 4463 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
4464 | W: https://i2c.wiki.kernel.org/ |
4465 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 4466 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4467 | S: Maintained |
679655da JP |
4468 | F: Documentation/i2c/ |
4469 | F: drivers/i2c/ | |
4470 | F: include/linux/i2c.h | |
03b70d62 | 4471 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4472 | F: include/uapi/linux/i2c.h |
4473 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4474 | |
4560d677 WS |
4475 | I2C ACPI SUPPORT |
4476 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
4477 | L: linux-i2c@vger.kernel.org | |
4478 | L: linux-acpi@vger.kernel.org | |
4479 | S: Maintained | |
4480 | F: drivers/i2c/i2c-acpi.c | |
4481 | ||
d85c8a6a | 4482 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4483 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4484 | L: linux-i2c@vger.kernel.org |
4485 | S: Maintained | |
4486 | F: Documentation/i2c/busses/i2c-taos-evm | |
4487 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4488 | ||
e8c76eed | 4489 | I2C-TINY-USB DRIVER |
8b58be88 | 4490 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 4491 | L: linux-i2c@vger.kernel.org |
932d1872 | 4492 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4493 | S: Maintained |
679655da | 4494 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4495 | |
1da177e4 | 4496 | i386 BOOT CODE |
8b58be88 | 4497 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 4498 | S: Maintained |
679655da | 4499 | F: arch/x86/boot/ |
1da177e4 LT |
4500 | |
4501 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4502 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 4503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4504 | S: Maintained |
4505 | ||
1da177e4 | 4506 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4507 | M: Tony Luck <tony.luck@intel.com> |
4508 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 4509 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 4510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4511 | S: Maintained |
679655da | 4512 | F: arch/ia64/ |
1da177e4 | 4513 | |
956c203c | 4514 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4515 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
4516 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> | |
956c203c KY |
4517 | L: linux-crypto@vger.kernel.org |
4518 | S: Supported | |
4519 | F: drivers/crypto/nx/ | |
4520 | ||
0e16aafb | 4521 | IBM Power 842 compression accelerator |
e6babec6 | 4522 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> |
0e16aafb SJ |
4523 | S: Supported |
4524 | F: drivers/crypto/nx/nx-842.c | |
4525 | F: include/linux/nx842.h | |
4526 | ||
1da177e4 | 4527 | IBM Power Linux RAID adapter |
8b58be88 | 4528 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 4529 | S: Supported |
679655da | 4530 | F: drivers/scsi/ipr.* |
1da177e4 | 4531 | |
9d348af4 SL |
4532 | IBM Power Virtual Ethernet Device Driver |
4533 | M: Santiago Leon <santil@linux.vnet.ibm.com> | |
4534 | L: netdev@vger.kernel.org | |
4535 | S: Supported | |
9aa32835 | 4536 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4537 | |
e6babec6 NF |
4538 | IBM Power Virtual SCSI Device Drivers |
4539 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> | |
4b7652cc RJ |
4540 | L: linux-scsi@vger.kernel.org |
4541 | S: Supported | |
e6babec6 NF |
4542 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
4543 | F: drivers/scsi/ibmvscsi/viosrp.h | |
4544 | ||
4545 | IBM Power Virtual FC Device Drivers | |
4546 | M: Brian King <brking@linux.vnet.ibm.com> | |
4547 | L: linux-scsi@vger.kernel.org | |
4548 | S: Supported | |
4549 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 4550 | |
1da177e4 | 4551 | IBM ServeRAID RAID DRIVER |
f9213e78 | 4552 | S: Orphan |
679655da | 4553 | F: drivers/scsi/ips.* |
1da177e4 | 4554 | |
6ed9f9c4 PT |
4555 | ICH LPC AND GPIO DRIVER |
4556 | M: Peter Tyser <ptyser@xes-inc.com> | |
4557 | S: Maintained | |
4558 | F: drivers/mfd/lpc_ich.c | |
4559 | F: drivers/gpio/gpio-ich.c | |
4560 | ||
1e7106fc | 4561 | IDE SUBSYSTEM |
8b58be88 | 4562 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 4563 | L: linux-ide@vger.kernel.org |
8a6e2535 | 4564 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4565 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4566 | S: Maintained |
679655da JP |
4567 | F: Documentation/ide/ |
4568 | F: drivers/ide/ | |
4569 | F: include/linux/ide.h | |
1da177e4 | 4570 | |
6cb8c13d IP |
4571 | IDEAPAD LAPTOP EXTRAS DRIVER |
4572 | M: Ike Panhc <ike.pan@canonical.com> | |
4573 | L: platform-driver-x86@vger.kernel.org | |
4574 | W: http://launchpad.net/ideapad-laptop | |
4575 | S: Maintained | |
4576 | F: drivers/platform/x86/ideapad-laptop.c | |
4577 | ||
1ea4c161 AM |
4578 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4579 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
4580 | L: linux-input@vger.kernel.org | |
4581 | W: https://github.com/o2genum/ideapad-slidebar | |
4582 | S: Maintained | |
4583 | F: drivers/input/misc/ideapad_slidebar.c | |
4584 | ||
0f861e8c | 4585 | IDE/ATAPI DRIVERS |
487ba8e8 | 4586 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 4587 | L: linux-ide@vger.kernel.org |
c404c199 | 4588 | S: Maintained |
679655da JP |
4589 | F: Documentation/cdrom/ide-cd |
4590 | F: drivers/ide/ide-cd* | |
1da177e4 | 4591 | |
27471fdb | 4592 | IDLE-I7300 |
8b58be88 | 4593 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 4594 | L: linux-pm@vger.kernel.org |
27471fdb | 4595 | S: Supported |
679655da | 4596 | F: drivers/idle/i7300_idle.c |
27471fdb | 4597 | |
02cf2286 | 4598 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 4599 | M: Alexander Aring <alex.aring@gmail.com> |
e0af6062 | 4600 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) |
02cf2286 | 4601 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4602 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4603 | S: Maintained |
4604 | F: net/ieee802154/ | |
68653359 | 4605 | F: net/mac802154/ |
251741b1 | 4606 | F: drivers/net/ieee802154/ |
02cf2286 | 4607 | |
40ad4a30 SY |
4608 | IGUANAWORKS USB IR TRANSCEIVER |
4609 | M: Sean Young <sean@mess.org> | |
4610 | L: linux-media@vger.kernel.org | |
4611 | S: Maintained | |
4612 | F: drivers/media/rc/iguanair.c | |
4613 | ||
9545f86e | 4614 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4615 | M: Jonathan Cameron <jic23@kernel.org> |
9545f86e AP |
4616 | L: linux-iio@vger.kernel.org |
4617 | S: Maintained | |
03e7c251 | 4618 | F: drivers/iio/ |
9545f86e AP |
4619 | F: drivers/staging/iio/ |
4620 | ||
65519263 SG |
4621 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4622 | M: Matthieu Castet <castet.matthieu@free.fr> | |
4623 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
4624 | S: Maintained | |
4625 | F: drivers/usb/atm/ueagle-atm.c | |
4626 | ||
e89ab51f GR |
4627 | INA209 HARDWARE MONITOR DRIVER |
4628 | M: Guenter Roeck <linux@roeck-us.net> | |
4629 | L: lm-sensors@lm-sensors.org | |
4630 | S: Maintained | |
4631 | F: Documentation/hwmon/ina209 | |
4632 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4633 | F: drivers/hwmon/ina209.c | |
4634 | ||
4635 | INA2XX HARDWARE MONITOR DRIVER | |
4636 | M: Guenter Roeck <linux@roeck-us.net> | |
4637 | L: lm-sensors@lm-sensors.org | |
4638 | S: Maintained | |
4639 | F: Documentation/hwmon/ina2xx | |
4640 | F: drivers/hwmon/ina2xx.c | |
4641 | F: include/linux/platform_data/ina2xx.h | |
4642 | ||
14dc124f SIG |
4643 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4644 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
4645 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
4646 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
4647 | L: industrypack-devel@lists.sourceforge.net | |
4648 | W: http://industrypack.sourceforge.net | |
4649 | S: Maintained | |
4650 | F: drivers/ipack/ | |
4651 | ||
aa7168f4 | 4652 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 4653 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
8912176c | 4654 | M: Dmitry Kasatkin <d.kasatkin@samsung.com> |
74dd744f MZ |
4655 | L: linux-ima-devel@lists.sourceforge.net |
4656 | L: linux-ima-user@lists.sourceforge.net | |
4657 | L: linux-security-module@vger.kernel.org | |
aa7168f4 | 4658 | S: Supported |
679655da | 4659 | F: security/integrity/ima/ |
aa7168f4 | 4660 | |
1da177e4 | 4661 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4662 | L: linux-fbdev@vger.kernel.org |
843393d3 | 4663 | S: Orphan |
8a61f013 | 4664 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
4665 | |
4666 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4667 | M: Roland Dreier <roland@kernel.org> |
8b58be88 JP |
4668 | M: Sean Hefty <sean.hefty@intel.com> |
4669 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 4670 | L: linux-rdma@vger.kernel.org |
605841f5 | 4671 | W: http://www.openfabrics.org/ |
8a6e2535 | 4672 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4674 | S: Supported |
679655da JP |
4675 | F: Documentation/infiniband/ |
4676 | F: drivers/infiniband/ | |
c117ab84 | 4677 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4678 | |
c9f04f58 | 4679 | INOTIFY |
8b58be88 JP |
4680 | M: John McCutchan <john@johnmccutchan.com> |
4681 | M: Robert Love <rlove@rlove.org> | |
4682 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 4683 | S: Maintained |
679655da JP |
4684 | F: Documentation/filesystems/inotify.txt |
4685 | F: fs/notify/inotify/ | |
4686 | F: include/linux/inotify.h | |
c117ab84 | 4687 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4688 | |
e2d1d6c0 | 4689 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4690 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
4691 | M: Dmitry Torokhov <dtor@mail.ru> | |
e2d1d6c0 | 4692 | L: linux-input@vger.kernel.org |
8a6e2535 | 4693 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4694 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4695 | S: Maintained |
679655da | 4696 | F: drivers/input/ |
f4eea7e2 | 4697 | F: include/linux/input.h |
c117ab84 | 4698 | F: include/uapi/linux/input.h |
f4eea7e2 | 4699 | F: include/linux/input/ |
e2d1d6c0 | 4700 | |
3267a87f HR |
4701 | INPUT MULTITOUCH (MT) PROTOCOL |
4702 | M: Henrik Rydberg <rydberg@euromail.se> | |
4703 | L: linux-input@vger.kernel.org | |
7f9c2454 | 4704 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4705 | S: Maintained |
4706 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4707 | F: drivers/input/input-mt.c |
3267a87f HR |
4708 | K: \b(ABS|SYN)_MT_ |
4709 | ||
4ac13e17 DJ |
4710 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4711 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 4712 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 4713 | M: Dave Jiang <dave.jiang@intel.com> |
4ac13e17 | 4714 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
4715 | T: git git://git.code.sf.net/p/intel-sas/isci |
4716 | S: Supported | |
4ac13e17 | 4717 | F: drivers/scsi/isci/ |
4ac13e17 | 4718 | |
26717172 LB |
4719 | INTEL IDLE DRIVER |
4720 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 4721 | L: linux-pm@vger.kernel.org |
08deed1e | 4722 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4723 | S: Supported |
4724 | F: drivers/idle/intel_idle.c | |
4725 | ||
9eb8ef74 | 4726 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4727 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 4728 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4729 | S: Maintained |
679655da | 4730 | F: Documentation/fb/intelfb.txt |
8a61f013 | 4731 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 4732 | |
1da177e4 | 4733 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4734 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 4735 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4736 | S: Maintained |
8a61f013 | 4737 | F: drivers/video/fbdev/i810/ |
1da177e4 | 4738 | |
f4a9bc4c | 4739 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4740 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 4741 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 4742 | W: https://01.org/linux-acpi |
f4a9bc4c | 4743 | S: Supported |
679655da | 4744 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4745 | |
1da177e4 | 4746 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4747 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
1da177e4 | 4748 | S: Maintained |
73d425fd JP |
4749 | F: arch/x86/kernel/cpu/microcode/core* |
4750 | F: arch/x86/kernel/cpu/microcode/intel* | |
1da177e4 | 4751 | |
248a9dc3 | 4752 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4753 | M: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
4754 | M: Dave Jiang <dave.jiang@intel.com> |
4755 | L: dmaengine@vger.kernel.org | |
4756 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4757 | S: Supported | |
679655da | 4758 | F: drivers/dma/ioat* |
248a9dc3 | 4759 | |
6c8909b4 | 4760 | INTEL IOMMU (VT-d) |
8b58be88 | 4761 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 4762 | L: iommu@lists.linux-foundation.org |
54e5881d | 4763 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4764 | S: Supported |
3fb39615 | 4765 | F: drivers/iommu/intel-iommu.c |
679655da | 4766 | F: include/linux/intel-iommu.h |
6c8909b4 | 4767 | |
b3e5f263 | 4768 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4769 | M: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 4770 | S: Odd fixes |
679655da | 4771 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4772 | |
9251ce95 | 4773 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4774 | M: Krzysztof Halasa <khc@pm.waw.pl> |
9251ce95 | 4775 | S: Maintained |
679655da JP |
4776 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4777 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4778 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4779 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4780 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4781 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4782 | |
844dd05f | 4783 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4784 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 4785 | S: Maintained |
679655da | 4786 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4787 | |
105bf2fe | 4788 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4789 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4790 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> | |
4791 | M: Bruce Allan <bruce.w.allan@intel.com> | |
0d164401 JK |
4792 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4793 | M: Don Skidmore <donald.c.skidmore@intel.com> | |
4794 | M: Greg Rose <gregory.v.rose@intel.com> | |
0d164401 | 4795 | M: Alex Duyck <alexander.h.duyck@intel.com> |
8b58be88 | 4796 | M: John Ronciak <john.ronciak@intel.com> |
105bf2fe | 4797 | M: Mitch Williams <mitch.a.williams@intel.com> |
fcad3e6b | 4798 | M: Linux NICS <linux.nics@intel.com> |
dcd01faf | 4799 | L: e1000-devel@lists.sourceforge.net |
f6fde11a | 4800 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4801 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4804 | S: Supported |
0d164401 JK |
4805 | F: Documentation/networking/e100.txt |
4806 | F: Documentation/networking/e1000.txt | |
4807 | F: Documentation/networking/e1000e.txt | |
4808 | F: Documentation/networking/igb.txt | |
4809 | F: Documentation/networking/igbvf.txt | |
4810 | F: Documentation/networking/ixgb.txt | |
4811 | F: Documentation/networking/ixgbe.txt | |
4812 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4813 | F: Documentation/networking/i40e.txt |
105bf2fe | 4814 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4815 | F: drivers/net/ethernet/intel/ |
bc90d291 | 4816 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 4817 | |
0963d59b LW |
4818 | INTEL-MID GPIO DRIVER |
4819 | M: David Cohen <david.a.cohen@linux.intel.com> | |
4820 | L: linux-gpio@vger.kernel.org | |
4821 | S: Maintained | |
4822 | F: drivers/gpio/gpio-intel-mid.c | |
4823 | ||
ca907a90 SY |
4824 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4825 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 4826 | L: linux-wireless@vger.kernel.org |
ca907a90 | 4827 | S: Maintained |
679655da | 4828 | F: Documentation/networking/README.ipw2100 |
679655da | 4829 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4830 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4831 | |
4bd96a7a | 4832 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4833 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4834 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
4835 | M: Shane Wang <shane.wang@intel.com> |
4836 | L: tboot-devel@lists.sourceforge.net | |
4837 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4838 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4839 | S: Supported |
4840 | F: Documentation/intel_txt.txt | |
4841 | F: include/linux/tboot.h | |
4842 | F: arch/x86/kernel/tboot.c | |
4843 | ||
8a70da82 | 4844 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4845 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 4846 | M: linux-wimax@intel.com |
63fae219 | 4847 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
4848 | S: Supported |
4849 | W: http://linuxwimax.org | |
679655da JP |
4850 | F: Documentation/wimax/README.i2400m |
4851 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4852 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4853 | |
1c0ce89c SG |
4854 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4855 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 4856 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 4857 | S: Supported |
efa3144e WYG |
4858 | F: drivers/net/wireless/iwlegacy/ |
4859 | ||
b481de9c | 4860 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4861 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 4862 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
a0bf797f | 4863 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 4864 | L: linux-wireless@vger.kernel.org |
b481de9c | 4865 | W: http://intellinuxwireless.org |
b62ff718 | 4866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4867 | S: Supported |
679655da | 4868 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4869 | |
de8fe023 TW |
4870 | INTEL MANAGEMENT ENGINE (mei) |
4871 | M: Tomas Winkler <tomas.winkler@intel.com> | |
4872 | L: linux-kernel@vger.kernel.org | |
4873 | S: Supported | |
c117ab84 | 4874 | F: include/uapi/linux/mei.h |
de8fe023 | 4875 | F: drivers/misc/mei/* |
e07950a1 | 4876 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4877 | |
cb109a0e | 4878 | IOC3 ETHERNET DRIVER |
8b58be88 | 4879 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
4880 | L: linux-mips@linux-mips.org |
4881 | S: Maintained | |
8862bf1e | 4882 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4883 | |
cb109a0e | 4884 | IOC3 SERIAL DRIVER |
8b58be88 | 4885 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 4886 | L: linux-serial@vger.kernel.org |
cb109a0e | 4887 | S: Maintained |
df621252 | 4888 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4889 | |
0b6e8569 SW |
4890 | IOMMU DRIVERS |
4891 | M: Joerg Roedel <joro@8bytes.org> | |
4892 | L: iommu@lists.linux-foundation.org | |
4893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4894 | S: Maintained | |
4895 | F: drivers/iommu/ | |
4896 | ||
4480f15b | 4897 | IP MASQUERADING |
8b58be88 | 4898 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 4899 | S: Maintained |
679655da | 4900 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4901 | |
1202d6ff | 4902 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4903 | M: Francois Romieu <romieu@fr.zoreil.com> |
4904 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
4905 | L: netdev@vger.kernel.org |
4906 | S: Maintained | |
7443713a | 4907 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4908 | |
4480f15b | 4909 | IPATH DRIVER |
8473c603 | 4910 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 4911 | L: linux-rdma@vger.kernel.org |
52a09a04 | 4912 | S: Maintained |
679655da | 4913 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4914 | |
4409ebe9 | 4915 | IPMI SUBSYSTEM |
8b58be88 | 4916 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 4917 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
4918 | W: http://openipmi.sourceforge.net/ |
4919 | S: Supported | |
679655da JP |
4920 | F: Documentation/IPMI.txt |
4921 | F: drivers/char/ipmi/ | |
4922 | F: include/linux/ipmi* | |
c117ab84 | 4923 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4924 | |
e2d1d6c0 | 4925 | IPS SCSI RAID DRIVER |
8b58be88 | 4926 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4927 | L: linux-scsi@vger.kernel.org |
4928 | W: http://www.adaptec.com/ | |
4929 | S: Maintained | |
679655da | 4930 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4931 | |
4932 | IPVS | |
8b58be88 JP |
4933 | M: Wensong Zhang <wensong@linux-vs.org> |
4934 | M: Simon Horman <horms@verge.net.au> | |
4935 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 4936 | L: netdev@vger.kernel.org |
e2d1d6c0 | 4937 | L: lvs-devel@vger.kernel.org |
1da177e4 | 4938 | S: Maintained |
679655da | 4939 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4940 | F: include/net/ip_vs.h |
c117ab84 | 4941 | F: include/uapi/linux/ip_vs.h |
679655da | 4942 | F: net/netfilter/ipvs/ |
1da177e4 | 4943 | |
e7839f25 | 4944 | IPWIRELESS DRIVER |
8b58be88 JP |
4945 | M: Jiri Kosina <jkosina@suse.cz> |
4946 | M: David Sterba <dsterba@suse.cz> | |
92094aa0 | 4947 | S: Odd Fixes |
282361a0 | 4948 | F: drivers/tty/ipwireless/ |
099dc4fb | 4949 | |
e2d1d6c0 | 4950 | IPX NETWORK LAYER |
8b58be88 | 4951 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
4952 | L: netdev@vger.kernel.org |
4953 | S: Maintained | |
679655da | 4954 | F: include/net/ipx.h |
c117ab84 | 4955 | F: include/uapi/linux/ipx.h |
679655da | 4956 | F: net/ipx/ |
e2d1d6c0 | 4957 | |
1da177e4 | 4958 | IRDA SUBSYSTEM |
8b58be88 | 4959 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 4960 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 4961 | L: netdev@vger.kernel.org |
1da177e4 | 4962 | W: http://irda.sourceforge.net/ |
f353976d | 4963 | S: Maintained |
e0057975 | 4964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4965 | F: Documentation/networking/irda.txt |
4966 | F: drivers/net/irda/ | |
4967 | F: include/net/irda/ | |
4968 | F: net/irda/ | |
1da177e4 | 4969 | |
a800c7cc TG |
4970 | IRQ SUBSYSTEM |
4971 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 4972 | L: linux-kernel@vger.kernel.org |
a800c7cc | 4973 | S: Maintained |
75fc2d37 | 4974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4975 | F: kernel/irq/ |
2ed9fd28 JC |
4976 | |
4977 | IRQCHIP DRIVERS | |
4978 | M: Thomas Gleixner <tglx@linutronix.de> | |
4979 | M: Jason Cooper <jason@lakedaemon.net> | |
4980 | L: linux-kernel@vger.kernel.org | |
4981 | S: Maintained | |
4982 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
4983 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
edd96900 | 4984 | F: drivers/irqchip/ |
a800c7cc | 4985 | |
7ab3a837 GL |
4986 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4987 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
7ab3a837 GL |
4988 | S: Maintained |
4989 | F: Documentation/IRQ-domain.txt | |
4990 | F: include/linux/irqdomain.h | |
4991 | F: kernel/irq/irqdomain.c | |
4992 | ||
e2d1d6c0 | 4993 | ISAPNP |
8b58be88 | 4994 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4995 | S: Maintained |
679655da JP |
4996 | F: Documentation/isapnp.txt |
4997 | F: drivers/pnp/isapnp/ | |
4998 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4999 | |
d39b8420 HV |
5000 | ISA RADIO MODULE |
5001 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5002 | L: linux-media@vger.kernel.org | |
5003 | T: git git://linuxtv.org/media_tree.git | |
5004 | W: http://linuxtv.org | |
5005 | S: Maintained | |
5006 | F: drivers/media/radio/radio-isa* | |
5007 | ||
71a6d0af HW |
5008 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5009 | M: Peter Jones <pjones@redhat.com> | |
5010 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
5011 | S: Maintained | |
5012 | F: drivers/firmware/iscsi_ibft* | |
5013 | ||
14816b1e | 5014 | ISCSI |
8b58be88 | 5015 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
5016 | L: open-iscsi@googlegroups.com |
5017 | W: www.open-iscsi.org | |
54e5881d | 5018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5019 | S: Maintained |
679655da JP |
5020 | F: drivers/scsi/*iscsi* |
5021 | F: include/scsi/*iscsi* | |
14816b1e | 5022 | |
1e65eb42 OG |
5023 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5024 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
5025 | M: Roi Dayan <roid@mellanox.com> | |
5026 | L: linux-rdma@vger.kernel.org | |
5027 | S: Supported | |
5028 | W: http://www.openfabrics.org | |
5029 | W: www.open-iscsi.org | |
5030 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5031 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5032 | |
1da177e4 | 5033 | ISDN SUBSYSTEM |
8b58be88 | 5034 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 5035 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 5036 | L: netdev@vger.kernel.org |
1da177e4 | 5037 | W: http://www.isdn4linux.de |
54e5881d | 5038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5039 | S: Maintained |
679655da JP |
5040 | F: Documentation/isdn/ |
5041 | F: drivers/isdn/ | |
5042 | F: include/linux/isdn.h | |
5043 | F: include/linux/isdn/ | |
c117ab84 CEB |
5044 | F: include/uapi/linux/isdn.h |
5045 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5046 | |
5047 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5048 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 5049 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
5050 | W: http://www.melware.de |
5051 | S: Maintained | |
679655da | 5052 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5053 | |
d624870f | 5054 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 5055 | M: Jean Delvare <jdelvare@suse.de> |
d624870f JD |
5056 | L: lm-sensors@lm-sensors.org |
5057 | S: Maintained | |
5058 | F: Documentation/hwmon/it87 | |
5059 | F: drivers/hwmon/it87.c | |
5060 | ||
d7104bff AP |
5061 | IT913X MEDIA DRIVER |
5062 | M: Antti Palosaari <crope@iki.fi> | |
5063 | L: linux-media@vger.kernel.org | |
5064 | W: http://linuxtv.org/ | |
5065 | W: http://palosaari.fi/linux/ | |
5066 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5067 | T: git git://linuxtv.org/anttip/media_tree.git | |
5068 | S: Maintained | |
9d9fb744 | 5069 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 5070 | |
91821ff3 | 5071 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 5072 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 5073 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 5074 | L: linux-media@vger.kernel.org |
275ffde4 | 5075 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
5076 | W: http://www.ivtvdriver.org |
5077 | S: Maintained | |
679655da | 5078 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 5079 | F: drivers/media/pci/ivtv/ |
c117ab84 | 5080 | F: include/uapi/linux/ivtv* |
91821ff3 | 5081 | |
68620bdd MP |
5082 | IX2505V MEDIA DRIVER |
5083 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5084 | L: linux-media@vger.kernel.org | |
5085 | W: http://linuxtv.org/ | |
5086 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5087 | S: Maintained | |
5088 | F: drivers/media/dvb-frontends/ix2505v* | |
5089 | ||
4453d736 GR |
5090 | JC42.4 TEMPERATURE SENSOR DRIVER |
5091 | M: Guenter Roeck <linux@roeck-us.net> | |
5092 | L: lm-sensors@lm-sensors.org | |
5093 | S: Maintained | |
5094 | F: drivers/hwmon/jc42.c | |
5095 | F: Documentation/hwmon/jc42 | |
5096 | ||
e2d1d6c0 | 5097 | JFS FILESYSTEM |
3256f80f | 5098 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
5099 | L: jfs-discussion@lists.sourceforge.net |
5100 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5101 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5102 | S: Maintained |
679655da JP |
5103 | F: Documentation/filesystems/jfs.txt |
5104 | F: fs/jfs/ | |
e2d1d6c0 | 5105 | |
95252236 | 5106 | JME NETWORK DRIVER |
8b58be88 | 5107 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
5108 | L: netdev@vger.kernel.org |
5109 | S: Maintained | |
63d24a0e | 5110 | F: drivers/net/ethernet/jme.* |
95252236 | 5111 | |
1da177e4 | 5112 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5113 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
5114 | L: linux-mtd@lists.infradead.org |
5115 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5116 | S: Maintained |
679655da | 5117 | F: fs/jffs2/ |
c117ab84 | 5118 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5119 | |
de456d37 | 5120 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 5121 | M: Andrew Morton <akpm@linux-foundation.org> |
19003c18 | 5122 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 5123 | L: linux-ext4@vger.kernel.org |
ae0718f8 | 5124 | S: Maintained |
d183e11a | 5125 | F: fs/jbd/ |
d183e11a TT |
5126 | F: include/linux/jbd.h |
5127 | ||
5128 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
5129 | M: "Theodore Ts'o" <tytso@mit.edu> | |
5130 | L: linux-ext4@vger.kernel.org | |
5131 | S: Maintained | |
5132 | F: fs/jbd2/ | |
5133 | F: include/linux/jbd2.h | |
ae0718f8 | 5134 | |
fd8b6cb4 | 5135 | JSM Neo PCI based serial card |
9d141cb9 | 5136 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
5137 | L: linux-serial@vger.kernel.org |
5138 | S: Maintained | |
df621252 | 5139 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5140 | |
af39917d CL |
5141 | K10TEMP HARDWARE MONITORING DRIVER |
5142 | M: Clemens Ladisch <clemens@ladisch.de> | |
5143 | L: lm-sensors@lm-sensors.org | |
5144 | S: Maintained | |
5145 | F: Documentation/hwmon/k10temp | |
5146 | F: drivers/hwmon/k10temp.c | |
5147 | ||
4660cb35 | 5148 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5149 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 5150 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 5151 | S: Maintained |
679655da JP |
5152 | F: Documentation/hwmon/k8temp |
5153 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5154 | |
1da177e4 | 5155 | KCONFIG |
5eb1f99e | 5156 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 5157 | L: linux-kbuild@vger.kernel.org |
cea8321c | 5158 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5159 | S: Maintained |
679655da JP |
5160 | F: Documentation/kbuild/kconfig-language.txt |
5161 | F: scripts/kconfig/ | |
1da177e4 | 5162 | |
ea6c2089 | 5163 | KDUMP |
8b58be88 JP |
5164 | M: Vivek Goyal <vgoyal@redhat.com> |
5165 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 5166 | L: kexec@lists.infradead.org |
ea6c2089 VG |
5167 | W: http://lse.sourceforge.net/kdump/ |
5168 | S: Maintained | |
80811493 | 5169 | F: Documentation/kdump/ |
ea6c2089 | 5170 | |
f41bf02f HV |
5171 | KEENE FM RADIO TRANSMITTER DRIVER |
5172 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5173 | L: linux-media@vger.kernel.org | |
5174 | T: git git://linuxtv.org/media_tree.git | |
5175 | W: http://linuxtv.org | |
5176 | S: Maintained | |
5177 | F: drivers/media/radio/radio-keene* | |
5178 | ||
1da177e4 | 5179 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5180 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 5181 | L: autofs@vger.kernel.org |
1da177e4 | 5182 | S: Maintained |
679655da | 5183 | F: fs/autofs4/ |
1da177e4 | 5184 | |
70fb7ba6 | 5185 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 5186 | M: Michal Marek <mmarek@suse.cz> |
08deed1e JP |
5187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5188 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5189 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 5190 | S: Maintained |
679655da JP |
5191 | F: Documentation/kbuild/ |
5192 | F: Makefile | |
5193 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5194 | F: scripts/basic/ |
5195 | F: scripts/mk* | |
5196 | F: scripts/package/ | |
1da177e4 LT |
5197 | |
5198 | KERNEL JANITORS | |
c3000e03 | 5199 | L: kernel-janitors@vger.kernel.org |
10466f5a | 5200 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5201 | S: Odd Fixes |
1da177e4 | 5202 | |
e8b43555 | 5203 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5204 | M: "J. Bruce Fields" <bfields@fieldses.org> |
16141c02 | 5205 | L: linux-nfs@vger.kernel.org |
1da177e4 | 5206 | W: http://nfs.sourceforge.net/ |
98fac23f | 5207 | S: Supported |
679655da | 5208 | F: fs/nfsd/ |
c117ab84 | 5209 | F: include/uapi/linux/nfsd/ |
679655da JP |
5210 | F: fs/lockd/ |
5211 | F: fs/nfs_common/ | |
5212 | F: net/sunrpc/ | |
5213 | F: include/linux/lockd/ | |
5214 | F: include/linux/sunrpc/ | |
c117ab84 | 5215 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5216 | |
426d62e2 | 5217 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5218 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 5219 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 5220 | L: kvm@vger.kernel.org |
e3e58478 | 5221 | W: http://www.linux-kvm.org |
a94b40a6 | 5222 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5223 | S: Supported |
c93a64fe PB |
5224 | F: Documentation/*/kvm*.txt |
5225 | F: Documentation/virtual/kvm/ | |
679655da JP |
5226 | F: arch/*/kvm/ |
5227 | F: arch/*/include/asm/kvm* | |
5228 | F: include/linux/kvm* | |
c117ab84 | 5229 | F: include/uapi/linux/kvm* |
679655da | 5230 | F: virt/kvm/ |
426d62e2 | 5231 | |
ad8003d3 | 5232 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5233 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
5234 | L: kvm@vger.kernel.org |
5235 | W: http://kvm.qumranet.com | |
7de609c8 | 5236 | S: Maintained |
679655da | 5237 | F: arch/x86/include/asm/svm.h |
679655da | 5238 | F: arch/x86/kvm/svm.c |
426d62e2 | 5239 | |
513014b7 | 5240 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5241 | M: Alexander Graf <agraf@suse.de> |
1fc9d2bf AK |
5242 | L: kvm-ppc@vger.kernel.org |
5243 | W: http://kvm.qumranet.com | |
6a7f972d | 5244 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5245 | S: Supported |
679655da JP |
5246 | F: arch/powerpc/include/asm/kvm* |
5247 | F: arch/powerpc/kvm/ | |
513014b7 | 5248 | |
1fc9d2bf | 5249 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 5250 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
1fc9d2bf AK |
5251 | L: kvm-ia64@vger.kernel.org |
5252 | W: http://kvm.qumranet.com | |
920ed9f1 | 5253 | S: Supported |
679655da JP |
5254 | F: Documentation/ia64/kvm.txt |
5255 | F: arch/ia64/include/asm/kvm* | |
5256 | F: arch/ia64/kvm/ | |
920ed9f1 | 5257 | |
85f8fffe | 5258 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5259 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 5260 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
5261 | M: linux390@de.ibm.com |
5262 | L: linux-s390@vger.kernel.org | |
5263 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5264 | S: Supported | |
679655da JP |
5265 | F: Documentation/s390/kvm.txt |
5266 | F: arch/s390/include/asm/kvm* | |
80811493 | 5267 | F: arch/s390/kvm/ |
a968cd3e | 5268 | F: drivers/s390/kvm/ |
85f8fffe | 5269 | |
a749474d | 5270 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5271 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
5272 | M: Marc Zyngier <marc.zyngier@arm.com> |
5273 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
5274 | L: kvmarm@lists.cs.columbia.edu |
5275 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5276 | S: Supported |
a749474d CD |
5277 | F: arch/arm/include/uapi/asm/kvm* |
5278 | F: arch/arm/include/asm/kvm* | |
5279 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5280 | F: virt/kvm/arm/ |
5281 | F: include/kvm/arm_* | |
a749474d | 5282 | |
6394a3ec | 5283 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5284 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
5285 | M: Marc Zyngier <marc.zyngier@arm.com> |
5286 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5287 | L: kvmarm@lists.cs.columbia.edu | |
5288 | S: Maintained | |
5289 | F: arch/arm64/include/uapi/asm/kvm* | |
5290 | F: arch/arm64/include/asm/kvm* | |
5291 | F: arch/arm64/kvm/ | |
5292 | ||
dc009d92 | 5293 | KEXEC |
8b58be88 | 5294 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 5295 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5296 | L: kexec@lists.infradead.org |
dc009d92 | 5297 | S: Maintained |
679655da | 5298 | F: include/linux/kexec.h |
c117ab84 | 5299 | F: include/uapi/linux/kexec.h |
679655da | 5300 | F: kernel/kexec.c |
dc009d92 | 5301 | |
e971461f DH |
5302 | KEYS/KEYRINGS: |
5303 | M: David Howells <dhowells@redhat.com> | |
5304 | L: keyrings@linux-nfs.org | |
5305 | S: Maintained | |
d410fa4e | 5306 | F: Documentation/security/keys.txt |
e971461f DH |
5307 | F: include/linux/key.h |
5308 | F: include/linux/key-type.h | |
5309 | F: include/keys/ | |
5310 | F: security/keys/ | |
5311 | ||
7f3c68be | 5312 | KEYS-TRUSTED |
74dd744f MZ |
5313 | M: David Safford <safford@us.ibm.com> |
5314 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be MZ |
5315 | L: linux-security-module@vger.kernel.org |
5316 | L: keyrings@linux-nfs.org | |
5317 | S: Supported | |
d410fa4e | 5318 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5319 | F: include/keys/trusted-type.h |
5320 | F: security/keys/trusted.c | |
5321 | F: security/keys/trusted.h | |
5322 | ||
5323 | KEYS-ENCRYPTED | |
74dd744f MZ |
5324 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5325 | M: David Safford <safford@us.ibm.com> | |
7f3c68be MZ |
5326 | L: linux-security-module@vger.kernel.org |
5327 | L: keyrings@linux-nfs.org | |
5328 | S: Supported | |
d410fa4e | 5329 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5330 | F: include/keys/encrypted-type.h |
19c90aa6 | 5331 | F: security/keys/encrypted-keys/ |
7f3c68be | 5332 | |
5b778dad | 5333 | KGDB / KDB /debug_core |
8b58be88 | 5334 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 5335 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5336 | L: kgdb-bugreport@lists.sourceforge.net |
5337 | S: Maintained | |
679655da JP |
5338 | F: Documentation/DocBook/kgdb.tmpl |
5339 | F: drivers/misc/kgdbts.c | |
df621252 | 5340 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5341 | F: include/linux/kdb.h |
679655da | 5342 | F: include/linux/kgdb.h |
4063eb5f | 5343 | F: kernel/debug/ |
e3e2aaf7 | 5344 | |
456db8cc | 5345 | KMEMCHECK |
8b58be88 | 5346 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 5347 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 5348 | S: Maintained |
410d7a97 JP |
5349 | F: Documentation/kmemcheck.txt |
5350 | F: arch/x86/include/asm/kmemcheck.h | |
5351 | F: arch/x86/mm/kmemcheck/ | |
5352 | F: include/linux/kmemcheck.h | |
5353 | F: mm/kmemcheck.c | |
b9ce08c0 | 5354 | |
c3bb4d24 | 5355 | KMEMLEAK |
8b58be88 | 5356 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
5357 | S: Maintained |
5358 | F: Documentation/kmemleak.txt | |
5359 | F: include/linux/kmemleak.h | |
5360 | F: mm/kmemleak.c | |
5361 | F: mm/kmemleak-test.c | |
5362 | ||
89559a61 | 5363 | KPROBES |
8b58be88 JP |
5364 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
5365 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
5366 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 5367 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 5368 | S: Maintained |
679655da JP |
5369 | F: Documentation/kprobes.txt |
5370 | F: include/linux/kprobes.h | |
5371 | F: kernel/kprobes.c | |
89559a61 | 5372 | |
70e84049 | 5373 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5374 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
5375 | W: http://miguelojeda.es/auxdisplay.htm |
5376 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5377 | S: Maintained |
679655da JP |
5378 | F: Documentation/auxdisplay/ks0108 |
5379 | F: drivers/auxdisplay/ks0108.c | |
5380 | F: include/linux/ks0108.h | |
70e84049 | 5381 | |
1da177e4 | 5382 | LAPB module |
1da177e4 | 5383 | L: linux-x25@vger.kernel.org |
bf9915cc | 5384 | S: Orphan |
679655da JP |
5385 | F: Documentation/networking/lapb-module.txt |
5386 | F: include/*/lapb.h | |
5387 | F: net/lapb/ | |
1da177e4 LT |
5388 | |
5389 | LASI 53c700 driver for PARISC | |
8b58be88 | 5390 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
5391 | L: linux-scsi@vger.kernel.org |
5392 | S: Maintained | |
679655da JP |
5393 | F: Documentation/scsi/53c700.txt |
5394 | F: drivers/scsi/53c700* | |
1da177e4 | 5395 | |
263de9b5 | 5396 | LED SUBSYSTEM |
c772fc26 | 5397 | M: Bryan Wu <cooloney@gmail.com> |
8b58be88 | 5398 | M: Richard Purdie <rpurdie@rpsys.net> |
aa69cb8c BW |
5399 | L: linux-leds@vger.kernel.org |
5400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5401 | S: Maintained |
679655da JP |
5402 | F: drivers/leds/ |
5403 | F: include/linux/leds.h | |
263de9b5 | 5404 | |
b0461a44 | 5405 | LEGACY EEPROM DRIVER |
7c81c60f | 5406 | M: Jean Delvare <jdelvare@suse.de> |
b0461a44 JD |
5407 | S: Maintained |
5408 | F: Documentation/misc-devices/eeprom | |
5409 | F: drivers/misc/eeprom/eeprom.c | |
5410 | ||
1da177e4 | 5411 | LEGO USB Tower driver |
8b58be88 | 5412 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
5413 | L: legousb-devel@lists.sourceforge.net |
5414 | W: http://legousb.sourceforge.net/ | |
5415 | S: Maintained | |
679655da | 5416 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5417 | |
055616a8 MK |
5418 | LG2160 MEDIA DRIVER |
5419 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5420 | L: linux-media@vger.kernel.org | |
5421 | W: http://linuxtv.org/ | |
5422 | W: http://github.com/mkrufky | |
5423 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5424 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5425 | S: Maintained | |
5426 | F: drivers/media/dvb-frontends/lg2160.* | |
5427 | ||
6f0e7725 MK |
5428 | LGDT3305 MEDIA DRIVER |
5429 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5430 | L: linux-media@vger.kernel.org | |
5431 | W: http://linuxtv.org/ | |
5432 | W: http://github.com/mkrufky | |
5433 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5434 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5435 | S: Maintained | |
5436 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5437 | ||
568a17ff | 5438 | LGUEST |
8b58be88 | 5439 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 5440 | L: lguest@lists.ozlabs.org |
568a17ff | 5441 | W: http://lguest.ozlabs.org/ |
72e91863 | 5442 | S: Odd Fixes |
070f420b | 5443 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5444 | F: arch/x86/lguest/ |
5445 | F: drivers/lguest/ | |
5446 | F: include/linux/lguest*.h | |
070f420b | 5447 | F: tools/lguest/ |
568a17ff | 5448 | |
1acd437c SL |
5449 | LIBLOCKDEP |
5450 | M: Sasha Levin <sasha.levin@oracle.com> | |
5451 | S: Maintained | |
5452 | F: tools/lib/lockdep/ | |
5453 | ||
1da177e4 | 5454 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5455 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
5456 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5457 | S: Supported | |
11c34c7d | 5458 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5459 | |
852bb9f5 | 5460 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5461 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5462 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 5463 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 5464 | W: http://www.penguinppc.org/ |
a4724ed6 | 5465 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 5466 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5467 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5468 | S: Supported |
11c34c7d JP |
5469 | F: Documentation/powerpc/ |
5470 | F: arch/powerpc/ | |
1da177e4 LT |
5471 | |
5472 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5473 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 5474 | W: http://www.penguinppc.org/ |
a4724ed6 | 5475 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5476 | S: Maintained |
11c34c7d JP |
5477 | F: arch/powerpc/platforms/powermac/ |
5478 | F: drivers/macintosh/ | |
1da177e4 | 5479 | |
77a76369 | 5480 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5481 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 5482 | L: linuxppc-dev@lists.ozlabs.org |
a149507b | 5483 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5484 | S: Maintained |
11c34c7d JP |
5485 | F: arch/powerpc/platforms/512x/ |
5486 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5487 | |
5488 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
1d11cd67 | 5489 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 5490 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 5491 | W: http://www.penguinppc.org/ |
a4724ed6 | 5492 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5493 | S: Maintained |
11c34c7d JP |
5494 | F: arch/powerpc/platforms/40x/ |
5495 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5496 | |
260c02a9 | 5497 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5498 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 5499 | S: Orphan |
11c34c7d JP |
5500 | F: arch/powerpc/*/*virtex* |
5501 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5502 | |
e93adf1e | 5503 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 5504 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 5505 | W: http://www.penguinppc.org/ |
a4724ed6 | 5506 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 5507 | S: Maintained |
a2b1f7c8 | 5508 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5509 | |
1da177e4 | 5510 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
a1e0fb42 | 5511 | M: Scott Wood <scottwood@freescale.com> |
8b58be88 | 5512 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 5513 | W: http://www.penguinppc.org/ |
a4724ed6 | 5514 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 5515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 5516 | S: Maintained |
11c34c7d | 5517 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5518 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5519 | |
ab06ff3a | 5520 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5521 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 5522 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 5523 | S: Maintained |
11c34c7d JP |
5524 | F: arch/powerpc/platforms/pasemi/ |
5525 | F: drivers/*/*pasemi* | |
5526 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5527 | |
1da177e4 | 5528 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5529 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 5530 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
5531 | S: Supported |
5532 | ||
a23ce6da HW |
5533 | LIS3LV02D ACCELEROMETER DRIVER |
5534 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
5535 | S: Maintained | |
ff606677 JD |
5536 | F: Documentation/misc-devices/lis3lv02d |
5537 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5538 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5539 | |
e2d1d6c0 | 5540 | LLC (802.2) |
8b58be88 | 5541 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 5542 | S: Maintained |
679655da | 5543 | F: include/linux/llc.h |
c117ab84 | 5544 | F: include/uapi/linux/llc.h |
679655da JP |
5545 | F: include/net/llc* |
5546 | F: net/llc/ | |
e2d1d6c0 | 5547 | |
4e233cbe AD |
5548 | LM73 HARDWARE MONITOR DRIVER |
5549 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
5550 | L: lm-sensors@lm-sensors.org | |
5551 | S: Maintained | |
5552 | F: drivers/hwmon/lm73.c | |
5553 | ||
156e2d1a | 5554 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5555 | M: Jean Delvare <jdelvare@suse.de> |
156e2d1a JD |
5556 | L: lm-sensors@lm-sensors.org |
5557 | S: Maintained | |
5558 | F: Documentation/hwmon/lm78 | |
5559 | F: drivers/hwmon/lm78.c | |
5560 | ||
1da177e4 | 5561 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5562 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5563 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5564 | S: Maintained |
679655da JP |
5565 | F: Documentation/hwmon/lm83 |
5566 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5567 | |
5568 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5569 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5570 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5571 | S: Maintained |
679655da | 5572 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5573 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5574 | F: drivers/hwmon/lm90.c |
1da177e4 | 5575 | |
917cc4e6 GR |
5576 | LM95234 HARDWARE MONITOR DRIVER |
5577 | M: Guenter Roeck <linux@roeck-us.net> | |
5578 | L: lm-sensors@lm-sensors.org | |
5579 | S: Maintained | |
5580 | F: Documentation/hwmon/lm95234 | |
5581 | F: drivers/hwmon/lm95234.c | |
5582 | ||
68620bdd MP |
5583 | LME2510 MEDIA DRIVER |
5584 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5585 | L: linux-media@vger.kernel.org | |
5586 | W: http://linuxtv.org/ | |
5587 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5588 | S: Maintained | |
5589 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5590 | ||
512e67f9 | 5591 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5592 | M: Peter Zijlstra <peterz@infradead.org> |
5593 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 5594 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5596 | S: Maintained |
679655da JP |
5597 | F: Documentation/lockdep*.txt |
5598 | F: Documentation/lockstat.txt | |
5599 | F: include/linux/lockdep.h | |
7486d6da | 5600 | F: kernel/locking/ |
512e67f9 | 5601 | |
dde33348 | 5602 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5603 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
5604 | L: linux-ntfs-dev@lists.sourceforge.net |
5605 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5606 | S: Maintained |
679655da | 5607 | F: Documentation/ldm.txt |
20d16fef | 5608 | F: block/partitions/ldm.* |
1da177e4 | 5609 | |
ef6ada3d JE |
5610 | LogFS |
5611 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 5612 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
5613 | L: logfs@logfs.org |
5614 | W: logfs.org | |
5615 | S: Maintained | |
5616 | F: fs/logfs/ | |
5617 | ||
b62d7946 RS |
5618 | LPC32XX MACHINE SUPPORT |
5619 | M: Roland Stigge <stigge@antcom.de> | |
5620 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5621 | S: Maintained | |
5622 | F: arch/arm/mach-lpc32xx/ | |
5623 | ||
c87e34ef | 5624 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
5625 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
5626 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> | |
5627 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> | |
5628 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> | |
5629 | L: MPT-FusionLinux.pdl@avagotech.com | |
c87e34ef MED |
5630 | L: linux-scsi@vger.kernel.org |
5631 | W: http://www.lsilogic.com/support | |
5632 | S: Supported | |
679655da | 5633 | F: drivers/message/fusion/ |
500c152a | 5634 | F: drivers/scsi/mpt2sas/ |
5635 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5636 | |
1da177e4 | 5637 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5638 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
5639 | L: linux-scsi@vger.kernel.org |
5640 | S: Maintained | |
679655da | 5641 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5642 | |
e5f5c99a GR |
5643 | LTC4261 HARDWARE MONITOR DRIVER |
5644 | M: Guenter Roeck <linux@roeck-us.net> | |
5645 | L: lm-sensors@lm-sensors.org | |
5646 | S: Maintained | |
5647 | F: Documentation/hwmon/ltc4261 | |
5648 | F: drivers/hwmon/ltc4261.c | |
5649 | ||
81365c31 | 5650 | LTP (Linux Test Project) |
28b8e8d4 | 5651 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 5652 | M: Cyril Hrubis <chrubis@suse.cz> |
7d1ae8a8 | 5653 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
f2eb7f6f CH |
5654 | M: Jan Stancek <jstancek@redhat.com> |
5655 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
5656 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
81365c31 | 5657 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
f2eb7f6f | 5658 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 5659 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
5660 | S: Maintained |
5661 | ||
c12a54b3 | 5662 | M32R ARCHITECTURE |
8b58be88 | 5663 | M: Hirokazu Takata <takata@linux-m32r.org> |
0d89e54c | 5664 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
c12a54b3 HT |
5665 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
5666 | W: http://www.linux-m32r.org/ | |
5667 | S: Maintained | |
679655da | 5668 | F: arch/m32r/ |
c12a54b3 | 5669 | |
1da177e4 | 5670 | M68K ARCHITECTURE |
8b58be88 | 5671 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
5672 | L: linux-m68k@lists.linux-m68k.org |
5673 | W: http://www.linux-m68k.org/ | |
54e5881d | 5674 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5675 | S: Maintained |
679655da | 5676 | F: arch/m68k/ |
9db35182 | 5677 | F: drivers/zorro/ |
1da177e4 LT |
5678 | |
5679 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5680 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 5681 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5682 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 5683 | S: Maintained |
9db35182 | 5684 | F: arch/m68k/mac/ |
1da177e4 LT |
5685 | |
5686 | M68K ON HP9000/300 | |
8b58be88 | 5687 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
5688 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5689 | S: Maintained | |
679655da | 5690 | F: arch/m68k/hp300/ |
1da177e4 | 5691 | |
74425546 AP |
5692 | M88DS3103 MEDIA DRIVER |
5693 | M: Antti Palosaari <crope@iki.fi> | |
5694 | L: linux-media@vger.kernel.org | |
5695 | W: http://linuxtv.org/ | |
5696 | W: http://palosaari.fi/linux/ | |
5697 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5698 | T: git git://linuxtv.org/anttip/media_tree.git | |
5699 | S: Maintained | |
5700 | F: drivers/media/dvb-frontends/m88ds3103* | |
5701 | ||
68620bdd MP |
5702 | M88RS2000 MEDIA DRIVER |
5703 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5704 | L: linux-media@vger.kernel.org | |
5705 | W: http://linuxtv.org/ | |
5706 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5707 | S: Maintained | |
5708 | F: drivers/media/dvb-frontends/m88rs2000* | |
5709 | ||
0d62f800 AP |
5710 | M88TS2022 MEDIA DRIVER |
5711 | M: Antti Palosaari <crope@iki.fi> | |
5712 | L: linux-media@vger.kernel.org | |
5713 | W: http://linuxtv.org/ | |
5714 | W: http://palosaari.fi/linux/ | |
5715 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5716 | T: git git://linuxtv.org/anttip/media_tree.git | |
5717 | S: Maintained | |
5718 | F: drivers/media/tuners/m88ts2022* | |
5719 | ||
07a092fa | 5720 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
5721 | M: Alexey Klimov <klimov.linux@gmail.com> |
5722 | L: linux-media@vger.kernel.org | |
5723 | T: git git://linuxtv.org/media_tree.git | |
5724 | S: Maintained | |
5725 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 5726 | |
64a327a7 | 5727 | MAC80211 |
8b58be88 | 5728 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 5729 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5730 | W: http://wireless.kernel.org/ |
ce466579 JB |
5731 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5733 | S: Maintained |
679655da JP |
5734 | F: Documentation/networking/mac80211-injection.txt |
5735 | F: include/net/mac80211.h | |
5736 | F: net/mac80211/ | |
64a327a7 | 5737 | |
b863ceb7 | 5738 | MACVLAN DRIVER |
8b58be88 | 5739 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
5740 | L: netdev@vger.kernel.org |
5741 | S: Maintained | |
679655da JP |
5742 | F: drivers/net/macvlan.c |
5743 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5744 | |
faf1668c | 5745 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5746 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 5747 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5748 | L: linux-man@vger.kernel.org |
1b53dc74 | 5749 | S: Maintained |
faf1668c | 5750 | |
8427defd RK |
5751 | MARVELL ARMADA DRM SUPPORT |
5752 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
5753 | S: Maintained | |
5754 | F: drivers/gpu/drm/armada/ | |
5755 | ||
44c14c1d | 5756 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5757 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 5758 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 5759 | L: netdev@vger.kernel.org |
5760 | S: Maintained | |
5761 | F: drivers/net/ethernet/marvell/sk* | |
5762 | ||
74cda169 | 5763 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5764 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 5765 | S: Orphan |
679655da | 5766 | F: drivers/net/wireless/libertas/ |
74cda169 | 5767 | |
b60d6975 | 5768 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5769 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 5770 | L: netdev@vger.kernel.org |
f5ca8502 | 5771 | S: Maintained |
527a6266 | 5772 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5773 | F: include/linux/mv643xx.h |
1da177e4 | 5774 | |
370b8ed9 TP |
5775 | MARVELL MVNETA ETHERNET DRIVER |
5776 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
5777 | L: netdev@vger.kernel.org | |
5778 | S: Maintained | |
5779 | F: drivers/net/ethernet/marvell/mvneta.* | |
5780 | ||
fcad584d | 5781 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 BZ |
5782 | M: Amitkumar Karwar <akarwar@marvell.com> |
5783 | M: Avinash Patil <patila@marvell.com> | |
fcad584d BZ |
5784 | L: linux-wireless@vger.kernel.org |
5785 | S: Maintained | |
5786 | F: drivers/net/wireless/mwifiex/ | |
5787 | ||
a2c3f656 | 5788 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5789 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 5790 | L: linux-wireless@vger.kernel.org |
16345910 | 5791 | S: Odd Fixes |
a2c3f656 LB |
5792 | F: drivers/net/wireless/mwl8k.c |
5793 | ||
2a69567b | 5794 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5795 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 5796 | S: Odd Fixes |
1fa7e547 | 5797 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5798 | |
1da177e4 | 5799 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5800 | L: linux-fbdev@vger.kernel.org |
52653199 | 5801 | S: Orphan |
8a61f013 | 5802 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 5803 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5804 | |
ca462085 GR |
5805 | MAX16065 HARDWARE MONITOR DRIVER |
5806 | M: Guenter Roeck <linux@roeck-us.net> | |
5807 | L: lm-sensors@lm-sensors.org | |
5808 | S: Maintained | |
5809 | F: Documentation/hwmon/max16065 | |
5810 | F: drivers/hwmon/max16065.c | |
5811 | ||
d20620de | 5812 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5813 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
5814 | L: lm-sensors@lm-sensors.org |
5815 | S: Maintained | |
679655da JP |
5816 | F: Documentation/hwmon/max6650 |
5817 | F: drivers/hwmon/max6650.c | |
d20620de | 5818 | |
e89ab51f GR |
5819 | MAX6697 HARDWARE MONITOR DRIVER |
5820 | M: Guenter Roeck <linux@roeck-us.net> | |
5821 | L: lm-sensors@lm-sensors.org | |
5822 | S: Maintained | |
5823 | F: Documentation/hwmon/max6697 | |
5824 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5825 | F: drivers/hwmon/max6697.c | |
5826 | F: include/linux/platform_data/max6697.h | |
5827 | ||
9be3c9a5 HV |
5828 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5829 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5830 | L: linux-media@vger.kernel.org | |
5831 | T: git git://linuxtv.org/media_tree.git | |
5832 | W: http://linuxtv.org | |
5833 | S: Maintained | |
5834 | F: drivers/media/radio/radio-maxiradio* | |
5835 | ||
127c49ae | 5836 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5837 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
127c49ae JP |
5838 | P: LinuxTV.org Project |
5839 | L: linux-media@vger.kernel.org | |
5840 | W: http://linuxtv.org | |
8a6e2535 | 5841 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5842 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5843 | S: Maintained |
5844 | F: Documentation/dvb/ | |
5845 | F: Documentation/video4linux/ | |
ffe06198 | 5846 | F: Documentation/DocBook/media/ |
127c49ae | 5847 | F: drivers/media/ |
ffe06198 | 5848 | F: drivers/staging/media/ |
127c49ae | 5849 | F: include/media/ |
6c0f0359 MCC |
5850 | F: include/uapi/linux/dvb/ |
5851 | F: include/uapi/linux/videodev2.h | |
5852 | F: include/uapi/linux/media.h | |
5853 | F: include/uapi/linux/v4l2-* | |
5854 | F: include/uapi/linux/meye.h | |
5855 | F: include/uapi/linux/ivtv* | |
5856 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5857 | |
6149a936 HV |
5858 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5859 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5860 | L: linux-media@vger.kernel.org | |
5861 | T: git git://linuxtv.org/media_tree.git | |
5862 | W: http://linuxtv.org | |
5863 | S: Odd Fixes | |
5864 | F: drivers/media/parport/pms* | |
5865 | ||
757e0108 | 5866 | MEGARAID SCSI DRIVERS |
8b58be88 | 5867 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
baaea1dc | 5868 | L: linux-scsi@vger.kernel.org |
ce00f85c JC |
5869 | W: http://megaraid.lsilogic.com |
5870 | S: Maintained | |
679655da JP |
5871 | F: Documentation/scsi/megaraid.txt |
5872 | F: drivers/scsi/megaraid.* | |
5873 | F: drivers/scsi/megaraid/ | |
757e0108 | 5874 | |
2c46c9d5 AV |
5875 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5876 | M: Amir Vadai <amirv@mellanox.com> | |
b75f0050 | 5877 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
5878 | S: Supported |
5879 | W: http://www.mellanox.com | |
5880 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5881 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5882 | ||
70ea91f1 SR |
5883 | MEMORY MANAGEMENT |
5884 | L: linux-mm@kvack.org | |
70ea91f1 SR |
5885 | W: http://www.linux-mm.org |
5886 | S: Maintained | |
679655da | 5887 | F: include/linux/mm.h |
551450bb CS |
5888 | F: include/linux/gfp.h |
5889 | F: include/linux/mmzone.h | |
5890 | F: include/linux/memory_hotplug.h | |
5891 | F: include/linux/vmalloc.h | |
679655da | 5892 | F: mm/ |
70ea91f1 | 5893 | |
f4e9ce66 | 5894 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5895 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 5896 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 5897 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
5898 | W: http://www.linux-mtd.infradead.org/ |
5899 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5900 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5901 | S: Maintained |
679655da JP |
5902 | F: drivers/mtd/ |
5903 | F: include/linux/mtd/ | |
c117ab84 | 5904 | F: include/uapi/mtd/ |
1da177e4 | 5905 | |
26c57ef1 | 5906 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 5907 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
26c57ef1 JT |
5908 | L: linux-watchdog@vger.kernel.org |
5909 | S: Supported | |
5910 | F: drivers/watchdog/mena21_wdt.c | |
5911 | ||
3764e82e JT |
5912 | MEN CHAMELEON BUS (mcb) |
5913 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
5914 | S: Supported | |
5915 | F: drivers/mcb/ | |
5916 | F: include/linux/mcb.h | |
5917 | ||
12285945 JH |
5918 | METAG ARCHITECTURE |
5919 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 5920 | L: linux-metag@vger.kernel.org |
12285945 JH |
5921 | S: Supported |
5922 | F: arch/metag/ | |
5923 | F: Documentation/metag/ | |
5924 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5925 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5926 | F: drivers/irqchip/irq-metag.c |
5927 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 5928 | F: drivers/tty/metag_da.c |
12285945 | 5929 | |
c6375b0a | 5930 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5931 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
5932 | W: http://www.monstr.eu/fdt/ |
5933 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5934 | S: Supported | |
0a8c7914 | 5935 | F: arch/microblaze/ |
1da177e4 LT |
5936 | |
5937 | MICROTEK X6 SCANNER | |
61eee9a7 | 5938 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 5939 | S: Maintained |
679655da | 5940 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5941 | |
5942 | MIPS | |
8b58be88 | 5943 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5944 | L: linux-mips@linux-mips.org |
6097050d | 5945 | W: http://www.linux-mips.org/ |
b05e988e | 5946 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5947 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5948 | S: Supported |
679655da JP |
5949 | F: Documentation/mips/ |
5950 | F: arch/mips/ | |
1da177e4 | 5951 | |
08b7620a HV |
5952 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5953 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5954 | L: linux-media@vger.kernel.org | |
5955 | T: git git://linuxtv.org/media_tree.git | |
5956 | W: http://linuxtv.org | |
5957 | S: Odd Fixes | |
5958 | F: drivers/media/radio/radio-miropcm20* | |
5959 | ||
e126ba97 EC |
5960 | Mellanox MLX5 core VPI driver |
5961 | M: Eli Cohen <eli@mellanox.com> | |
5962 | L: netdev@vger.kernel.org | |
5963 | L: linux-rdma@vger.kernel.org | |
5964 | W: http://www.mellanox.com | |
5965 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5966 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5967 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
5968 | S: Supported |
5969 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5970 | F: include/linux/mlx5/ | |
5971 | ||
5972 | Mellanox MLX5 IB driver | |
b75f0050 JP |
5973 | M: Eli Cohen <eli@mellanox.com> |
5974 | L: linux-rdma@vger.kernel.org | |
5975 | W: http://www.mellanox.com | |
5976 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5977 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
5978 | S: Supported |
5979 | F: include/linux/mlx5/ | |
5980 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 5981 | |
1da177e4 | 5982 | MODULE SUPPORT |
8b58be88 | 5983 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 5984 | S: Maintained |
679655da JP |
5985 | F: include/linux/module.h |
5986 | F: kernel/module.c | |
1da177e4 LT |
5987 | |
5988 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5989 | W: http://popies.net/meye/ |
b7788e13 | 5990 | S: Orphan |
679655da | 5991 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5992 | F: drivers/media/pci/meye/ |
6c0f0359 | 5993 | F: include/uapi/linux/meye.h |
1da177e4 | 5994 | |
b9705b60 | 5995 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5996 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 5997 | S: Maintained |
679655da | 5998 | F: Documentation/serial/moxa-smartio |
c897401b | 5999 | F: drivers/tty/mxser.* |
d735410a | 6000 | |
889b2f87 AK |
6001 | MR800 AVERMEDIA USB FM RADIO DRIVER |
6002 | M: Alexey Klimov <klimov.linux@gmail.com> | |
6003 | L: linux-media@vger.kernel.org | |
6004 | T: git git://linuxtv.org/media_tree.git | |
6005 | S: Maintained | |
6006 | F: drivers/media/radio/radio-mr800.c | |
6007 | ||
d7155691 AO |
6008 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
6009 | M: Alan Ott <alan@signal11.us> | |
6010 | L: linux-wpan@vger.kernel.org | |
6011 | S: Maintained | |
6012 | F: drivers/net/ieee802154/mrf24j40.c | |
6013 | ||
8c4c731a | 6014 | MSI LAPTOP SUPPORT |
182ae55c | 6015 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 6016 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 6017 | S: Maintained |
679655da | 6018 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 6019 | |
0f1006b1 AA |
6020 | MSI WMI SUPPORT |
6021 | M: Anisse Astier <anisse@astier.eu> | |
d0944853 | 6022 | L: platform-driver-x86@vger.kernel.org |
0f1006b1 AA |
6023 | S: Supported |
6024 | F: drivers/platform/x86/msi-wmi.c | |
6025 | ||
19a628a0 AP |
6026 | MSI001 MEDIA DRIVER |
6027 | M: Antti Palosaari <crope@iki.fi> | |
6028 | L: linux-media@vger.kernel.org | |
6029 | W: http://linuxtv.org/ | |
6030 | W: http://palosaari.fi/linux/ | |
6031 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6032 | T: git git://linuxtv.org/anttip/media_tree.git | |
6033 | S: Maintained | |
0185e197 | 6034 | F: drivers/media/tuners/msi001* |
19a628a0 | 6035 | |
7570589d | 6036 | MSI2500 MEDIA DRIVER |
2c57213f AP |
6037 | M: Antti Palosaari <crope@iki.fi> |
6038 | L: linux-media@vger.kernel.org | |
6039 | W: http://linuxtv.org/ | |
6040 | W: http://palosaari.fi/linux/ | |
6041 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6042 | T: git git://linuxtv.org/anttip/media_tree.git | |
6043 | S: Maintained | |
7570589d | 6044 | F: drivers/media/usb/msi2500/ |
2c57213f | 6045 | |
62a37dc7 | 6046 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
6047 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6048 | L: linux-media@vger.kernel.org | |
6049 | T: git git://linuxtv.org/media_tree.git | |
6050 | S: Maintained | |
6051 | F: drivers/media/i2c/mt9m032.c | |
6052 | F: include/media/mt9m032.h | |
6053 | ||
62a37dc7 | 6054 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
6055 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6056 | L: linux-media@vger.kernel.org | |
6057 | T: git git://linuxtv.org/media_tree.git | |
6058 | S: Maintained | |
6059 | F: drivers/media/i2c/mt9p031.c | |
6060 | F: include/media/mt9p031.h | |
6061 | ||
62a37dc7 | 6062 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
6063 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6064 | L: linux-media@vger.kernel.org | |
6065 | T: git git://linuxtv.org/media_tree.git | |
6066 | S: Maintained | |
6067 | F: drivers/media/i2c/mt9t001.c | |
6068 | F: include/media/mt9t001.h | |
6069 | ||
62a37dc7 | 6070 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
6071 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6072 | L: linux-media@vger.kernel.org | |
6073 | T: git git://linuxtv.org/media_tree.git | |
6074 | S: Maintained | |
6075 | F: drivers/media/i2c/mt9v032.c | |
6076 | F: include/media/mt9v032.h | |
6077 | ||
4e0d13cb | 6078 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 6079 | M: Samuel Ortiz <sameo@linux.intel.com> |
f7d3210e | 6080 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 6081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 6082 | S: Supported |
679655da | 6083 | F: drivers/mfd/ |
55b5940d | 6084 | F: include/linux/mfd/ |
4e0d13cb | 6085 | |
5c4e6f13 | 6086 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 6087 | M: Chris Ball <chris@printf.net> |
e18eaf8f | 6088 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 6089 | L: linux-mmc@vger.kernel.org |
245feaa6 | 6090 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
708dce3f | 6091 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 6092 | S: Maintained |
679655da JP |
6093 | F: drivers/mmc/ |
6094 | F: include/linux/mmc/ | |
c117ab84 | 6095 | F: include/uapi/linux/mmc/ |
baca2da4 | 6096 | |
15a0580c | 6097 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 6098 | S: Orphan |
679655da JP |
6099 | F: drivers/mmc/host/mmc_spi.c |
6100 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 6101 | |
1da177e4 | 6102 | MULTISOUND SOUND DRIVER |
8b58be88 | 6103 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 6104 | S: Maintained |
679655da JP |
6105 | F: Documentation/sound/oss/MultiSound |
6106 | F: sound/oss/msnd* | |
1da177e4 | 6107 | |
d735410a | 6108 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 6109 | S: Orphan |
c897401b | 6110 | F: drivers/tty/isicom.c |
679655da | 6111 | F: include/linux/isicom.h |
d735410a | 6112 | |
550a7375 | 6113 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 6114 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 6115 | L: linux-usb@vger.kernel.org |
43b416e5 | 6116 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 6117 | S: Maintained |
679655da | 6118 | F: drivers/usb/musb/ |
550a7375 | 6119 | |
ea0af5f6 MK |
6120 | MXL5007T MEDIA DRIVER |
6121 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6122 | L: linux-media@vger.kernel.org | |
6123 | W: http://linuxtv.org/ | |
6124 | W: http://github.com/mkrufky | |
6125 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6126 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6127 | S: Maintained | |
6128 | F: drivers/media/tuners/mxl5007t.* | |
6129 | ||
2d3cf588 | 6130 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 6131 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 6132 | L: netdev@vger.kernel.org |
205057ae | 6133 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 6134 | S: Supported |
93f7848b | 6135 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 6136 | |
1da177e4 | 6137 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 6138 | S: Orphan |
d9fb9f38 | 6139 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 6140 | |
23dc05a3 DM |
6141 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6142 | M: Daniel Mack <zonque@gmail.com> | |
6143 | S: Maintained | |
6144 | L: alsa-devel@alsa-project.org | |
6145 | W: http://www.native-instruments.com | |
6146 | F: sound/usb/caiaq/ | |
6147 | ||
1da177e4 | 6148 | NCP FILESYSTEM |
52653199 PV |
6149 | M: Petr Vandrovec <petr@vandrovec.name> |
6150 | S: Odd Fixes | |
679655da | 6151 | F: fs/ncpfs/ |
1da177e4 | 6152 | |
a79b0322 FT |
6153 | NCR 5380 SCSI DRIVERS |
6154 | M: Finn Thain <fthain@telegraphics.com.au> | |
6155 | M: Michael Schmitz <schmitzmic@gmail.com> | |
6156 | L: linux-scsi@vger.kernel.org | |
6157 | S: Maintained | |
6158 | F: Documentation/scsi/g_NCR5380.txt | |
6159 | F: drivers/scsi/NCR5380.* | |
6160 | F: drivers/scsi/arm/cumana_1.c | |
6161 | F: drivers/scsi/arm/oak.c | |
6162 | F: drivers/scsi/atari_NCR5380.c | |
6163 | F: drivers/scsi/atari_scsi.* | |
6164 | F: drivers/scsi/dmx3191d.c | |
6165 | F: drivers/scsi/dtc.* | |
6166 | F: drivers/scsi/g_NCR5380.* | |
6167 | F: drivers/scsi/g_NCR5380_mmio.c | |
6168 | F: drivers/scsi/mac_scsi.* | |
6169 | F: drivers/scsi/pas16.* | |
6170 | F: drivers/scsi/sun3_NCR5380.c | |
6171 | F: drivers/scsi/sun3_scsi.* | |
6172 | F: drivers/scsi/sun3_scsi_vme.c | |
6173 | F: drivers/scsi/t128.* | |
6174 | ||
1da177e4 | 6175 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 6176 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6177 | L: linux-scsi@vger.kernel.org |
6178 | S: Maintained | |
679655da | 6179 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 6180 | |
4aa3eb4c GR |
6181 | NCT6775 HARDWARE MONITOR DRIVER |
6182 | M: Guenter Roeck <linux@roeck-us.net> | |
6183 | L: lm-sensors@lm-sensors.org | |
6184 | S: Maintained | |
6185 | F: Documentation/hwmon/nct6775 | |
6186 | F: drivers/hwmon/nct6775.c | |
6187 | ||
3c2d774c | 6188 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 6189 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 6190 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 6191 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
6192 | S: Supported |
6193 | F: drivers/infiniband/hw/nes/ | |
6194 | ||
be2f2e84 | 6195 | NETEM NETWORK EMULATOR |
adbbf69d | 6196 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 6197 | L: netem@lists.linux-foundation.org |
be2f2e84 | 6198 | S: Maintained |
679655da | 6199 | F: net/sched/sch_netem.c |
be2f2e84 | 6200 | |
b2f5a051 | 6201 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 6202 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 6203 | L: netdev@vger.kernel.org |
4a58448b | 6204 | S: Supported |
679655da | 6205 | F: Documentation/networking/s2io.txt |
b2f5a051 | 6206 | F: Documentation/networking/vxge.txt |
86387e1a | 6207 | F: drivers/net/ethernet/neterion/ |
4a58448b | 6208 | |
db9cf3a3 | 6209 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 6210 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 6211 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 6212 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 6213 | L: netfilter-devel@vger.kernel.org |
82b98543 | 6214 | L: coreteam@netfilter.org |
1da177e4 LT |
6215 | W: http://www.netfilter.org/ |
6216 | W: http://www.iptables.org/ | |
42010ed0 PNA |
6217 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
6219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 6220 | S: Supported |
679655da JP |
6221 | F: include/linux/netfilter* |
6222 | F: include/linux/netfilter/ | |
6223 | F: include/net/netfilter/ | |
c117ab84 CEB |
6224 | F: include/uapi/linux/netfilter* |
6225 | F: include/uapi/linux/netfilter/ | |
679655da JP |
6226 | F: net/*/netfilter.c |
6227 | F: net/*/netfilter/ | |
6228 | F: net/netfilter/ | |
1da177e4 | 6229 | |
4cc67735 | 6230 | NETLABEL |
87a0874c | 6231 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
6232 | W: http://netlabel.sf.net |
6233 | L: netdev@vger.kernel.org | |
87a0874c | 6234 | S: Maintained |
80811493 | 6235 | F: Documentation/netlabel/ |
679655da JP |
6236 | F: include/net/netlabel.h |
6237 | F: net/netlabel/ | |
4cc67735 | 6238 | |
1da177e4 | 6239 | NETROM NETWORK LAYER |
8b58be88 | 6240 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6241 | L: linux-hams@vger.kernel.org |
d34cb28a | 6242 | W: http://www.linux-ax25.org/ |
1da177e4 | 6243 | S: Maintained |
679655da | 6244 | F: include/net/netrom.h |
c117ab84 | 6245 | F: include/uapi/linux/netrom.h |
679655da | 6246 | F: net/netrom/ |
1da177e4 | 6247 | |
5ddb88c0 | 6248 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 6249 | M: Paul Clements <Paul.Clements@steeleye.com> |
1da177e4 | 6250 | S: Maintained |
5e4b269b | 6251 | L: nbd-general@lists.sourceforge.net |
679655da JP |
6252 | F: Documentation/blockdev/nbd.txt |
6253 | F: drivers/block/nbd.c | |
6254 | F: include/linux/nbd.h | |
c117ab84 | 6255 | F: include/uapi/linux/nbd.h |
1da177e4 | 6256 | |
6e43650c NH |
6257 | NETWORK DROP MONITOR |
6258 | M: Neil Horman <nhorman@tuxdriver.com> | |
6259 | L: netdev@vger.kernel.org | |
6260 | S: Maintained | |
6261 | W: https://fedorahosted.org/dropwatch/ | |
6262 | F: net/core/drop_monitor.c | |
6263 | ||
1da177e4 | 6264 | NETWORKING [GENERAL] |
8b58be88 | 6265 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 6266 | L: netdev@vger.kernel.org |
b1e8fd54 | 6267 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6268 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6269 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6271 | S: Maintained |
679655da JP |
6272 | F: net/ |
6273 | F: include/net/ | |
018d21ed JP |
6274 | F: include/linux/in.h |
6275 | F: include/linux/net.h | |
6276 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6277 | F: include/uapi/linux/in.h |
6278 | F: include/uapi/linux/net.h | |
6279 | F: include/uapi/linux/netdevice.h | |
7e814a6c | 6280 | F: tools/net/ |
f4e53f9a | 6281 | F: tools/testing/selftests/net/ |
335a67d2 | 6282 | F: lib/random32.c |
a101ccd1 | 6283 | F: lib/test_bpf.c |
1da177e4 LT |
6284 | |
6285 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6286 | M: "David S. Miller" <davem@davemloft.net> |
6287 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
6288 | M: James Morris <jmorris@namei.org> |
6289 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
6290 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 6291 | L: netdev@vger.kernel.org |
08deed1e | 6292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6293 | S: Maintained |
679655da JP |
6294 | F: net/ipv4/ |
6295 | F: net/ipv6/ | |
6296 | F: include/net/ip* | |
0a14842f | 6297 | F: arch/x86/net/* |
1da177e4 | 6298 | |
73b7656c DM |
6299 | NETWORKING [IPSEC] |
6300 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6301 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
6302 | M: "David S. Miller" <davem@davemloft.net> | |
6303 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
6304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6305 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6306 | S: Maintained |
5826bdd1 | 6307 | F: net/core/flow.c |
73b7656c DM |
6308 | F: net/xfrm/ |
6309 | F: net/key/ | |
6310 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6311 | F: net/ipv4/esp4.c |
6312 | F: net/ipv4/ah4.c | |
6313 | F: net/ipv4/ipcomp.c | |
6314 | F: net/ipv4/ip_vti.c | |
73b7656c | 6315 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6316 | F: net/ipv6/esp6.c |
6317 | F: net/ipv6/ah6.c | |
6318 | F: net/ipv6/ipcomp6.c | |
6319 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6320 | F: include/uapi/linux/xfrm.h |
6321 | F: include/net/xfrm.h | |
6322 | ||
10e2ff1c | 6323 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6324 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
6325 | L: netdev@vger.kernel.org |
6326 | S: Maintained | |
6327 | ||
29f8f632 | 6328 | NETWORKING [WIRELESS] |
8b58be88 | 6329 | M: "John W. Linville" <linville@tuxdriver.com> |
2cb4abd1 | 6330 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 6331 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6333 | S: Maintained |
34b921cf JP |
6334 | F: net/mac80211/ |
6335 | F: net/rfkill/ | |
679655da JP |
6336 | F: net/wireless/ |
6337 | F: include/net/ieee80211* | |
cc8b4a2b | 6338 | F: include/linux/wireless.h |
c117ab84 | 6339 | F: include/uapi/linux/wireless.h |
c984e24d | 6340 | F: include/net/iw_handler.h |
34b921cf | 6341 | F: drivers/net/wireless/ |
29f8f632 | 6342 | |
788873ac JP |
6343 | NETWORKING DRIVERS |
6344 | L: netdev@vger.kernel.org | |
6345 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6346 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6349 | S: Odd Fixes |
6350 | F: drivers/net/ | |
018d21ed | 6351 | F: include/linux/if_* |
0b63bf1f JD |
6352 | F: include/linux/netdevice.h |
6353 | F: include/linux/arcdevice.h | |
6354 | F: include/linux/etherdevice.h | |
6355 | F: include/linux/fcdevice.h | |
6356 | F: include/linux/fddidevice.h | |
6357 | F: include/linux/hippidevice.h | |
6358 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6359 | F: include/uapi/linux/if_* |
6360 | F: include/uapi/linux/netdevice.h | |
788873ac | 6361 | |
3d396eb1 | 6362 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6363 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
6364 | M: Sony Chacko <sony.chacko@qlogic.com> |
6365 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 6366 | L: netdev@vger.kernel.org |
9c2b5bde | 6367 | W: http://www.qlogic.com |
3d396eb1 | 6368 | S: Supported |
aa43c215 | 6369 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6370 | |
6423d30f AAJ |
6371 | NFC SUBSYSTEM |
6372 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
6373 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
6374 | M: Samuel Ortiz <sameo@linux.intel.com> | |
6375 | L: linux-wireless@vger.kernel.org | |
5adf54de | 6376 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
0293ba20 | 6377 | S: Supported |
6423d30f | 6378 | F: net/nfc/ |
55eb94f9 | 6379 | F: include/net/nfc/ |
c117ab84 | 6380 | F: include/uapi/linux/nfc.h |
6423d30f | 6381 | F: drivers/nfc/ |
08eaa1e0 | 6382 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6383 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6384 | |
e8b43555 | 6385 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6386 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
78f58153 TM |
6387 | L: linux-nfs@vger.kernel.org |
6388 | W: http://client.linux-nfs.org | |
cd7b996a | 6389 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6390 | S: Maintained |
679655da JP |
6391 | F: fs/lockd/ |
6392 | F: fs/nfs/ | |
6393 | F: fs/nfs_common/ | |
6394 | F: net/sunrpc/ | |
6395 | F: include/linux/lockd/ | |
6396 | F: include/linux/nfs* | |
6397 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6398 | F: include/uapi/linux/nfs* |
6399 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6400 | |
85ef9cea | 6401 | NILFS2 FILESYSTEM |
e2126935 | 6402 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 6403 | L: linux-nilfs@vger.kernel.org |
f9472265 | 6404 | W: http://nilfs.sourceforge.net/ |
e2126935 | 6405 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 6406 | S: Supported |
679655da JP |
6407 | F: Documentation/filesystems/nilfs2.txt |
6408 | F: fs/nilfs2/ | |
6409 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6410 | |
1da177e4 | 6411 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6412 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
6413 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6414 | S: Maintained | |
679655da JP |
6415 | F: Documentation/scsi/NinjaSCSI.txt |
6416 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6417 | |
6418 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6419 | M: GOTO Masanori <gotom@debian.or.jp> |
6420 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
6421 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6422 | S: Maintained | |
679655da JP |
6423 | F: Documentation/scsi/NinjaSCSI.txt |
6424 | F: drivers/scsi/nsp32* | |
1da177e4 | 6425 | |
fce8a7bb JM |
6426 | NTB DRIVER |
6427 | M: Jon Mason <jon.mason@intel.com> | |
6428 | S: Supported | |
2984411f JM |
6429 | W: https://github.com/jonmason/ntb/wiki |
6430 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6431 | F: drivers/ntb/ |
548c237c | 6432 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6433 | F: include/linux/ntb.h |
6434 | ||
1da177e4 | 6435 | NTFS FILESYSTEM |
2818ef50 | 6436 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 6437 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 6438 | W: http://www.tuxera.com/ |
e6f4dee7 | 6439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6440 | S: Supported |
679655da JP |
6441 | F: Documentation/filesystems/ntfs.txt |
6442 | F: fs/ntfs/ | |
1da177e4 | 6443 | |
9eb8ef74 | 6444 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6445 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6446 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6447 | S: Maintained |
8a61f013 JH |
6448 | F: drivers/video/fbdev/riva/ |
6449 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 6450 | |
79461681 MW |
6451 | NVM EXPRESS DRIVER |
6452 | M: Matthew Wilcox <willy@linux.intel.com> | |
6453 | L: linux-nvme@lists.infradead.org | |
6454 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6455 | S: Supported | |
5be37bf9 | 6456 | F: drivers/block/nvme* |
79461681 MW |
6457 | F: include/linux/nvme.h |
6458 | ||
f50d7146 RK |
6459 | NXP TDA998X DRM DRIVER |
6460 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6461 | S: Supported | |
6462 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
6463 | F: include/drm/i2c/tda998x.h | |
6464 | ||
f5525786 | 6465 | OMAP SUPPORT |
0e24bdd4 | 6466 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
6467 | L: linux-omap@vger.kernel.org |
6468 | W: http://www.muru.com/linux/omap/ | |
6469 | W: http://linux.omap.com/ | |
8a6e2535 | 6470 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6471 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6472 | S: Maintained |
4e04d5a3 | 6473 | F: arch/arm/*omap*/ |
046d0a37 JD |
6474 | F: drivers/i2c/busses/i2c-omap.c |
6475 | F: include/linux/i2c-omap.h | |
f5525786 | 6476 | |
50f29fbd | 6477 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6478 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
6479 | M: Tony Lindgren <tony@atomide.com> |
6480 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 6481 | L: devicetree@vger.kernel.org |
50f29fbd TL |
6482 | S: Maintained |
6483 | F: arch/arm/boot/dts/*omap* | |
6484 | F: arch/arm/boot/dts/*am3* | |
6485 | ||
f5525786 | 6486 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6487 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
6488 | L: linux-omap@vger.kernel.org |
6489 | S: Maintained | |
6490 | F: arch/arm/*omap*/*clock* | |
6491 | ||
6492 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6493 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
6494 | L: linux-omap@vger.kernel.org |
6495 | S: Maintained | |
6496 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6497 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6498 | |
d21db568 | 6499 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6500 | M: Rajendra Nayak <rnayak@ti.com> |
6501 | M: Paul Walmsley <paul@pwsan.com> | |
6502 | L: linux-omap@vger.kernel.org | |
6503 | S: Maintained | |
d21db568 | 6504 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6505 | |
f5525786 | 6506 | OMAP AUDIO SUPPORT |
6c284903 | 6507 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 6508 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
f5525786 TL |
6509 | L: alsa-devel@alsa-project.org (subscribers-only) |
6510 | L: linux-omap@vger.kernel.org | |
6511 | S: Maintained | |
6512 | F: sound/soc/omap/ | |
6513 | ||
6514 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6515 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 6516 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
6517 | L: linux-omap@vger.kernel.org |
6518 | S: Maintained | |
8a61f013 | 6519 | F: drivers/video/fbdev/omap/ |
f5525786 | 6520 | |
676eec0d | 6521 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6522 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 6523 | L: linux-omap@vger.kernel.org |
676eec0d | 6524 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 6525 | S: Maintained |
8a61f013 | 6526 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
6527 | F: Documentation/arm/OMAP/DSS |
6528 | ||
8b37fcfc OBC |
6529 | OMAP HARDWARE SPINLOCK SUPPORT |
6530 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6531 | L: linux-omap@vger.kernel.org | |
6532 | S: Maintained | |
6533 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6534 | F: arch/arm/mach-omap2/hwspinlock.c | |
6535 | ||
f5525786 | 6536 | OMAP MMC SUPPORT |
8b58be88 | 6537 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
6538 | L: linux-omap@vger.kernel.org |
6539 | S: Maintained | |
653f41b5 MC |
6540 | F: drivers/mmc/host/omap.c |
6541 | ||
6542 | OMAP HS MMC SUPPORT | |
14006bfb | 6543 | M: Balaji T K <balajitk@ti.com> |
0a4585c6 | 6544 | L: linux-mmc@vger.kernel.org |
653f41b5 | 6545 | L: linux-omap@vger.kernel.org |
0a4585c6 | 6546 | S: Maintained |
653f41b5 | 6547 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6548 | |
6549 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6550 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
6551 | S: Maintained |
6552 | F: drivers/char/hw_random/omap-rng.c | |
6553 | ||
f400c82e | 6554 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6555 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6556 | M: Paul Walmsley <paul@pwsan.com> |
6557 | L: linux-omap@vger.kernel.org | |
6558 | S: Maintained | |
8fc8b12b | 6559 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6560 | |
6561 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6562 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6563 | L: linux-omap@vger.kernel.org |
6564 | S: Maintained | |
6565 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6566 | ||
0db83ced | 6567 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
6568 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6569 | L: linux-media@vger.kernel.org | |
6570 | S: Maintained | |
90d72ac6 | 6571 | F: drivers/media/platform/omap3isp/ |
0db83ced | 6572 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 6573 | |
f5525786 | 6574 | OMAP USB SUPPORT |
f299470a | 6575 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
6576 | L: linux-usb@vger.kernel.org |
6577 | L: linux-omap@vger.kernel.org | |
43b416e5 | 6578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6579 | S: Maintained |
a16fbd65 JP |
6580 | F: drivers/usb/*/*omap* |
6581 | F: arch/arm/*omap*/usb* | |
f5525786 | 6582 | |
6d994710 | 6583 | OMAP GPIO DRIVER |
a1415a8f | 6584 | M: Javier Martinez Canillas <javier@dowhile0.org> |
6d994710 | 6585 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
c69d72ae | 6586 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
6587 | L: linux-omap@vger.kernel.org |
6588 | S: Maintained | |
6589 | F: drivers/gpio/gpio-omap.c | |
6590 | ||
c351e290 MJ |
6591 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6592 | M: Mark Jackson <mpfj@newflow.co.uk> | |
6593 | L: linux-omap@vger.kernel.org | |
6594 | S: Maintained | |
6595 | F: arch/arm/boot/dts/am335x-nano.dts | |
6596 | ||
0ad122d9 | 6597 | OMFS FILESYSTEM |
8b58be88 | 6598 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
6599 | L: linux-karma-devel@lists.sourceforge.net |
6600 | S: Maintained | |
679655da JP |
6601 | F: Documentation/filesystems/omfs.txt |
6602 | F: fs/omfs/ | |
0ad122d9 | 6603 | |
c1986ee9 | 6604 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6605 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 6606 | S: Maintained |
679655da JP |
6607 | F: drivers/char/pcmcia/cm4000_cs.c |
6608 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6609 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6610 | |
77c44ab1 | 6611 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6612 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 6613 | S: Maintained |
679655da | 6614 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6615 | |
77d5140f | 6616 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6617 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 6618 | L: linux-media@vger.kernel.org |
275ffde4 | 6619 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6620 | S: Maintained |
90d72ac6 | 6621 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6622 | |
431bca73 | 6623 | ONENAND FLASH DRIVER |
8b58be88 | 6624 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
6625 | L: linux-mtd@lists.infradead.org |
6626 | S: Maintained | |
679655da JP |
6627 | F: drivers/mtd/onenand/ |
6628 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6629 | |
1da177e4 | 6630 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6631 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
6632 | L: osst-users@lists.sourceforge.net |
6633 | L: linux-scsi@vger.kernel.org | |
6634 | S: Maintained | |
f7269cfc JD |
6635 | F: Documentation/scsi/osst.txt |
6636 | F: drivers/scsi/osst.* | |
6637 | F: drivers/scsi/osst_*.h | |
6638 | F: drivers/scsi/st.h | |
1da177e4 | 6639 | |
e2d1d6c0 | 6640 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6641 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 6642 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 6643 | S: Maintained |
679655da JP |
6644 | F: Documentation/i2c/busses/i2c-ocores |
6645 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6646 | |
860c44c1 | 6647 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6648 | M: Grant Likely <grant.likely@linaro.org> |
5d3ad8a6 | 6649 | M: Rob Herring <robh+dt@kernel.org> |
d0fb18c5 | 6650 | L: devicetree@vger.kernel.org |
860c44c1 | 6651 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6652 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6653 | S: Maintained |
f8828205 | 6654 | F: drivers/of/ |
860c44c1 | 6655 | F: include/linux/of*.h |
f8828205 | 6656 | F: scripts/dtc/ |
860c44c1 | 6657 | K: of_get_property |
d945fa0d | 6658 | K: of_match_table |
860c44c1 | 6659 | |
f8828205 | 6660 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6661 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
6662 | M: Pawel Moll <pawel.moll@arm.com> |
6663 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 6664 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 6665 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 GL |
6666 | L: devicetree@vger.kernel.org |
6667 | S: Maintained | |
6668 | F: Documentation/devicetree/ | |
6669 | F: arch/*/boot/dts/ | |
6670 | F: include/dt-bindings/ | |
6671 | ||
19f9d392 JB |
6672 | OPENRISC ARCHITECTURE |
6673 | M: Jonas Bonn <jonas@southpole.se> | |
6674 | W: http://openrisc.net | |
eab7c1c0 | 6675 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
6676 | S: Maintained |
6677 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6678 | F: arch/openrisc/ |
19f9d392 | 6679 | |
ccb1352e | 6680 | OPENVSWITCH |
4f337ed5 | 6681 | M: Pravin Shelar <pshelar@nicira.com> |
ccb1352e JG |
6682 | L: dev@openvswitch.org |
6683 | W: http://openvswitch.org | |
4f337ed5 | 6684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git |
ccb1352e JG |
6685 | S: Maintained |
6686 | F: net/openvswitch/ | |
6687 | ||
af39917d CL |
6688 | OPL4 DRIVER |
6689 | M: Clemens Ladisch <clemens@ladisch.de> | |
6690 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6691 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6692 | S: Maintained | |
6693 | F: sound/drivers/opl4/ | |
6694 | ||
1da177e4 | 6695 | OPROFILE |
4cf7e718 | 6696 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
6697 | L: oprofile-list@lists.sf.net |
6698 | S: Maintained | |
81c4a8a6 | 6699 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6700 | F: arch/*/oprofile/ |
6701 | F: drivers/oprofile/ | |
6702 | F: include/linux/oprofile.h | |
1da177e4 | 6703 | |
e2d1d6c0 | 6704 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6705 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 6706 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 RD |
6707 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
6708 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6709 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6710 | S: Supported |
679655da JP |
6711 | F: Documentation/filesystems/ocfs2.txt |
6712 | F: Documentation/filesystems/dlmfs.txt | |
6713 | F: fs/ocfs2/ | |
e2d1d6c0 | 6714 | |
1da177e4 | 6715 | ORINOCO DRIVER |
724c6b35 | 6716 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6717 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6718 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6719 | S: Orphan |
679655da | 6720 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6721 | |
42c55aa8 | 6722 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6723 | M: Boaz Harrosh <bharrosh@panasas.com> |
f1f6630b | 6724 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
6725 | L: osd-dev@open-osd.org |
6726 | W: http://open-osd.org | |
54e5881d | 6727 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6728 | S: Maintained |
42c55aa8 | 6729 | F: drivers/scsi/osd/ |
6b6f0b6c | 6730 | F: include/scsi/osd_* |
42c55aa8 | 6731 | F: fs/exofs/ |
68274794 | 6732 | |
e2d1d6c0 | 6733 | P54 WIRELESS DRIVER |
084cb0fe | 6734 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 6735 | L: linux-wireless@vger.kernel.org |
084cb0fe | 6736 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6737 | S: Maintained |
679655da | 6738 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6739 | |
f5cd7872 | 6740 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6741 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
6742 | L: netdev@vger.kernel.org |
6743 | S: Maintained | |
ded19add | 6744 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6745 | |
beb58aa3 | 6746 | PA SEMI SMBUS DRIVER |
8b58be88 | 6747 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 6748 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 6749 | S: Maintained |
679655da | 6750 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6751 | |
48fc267e SK |
6752 | PADATA PARALLEL EXECUTION MECHANISM |
6753 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
6754 | L: linux-crypto@vger.kernel.org |
6755 | S: Maintained | |
6756 | F: kernel/padata.c | |
6757 | F: include/linux/padata.h | |
6758 | F: Documentation/padata.txt | |
6759 | ||
709ee531 | 6760 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6761 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 6762 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 6763 | S: Maintained |
679655da | 6764 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6765 | |
368dd5ac | 6766 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6767 | M: David Howells <dhowells@redhat.com> |
6768 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
6769 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
6770 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6771 | S: Maintained | |
679655da JP |
6772 | F: Documentation/mn10300/ |
6773 | F: arch/mn10300/ | |
4fa97181 | 6774 | |
1da177e4 | 6775 | PARALLEL PORT SUPPORT |
3dd1a329 | 6776 | L: linux-parport@lists.infradead.org (subscribers-only) |
5fdc2abe | 6777 | S: Orphan |
679655da JP |
6778 | F: drivers/parport/ |
6779 | F: include/linux/parport*.h | |
6780 | F: drivers/char/ppdev.c | |
c117ab84 | 6781 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6782 | |
4cdf6bc2 | 6783 | PARAVIRT_OPS INTERFACE |
d633180c | 6784 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
6785 | M: Chris Wright <chrisw@sous-sol.org> |
6786 | M: Alok Kataria <akataria@vmware.com> | |
6787 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 6788 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 6789 | S: Supported |
679655da JP |
6790 | F: Documentation/ia64/paravirt_ops.txt |
6791 | F: arch/*/kernel/paravirt* | |
6792 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6793 | |
e2d1d6c0 | 6794 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6795 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 RD |
6796 | L: linux-parport@lists.infradead.org (subscribers-only) |
6797 | W: http://www.torque.net/linux-pp.html | |
6798 | S: Maintained | |
679655da JP |
6799 | F: Documentation/blockdev/paride.txt |
6800 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6801 | |
6802 | PARISC ARCHITECTURE | |
b8828770 | 6803 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 6804 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
6805 | L: linux-parisc@vger.kernel.org |
6806 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6807 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6810 | S: Maintained |
679655da | 6811 | F: arch/parisc/ |
2b6bac9e | 6812 | F: Documentation/parisc/ |
679655da | 6813 | F: drivers/parisc/ |
2b6bac9e HD |
6814 | F: drivers/char/agp/parisc-agp.c |
6815 | F: drivers/input/serio/gscps2.c | |
6816 | F: drivers/parport/parport_gsc.* | |
6817 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 6818 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
6819 | F: drivers/video/console/sti* |
6820 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6821 | |
1662d32c | 6822 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6823 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
6824 | L: lm-sensors@lm-sensors.org |
6825 | S: Maintained | |
679655da JP |
6826 | F: Documentation/hwmon/pc87360 |
6827 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6828 | |
6829 | PC8736x GPIO DRIVER | |
8b58be88 | 6830 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6831 | S: Maintained |
679655da | 6832 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6833 | |
1ad107fd | 6834 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6835 | M: Jean Delvare <jdelvare@suse.de> |
1ad107fd JD |
6836 | L: lm-sensors@lm-sensors.org |
6837 | S: Maintained | |
6838 | F: Documentation/hwmon/pc87427 | |
6839 | F: drivers/hwmon/pc87427.c | |
6840 | ||
b26e0ed4 | 6841 | PCA9532 LED DRIVER |
8b58be88 | 6842 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 6843 | S: Maintained |
d5ca6918 JP |
6844 | F: drivers/leds/leds-pca9532.c |
6845 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6846 | |
5ce914a8 | 6847 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6848 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
6849 | L: linux-i2c@vger.kernel.org |
6850 | S: Maintained | |
b4f0b74e | 6851 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6852 | |
3971dae5 | 6853 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6854 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
6855 | S: Maintained |
6856 | F: drivers/firmware/pcdp.* | |
6857 | ||
065c6359 | 6858 | PCI ERROR RECOVERY |
6305902c | 6859 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 6860 | L: linux-pci@vger.kernel.org |
065c6359 | 6861 | S: Supported |
679655da | 6862 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6863 | |
1da177e4 | 6864 | PCI SUBSYSTEM |
5ac3a6d2 | 6865 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 6866 | L: linux-pci@vger.kernel.org |
99662dd1 | 6867 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6869 | S: Supported |
679655da JP |
6870 | F: Documentation/PCI/ |
6871 | F: drivers/pci/ | |
6872 | F: include/linux/pci* | |
6b49ee49 | 6873 | F: arch/x86/pci/ |
cad01f91 | 6874 | F: arch/x86/kernel/quirks.c |
1da177e4 | 6875 | |
f0b75693 BH |
6876 | PCI DRIVER FOR IMX6 |
6877 | M: Richard Zhu <r65037@freescale.com> | |
bf177a1e | 6878 | M: Shawn Guo <shawn.guo@freescale.com> |
f0b75693 BH |
6879 | L: linux-pci@vger.kernel.org |
6880 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6881 | S: Maintained | |
6882 | F: drivers/pci/host/*imx6* | |
6883 | ||
6884 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6885 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6886 | M: Jason Cooper <jason@lakedaemon.net> | |
6887 | L: linux-pci@vger.kernel.org | |
6888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6889 | S: Maintained | |
6890 | F: drivers/pci/host/*mvebu* | |
6891 | ||
0447cfd7 TR |
6892 | PCI DRIVER FOR NVIDIA TEGRA |
6893 | M: Thierry Reding <thierry.reding@gmail.com> | |
6894 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 6895 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
6896 | S: Supported |
6897 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6898 | F: drivers/pci/host/pci-tegra.c | |
6899 | ||
47ff3de9 KVA |
6900 | PCI DRIVER FOR TI DRA7XX |
6901 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
6902 | L: linux-omap@vger.kernel.org | |
6903 | L: linux-pci@vger.kernel.org | |
6904 | S: Supported | |
6905 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
6906 | F: drivers/pci/host/pci-dra7xx.c | |
6907 | ||
f0b75693 BH |
6908 | PCI DRIVER FOR RENESAS R-CAR |
6909 | M: Simon Horman <horms@verge.net.au> | |
6910 | L: linux-pci@vger.kernel.org | |
6911 | L: linux-sh@vger.kernel.org | |
6912 | S: Maintained | |
6913 | F: drivers/pci/host/*rcar* | |
6914 | ||
4af82255 JH |
6915 | PCI DRIVER FOR SAMSUNG EXYNOS |
6916 | M: Jingoo Han <jg1.han@samsung.com> | |
6917 | L: linux-pci@vger.kernel.org | |
f0b75693 BH |
6918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6919 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
6920 | S: Maintained |
6921 | F: drivers/pci/host/pci-exynos.c | |
6922 | ||
f0b75693 BH |
6923 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6924 | M: Mohit Kumar <mohit.kumar@st.com> | |
6925 | M: Jingoo Han <jg1.han@samsung.com> | |
6926 | L: linux-pci@vger.kernel.org | |
6927 | S: Maintained | |
6928 | F: drivers/pci/host/*designware* | |
6929 | ||
cf28855b WD |
6930 | PCI DRIVER FOR GENERIC OF HOSTS |
6931 | M: Will Deacon <will.deacon@arm.com> | |
6932 | L: linux-pci@vger.kernel.org | |
6933 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6934 | S: Maintained | |
6935 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
6936 | F: drivers/pci/host/pci-host-generic.c | |
6937 | ||
51b66a6c PA |
6938 | PCIE DRIVER FOR ST SPEAR13XX |
6939 | M: Mohit Kumar <mohit.kumar@st.com> | |
6940 | L: linux-pci@vger.kernel.org | |
6941 | S: Maintained | |
6942 | F: drivers/pci/host/*spear* | |
6943 | ||
1da177e4 | 6944 | PCMCIA SUBSYSTEM |
4230dfc9 | 6945 | P: Linux PCMCIA Team |
f5df5881 | 6946 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 6947 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6948 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6949 | S: Maintained |
679655da JP |
6950 | F: Documentation/pcmcia/ |
6951 | F: drivers/pcmcia/ | |
6952 | F: include/pcmcia/ | |
1da177e4 LT |
6953 | |
6954 | PCNET32 NETWORK DRIVER | |
227fb925 | 6955 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 6956 | L: netdev@vger.kernel.org |
1da177e4 | 6957 | S: Maintained |
b955f6ca | 6958 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6959 | |
48fc267e SK |
6960 | PCRYPT PARALLEL CRYPTO ENGINE |
6961 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6962 | L: linux-crypto@vger.kernel.org | |
6963 | S: Maintained | |
6964 | F: crypto/pcrypt.c | |
6965 | F: include/crypto/pcrypt.h | |
6966 | ||
e72df0b8 TH |
6967 | PER-CPU MEMORY ALLOCATOR |
6968 | M: Tejun Heo <tj@kernel.org> | |
6969 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
6970 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6971 | S: Maintained | |
6972 | F: include/linux/percpu*.h | |
6973 | F: mm/percpu*.c | |
6974 | F: arch/*/include/asm/percpu.h | |
6975 | ||
ad4ecbcb | 6976 | PER-TASK DELAY ACCOUNTING |
185e595f | 6977 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 6978 | S: Maintained |
679655da JP |
6979 | F: include/linux/delayacct.h |
6980 | F: kernel/delayacct.c | |
ad4ecbcb | 6981 | |
57c0c15b | 6982 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6983 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
6984 | M: Paul Mackerras <paulus@samba.org> | |
dd9b238c | 6985 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 6986 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 6987 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6989 | S: Supported |
d53e8365 | 6990 | F: kernel/events/* |
a003236c | 6991 | F: include/linux/perf_event.h |
c117ab84 | 6992 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6993 | F: arch/*/kernel/perf_event*.c |
6994 | F: arch/*/kernel/*/perf_event*.c | |
6995 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6996 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6997 | F: arch/*/kernel/perf_callchain.c |
6998 | F: tools/perf/ | |
6c0b3244 | 6999 | |
dd49d0f5 | 7000 | PERSONALITY HANDLING |
8b58be88 | 7001 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
7002 | L: linux-abi-devel@lists.sourceforge.net |
7003 | S: Maintained | |
679655da | 7004 | F: include/linux/personality.h |
c117ab84 | 7005 | F: include/uapi/linux/personality.h |
dd49d0f5 | 7006 | |
838e7a03 | 7007 | PHONET PROTOCOL |
2a06b40f | 7008 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
7009 | S: Supported |
7010 | F: Documentation/networking/phonet.txt | |
7011 | F: include/linux/phonet.h | |
7012 | F: include/net/phonet/ | |
c117ab84 | 7013 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
7014 | F: net/phonet/ |
7015 | ||
1da177e4 | 7016 | PHRAM MTD DRIVER |
8b58be88 | 7017 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
7018 | L: linux-mtd@lists.infradead.org |
7019 | S: Maintained | |
679655da | 7020 | F: drivers/mtd/devices/phram.c |
1da177e4 | 7021 | |
efdbb10e BP |
7022 | PICOLCD HID DRIVER |
7023 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
7024 | L: linux-input@vger.kernel.org | |
7025 | S: Maintained | |
7026 | F: drivers/hid/hid-picolcd* | |
7027 | ||
a53bfa07 JI |
7028 | PICOXCELL SUPPORT |
7029 | M: Jamie Iles <jamie@jamieiles.com> | |
7030 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7031 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
7032 | S: Supported | |
b8733987 | 7033 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 7034 | F: arch/arm/mach-picoxcell/ |
b8733987 | 7035 | F: drivers/crypto/picoxcell* |
a53bfa07 | 7036 | |
2744e8af LW |
7037 | PIN CONTROL SUBSYSTEM |
7038 | M: Linus Walleij <linus.walleij@linaro.org> | |
7039 | S: Maintained | |
07f29ba6 | 7040 | F: drivers/pinctrl/ |
8e406fe4 | 7041 | F: include/linux/pinctrl/ |
2744e8af | 7042 | |
2201bbb8 JCPV |
7043 | PIN CONTROLLER - ATMEL AT91 |
7044 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
7045 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7046 | S: Maintained | |
7047 | F: drivers/pinctrl/pinctrl-at91.c | |
7048 | ||
9963b536 LP |
7049 | PIN CONTROLLER - RENESAS |
7050 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7051 | L: linux-sh@vger.kernel.org | |
7052 | S: Maintained | |
7053 | F: drivers/pinctrl/sh-pfc/ | |
7054 | ||
b75e60d6 DA |
7055 | PIN CONTROLLER - SAMSUNG |
7056 | M: Tomasz Figa <t.figa@samsung.com> | |
7057 | M: Thomas Abraham <thomas.abraham@linaro.org> | |
7058 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7059 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7060 | S: Maintained | |
9b5b33f6 | 7061 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 7062 | |
deda8287 | 7063 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 7064 | M: Viresh Kumar <viresh.linux@gmail.com> |
deda8287 VK |
7065 | L: spear-devel@list.st.com |
7066 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7067 | W: http://www.st.com/spear | |
7068 | S: Maintained | |
8e406fe4 | 7069 | F: drivers/pinctrl/spear/ |
deda8287 | 7070 | |
249a6771 | 7071 | PKTCDVD DRIVER |
dbd47133 | 7072 | M: Jiri Kosina <jkosina@suse.cz> |
249a6771 | 7073 | S: Maintained |
679655da JP |
7074 | F: drivers/block/pktcdvd.c |
7075 | F: include/linux/pktcdvd.h | |
c117ab84 | 7076 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 7077 | |
b31d8273 G |
7078 | PKUNITY SOC DRIVERS |
7079 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
7080 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
7081 | S: Maintained | |
ceebf4d5 | 7082 | T: git git://github.com/gxt/linux.git |
b31d8273 | 7083 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 7084 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 7085 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 7086 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 7087 | |
9d2ecfb7 | 7088 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 7089 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
7090 | L: lm-sensors@lm-sensors.org |
7091 | W: http://www.lm-sensors.org/ | |
7092 | W: http://www.roeck-us.net/linux/drivers/ | |
7093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
7094 | S: Maintained | |
7095 | F: Documentation/hwmon/pmbus | |
7096 | F: drivers/hwmon/pmbus/ | |
7097 | F: include/linux/i2c/pmbus.h | |
7098 | ||
89a36810 | 7099 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 7100 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
89a36810 AR |
7101 | L: linux-scsi@vger.kernel.org |
7102 | W: http://www.pmc-sierra.com/ | |
7103 | S: Supported | |
7104 | F: drivers/scsi/pmcraid.* | |
7105 | ||
dbf9bfe6 | 7106 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 7107 | M: xjtuwjp@gmail.com |
dbf9bfe6 | 7108 | M: lindar_liu@usish.com |
f5a7b525 | 7109 | L: pmchba@pmcs.com |
dbf9bfe6 | 7110 | L: linux-scsi@vger.kernel.org |
7111 | S: Supported | |
7112 | F: drivers/scsi/pm8001/ | |
7113 | ||
1da177e4 | 7114 | POSIX CLOCKS and TIMERS |
8b58be88 | 7115 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 7116 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 7118 | S: Maintained |
679655da JP |
7119 | F: fs/timerfd.c |
7120 | F: include/linux/timer* | |
5cee9645 | 7121 | F: kernel/time/*timer* |
1da177e4 | 7122 | |
3be86148 | 7123 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 7124 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 7125 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 7126 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 7127 | L: linux-pm@vger.kernel.org |
54e5881d | 7128 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 7129 | S: Maintained |
679655da | 7130 | F: include/linux/power_supply.h |
8cd725a1 | 7131 | F: drivers/power/ |
3be86148 | 7132 | |
1da177e4 | 7133 | PNP SUPPORT |
46a1f21a | 7134 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
1da177e4 | 7135 | S: Maintained |
679655da | 7136 | F: drivers/pnp/ |
1da177e4 | 7137 | |
999445d4 | 7138 | PNXxxxx I2C DRIVER |
8b58be88 | 7139 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 7140 | L: linux-i2c@vger.kernel.org |
999445d4 | 7141 | S: Maintained |
679655da | 7142 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 7143 | |
1da177e4 | 7144 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 7145 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
7146 | L: linux-ppp@vger.kernel.org |
7147 | S: Maintained | |
224cf5ad | 7148 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
7149 | |
7150 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 7151 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 7152 | S: Maintained |
679655da | 7153 | F: net/atm/pppoatm.c |
c117ab84 | 7154 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
7155 | |
7156 | PPP OVER ETHERNET | |
8b58be88 | 7157 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 7158 | S: Maintained |
224cf5ad JK |
7159 | F: drivers/net/ppp/pppoe.c |
7160 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 7161 | |
a6d2370b | 7162 | PPP OVER L2TP |
8b58be88 | 7163 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 7164 | S: Maintained |
90ca28d1 | 7165 | F: net/l2tp/l2tp_ppp.c |
679655da | 7166 | F: include/linux/if_pppol2tp.h |
c117ab84 | 7167 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 7168 | |
eae9d2ba | 7169 | PPS SUPPORT |
8b58be88 | 7170 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
7171 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
7172 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
7173 | S: Maintained | |
cabaaf41 JP |
7174 | F: Documentation/pps/ |
7175 | F: drivers/pps/ | |
7176 | F: include/linux/pps*.h | |
eae9d2ba | 7177 | |
71a6d0af HW |
7178 | PPTP DRIVER |
7179 | M: Dmitry Kozlov <xeb@mail.ru> | |
7180 | L: netdev@vger.kernel.org | |
7181 | S: Maintained | |
224cf5ad | 7182 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
7183 | W: http://sourceforge.net/projects/accel-pptp |
7184 | ||
1da177e4 | 7185 | PREEMPTIBLE KERNEL |
8b58be88 | 7186 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
7187 | L: kpreempt-tech@lists.sourceforge.net |
7188 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
7189 | S: Supported | |
679655da JP |
7190 | F: Documentation/preempt-locking.txt |
7191 | F: include/linux/preempt.h | |
1da177e4 LT |
7192 | |
7193 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 7194 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 7195 | L: linux-wireless@vger.kernel.org |
9ef80804 | 7196 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 7197 | S: Obsolete |
679655da | 7198 | F: drivers/net/wireless/prism54/ |
1da177e4 | 7199 | |
b3277dfa | 7200 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 7201 | M: Mikael Pettersson <mikpelinux@gmail.com> |
b3277dfa MP |
7202 | L: linux-ide@vger.kernel.org |
7203 | S: Maintained | |
679655da | 7204 | F: drivers/ata/sata_promise.* |
b3277dfa | 7205 | |
02c18891 | 7206 | PS3 NETWORK SUPPORT |
b809b9ca | 7207 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 7208 | L: netdev@vger.kernel.org |
a4724ed6 | 7209 | L: cbe-oss-dev@lists.ozlabs.org |
b809b9ca | 7210 | S: Maintained |
8df158ac | 7211 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 7212 | |
f58a9d17 | 7213 | PS3 PLATFORM SUPPORT |
b809b9ca | 7214 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 SR |
7215 | L: linuxppc-dev@lists.ozlabs.org |
7216 | L: cbe-oss-dev@lists.ozlabs.org | |
b809b9ca | 7217 | S: Maintained |
679655da JP |
7218 | F: arch/powerpc/boot/ps3* |
7219 | F: arch/powerpc/include/asm/lv1call.h | |
7220 | F: arch/powerpc/include/asm/ps3*.h | |
7221 | F: arch/powerpc/platforms/ps3/ | |
7222 | F: drivers/*/ps3* | |
7223 | F: drivers/ps3/ | |
fec629b8 | 7224 | F: drivers/rtc/rtc-ps3.c |
679655da | 7225 | F: drivers/usb/host/*ps3.c |
fec629b8 | 7226 | F: sound/ppc/snd_ps3* |
f58a9d17 | 7227 | |
cffb4add | 7228 | PS3VRAM DRIVER |
8b58be88 | 7229 | M: Jim Paris <jim@jtan.com> |
a4724ed6 | 7230 | L: cbe-oss-dev@lists.ozlabs.org |
cffb4add | 7231 | S: Maintained |
8a3977cb | 7232 | F: drivers/block/ps3vram.c |
cffb4add | 7233 | |
8defe599 | 7234 | PSTORE FILESYSTEM |
9d5e2a02 | 7235 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
7236 | M: Colin Cross <ccross@android.com> |
7237 | M: Kees Cook <keescook@chromium.org> | |
7238 | M: Tony Luck <tony.luck@intel.com> | |
7239 | S: Maintained | |
7240 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
7241 | F: fs/pstore/ | |
7242 | F: include/linux/pstore* | |
04851772 | 7243 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
7244 | F: drivers/acpi/apei/erst.c |
7245 | ||
7fbc415d RC |
7246 | PTP HARDWARE CLOCK SUPPORT |
7247 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 7248 | L: netdev@vger.kernel.org |
7fbc415d RC |
7249 | S: Maintained |
7250 | W: http://linuxptp.sourceforge.net/ | |
7251 | F: Documentation/ABI/testing/sysfs-ptp | |
7252 | F: Documentation/ptp/* | |
0ecb3cdd | 7253 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
7254 | F: drivers/net/phy/dp83640* |
7255 | F: drivers/ptp/* | |
7256 | F: include/linux/ptp_cl* | |
7257 | ||
cf94a4d1 | 7258 | PTRACE SUPPORT |
e846ee5f | 7259 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 7260 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
7261 | S: Maintained |
7262 | F: include/asm-generic/syscall.h | |
7263 | F: include/linux/ptrace.h | |
7264 | F: include/linux/regset.h | |
7265 | F: include/linux/tracehook.h | |
c117ab84 | 7266 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
7267 | F: kernel/ptrace.c |
7268 | ||
8320204a | 7269 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 7270 | M: Mike Isely <isely@pobox.com> |
16e9495d | 7271 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 7272 | L: linux-media@vger.kernel.org |
8320204a | 7273 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7274 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7275 | S: Maintained |
679655da | 7276 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7277 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7278 | |
39532e6c HG |
7279 | PWC WEBCAM DRIVER |
7280 | M: Hans de Goede <hdegoede@redhat.com> | |
7281 | L: linux-media@vger.kernel.org | |
7282 | T: git git://linuxtv.org/media_tree.git | |
7283 | S: Maintained | |
7284 | F: drivers/media/usb/pwc/* | |
7285 | ||
200efedd | 7286 | PWM SUBSYSTEM |
aa3495f7 TR |
7287 | M: Thierry Reding <thierry.reding@gmail.com> |
7288 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 7289 | S: Maintained |
006e854f | 7290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7291 | F: Documentation/pwm.txt |
7292 | F: Documentation/devicetree/bindings/pwm/ | |
7293 | F: include/linux/pwm.h | |
0c2498f1 | 7294 | F: drivers/pwm/ |
a140b98d TR |
7295 | F: drivers/video/backlight/pwm_bl.c |
7296 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7297 | |
30ec261e | 7298 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
7299 | M: Eric Miao <eric.y.miao@gmail.com> |
7300 | M: Russell King <linux@arm.linux.org.uk> | |
a323f664 | 7301 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
efc03ecb | 7302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
7303 | T: git git://github.com/hzhuang1/linux.git |
7304 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 7305 | S: Maintained |
679655da JP |
7306 | F: arch/arm/mach-pxa/ |
7307 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7308 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 7309 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 7310 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 7311 | F: sound/arm/pxa* |
14430813 | 7312 | F: sound/soc/pxa/ |
1da177e4 | 7313 | |
ec64d3bf EG |
7314 | PXA3xx NAND FLASH DRIVER |
7315 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
7316 | L: linux-mtd@lists.infradead.org | |
7317 | S: Maintained | |
9a67f099 | 7318 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 7319 | |
3f640c61 | 7320 | MMP SUPPORT |
8b58be88 | 7321 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 7322 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 7323 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
7324 | T: git git://github.com/hzhuang1/linux.git |
7325 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7326 | S: Maintained |
3f640c61 | 7327 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7328 | |
272f133a PO |
7329 | PXA MMCI DRIVER |
7330 | S: Orphan | |
7331 | ||
57f63bc8 | 7332 | PXA RTC DRIVER |
8b58be88 | 7333 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
7334 | L: rtc-linux@googlegroups.com |
7335 | S: Maintained | |
7336 | ||
cea4001a TS |
7337 | QAT DRIVER |
7338 | M: Tadeusz Struk <tadeusz.struk@intel.com> | |
7339 | L: qat-linux@intel.com | |
7340 | S: Supported | |
7341 | F: drivers/crypto/qat/ | |
7342 | ||
52a09a04 | 7343 | QIB DRIVER |
8473c603 | 7344 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
7345 | L: linux-rdma@vger.kernel.org |
7346 | S: Supported | |
7347 | F: drivers/infiniband/hw/qib/ | |
7348 | ||
5e9772b9 JS |
7349 | QLOGIC QLA1280 SCSI DRIVER |
7350 | M: Michael Reed <mdr@sgi.com> | |
7351 | L: linux-scsi@vger.kernel.org | |
7352 | S: Maintained | |
7353 | F: drivers/scsi/qla1280.[ch] | |
7354 | ||
1da177e4 | 7355 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 7356 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
7357 | L: linux-scsi@vger.kernel.org |
7358 | S: Supported | |
679655da JP |
7359 | F: Documentation/scsi/LICENSE.qla2xxx |
7360 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7361 | |
883c98fe | 7362 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7363 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> |
7364 | M: iscsi-driver@qlogic.com | |
7365 | L: linux-scsi@vger.kernel.org | |
7366 | S: Supported | |
bacfb81b | 7367 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7368 | F: drivers/scsi/qla4xxx/ |
7369 | ||
5a4faa87 | 7370 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7371 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 7372 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
7373 | M: linux-driver@qlogic.com |
7374 | L: netdev@vger.kernel.org | |
7375 | S: Supported | |
679655da | 7376 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7377 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7378 | |
0ec00f03 | 7379 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 7380 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
e6b0b019 | 7381 | M: Dept-HSGLinuxNICDev@qlogic.com |
0ec00f03 AKS |
7382 | L: netdev@vger.kernel.org |
7383 | S: Supported | |
aa43c215 | 7384 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7385 | |
c4e84bde | 7386 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 7387 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
b997d79a | 7388 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 7389 | M: Ron Mercer <ron.mercer@qlogic.com> |
4cbfbe25 | 7390 | M: linux-driver@qlogic.com |
c4e84bde RM |
7391 | L: netdev@vger.kernel.org |
7392 | S: Supported | |
aa43c215 | 7393 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7394 | |
1da177e4 | 7395 | QNX4 FILESYSTEM |
8b58be88 | 7396 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
7397 | W: http://www.alarsen.net/linux/qnx4fs/ |
7398 | S: Maintained | |
80811493 | 7399 | F: fs/qnx4/ |
c117ab84 CEB |
7400 | F: include/uapi/linux/qnx4_fs.h |
7401 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7402 | |
91952bc0 AP |
7403 | QT1010 MEDIA DRIVER |
7404 | M: Antti Palosaari <crope@iki.fi> | |
7405 | L: linux-media@vger.kernel.org | |
7406 | W: http://linuxtv.org/ | |
7407 | W: http://palosaari.fi/linux/ | |
7408 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7409 | T: git git://linuxtv.org/anttip/media_tree.git | |
7410 | S: Maintained | |
7411 | F: drivers/media/tuners/qt1010* | |
7412 | ||
966fb5ec SM |
7413 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7414 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
7415 | L: linux-wireless@vger.kernel.org | |
7416 | L: ath9k-devel@lists.ath9k.org | |
7417 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7418 | S: Supported | |
7419 | F: drivers/net/wireless/ath/ath9k/ | |
7420 | ||
2ea0ffcb KV |
7421 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7422 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
7423 | L: ath10k@lists.infradead.org | |
7424 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7425 | T: git git://github.com/kvalo/ath.git | |
7426 | S: Supported | |
7427 | F: drivers/net/wireless/ath/ath10k/ | |
7428 | ||
4f4567cf RK |
7429 | QUALCOMM HEXAGON ARCHITECTURE |
7430 | M: Richard Kuo <rkuo@codeaurora.org> | |
7431 | L: linux-hexagon@vger.kernel.org | |
7432 | S: Supported | |
7433 | F: arch/hexagon/ | |
7434 | ||
8e84c258 EK |
7435 | QUALCOMM WCN36XX WIRELESS DRIVER |
7436 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
7437 | L: wcn36xx@lists.infradead.org | |
7438 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7439 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7440 | S: Supported | |
7441 | F: drivers/net/wireless/ath/wcn36xx/ | |
7442 | ||
35e3540b HV |
7443 | QUICKCAM PARALLEL PORT WEBCAMS |
7444 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7445 | L: linux-media@vger.kernel.org | |
7446 | T: git git://linuxtv.org/media_tree.git | |
7447 | W: http://linuxtv.org | |
7448 | S: Odd Fixes | |
7449 | F: drivers/media/parport/*-qcam* | |
7450 | ||
602adf40 | 7451 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7452 | M: Yehuda Sadeh <yehuda@inktank.com> |
7453 | M: Sage Weil <sage@inktank.com> | |
527a88b9 | 7454 | M: Alex Elder <elder@kernel.org> |
602adf40 | 7455 | M: ceph-devel@vger.kernel.org |
09d90327 SW |
7456 | W: http://ceph.com/ |
7457 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7458 | S: Supported |
7459 | F: drivers/block/rbd.c | |
7460 | F: drivers/block/rbd_types.h | |
7461 | ||
1da177e4 | 7462 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7463 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 7464 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7465 | S: Maintained |
8a61f013 | 7466 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 7467 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7468 | |
c6c9b34c HG |
7469 | RADIOSHARK RADIO DRIVER |
7470 | M: Hans de Goede <hdegoede@redhat.com> | |
7471 | L: linux-media@vger.kernel.org | |
7472 | T: git git://linuxtv.org/media_tree.git | |
7473 | S: Maintained | |
7474 | F: drivers/media/radio/radio-shark.c | |
7475 | ||
7476 | RADIOSHARK2 RADIO DRIVER | |
7477 | M: Hans de Goede <hdegoede@redhat.com> | |
7478 | L: linux-media@vger.kernel.org | |
7479 | T: git git://linuxtv.org/media_tree.git | |
7480 | S: Maintained | |
7481 | F: drivers/media/radio/radio-shark2.c | |
7482 | F: drivers/media/radio/radio-tea5777.c | |
7483 | ||
1da177e4 | 7484 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7485 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 7486 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7487 | S: Maintained |
8a61f013 | 7488 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 7489 | |
e7839f25 | 7490 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7491 | P: rt2x00 project |
e1a6542f | 7492 | M: Ivo van Doorn <IvDoorn@gmail.com> |
f198f98e | 7493 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 7494 | L: linux-wireless@vger.kernel.org |
83fc9c89 | 7495 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
95ea3627 ID |
7496 | W: http://rt2x00.serialmonkey.com/ |
7497 | S: Maintained | |
54e5881d | 7498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7499 | F: drivers/net/wireless/rt2x00/ |
7500 | ||
9db5579b | 7501 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7502 | M: Nick Piggin <npiggin@kernel.dk> |
9db5579b | 7503 | S: Maintained |
679655da JP |
7504 | F: Documentation/blockdev/ramdisk.txt |
7505 | F: drivers/block/brd.c | |
9db5579b | 7506 | |
9e95ce27 | 7507 | RANDOM NUMBER DRIVER |
0624bcaa | 7508 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 7509 | S: Maintained |
679655da | 7510 | F: drivers/char/random.c |
9e95ce27 | 7511 | |
394b701c | 7512 | RAPIDIO SUBSYSTEM |
8b58be88 | 7513 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 7514 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 7515 | S: Maintained |
679655da | 7516 | F: drivers/rapidio/ |
394b701c | 7517 | |
e2d1d6c0 | 7518 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7519 | L: linux-wireless@vger.kernel.org |
f52a5490 | 7520 | S: Orphan |
679655da | 7521 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7522 | |
7523 | RCUTORTURE MODULE | |
e0198b29 | 7524 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 7525 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 7526 | L: linux-kernel@vger.kernel.org |
f9094d8e | 7527 | S: Supported |
08deed1e | 7528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7529 | F: Documentation/RCU/torture.txt |
34e2d560 | 7530 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 7531 | |
c87b9c60 PM |
7532 | RCUTORTURE TEST FRAMEWORK |
7533 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 7534 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
7535 | R: Steven Rostedt <rostedt@goodmis.org> |
7536 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7537 | R: Lai Jiangshan <laijs@cn.fujitsu.com> | |
981c3a4f | 7538 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
7539 | S: Supported |
7540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7541 | F: tools/testing/selftests/rcutorture | |
7542 | ||
c1f766b5 | 7543 | RDC R-321X SoC |
8b58be88 | 7544 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
7545 | S: Maintained |
7546 | ||
db17f395 | 7547 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7548 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
7549 | L: netdev@vger.kernel.org |
7550 | S: Maintained | |
58565a35 | 7551 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7552 | |
a09ed661 | 7553 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 7554 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 7555 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 7556 | S: Supported |
679655da | 7557 | F: net/rds/ |
a09ed661 | 7558 | |
595182bc | 7559 | READ-COPY UPDATE (RCU) |
8b58be88 | 7560 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 7561 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
7562 | R: Steven Rostedt <rostedt@goodmis.org> |
7563 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7564 | R: Lai Jiangshan <laijs@cn.fujitsu.com> | |
981c3a4f | 7565 | L: linux-kernel@vger.kernel.org |
9fab9787 | 7566 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7567 | S: Supported |
08deed1e | 7568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7569 | F: Documentation/RCU/ |
9fab9787 | 7570 | X: Documentation/RCU/torture.txt |
f9094d8e | 7571 | F: include/linux/rcu* |
4102adab PM |
7572 | X: include/linux/srcu.h |
7573 | F: kernel/rcu/ | |
34e2d560 | 7574 | X: kernel/torture.c |
595182bc | 7575 | |
0c86edc0 | 7576 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7577 | M: Alessandro Zummo <a.zummo@towertech.it> |
76465493 | 7578 | L: rtc-linux@googlegroups.com |
8a6e2535 | 7579 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7580 | S: Maintained |
679655da JP |
7581 | F: Documentation/rtc.txt |
7582 | F: drivers/rtc/ | |
7583 | F: include/linux/rtc.h | |
c117ab84 | 7584 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7585 | |
0e400c53 MB |
7586 | REALTEK AUDIO CODECS |
7587 | M: Bard Liao <bardliao@realtek.com> | |
7588 | M: Oder Chiou <oder_chiou@realtek.com> | |
7589 | S: Maintained | |
7590 | F: sound/soc/codecs/rt* | |
7591 | F: include/sound/rt*.h | |
7592 | ||
1da177e4 | 7593 | REISERFS FILE SYSTEM |
76c4e5ea | 7594 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 7595 | S: Supported |
679655da | 7596 | F: fs/reiserfs/ |
1da177e4 | 7597 | |
b83a313b | 7598 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7599 | M: Mark Brown <broonie@kernel.org> |
b83a313b MB |
7600 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7601 | S: Supported | |
7602 | F: drivers/base/regmap/ | |
7603 | F: include/linux/regmap.h | |
7604 | ||
400e64df OBC |
7605 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7606 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 7607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7608 | S: Maintained |
7609 | F: drivers/remoteproc/ | |
7610 | F: Documentation/remoteproc.txt | |
6fc26488 | 7611 | F: include/linux/remoteproc.h |
400e64df | 7612 | |
d8115db5 OBC |
7613 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7614 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7615 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7616 | S: Maintained | |
7617 | F: drivers/rpmsg/ | |
7618 | F: Documentation/rpmsg.txt | |
7619 | F: include/linux/rpmsg.h | |
7620 | ||
1b0fe6be PZ |
7621 | RESET CONTROLLER FRAMEWORK |
7622 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
7623 | S: Maintained | |
7624 | F: drivers/reset/ | |
7625 | F: Documentation/devicetree/bindings/reset/ | |
7626 | F: include/linux/reset.h | |
7627 | F: include/linux/reset-controller.h | |
7628 | ||
e0897645 | 7629 | RFKILL |
8b58be88 | 7630 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 7631 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
7632 | W: http://wireless.kernel.org/ |
7633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7635 | S: Maintained |
505c9247 | 7636 | F: Documentation/rfkill.txt |
80811493 | 7637 | F: net/rfkill/ |
e0897645 | 7638 | |
67e054e9 ML |
7639 | RICOH SMARTMEDIA/XD DRIVER |
7640 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7641 | S: Maintained | |
21c26f50 JP |
7642 | F: drivers/mtd/nand/r852.c |
7643 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7644 | |
92634125 ML |
7645 | RICOH R5C592 MEMORYSTICK DRIVER |
7646 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7647 | S: Maintained | |
7648 | F: drivers/memstick/host/r592.* | |
7649 | ||
27f1d2f9 SA |
7650 | ROCCAT DRIVERS |
7651 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
7652 | W: http://sourceforge.net/projects/roccat/ | |
7653 | S: Maintained | |
7654 | F: drivers/hid/hid-roccat* | |
7655 | F: include/linux/hid-roccat* | |
7656 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7657 | ||
1da177e4 LT |
7658 | ROCKETPORT DRIVER |
7659 | P: Comtrol Corp. | |
1da177e4 LT |
7660 | W: http://www.comtrol.com |
7661 | S: Maintained | |
679655da | 7662 | F: Documentation/serial/rocket.txt |
c897401b | 7663 | F: drivers/tty/rocket* |
1da177e4 LT |
7664 | |
7665 | ROSE NETWORK LAYER | |
8b58be88 | 7666 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7667 | L: linux-hams@vger.kernel.org |
d34cb28a | 7668 | W: http://www.linux-ax25.org/ |
1da177e4 | 7669 | S: Maintained |
679655da | 7670 | F: include/net/rose.h |
c117ab84 | 7671 | F: include/uapi/linux/rose.h |
679655da | 7672 | F: net/rose/ |
1da177e4 | 7673 | |
91952bc0 AP |
7674 | RTL2830 MEDIA DRIVER |
7675 | M: Antti Palosaari <crope@iki.fi> | |
7676 | L: linux-media@vger.kernel.org | |
7677 | W: http://linuxtv.org/ | |
7678 | W: http://palosaari.fi/linux/ | |
7679 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7680 | T: git git://linuxtv.org/anttip/media_tree.git | |
7681 | S: Maintained | |
7682 | F: drivers/media/dvb-frontends/rtl2830* | |
7683 | ||
27a0aacf AP |
7684 | RTL2832 MEDIA DRIVER |
7685 | M: Antti Palosaari <crope@iki.fi> | |
7686 | L: linux-media@vger.kernel.org | |
7687 | W: http://linuxtv.org/ | |
7688 | W: http://palosaari.fi/linux/ | |
7689 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7690 | T: git git://linuxtv.org/anttip/media_tree.git | |
7691 | S: Maintained | |
7692 | F: drivers/media/dvb-frontends/rtl2832* | |
7693 | ||
ba6e6f6e AP |
7694 | RTL2832_SDR MEDIA DRIVER |
7695 | M: Antti Palosaari <crope@iki.fi> | |
7696 | L: linux-media@vger.kernel.org | |
7697 | W: http://linuxtv.org/ | |
7698 | W: http://palosaari.fi/linux/ | |
7699 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7700 | T: git git://linuxtv.org/anttip/media_tree.git | |
7701 | S: Maintained | |
b4bb1c28 | 7702 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 7703 | |
59840488 | 7704 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7705 | M: "John W. Linville" <linville@tuxdriver.com> |
605bebe2 | 7706 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7707 | W: http://wireless.kernel.org/ |
54e5881d | 7708 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7709 | S: Maintained |
3cfeb0c3 | 7710 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7711 | |
59840488 | 7712 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7713 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
7714 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
7715 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 7716 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7717 | W: http://wireless.kernel.org/ |
54e5881d | 7718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7719 | S: Maintained |
3cfeb0c3 | 7720 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7721 | |
3cf0c8ad LF |
7722 | RTL8192CE WIRELESS DRIVER |
7723 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7724 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
7725 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 7726 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7728 | S: Maintained | |
7729 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7730 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7731 | |
9eb8ef74 | 7732 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7733 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7734 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7735 | S: Maintained |
8a61f013 | 7736 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 7737 | |
1da177e4 | 7738 | S390 |
8b58be88 JP |
7739 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
7740 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
1da177e4 | 7741 | M: linux390@de.ibm.com |
d58140cc | 7742 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7743 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7744 | S: Supported | |
679655da | 7745 | F: arch/s390/ |
a968cd3e | 7746 | F: drivers/s390/ |
3bfe6858 JN |
7747 | F: Documentation/s390/ |
7748 | F: Documentation/DocBook/s390* | |
5238da45 | 7749 | |
322986ca SO |
7750 | S390 COMMON I/O LAYER |
7751 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7752 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
7753 | L: linux-s390@vger.kernel.org | |
7754 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7755 | S: Supported | |
7756 | F: drivers/s390/cio/ | |
7757 | ||
7758 | S390 DASD DRIVER | |
7759 | M: Stefan Weinhuber <wein@de.ibm.com> | |
7760 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
7761 | L: linux-s390@vger.kernel.org | |
7762 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7763 | S: Supported | |
7764 | F: drivers/s390/block/dasd* | |
7765 | F: block/partitions/ibm.c | |
7766 | ||
5238da45 | 7767 | S390 NETWORK DRIVERS |
8b58be88 JP |
7768 | M: Ursula Braun <ursula.braun@de.ibm.com> |
7769 | M: Frank Blaschka <blaschka@linux.vnet.ibm.com> | |
5238da45 | 7770 | M: linux390@de.ibm.com |
d58140cc | 7771 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7772 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7773 | S: Supported | |
679655da | 7774 | F: drivers/s390/net/ |
5238da45 | 7775 | |
322986ca SO |
7776 | S390 PCI SUBSYSTEM |
7777 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7778 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
7779 | L: linux-s390@vger.kernel.org | |
7780 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7781 | S: Supported | |
7782 | F: arch/s390/pci/ | |
7783 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
7784 | ||
feed9b62 | 7785 | S390 ZCRYPT DRIVER |
5c8d0983 | 7786 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 FB |
7787 | M: linux390@de.ibm.com |
7788 | L: linux-s390@vger.kernel.org | |
a968cd3e | 7789 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7790 | S: Supported |
d5ca6918 | 7791 | F: drivers/s390/crypto/ |
feed9b62 | 7792 | |
5238da45 | 7793 | S390 ZFCP DRIVER |
d38e19d0 | 7794 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
5238da45 | 7795 | M: linux390@de.ibm.com |
d58140cc | 7796 | L: linux-s390@vger.kernel.org |
5238da45 | 7797 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7798 | S: Supported |
679655da | 7799 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7800 | |
dd96df2c | 7801 | S390 IUCV NETWORK LAYER |
8b58be88 | 7802 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
7803 | M: linux390@de.ibm.com |
7804 | L: linux-s390@vger.kernel.org | |
7805 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7806 | S: Supported | |
679655da JP |
7807 | F: drivers/s390/net/*iucv* |
7808 | F: include/net/iucv/ | |
7809 | F: net/iucv/ | |
dd96df2c | 7810 | |
4dde7f75 | 7811 | S3C24XX SD/MMC Driver |
8b58be88 | 7812 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 7813 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 7814 | S: Supported |
679655da | 7815 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7816 | |
1f15a229 HV |
7817 | SAA6588 RDS RECEIVER DRIVER |
7818 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7819 | L: linux-media@vger.kernel.org | |
7820 | T: git git://linuxtv.org/media_tree.git | |
7821 | W: http://linuxtv.org | |
7822 | S: Odd Fixes | |
7823 | F: drivers/media/i2c/saa6588* | |
7824 | ||
98ed12e6 | 7825 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7826 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
98ed12e6 MCC |
7827 | L: linux-media@vger.kernel.org |
7828 | W: http://linuxtv.org | |
7829 | T: git git://linuxtv.org/media_tree.git | |
7830 | S: Odd fixes | |
e42bf501 | 7831 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7832 | F: drivers/media/pci/saa7134/ |
7833 | ||
1da177e4 | 7834 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7835 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 7836 | L: linux-media@vger.kernel.org |
275ffde4 | 7837 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7838 | S: Maintained |
90d72ac6 MCC |
7839 | F: drivers/media/common/saa7146/ |
7840 | F: drivers/media/pci/saa7146/ | |
7841 | F: include/media/saa7146* | |
1da177e4 | 7842 | |
92304a40 | 7843 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7844 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
7845 | L: platform-driver-x86@vger.kernel.org |
7846 | S: Maintained | |
7847 | F: drivers/platform/x86/samsung-laptop.c | |
7848 | ||
4a109cc0 | 7849 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7850 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
7851 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7852 | S: Supported | |
14430813 | 7853 | F: sound/soc/samsung/ |
4a109cc0 | 7854 | |
0d89a28b JH |
7855 | SAMSUNG FRAMEBUFFER DRIVER |
7856 | M: Jingoo Han <jg1.han@samsung.com> | |
7857 | L: linux-fbdev@vger.kernel.org | |
7858 | S: Maintained | |
8a61f013 | 7859 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 7860 | |
f69d3a17 SK |
7861 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7862 | M: Sangbeom Kim <sbkim73@samsung.com> | |
7863 | L: linux-kernel@vger.kernel.org | |
7864 | S: Supported | |
7865 | F: drivers/mfd/sec*.c | |
7866 | F: drivers/regulator/s2m*.c | |
7867 | F: drivers/regulator/s5m*.c | |
7868 | F: drivers/rtc/rtc-sec.c | |
7869 | F: include/linux/mfd/samsung/ | |
7870 | ||
038f5c4b SN |
7871 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7872 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7873 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
7874 | L: linux-media@vger.kernel.org | |
7875 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7876 | S: Supported | |
7877 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 7878 | |
6fd86ab2 SN |
7879 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7880 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
7881 | L: linux-media@vger.kernel.org | |
7882 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7883 | S: Maintained | |
7884 | F: drivers/media/platform/s3c-camif/ | |
7885 | F: include/media/s3c_camif.h | |
7886 | ||
b84ef24e AH |
7887 | SAMSUNG S5C73M3 CAMERA DRIVER |
7888 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7889 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7890 | L: linux-media@vger.kernel.org | |
7891 | S: Supported | |
7892 | F: drivers/media/i2c/s5c73m3/* | |
7893 | ||
7d459937 AH |
7894 | SAMSUNG S5K5BAF CAMERA DRIVER |
7895 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7896 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7897 | L: linux-media@vger.kernel.org | |
7898 | S: Supported | |
7899 | F: drivers/media/i2c/s5k5baf.c | |
7900 | ||
310e39c9 TF |
7901 | SAMSUNG SOC CLOCK DRIVERS |
7902 | M: Tomasz Figa <t.figa@samsung.com> | |
7903 | S: Supported | |
7904 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7905 | F: drivers/clk/samsung/ | |
7906 | ||
66890ed6 BA |
7907 | SAMSUNG SXGBE DRIVERS |
7908 | M: Byungho An <bh74.an@samsung.com> | |
7909 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
7910 | M: Vipul Pandya <vipul.pandya@samsung.com> |
7911 | S: Supported | |
7912 | L: netdev@vger.kernel.org | |
7913 | F: drivers/net/ethernet/samsung/sxgbe/ | |
7914 | ||
ca749e2a | 7915 | SERIAL DRIVERS |
5e30bbb7 | 7916 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 7917 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 7918 | S: Maintained |
14430813 | 7919 | F: drivers/tty/serial/ |
ca749e2a | 7920 | |
aecb7b64 | 7921 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7922 | M: Viresh Kumar <viresh.linux@gmail.com> |
337ae47c | 7923 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 VK |
7924 | S: Maintained |
7925 | F: include/linux/dw_dmac.h | |
61a76496 | 7926 | F: drivers/dma/dw/ |
aecb7b64 | 7927 | |
f9e37137 SJ |
7928 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7929 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
7930 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
7931 | L: linux-mmc@vger.kernel.org | |
7932 | S: Maintained | |
7933 | F: include/linux/mmc/dw_mmc.h | |
7934 | F: drivers/mmc/host/dw_mmc* | |
7935 | ||
1db121d6 AN |
7936 | THUNDERBOLT DRIVER |
7937 | M: Andreas Noever <andreas.noever@gmail.com> | |
7938 | S: Maintained | |
7939 | F: drivers/thunderbolt/ | |
7940 | ||
9222d247 | 7941 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7942 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 7943 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 7944 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7946 | S: Supported |
7947 | F: include/linux/clocksource.h | |
7948 | F: include/linux/time.h | |
7949 | F: include/linux/timex.h | |
c117ab84 CEB |
7950 | F: include/uapi/linux/time.h |
7951 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7952 | F: kernel/time/clocksource.c |
7953 | F: kernel/time/time*.c | |
7954 | F: kernel/time/ntp.c | |
7955 | ||
5b3f03f0 | 7956 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7957 | M: Huang Shijie <shijie8@gmail.com> |
a545e2ea HV |
7958 | M: Hans Verkuil <hverkuil@xs4all.nl> |
7959 | S: Odd Fixes | |
14430813 | 7960 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7961 | |
1da177e4 | 7962 | SC1200 WDT DRIVER |
b300645a | 7963 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 7964 | S: Maintained |
679655da | 7965 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7966 | |
7967 | SCHEDULER | |
dd9b238c | 7968 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 7969 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 7970 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7972 | S: Maintained |
95c0d71d | 7973 | F: kernel/sched/ |
679655da | 7974 | F: include/linux/sched.h |
c117ab84 | 7975 | F: include/uapi/linux/sched.h |
c2eb505b | 7976 | F: include/linux/wait.h |
1da177e4 | 7977 | |
6bcf6737 | 7978 | SCORE ARCHITECTURE |
ed38665e | 7979 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 7980 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 7981 | W: http://www.sunplus.com |
6bcf6737 | 7982 | S: Supported |
a2681a75 | 7983 | F: arch/score/ |
6bcf6737 | 7984 | |
1da177e4 | 7985 | SCSI CDROM DRIVER |
8b58be88 | 7986 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
7987 | L: linux-scsi@vger.kernel.org |
7988 | W: http://www.kernel.dk | |
7989 | S: Maintained | |
679655da | 7990 | F: drivers/scsi/sr* |
1da177e4 | 7991 | |
fb50a83d | 7992 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 7993 | M: Bart Van Assche <bvanassche@acm.org> |
fb50a83d RD |
7994 | L: linux-rdma@vger.kernel.org |
7995 | S: Supported | |
7996 | W: http://www.openfabrics.org | |
7997 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7999 | F: drivers/infiniband/ulp/srp/ | |
8000 | F: include/scsi/srp.h | |
8001 | ||
1da177e4 | 8002 | SCSI SG DRIVER |
8b58be88 | 8003 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 8004 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 8005 | W: http://sg.danny.cz/sg |
1da177e4 | 8006 | S: Maintained |
59ab3c93 | 8007 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
8008 | F: drivers/scsi/sg.c |
8009 | F: include/scsi/sg.h | |
1da177e4 LT |
8010 | |
8011 | SCSI SUBSYSTEM | |
c95286d8 | 8012 | M: "James E.J. Bottomley" <JBottomley@parallels.com> |
1da177e4 | 8013 | L: linux-scsi@vger.kernel.org |
54e5881d JP |
8014 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
8015 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
8016 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 8017 | S: Maintained |
679655da JP |
8018 | F: drivers/scsi/ |
8019 | F: include/scsi/ | |
1da177e4 LT |
8020 | |
8021 | SCSI TAPE DRIVER | |
8b58be88 | 8022 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
8023 | L: linux-scsi@vger.kernel.org |
8024 | S: Maintained | |
679655da | 8025 | F: Documentation/scsi/st.txt |
f7269cfc JD |
8026 | F: drivers/scsi/st.* |
8027 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
8028 | |
8029 | SCTP PROTOCOL | |
8b6efb75 | 8030 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 8031 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 8032 | L: linux-sctp@vger.kernel.org |
5f85813c | 8033 | W: http://lksctp.sourceforge.net |
8b6efb75 | 8034 | S: Maintained |
679655da JP |
8035 | F: Documentation/networking/sctp.txt |
8036 | F: include/linux/sctp.h | |
4d58c025 | 8037 | F: include/uapi/linux/sctp.h |
679655da JP |
8038 | F: include/net/sctp/ |
8039 | F: net/sctp/ | |
1da177e4 LT |
8040 | |
8041 | SCx200 CPU SUPPORT | |
8b58be88 | 8042 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8043 | S: Odd Fixes |
679655da | 8044 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 8045 | F: arch/x86/platform/scx200/ |
679655da JP |
8046 | F: drivers/watchdog/scx200_wdt.c |
8047 | F: drivers/i2c/busses/scx200* | |
8048 | F: drivers/mtd/maps/scx200_docflash.c | |
8049 | F: include/linux/scx200.h | |
1662d32c JC |
8050 | |
8051 | SCx200 GPIO DRIVER | |
8b58be88 | 8052 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8053 | S: Maintained |
679655da JP |
8054 | F: drivers/char/scx200_gpio.c |
8055 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
8056 | |
8057 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 8058 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8059 | S: Maintained |
679655da | 8060 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 8061 | |
6a36913a | 8062 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 8063 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
8064 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
8065 | S: Maintained | |
679655da | 8066 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 8067 | |
e7839f25 | 8068 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 8069 | M: Chris Ball <chris@printf.net> |
7a241d6e | 8070 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
8071 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
8072 | S: Maintained | |
7a241d6e | 8073 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 8074 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 8075 | |
c04f9d61 KC |
8076 | SECURE COMPUTING |
8077 | M: Kees Cook <keescook@chromium.org> | |
8078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp | |
8079 | S: Supported | |
8080 | F: kernel/seccomp.c | |
8081 | F: include/uapi/linux/seccomp.h | |
8082 | F: include/linux/seccomp.h | |
8083 | K: \bsecure_computing | |
8084 | K: \bTIF_SECCOMP\b | |
8085 | ||
3085e9c1 | 8086 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 8087 | M: Anton Vorontsov <anton@enomsg.org> |
a4724ed6 | 8088 | L: linuxppc-dev@lists.ozlabs.org |
7a241d6e | 8089 | L: linux-mmc@vger.kernel.org |
e2d1d6c0 | 8090 | S: Maintained |
d4a45787 | 8091 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 8092 | |
0d1bb41a | 8093 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 8094 | M: Ben Dooks <ben-linux@fluff.org> |
7a241d6e | 8095 | L: linux-mmc@vger.kernel.org |
0d1bb41a BD |
8096 | S: Maintained |
8097 | F: drivers/mmc/host/sdhci-s3c.c | |
8098 | ||
c63b3cba | 8099 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 8100 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 | 8101 | L: spear-devel@list.st.com |
c63b3cba VK |
8102 | L: linux-mmc@vger.kernel.org |
8103 | S: Maintained | |
8104 | F: drivers/mmc/host/sdhci-spear.c | |
8105 | ||
8711cca2 | 8106 | SECURITY SUBSYSTEM |
9b45c0d2 | 8107 | M: James Morris <james.l.morris@oracle.com> |
70b4a259 | 8108 | M: Serge E. Hallyn <serge@hallyn.com> |
8711cca2 | 8109 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 8110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 8111 | W: http://kernsec.org/ |
8711cca2 | 8112 | S: Supported |
7d2c86b5 | 8113 | F: security/ |
8711cca2 | 8114 | |
1da177e4 | 8115 | SECURITY CONTACT |
8b58be88 | 8116 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
8117 | S: Supported |
8118 | ||
8119 | SELINUX SECURITY MODULE | |
e0238b4c | 8120 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 8121 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 8122 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 8123 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 8124 | W: http://selinuxproject.org |
5a5f2acf | 8125 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 8126 | S: Supported |
679655da JP |
8127 | F: include/linux/selinux* |
8128 | F: security/selinux/ | |
6bde95ce | 8129 | F: scripts/selinux/ |
1da177e4 | 8130 | |
c1c124e9 JJ |
8131 | APPARMOR SECURITY MODULE |
8132 | M: John Johansen <john.johansen@canonical.com> | |
8133 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
8134 | W: apparmor.wiki.kernel.org | |
8135 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
8136 | S: Supported | |
8137 | F: security/apparmor/ | |
8138 | ||
cef2cf07 | 8139 | SENSABLE PHANTOM |
8b58be88 | 8140 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 8141 | S: Maintained |
679655da | 8142 | F: drivers/misc/phantom.c |
c117ab84 | 8143 | F: include/uapi/linux/phantom.h |
cef2cf07 | 8144 | |
4480f15b | 8145 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 8146 | M: Tejun Heo <tj@kernel.org> |
1da177e4 | 8147 | L: linux-ide@vger.kernel.org |
3d9b9350 | 8148 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 8149 | S: Supported |
d5ca6918 JP |
8150 | F: drivers/ata/ |
8151 | F: include/linux/ata.h | |
8152 | F: include/linux/libata.h | |
1da177e4 | 8153 | |
7188b067 HG |
8154 | SERIAL ATA AHCI PLATFORM devices support |
8155 | M: Hans de Goede <hdegoede@redhat.com> | |
8156 | M: Tejun Heo <tj@kernel.org> | |
8157 | L: linux-ide@vger.kernel.org | |
8158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
8159 | S: Supported | |
8160 | F: drivers/ata/ahci_platform.c | |
8161 | F: drivers/ata/libahci_platform.c | |
8162 | F: include/linux/ahci_platform.h | |
8163 | ||
6733b39a | 8164 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 8165 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
3387f656 | 8166 | L: linux-scsi@vger.kernel.org |
0ca43cc0 | 8167 | W: http://www.emulex.com |
3387f656 JP |
8168 | S: Supported |
8169 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 8170 | |
6b7c5b94 | 8171 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
8172 | M: Sathya Perla <sathya.perla@emulex.com> |
8173 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> | |
8174 | M: Ajit Khaparde <ajit.khaparde@emulex.com> | |
7d2c86b5 | 8175 | L: netdev@vger.kernel.org |
fea3af67 | 8176 | W: http://www.emulex.com |
7d2c86b5 | 8177 | S: Supported |
9aebddd1 | 8178 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 8179 | |
8ceee660 | 8180 | SFC NETWORK DRIVER |
c06f51ea | 8181 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 8182 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 8183 | L: netdev@vger.kernel.org |
8ceee660 | 8184 | S: Supported |
874aeea5 | 8185 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 8186 | |
e2d1d6c0 | 8187 | SGI GRU DRIVER |
cc883afc | 8188 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 8189 | S: Maintained |
679655da | 8190 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
8191 | |
8192 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 8193 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
8194 | L: linux-ia64@vger.kernel.org |
8195 | S: Supported | |
679655da | 8196 | F: Documentation/ia64/serial.txt |
df621252 | 8197 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 8198 | F: include/linux/ioc?.h |
e2d1d6c0 | 8199 | |
75312619 | 8200 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
8201 | M: Cliff Whickman <cpw@sgi.com> |
8202 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 8203 | S: Maintained |
679655da | 8204 | F: drivers/misc/sgi-xp/ |
75312619 | 8205 | |
46eacf3b AP |
8206 | SI2157 MEDIA DRIVER |
8207 | M: Antti Palosaari <crope@iki.fi> | |
8208 | L: linux-media@vger.kernel.org | |
8209 | W: http://linuxtv.org/ | |
8210 | W: http://palosaari.fi/linux/ | |
8211 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8212 | T: git git://linuxtv.org/anttip/media_tree.git | |
8213 | S: Maintained | |
8214 | F: drivers/media/tuners/si2157* | |
8215 | ||
75e2d5ba AP |
8216 | SI2168 MEDIA DRIVER |
8217 | M: Antti Palosaari <crope@iki.fi> | |
8218 | L: linux-media@vger.kernel.org | |
8219 | W: http://linuxtv.org/ | |
8220 | W: http://palosaari.fi/linux/ | |
8221 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8222 | T: git git://linuxtv.org/anttip/media_tree.git | |
8223 | S: Maintained | |
8224 | F: drivers/media/dvb-frontends/si2168* | |
8225 | ||
49cc629d HV |
8226 | SI470X FM RADIO RECEIVER I2C DRIVER |
8227 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8228 | L: linux-media@vger.kernel.org | |
8229 | T: git git://linuxtv.org/media_tree.git | |
8230 | W: http://linuxtv.org | |
8231 | S: Odd Fixes | |
8232 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
8233 | ||
8234 | SI470X FM RADIO RECEIVER USB DRIVER | |
8235 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8236 | L: linux-media@vger.kernel.org | |
8237 | T: git git://linuxtv.org/media_tree.git | |
8238 | W: http://linuxtv.org | |
8239 | S: Maintained | |
8240 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
8241 | F: drivers/media/radio/si470x/radio-si470x.h | |
8242 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
8243 | ||
c937ca03 EV |
8244 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
8245 | M: Eduardo Valentin <edubezval@gmail.com> | |
8246 | L: linux-media@vger.kernel.org | |
8247 | T: git git://linuxtv.org/media_tree.git | |
8248 | W: http://linuxtv.org | |
8249 | S: Odd Fixes | |
99995ded | 8250 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
8251 | |
8252 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
8253 | M: Eduardo Valentin <edubezval@gmail.com> | |
8254 | L: linux-media@vger.kernel.org | |
8255 | T: git git://linuxtv.org/media_tree.git | |
8256 | W: http://linuxtv.org | |
8257 | S: Odd Fixes | |
99995ded DR |
8258 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
8259 | ||
8260 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
8261 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8262 | L: linux-media@vger.kernel.org | |
8263 | T: git git://linuxtv.org/media_tree.git | |
8264 | W: http://linuxtv.org | |
8265 | S: Maintained | |
8266 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 8267 | |
beb91d46 | 8268 | SIANO DVB DRIVER |
1b2c14b4 | 8269 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
beb91d46 MCC |
8270 | L: linux-media@vger.kernel.org |
8271 | W: http://linuxtv.org | |
8272 | T: git git://linuxtv.org/media_tree.git | |
8273 | S: Odd fixes | |
8274 | F: drivers/media/common/siano/ | |
beb91d46 | 8275 | F: drivers/media/usb/siano/ |
beb91d46 | 8276 | F: drivers/media/usb/siano/ |
14430813 | 8277 | F: drivers/media/mmc/siano/ |
beb91d46 | 8278 | |
b618b69c | 8279 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 8280 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8281 | S: Orphan |
b618b69c | 8282 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
8283 | |
8284 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 8285 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8286 | S: Orphan |
b618b69c GL |
8287 | F: drivers/media/platform/sh_vou.c |
8288 | F: include/media/sh_vou.h | |
8289 | ||
6349d997 | 8290 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 8291 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
8292 | L: sfi-devel@simplefirmware.org |
8293 | W: http://simplefirmware.org/ | |
8294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 8295 | S: Supported |
943fc810 | 8296 | F: arch/x86/platform/sfi/ |
6349d997 LB |
8297 | F: drivers/sfi/ |
8298 | F: include/linux/sfi*.h | |
e2d1d6c0 | 8299 | |
1da177e4 LT |
8300 | SIMTEC EB110ATX (Chalice CATS) |
8301 | P: Ben Dooks | |
b16957c6 BD |
8302 | P: Vincent Sanders <vince@simtec.co.uk> |
8303 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8304 | W: http://www.simtec.co.uk/products/EB110ATX/ |
8305 | S: Supported | |
8306 | ||
8307 | SIMTEC EB2410ITX (BAST) | |
8308 | P: Ben Dooks | |
b16957c6 BD |
8309 | P: Vincent Sanders <vince@simtec.co.uk> |
8310 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8311 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
8312 | S: Supported | |
15dba387 JP |
8313 | F: arch/arm/mach-s3c24xx/mach-bast.c |
8314 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
8315 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 8316 | |
4c5adde7 | 8317 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 8318 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 8319 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f296ed78 | 8320 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) |
c9f46a85 | 8321 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 8322 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 8323 | S: Supported |
14430813 | 8324 | F: arch/arm/mach-davinci/ |
046d0a37 | 8325 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 8326 | |
8d4b3f08 | 8327 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 8328 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
8d4b3f08 LP |
8329 | L: linux-media@vger.kernel.org |
8330 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) | |
8331 | W: http://linuxtv.org/ | |
8332 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8333 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 8334 | S: Maintained |
8d4b3f08 LP |
8335 | F: drivers/media/platform/davinci/ |
8336 | F: include/media/davinci/ | |
8337 | ||
92aab3c0 | 8338 | SIS 190 ETHERNET DRIVER |
8b58be88 | 8339 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
8340 | L: netdev@vger.kernel.org |
8341 | S: Maintained | |
8c7de408 | 8342 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 8343 | |
1da177e4 | 8344 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 8345 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 8346 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 8347 | L: netdev@vger.kernel.org |
1da177e4 | 8348 | S: Maintained |
8c7de408 | 8349 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
8350 | |
8351 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 8352 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 8353 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 8354 | S: Maintained |
679655da | 8355 | F: Documentation/fb/sisfb.txt |
8a61f013 | 8356 | F: drivers/video/fbdev/sis/ |
679655da | 8357 | F: include/video/sisfb.h |
1da177e4 LT |
8358 | |
8359 | SIS USB2VGA DRIVER | |
8b58be88 | 8360 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
8361 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
8362 | S: Maintained | |
679655da | 8363 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 8364 | |
415ad26d | 8365 | SLAB ALLOCATOR |
16e943bf | 8366 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 8367 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
8368 | M: David Rientjes <rientjes@google.com> |
8369 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
8370 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
8371 | L: linux-mm@kvack.org |
8372 | S: Maintained | |
679655da | 8373 | F: include/linux/sl?b*.h |
16e943bf | 8374 | F: mm/sl?b* |
415ad26d | 8375 | |
9fab9787 PM |
8376 | SLEEPABLE READ-COPY UPDATE (SRCU) |
8377 | M: Lai Jiangshan <laijs@cn.fujitsu.com> | |
8378 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 8379 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8380 | R: Steven Rostedt <rostedt@goodmis.org> |
8381 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 8382 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
8383 | W: http://www.rdrop.com/users/paulmck/RCU/ |
8384 | S: Supported | |
8385 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
8386 | F: include/linux/srcu.h |
8387 | F: kernel/rcu/srcu.c | |
9fab9787 | 8388 | |
66372841 CS |
8389 | SMACK SECURITY MODULE |
8390 | M: Casey Schaufler <casey@schaufler-ca.com> | |
8391 | L: linux-security-module@vger.kernel.org | |
8392 | W: http://schaufler-ca.com | |
8393 | T: git git://git.gitorious.org/smack-next/kernel.git | |
8394 | S: Maintained | |
8395 | F: Documentation/security/Smack.txt | |
8396 | F: security/smack/ | |
8397 | ||
68ace3e1 KH |
8398 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
8399 | M: Kevin Hilman <khilman@kernel.org> | |
8400 | M: Nishanth Menon <nm@ti.com> | |
8401 | S: Maintained | |
8402 | F: drivers/power/avs/smartreflex.c | |
8403 | F: include/linux/power/smartreflex.h | |
8404 | L: linux-pm@vger.kernel.org | |
8405 | ||
1da177e4 | 8406 | SMC91x ETHERNET DRIVER |
2f82af08 | 8407 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 8408 | S: Odd Fixes |
ae150435 | 8409 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 8410 | |
e8e31622 SA |
8411 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
8412 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
8413 | L: linux-media@vger.kernel.org | |
8414 | S: Maintained | |
14430813 | 8415 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
8416 | F: include/media/smiapp.h |
8417 | F: drivers/media/i2c/smiapp-pll.c | |
8418 | F: drivers/media/i2c/smiapp-pll.h | |
8419 | ||
920fa1ff GR |
8420 | SMM665 HARDWARE MONITOR DRIVER |
8421 | M: Guenter Roeck <linux@roeck-us.net> | |
8422 | L: lm-sensors@lm-sensors.org | |
8423 | S: Maintained | |
8424 | F: Documentation/hwmon/smm665 | |
8425 | F: drivers/hwmon/smm665.c | |
8426 | ||
9df7305b | 8427 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 8428 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 8429 | L: lm-sensors@lm-sensors.org |
90b24cfb | 8430 | S: Maintained |
9df7305b SG |
8431 | F: Documentation/hwmon/emc2103 |
8432 | F: drivers/hwmon/emc2103.c | |
8433 | ||
a98d506c HG |
8434 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
8435 | M: Hans de Goede <hdegoede@redhat.com> | |
8436 | L: lm-sensors@lm-sensors.org | |
8437 | S: Supported | |
8438 | F: Documentation/hwmon/sch5627 | |
8439 | F: drivers/hwmon/sch5627.c | |
8440 | ||
6ea884db | 8441 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 8442 | M: Jean Delvare <jdelvare@suse.de> |
6ea884db MH |
8443 | L: lm-sensors@lm-sensors.org |
8444 | S: Maintained | |
679655da JP |
8445 | F: Documentation/hwmon/smsc47b397 |
8446 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 8447 | |
fd9abb3d | 8448 | SMSC911x ETHERNET DRIVER |
90b24cfb | 8449 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 8450 | L: netdev@vger.kernel.org |
90b24cfb | 8451 | S: Maintained |
679655da | 8452 | F: include/linux/smsc911x.h |
ae150435 | 8453 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
8454 | |
8455 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8456 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 8457 | L: netdev@vger.kernel.org |
90b24cfb | 8458 | S: Maintained |
ae150435 | 8459 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8460 | |
3c8a63e2 | 8461 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8462 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 8463 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 8464 | S: Maintained |
8a61f013 | 8465 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 8466 | |
668acf32 | 8467 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8468 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 8469 | L: linux-media@vger.kernel.org |
275ffde4 | 8470 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8471 | S: Maintained |
90d72ac6 MCC |
8472 | F: include/media/soc* |
8473 | F: drivers/media/i2c/soc_camera/ | |
8474 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8475 | |
e2d1d6c0 | 8476 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8477 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 8478 | S: Maintained |
679655da | 8479 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8480 | |
e3994db1 JP |
8481 | SOFTLOGIC 6x10 MPEG CODEC |
8482 | M: Ismael Luceno <ismael.luceno@corp.bluecherry.net> | |
8483 | L: linux-media@vger.kernel.org | |
8484 | S: Supported | |
8485 | F: drivers/media/pci/solo6x10/ | |
8486 | ||
1da177e4 | 8487 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8488 | M: Neil Brown <neilb@suse.de> |
1da177e4 | 8489 | L: linux-raid@vger.kernel.org |
524418bb | 8490 | S: Supported |
679655da JP |
8491 | F: drivers/md/ |
8492 | F: include/linux/raid/ | |
c117ab84 | 8493 | F: include/uapi/linux/raid/ |
1da177e4 | 8494 | |
1da177e4 | 8495 | SONIC NETWORK DRIVER |
8b58be88 | 8496 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 8497 | L: netdev@vger.kernel.org |
1da177e4 | 8498 | S: Maintained |
d9fb9f38 | 8499 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8500 | |
61e115a5 | 8501 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8502 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
8503 | L: netdev@vger.kernel.org |
8504 | S: Maintained | |
679655da JP |
8505 | F: drivers/ssb/ |
8506 | F: include/linux/ssb/ | |
61e115a5 | 8507 | |
1da177e4 | 8508 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8509 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 8510 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 8511 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8512 | S: Maintained |
679655da JP |
8513 | F: Documentation/laptops/sony-laptop.txt |
8514 | F: drivers/char/sonypi.c | |
8515 | F: drivers/platform/x86/sony-laptop.c | |
8516 | F: include/linux/sony-laptop.h | |
1da177e4 | 8517 | |
baf8532a | 8518 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8519 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
8520 | W: http://tifmxx.berlios.de/ |
8521 | S: Maintained | |
679655da | 8522 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8523 | |
0ab30494 ML |
8524 | SONY MEMORYSTICK STANDARD SUPPORT |
8525 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8526 | S: Maintained | |
8527 | F: drivers/memstick/core/ms_block.* | |
8528 | ||
1da177e4 | 8529 | SOUND |
8b58be88 JP |
8530 | M: Jaroslav Kysela <perex@perex.cz> |
8531 | M: Takashi Iwai <tiwai@suse.de> | |
93711660 | 8532 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 8533 | W: http://www.alsa-project.org/ |
dde7ad8d | 8534 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8535 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 8536 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 8537 | S: Maintained |
3126a179 JP |
8538 | F: Documentation/sound/ |
8539 | F: include/sound/ | |
c117ab84 | 8540 | F: include/uapi/sound/ |
679655da | 8541 | F: sound/ |
1da177e4 | 8542 | |
33bbe149 MB |
8543 | SOUND - COMPRESSED AUDIO |
8544 | M: Vinod Koul <vinod.koul@intel.com> | |
8545 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8546 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8547 | S: Supported | |
f672f31a | 8548 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8549 | F: include/sound/compress_driver.h |
f672f31a | 8550 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8551 | F: sound/core/compress_offload.c |
8552 | F: sound/soc/soc-compress.c | |
8553 | ||
bd903bde | 8554 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8555 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 8556 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 8557 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8558 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 8559 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8560 | S: Supported |
2820f615 | 8561 | F: Documentation/sound/alsa/soc/ |
679655da | 8562 | F: sound/soc/ |
e6e55122 | 8563 | F: include/sound/soc* |
eb1a6af3 | 8564 | |
d7f8761b MB |
8565 | SOUND - DMAENGINE HELPERS |
8566 | M: Lars-Peter Clausen <lars@metafoo.de> | |
8567 | S: Supported | |
8568 | F: include/sound/dmaengine_pcm.h | |
8569 | F: sound/core/pcm_dmaengine.c | |
8570 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8571 | ||
473321fc | 8572 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8573 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 8574 | L: sparclinux@vger.kernel.org |
8a6e2535 | 8575 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8578 | S: Maintained |
679655da | 8579 | F: arch/sparc/ |
7765b8bb | 8580 | F: drivers/sbus/ |
1da177e4 | 8581 | |
6404fcca DM |
8582 | SPARC SERIAL DRIVERS |
8583 | M: "David S. Miller" <davem@davemloft.net> | |
8584 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
8585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8587 | S: Maintained |
6816383a | 8588 | F: include/linux/sunserialcore.h |
df621252 | 8589 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8590 | F: drivers/tty/serial/sunhv.c |
8591 | F: drivers/tty/serial/sunsab.c | |
8592 | F: drivers/tty/serial/sunsab.h | |
8593 | F: drivers/tty/serial/sunsu.c | |
8594 | F: drivers/tty/serial/sunzilog.c | |
8595 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8596 | |
389325b4 CL |
8597 | SPARSE CHECKER |
8598 | M: "Christopher Li" <sparse@chrisli.org> | |
8599 | L: linux-sparse@vger.kernel.org | |
8600 | W: https://sparse.wiki.kernel.org/ | |
8601 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8602 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8603 | S: Maintained | |
8604 | F: include/linux/compiler.h | |
8605 | ||
fc0c195a | 8606 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8607 | M: Viresh Kumar <viresh.linux@gmail.com> |
9cc23682 | 8608 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
8609 | L: spear-devel@list.st.com |
8610 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
8611 | W: http://www.st.com/spear |
8612 | S: Maintained | |
281e192f | 8613 | F: arch/arm/mach-spear/ |
fc0c195a VK |
8614 | |
8615 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8616 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
8617 | L: spear-devel@list.st.com |
8618 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
8619 | W: http://www.st.com/spear |
8620 | S: Maintained | |
5df33a62 | 8621 | F: drivers/clk/spear/ |
fc0c195a | 8622 | |
e2d1d6c0 | 8623 | SPI SUBSYSTEM |
b02e48f2 | 8624 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 8625 | L: linux-spi@vger.kernel.org |
e7e4e13c | 8626 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8627 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8628 | S: Maintained |
679655da JP |
8629 | F: Documentation/spi/ |
8630 | F: drivers/spi/ | |
8631 | F: include/linux/spi/ | |
c117ab84 | 8632 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8633 | |
2752e401 | 8634 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8635 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
8636 | M: Jens Osterkamp <jens@de.ibm.com> | |
2752e401 JL |
8637 | L: netdev@vger.kernel.org |
8638 | S: Supported | |
679655da | 8639 | F: Documentation/networking/spider_net.txt |
8df158ac | 8640 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8641 | |
e2d1d6c0 | 8642 | SPU FILE SYSTEM |
8b58be88 | 8643 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 SR |
8644 | L: linuxppc-dev@lists.ozlabs.org |
8645 | L: cbe-oss-dev@lists.ozlabs.org | |
e2d1d6c0 RD |
8646 | W: http://www.ibm.com/developerworks/power/cell/ |
8647 | S: Supported | |
679655da JP |
8648 | F: Documentation/filesystems/spufs.txt |
8649 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8650 | |
fc555841 | 8651 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8652 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
8653 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
8654 | W: http://squashfs.org.uk | |
8655 | S: Maintained | |
679655da JP |
8656 | F: Documentation/filesystems/squashfs.txt |
8657 | F: fs/squashfs/ | |
fc555841 | 8658 | |
1da177e4 | 8659 | SRM (Alpha) environment access |
8b58be88 | 8660 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 8661 | S: Maintained |
679655da | 8662 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8663 | |
26e9a397 | 8664 | STABLE BRANCH |
879a5a00 | 8665 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 8666 | L: stable@vger.kernel.org |
879a5a00 | 8667 | S: Supported |
7b175c46 | 8668 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8669 | |
26e9a397 | 8670 | STAGING SUBSYSTEM |
879a5a00 | 8671 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 8672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8673 | L: devel@driverdev.osuosl.org |
879a5a00 | 8674 | S: Supported |
679655da | 8675 | F: drivers/staging/ |
dbc6c2cc | 8676 | |
ebd3d010 JP |
8677 | STAGING - COMEDI |
8678 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 8679 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
8680 | S: Odd Fixes |
8681 | F: drivers/staging/comedi/ | |
8682 | ||
8dc2bbe7 ME |
8683 | STAGING - ET131X NETWORK DRIVER |
8684 | M: Mark Einon <mark.einon@gmail.com> | |
8685 | S: Odd Fixes | |
8686 | F: drivers/staging/et131x/ | |
8687 | ||
a0138163 JP |
8688 | STAGING - FLARION FT1000 DRIVERS |
8689 | M: Marek Belisko <marek.belisko@gmail.com> | |
8690 | S: Odd Fixes | |
8691 | F: drivers/staging/ft1000/ | |
8692 | ||
6c1bb424 | 8693 | STAGING - INDUSTRIAL IO |
030a13d7 | 8694 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 8695 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
8696 | S: Odd Fixes |
8697 | F: drivers/staging/iio/ | |
8698 | ||
a0138163 JP |
8699 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8700 | M: Jarod Wilson <jarod@wilsonet.com> | |
8701 | W: http://www.lirc.org/ | |
8702 | S: Odd Fixes | |
b2b0186d | 8703 | F: drivers/staging/media/lirc/ |
a0138163 | 8704 | |
7c6b6c71 | 8705 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8706 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
8707 | M: Marc Dietrich <marvin24@gmx.de> |
8708 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 8709 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
8710 | S: Maintained |
8711 | F: drivers/staging/nvec/ | |
8712 | ||
a0138163 | 8713 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8714 | M: Jens Frederich <jfrederich@gmail.com> |
8715 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
8716 | M: Jon Nettleton <jon.nettleton@gmail.com> |
8717 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8718 | S: Maintained |
a0138163 JP |
8719 | F: drivers/staging/olpc_dcon/ |
8720 | ||
94cfdd15 | 8721 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
96747a8f | 8722 | M: Shigekatsu Tateno <shigekatsu.tateno@atmel.com> |
94cfdd15 CK |
8723 | S: Maintained |
8724 | F: drivers/staging/ozwpan/ | |
8725 | ||
a0138163 | 8726 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8727 | M: Willy Tarreau <willy@meta-x.org> |
8728 | S: Odd Fixes | |
8729 | F: drivers/staging/panel/ | |
8730 | ||
a0138163 JP |
8731 | STAGING - REALTEK RTL8712U DRIVERS |
8732 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8733 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
8734 | S: Odd Fixes | |
8735 | F: drivers/staging/rtl8712/ | |
8736 | ||
7591ba8b JS |
8737 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
8738 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8739 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
8740 | L: linux-wireless@vger.kernel.org | |
8741 | S: Maintained | |
8742 | F: drivers/staging/rtl8723au/ | |
8743 | ||
510fa408 JP |
8744 | STAGING - SLICOSS |
8745 | M: Lior Dotan <liodot@gmail.com> | |
8746 | M: Christopher Harrer <charrer@alacritech.com> | |
8747 | S: Odd Fixes | |
8748 | F: drivers/staging/slicoss/ | |
8749 | ||
a0138163 JP |
8750 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
8751 | M: William Hubbs <w.d.hubbs@gmail.com> | |
8752 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 8753 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 8754 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 8755 | L: speakup@linux-speakup.org |
a0138163 JP |
8756 | W: http://www.linux-speakup.org/ |
8757 | S: Odd Fixes | |
8758 | F: drivers/staging/speakup/ | |
8759 | ||
b3e871ce JP |
8760 | STAGING - VIA VT665X DRIVERS |
8761 | M: Forest Bond <forest@alittletooquiet.net> | |
8762 | S: Odd Fixes | |
8763 | F: drivers/staging/vt665?/ | |
8764 | ||
709bcb07 | 8765 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8766 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
8767 | S: Odd Fixes |
8768 | F: drivers/staging/xgifb/ | |
8769 | ||
1da177e4 | 8770 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8771 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 8772 | S: Odd Fixes |
9bba23b0 | 8773 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8774 | |
e2d1d6c0 | 8775 | SUN3/3X |
8b58be88 | 8776 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
8777 | W: http://sammy.net/sun3/ |
8778 | S: Maintained | |
679655da JP |
8779 | F: arch/m68k/kernel/*sun3* |
8780 | F: arch/m68k/sun3*/ | |
8781 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8782 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8783 | |
2bc9ff01 DK |
8784 | SUNDANCE NETWORK DRIVER |
8785 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
8786 | L: netdev@vger.kernel.org | |
8787 | S: Maintained | |
8788 | F: drivers/net/ethernet/dlink/sundance.c | |
8789 | ||
2cbb12a4 | 8790 | SUPERH |
2cbb12a4 | 8791 | L: linux-sh@vger.kernel.org |
1da177e4 | 8792 | W: http://www.linux-sh.org |
8a6e2535 | 8793 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 8794 | S: Orphan |
066069e1 | 8795 | F: Documentation/sh/ |
679655da | 8796 | F: arch/sh/ |
066069e1 | 8797 | F: drivers/sh/ |
1da177e4 | 8798 | |
4480f15b | 8799 | SUSPEND TO RAM |
7fb06082 | 8800 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
8801 | M: Len Brown <len.brown@intel.com> |
8802 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 8803 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 8804 | S: Supported |
679655da JP |
8805 | F: Documentation/power/ |
8806 | F: arch/x86/kernel/acpi/ | |
8807 | F: drivers/base/power/ | |
8808 | F: kernel/power/ | |
8809 | F: include/linux/suspend.h | |
8810 | F: include/linux/freezer.h | |
8811 | F: include/linux/pm.h | |
1da177e4 LT |
8812 | |
8813 | SVGA HANDLING | |
8b58be88 | 8814 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
8815 | L: linux-video@atrey.karlin.mff.cuni.cz |
8816 | S: Maintained | |
679655da JP |
8817 | F: Documentation/svga.txt |
8818 | F: arch/x86/boot/video* | |
1da177e4 | 8819 | |
6e28b761 KRW |
8820 | SWIOTLB SUBSYSTEM |
8821 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
8822 | L: linux-kernel@vger.kernel.org | |
8823 | S: Supported | |
8824 | F: lib/swiotlb.c | |
8825 | F: arch/*/kernel/pci-swiotlb.c | |
8826 | F: include/linux/swiotlb.h | |
8827 | ||
db8e35d5 VG |
8828 | SYNOPSYS ARC ARCHITECTURE |
8829 | M: Vineet Gupta <vgupta@synopsys.com> | |
db8e35d5 VG |
8830 | S: Supported |
8831 | F: arch/arc/ | |
6659a20a | 8832 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8833 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8834 | |
1da177e4 | 8835 | SYSV FILESYSTEM |
8b58be88 | 8836 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 8837 | S: Maintained |
679655da JP |
8838 | F: Documentation/filesystems/sysv-fs.txt |
8839 | F: fs/sysv/ | |
8840 | F: include/linux/sysv_fs.h | |
1da177e4 | 8841 | |
86cfa7fc NB |
8842 | TARGET SUBSYSTEM |
8843 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> | |
8844 | L: linux-scsi@vger.kernel.org | |
b9f5edc2 | 8845 | L: target-devel@vger.kernel.org |
86cfa7fc | 8846 | W: http://www.linux-iscsi.org |
cf015e9f | 8847 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 8848 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8849 | S: Supported |
8850 | F: drivers/target/ | |
8851 | F: include/target/ | |
8852 | F: Documentation/target/ | |
8853 | ||
4e68852d | 8854 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8855 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 8856 | S: Maintained |
679655da JP |
8857 | F: Documentation/accounting/taskstats* |
8858 | F: include/linux/taskstats* | |
8859 | F: kernel/taskstats.c | |
4e68852d | 8860 | |
781b456a | 8861 | TC CLASSIFIER |
f935f3f8 | 8862 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
8863 | L: netdev@vger.kernel.org |
8864 | S: Maintained | |
679655da | 8865 | F: include/net/pkt_cls.h |
c117ab84 | 8866 | F: include/uapi/linux/pkt_cls.h |
679655da | 8867 | F: net/sched/ |
781b456a | 8868 | |
5067f08a | 8869 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8870 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
8871 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
8872 | W: http://tcp-lp-mod.sourceforge.net/ |
8873 | S: Maintained | |
679655da | 8874 | F: net/ipv4/tcp_lp.c |
5067f08a | 8875 | |
91952bc0 AP |
8876 | TDA10071 MEDIA DRIVER |
8877 | M: Antti Palosaari <crope@iki.fi> | |
8878 | L: linux-media@vger.kernel.org | |
8879 | W: http://linuxtv.org/ | |
8880 | W: http://palosaari.fi/linux/ | |
8881 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8882 | T: git git://linuxtv.org/anttip/media_tree.git | |
8883 | S: Maintained | |
8884 | F: drivers/media/dvb-frontends/tda10071* | |
8885 | ||
8886 | TDA18212 MEDIA DRIVER | |
8887 | M: Antti Palosaari <crope@iki.fi> | |
8888 | L: linux-media@vger.kernel.org | |
8889 | W: http://linuxtv.org/ | |
8890 | W: http://palosaari.fi/linux/ | |
8891 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8892 | T: git git://linuxtv.org/anttip/media_tree.git | |
8893 | S: Maintained | |
8894 | F: drivers/media/tuners/tda18212* | |
8895 | ||
8896 | TDA18218 MEDIA DRIVER | |
8897 | M: Antti Palosaari <crope@iki.fi> | |
8898 | L: linux-media@vger.kernel.org | |
8899 | W: http://linuxtv.org/ | |
8900 | W: http://palosaari.fi/linux/ | |
8901 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8902 | T: git git://linuxtv.org/anttip/media_tree.git | |
8903 | S: Maintained | |
8904 | F: drivers/media/tuners/tda18218* | |
8905 | ||
3b2f6aba MK |
8906 | TDA18271 MEDIA DRIVER |
8907 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8908 | L: linux-media@vger.kernel.org | |
8909 | W: http://linuxtv.org/ | |
8910 | W: http://github.com/mkrufky | |
8911 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8912 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8913 | S: Maintained | |
8914 | F: drivers/media/tuners/tda18271* | |
8915 | ||
e48307a9 MK |
8916 | TDA827x MEDIA DRIVER |
8917 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8918 | L: linux-media@vger.kernel.org | |
8919 | W: http://linuxtv.org/ | |
8920 | W: http://github.com/mkrufky | |
8921 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8922 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8923 | S: Maintained | |
8924 | F: drivers/media/tuners/tda8290.* | |
8925 | ||
66cf9212 MK |
8926 | TDA8290 MEDIA DRIVER |
8927 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8928 | L: linux-media@vger.kernel.org | |
8929 | W: http://linuxtv.org/ | |
8930 | W: http://github.com/mkrufky | |
8931 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8932 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8933 | S: Maintained | |
8934 | F: drivers/media/tuners/tda8290.* | |
8935 | ||
4b9fba30 HV |
8936 | TDA9840 MEDIA DRIVER |
8937 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8938 | L: linux-media@vger.kernel.org | |
8939 | T: git git://linuxtv.org/media_tree.git | |
8940 | W: http://linuxtv.org | |
8941 | S: Maintained | |
8942 | F: drivers/media/i2c/tda9840* | |
8943 | ||
2cb654fd | 8944 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8945 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8946 | L: linux-media@vger.kernel.org |
8947 | W: http://linuxtv.org | |
8948 | T: git git://linuxtv.org/media_tree.git | |
8949 | S: Odd fixes | |
8950 | F: drivers/media/tuners/tea5761.* | |
8951 | ||
8952 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8953 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8954 | L: linux-media@vger.kernel.org |
8955 | W: http://linuxtv.org | |
8956 | T: git git://linuxtv.org/media_tree.git | |
8957 | S: Maintained | |
8958 | F: drivers/media/tuners/tea5767.* | |
8959 | ||
4b9fba30 HV |
8960 | TEA6415C MEDIA DRIVER |
8961 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8962 | L: linux-media@vger.kernel.org | |
8963 | T: git git://linuxtv.org/media_tree.git | |
8964 | W: http://linuxtv.org | |
8965 | S: Maintained | |
8966 | F: drivers/media/i2c/tea6415c* | |
8967 | ||
8968 | TEA6420 MEDIA DRIVER | |
8969 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8970 | L: linux-media@vger.kernel.org | |
8971 | T: git git://linuxtv.org/media_tree.git | |
8972 | W: http://linuxtv.org | |
8973 | S: Maintained | |
8974 | F: drivers/media/i2c/tea6420* | |
8975 | ||
3d249d4c | 8976 | TEAM DRIVER |
dca9ab92 | 8977 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
8978 | L: netdev@vger.kernel.org |
8979 | S: Supported | |
8980 | F: drivers/net/team/ | |
8981 | F: include/linux/if_team.h | |
c117ab84 | 8982 | F: include/uapi/linux/if_team.h |
3d249d4c | 8983 | |
7d029125 VD |
8984 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8985 | M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> | |
8986 | S: Maintained | |
8987 | F: arch/x86/platform/ts5500/ | |
8988 | ||
40ad4a30 SY |
8989 | TECHNOTREND USB IR RECEIVER |
8990 | M: Sean Young <sean@mess.org> | |
8991 | L: linux-media@vger.kernel.org | |
8992 | S: Maintained | |
8993 | F: drivers/media/rc/ttusbir.c | |
8994 | ||
adabdb0c | 8995 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8996 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 8997 | M: Thierry Reding <thierry.reding@gmail.com> |
84b9414b | 8998 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 8999 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 9000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 9001 | S: Supported |
bbbe96ed | 9002 | N: [^a-z]tegra |
84b9414b | 9003 | |
adabdb0c SW |
9004 | TEGRA ASOC DRIVER |
9005 | M: Stephen Warren <swarren@wwwdotorg.org> | |
9006 | S: Supported | |
9007 | F: sound/soc/tegra/ | |
9008 | ||
9009 | TEGRA CLOCK DRIVER | |
9010 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
9011 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
9012 | S: Supported | |
9013 | F: drivers/clk/tegra/ | |
9014 | ||
9015 | TEGRA DMA DRIVER | |
9016 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9017 | S: Supported | |
9018 | F: drivers/dma/tegra20-apb-dma.c | |
9019 | ||
9020 | TEGRA GPIO DRIVER | |
9021 | M: Stephen Warren <swarren@wwwdotorg.org> | |
9022 | S: Supported | |
9023 | F: drivers/gpio/gpio-tegra.c | |
9024 | ||
9025 | TEGRA I2C DRIVER | |
9026 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9027 | S: Supported | |
9028 | F: drivers/i2c/busses/i2c-tegra.c | |
9029 | ||
9030 | TEGRA IOMMU DRIVERS | |
9031 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
9032 | S: Supported | |
9033 | F: drivers/iommu/tegra* | |
9034 | ||
9035 | TEGRA KBC DRIVER | |
9036 | M: Rakesh Iyer <riyer@nvidia.com> | |
9037 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9038 | S: Supported | |
9039 | F: drivers/input/keyboard/tegra-kbc.c | |
9040 | ||
9041 | TEGRA PINCTRL DRIVER | |
9042 | M: Stephen Warren <swarren@wwwdotorg.org> | |
9043 | S: Supported | |
9044 | F: drivers/pinctrl/pinctrl-tegra* | |
9045 | ||
9046 | TEGRA PWM DRIVER | |
9047 | M: Thierry Reding <thierry.reding@gmail.com> | |
9048 | S: Supported | |
9049 | F: drivers/pwm/pwm-tegra.c | |
9050 | ||
9051 | TEGRA SERIAL DRIVER | |
9052 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9053 | S: Supported | |
9054 | F: drivers/tty/serial/serial-tegra.c | |
9055 | ||
9056 | TEGRA SPI DRIVER | |
9057 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9058 | S: Supported | |
9059 | F: drivers/spi/spi-tegra* | |
9060 | ||
1a348ccc | 9061 | TEHUTI ETHERNET DRIVER |
8b58be88 | 9062 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
9063 | L: netdev@vger.kernel.org |
9064 | S: Supported | |
ef7f5429 | 9065 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 9066 | |
4e68852d | 9067 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 9068 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 9069 | S: Supported |
679655da | 9070 | F: drivers/char/tlclk.c |
4e68852d | 9071 | |
4480f15b | 9072 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 9073 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
9074 | M: Max Filippov <jcmvbkbc@gmail.com> |
9075 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 9076 | S: Maintained |
679655da | 9077 | F: arch/xtensa/ |
3dc99857 | 9078 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 9079 | |
5313ba66 HV |
9080 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
9081 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9082 | L: linux-media@vger.kernel.org | |
9083 | T: git git://linuxtv.org/media_tree.git | |
9084 | W: http://linuxtv.org | |
9085 | S: Maintained | |
9086 | F: drivers/media/radio/radio-raremono.c | |
9087 | ||
d3fb6955 | 9088 | THERMAL |
b75f0050 | 9089 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 9090 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
9091 | L: linux-pm@vger.kernel.org |
9092 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
9093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
9094 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
9095 | S: Supported | |
9096 | F: drivers/thermal/ | |
9097 | F: include/linux/thermal.h | |
9098 | F: include/linux/cpu_cooling.h | |
9099 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 9100 | |
30ba2fbd VD |
9101 | THINGM BLINK(1) USB RGB LED DRIVER |
9102 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
9103 | S: Maintained | |
9104 | F: drivers/hid/hid-thingm.c | |
9105 | ||
4e68852d | 9106 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 9107 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 9108 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 9109 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
9110 | W: http://ibm-acpi.sourceforge.net |
9111 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 9112 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 9113 | S: Maintained |
679655da | 9114 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 9115 | |
1b46f2a2 | 9116 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 9117 | M: Eduardo Valentin <edubezval@gmail.com> |
1b46f2a2 | 9118 | L: linux-pm@vger.kernel.org |
794b2e25 EV |
9119 | S: Supported |
9120 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 9121 | |
49b6a5e3 TK |
9122 | TI CLOCK DRIVER |
9123 | M: Tero Kristo <t-kristo@ti.com> | |
9124 | L: linux-omap@vger.kernel.org | |
9125 | S: Maintained | |
9126 | F: drivers/clk/ti/ | |
9127 | F: include/linux/clk/ti.h | |
9128 | ||
4020f2d7 | 9129 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 9130 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 9131 | S: Maintained |
679655da JP |
9132 | F: drivers/misc/tifm* |
9133 | F: drivers/mmc/host/tifm_sd.c | |
9134 | F: include/linux/tifm.h | |
4020f2d7 | 9135 | |
152ad442 SR |
9136 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
9137 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 9138 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
9139 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9140 | S: Maintained | |
9141 | F: sound/soc/codecs/lm49453* | |
d392dead | 9142 | F: sound/soc/codecs/isabelle* |
152ad442 | 9143 | |
0edd807d KM |
9144 | TI LP855x BACKLIGHT DRIVER |
9145 | M: Milo Kim <milo.kim@ti.com> | |
9146 | S: Maintained | |
9147 | F: Documentation/backlight/lp855x-driver.txt | |
9148 | F: drivers/video/backlight/lp855x_bl.c | |
9149 | F: include/linux/platform_data/lp855x.h | |
9150 | ||
faf13f6d KM |
9151 | TI LP8727 CHARGER DRIVER |
9152 | M: Milo Kim <milo.kim@ti.com> | |
9153 | S: Maintained | |
9154 | F: drivers/power/lp8727_charger.c | |
9155 | F: include/linux/platform_data/lp8727.h | |
9156 | ||
22f1229f KM |
9157 | TI LP8788 MFD DRIVER |
9158 | M: Milo Kim <milo.kim@ti.com> | |
9159 | S: Maintained | |
9160 | F: drivers/iio/adc/lp8788_adc.c | |
9161 | F: drivers/leds/leds-lp8788.c | |
9162 | F: drivers/mfd/lp8788*.c | |
9163 | F: drivers/power/lp8788-charger.c | |
9164 | F: drivers/regulator/lp8788-*.c | |
9165 | F: include/linux/mfd/lp8788*.h | |
9166 | ||
dd5e8e6b | 9167 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 9168 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
9169 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9170 | S: Maintained | |
9171 | F: sound/soc/codecs/twl4030* | |
9172 | ||
90921014 | 9173 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
9174 | L: linux-wireless@vger.kernel.org |
9175 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
9176 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
9177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 9178 | S: Orphan |
90921014 LC |
9179 | F: drivers/net/wireless/ti/ |
9180 | F: include/linux/wl12xx.h | |
9181 | ||
e86eaa3a | 9182 | TIPC NETWORK LAYER |
8b58be88 JP |
9183 | M: Jon Maloy <jon.maloy@ericsson.com> |
9184 | M: Allan Stephens <allan.stephens@windriver.com> | |
633d2bde AS |
9185 | L: netdev@vger.kernel.org (core kernel code) |
9186 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 9187 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 9188 | S: Maintained |
c117ab84 | 9189 | F: include/uapi/linux/tipc*.h |
679655da | 9190 | F: net/tipc/ |
e86eaa3a | 9191 | |
867e359b CM |
9192 | TILE ARCHITECTURE |
9193 | M: Chris Metcalf <cmetcalf@tilera.com> | |
9194 | W: http://www.tilera.com/scm/ | |
9195 | S: Supported | |
9196 | F: arch/tile/ | |
6b940606 | 9197 | F: drivers/char/tile-srom.c |
5c770755 | 9198 | F: drivers/edac/tile_edac.c |
6b940606 CM |
9199 | F: drivers/net/ethernet/tile/ |
9200 | F: drivers/rtc/rtc-tile.c | |
9201 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 9202 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
9203 | F: drivers/usb/host/*-tilegx.c |
9204 | F: include/linux/usb/tilegx.h | |
867e359b | 9205 | |
1da177e4 | 9206 | TLAN NETWORK DRIVER |
8b58be88 | 9207 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 9208 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
9209 | W: http://sourceforge.net/projects/tlan/ |
9210 | S: Maintained | |
679655da | 9211 | F: Documentation/networking/tlan.txt |
b544dbac | 9212 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 9213 | |
d74db3b2 | 9214 | TOMOYO SECURITY MODULE |
8b58be88 JP |
9215 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
9216 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
9217 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
9218 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
9219 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
9220 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
9221 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 9222 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 9223 | S: Maintained |
679655da | 9224 | F: security/tomoyo/ |
d74db3b2 | 9225 | |
9caeb532 | 9226 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 9227 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 9228 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
9229 | S: Maintained |
9230 | F: drivers/platform/x86/topstar-laptop.c | |
9231 | ||
1da177e4 | 9232 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 9233 | L: platform-driver-x86@vger.kernel.org |
15065531 | 9234 | S: Orphan |
679655da | 9235 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
9236 | |
9237 | TOSHIBA SMM DRIVER | |
8b58be88 | 9238 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
9239 | L: tlinux-users@tce.toshiba-dme.co.jp |
9240 | W: http://www.buzzard.org.uk/toshiba/ | |
9241 | S: Maintained | |
679655da JP |
9242 | F: drivers/char/toshiba.c |
9243 | F: include/linux/toshiba.h | |
c117ab84 | 9244 | F: include/uapi/linux/toshiba.h |
1da177e4 | 9245 | |
d719f900 | 9246 | TMIO MMC DRIVER |
252f29a9 | 9247 | M: Ian Molton <ian.molton@codethink.co.uk> |
d1057c40 | 9248 | L: linux-mmc@vger.kernel.org |
d719f900 | 9249 | S: Maintained |
d1057c40 GL |
9250 | F: drivers/mmc/host/tmio_mmc* |
9251 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
9252 | F: include/linux/mmc/tmio.h | |
9253 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 9254 | |
917cc4e6 GR |
9255 | TMP401 HARDWARE MONITOR DRIVER |
9256 | M: Guenter Roeck <linux@roeck-us.net> | |
9257 | L: lm-sensors@lm-sensors.org | |
9258 | S: Maintained | |
9259 | F: Documentation/hwmon/tmp401 | |
9260 | F: drivers/hwmon/tmp401.c | |
9261 | ||
98f32602 | 9262 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 9263 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
9264 | L: linux-mm@kvack.org |
9265 | S: Maintained | |
9266 | F: include/linux/shmem_fs.h | |
9267 | F: mm/shmem.c | |
9268 | ||
45f95b53 | 9269 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 9270 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
45f95b53 MCC |
9271 | L: linux-media@vger.kernel.org |
9272 | W: http://linuxtv.org | |
9273 | T: git git://linuxtv.org/media_tree.git | |
9274 | S: Odd fixes | |
9275 | F: drivers/media/usb/tm6000/ | |
9276 | ||
4e68852d | 9277 | TPM DEVICE DRIVER |
901486b8 | 9278 | M: Peter Huewe <peterhuewe@gmx.de> |
383dec1f | 9279 | M: Ashley Lai <ashley@ashleylai.com> |
cbb2d5e4 | 9280 | M: Marcel Selhorst <tpmdd@selhorst.net> |
383dec1f | 9281 | W: http://tpmdd.sourceforge.net |
63a10dfd | 9282 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
4e68852d | 9283 | S: Maintained |
679655da | 9284 | F: drivers/char/tpm/ |
4e68852d | 9285 | |
d6f005a1 JP |
9286 | TRACING |
9287 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 9288 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 9289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
9290 | S: Maintained |
9291 | F: Documentation/trace/ftrace.txt | |
9292 | F: arch/*/*/*/ftrace.h | |
9293 | F: arch/*/kernel/ftrace.c | |
9294 | F: include/*/ftrace.h | |
9295 | F: include/linux/trace*.h | |
9296 | F: include/trace/ | |
9297 | F: kernel/trace/ | |
9298 | ||
1da177e4 | 9299 | TRIVIAL PATCHES |
8b58be88 | 9300 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 9301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 9302 | S: Maintained |
86ef925f | 9303 | K: ^Subject:.*(?i)trivial |
1da177e4 | 9304 | |
4e68852d | 9305 | TTY LAYER |
879a5a00 | 9306 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
25e6c11f | 9307 | M: Jiri Slaby <jslaby@suse.cz> |
879a5a00 | 9308 | S: Supported |
08deed1e | 9309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 9310 | F: drivers/tty/ |
df621252 | 9311 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
9312 | F: include/linux/serial_core.h |
9313 | F: include/linux/serial.h | |
9314 | F: include/linux/tty.h | |
c117ab84 CEB |
9315 | F: include/uapi/linux/serial_core.h |
9316 | F: include/uapi/linux/serial.h | |
9317 | F: include/uapi/linux/tty.h | |
4e68852d | 9318 | |
91952bc0 AP |
9319 | TUA9001 MEDIA DRIVER |
9320 | M: Antti Palosaari <crope@iki.fi> | |
9321 | L: linux-media@vger.kernel.org | |
9322 | W: http://linuxtv.org/ | |
9323 | W: http://palosaari.fi/linux/ | |
9324 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9325 | T: git git://linuxtv.org/anttip/media_tree.git | |
9326 | S: Maintained | |
9327 | F: drivers/media/tuners/tua9001* | |
9328 | ||
740db6d7 | 9329 | TULIP NETWORK DRIVERS |
8b58be88 | 9330 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
9331 | L: netdev@vger.kernel.org |
9332 | S: Maintained | |
0f04e2aa | 9333 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
9334 | |
9335 | TUN/TAP driver | |
ba57b6f2 | 9336 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
9337 | W: http://vtun.sourceforge.net/tun |
9338 | S: Maintained | |
679655da JP |
9339 | F: Documentation/networking/tuntap.txt |
9340 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 9341 | |
b454cc66 | 9342 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 9343 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
9344 | M: Ralf Baechle <ralf@linux-mips.org> |
9345 | L: linux-mips@linux-mips.org | |
9346 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 9347 | S: Maintained |
679655da JP |
9348 | F: drivers/tc/ |
9349 | F: include/linux/tc.h | |
b454cc66 | 9350 | |
1da177e4 | 9351 | U14-34F SCSI DRIVER |
8b58be88 | 9352 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
9353 | L: linux-scsi@vger.kernel.org |
9354 | S: Maintained | |
679655da | 9355 | F: drivers/scsi/u14-34f.c |
1da177e4 | 9356 | |
e2d1d6c0 | 9357 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 9358 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 9359 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 9360 | L: linux-mtd@lists.infradead.org |
e2966cbe | 9361 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
9362 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
9363 | S: Maintained | |
679655da JP |
9364 | F: Documentation/filesystems/ubifs.txt |
9365 | F: fs/ubifs/ | |
e2d1d6c0 | 9366 | |
cc2020e6 | 9367 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 9368 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 AC |
9369 | W: http://www.uclinux.org/ |
9370 | L: uclinux-dev@uclinux.org (subscribers-only) | |
9371 | S: Maintained | |
61bc02bb JP |
9372 | F: arch/m68k/*/*_no.* |
9373 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 9374 | |
1da177e4 | 9375 | UDF FILESYSTEM |
8b58be88 | 9376 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 9377 | S: Maintained |
679655da JP |
9378 | F: Documentation/filesystems/udf.txt |
9379 | F: fs/udf/ | |
1da177e4 | 9380 | |
cc2020e6 | 9381 | UFS FILESYSTEM |
8b58be88 | 9382 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 9383 | S: Maintained |
679655da JP |
9384 | F: Documentation/filesystems/ufs.txt |
9385 | F: fs/ufs/ | |
cc2020e6 | 9386 | |
0a09d3ab DH |
9387 | UHID USERSPACE HID IO DRIVER: |
9388 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9389 | L: linux-input@vger.kernel.org | |
9390 | S: Maintained | |
9391 | F: drivers/hid/uhid.c | |
c117ab84 | 9392 | F: include/uapi/linux/uhid.h |
0a09d3ab | 9393 | |
18332a80 | 9394 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 9395 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 9396 | S: Orphan |
355ffe69 | 9397 | F: drivers/uwb/ |
679655da JP |
9398 | F: include/linux/uwb.h |
9399 | F: include/linux/uwb/ | |
18332a80 | 9400 | |
b31d8273 G |
9401 | UNICORE32 ARCHITECTURE: |
9402 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9403 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9404 | S: Maintained | |
ceebf4d5 | 9405 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
9406 | F: arch/unicore32/ |
9407 | ||
d8379ab1 TF |
9408 | UNIFDEF |
9409 | M: Tony Finch <dot@dotat.at> | |
9410 | W: http://dotat.at/prog/unifdef | |
9411 | S: Maintained | |
9412 | F: scripts/unifdef.c | |
9413 | ||
1da177e4 | 9414 | UNIFORM CDROM DRIVER |
8b58be88 | 9415 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9416 | W: http://www.kernel.dk |
9417 | S: Maintained | |
679655da JP |
9418 | F: Documentation/cdrom/ |
9419 | F: drivers/cdrom/cdrom.c | |
9420 | F: include/linux/cdrom.h | |
c117ab84 | 9421 | F: include/uapi/linux/cdrom.h |
1da177e4 | 9422 | |
56df0122 BR |
9423 | UNISYS S-PAR DRIVERS |
9424 | M: Benjamin Romer <benjamin.romer@unisys.com> | |
9425 | M: David Kershner <david.kershner@unisys.com> | |
9426 | L: sparmaintainer@unisys.com (Unisys internal) | |
9427 | S: Supported | |
9428 | F: drivers/staging/unisys/ | |
9429 | ||
9941fa6e VH |
9430 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9431 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9432 | M: Santosh Y <santoshsy@gmail.com> | |
9433 | L: linux-scsi@vger.kernel.org | |
9434 | S: Supported | |
9435 | F: Documentation/scsi/ufs.txt | |
9436 | F: drivers/scsi/ufs/ | |
9437 | ||
e2d1d6c0 | 9438 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9439 | M: Artem Bityutskiy <dedekind1@gmail.com> |
e2d1d6c0 RD |
9440 | W: http://www.linux-mtd.infradead.org/ |
9441 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 9442 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9443 | S: Maintained |
80811493 | 9444 | F: drivers/mtd/ubi/ |
679655da | 9445 | F: include/linux/mtd/ubi.h |
c117ab84 | 9446 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9447 | |
76ac66e4 RW |
9448 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9449 | M: Richard Weinberger <richard@nod.at> | |
9450 | L: linux-mtd@lists.infradead.org | |
9451 | S: Maintained | |
9452 | F: drivers/mtd/ubi/fastmap.c | |
9453 | ||
1da177e4 | 9454 | USB ACM DRIVER |
61eee9a7 | 9455 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 9456 | L: linux-usb@vger.kernel.org |
1da177e4 | 9457 | S: Maintained |
679655da JP |
9458 | F: Documentation/usb/acm.txt |
9459 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9460 | |
b7d572e1 PF |
9461 | USB AR5523 WIRELESS DRIVER |
9462 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
9463 | L: linux-wireless@vger.kernel.org | |
9464 | S: Maintained | |
9465 | F: drivers/net/wireless/ath/ar5523/ | |
9466 | ||
115bb1ff | 9467 | USB ATTACHED SCSI |
f50a4968 | 9468 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 9469 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
9470 | L: linux-usb@vger.kernel.org |
9471 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 9472 | S: Maintained |
115bb1ff MW |
9473 | F: drivers/usb/storage/uas.c |
9474 | ||
1da177e4 | 9475 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9476 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 9477 | L: linux-usb@vger.kernel.org |
1da177e4 | 9478 | S: Maintained |
679655da | 9479 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9480 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9481 | |
b02b371e | 9482 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9483 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
9484 | L: linux-usb@vger.kernel.org |
9485 | S: Maintained | |
679655da | 9486 | F: drivers/usb/c67x00/ |
b02b371e | 9487 | |
d0374f4f | 9488 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9489 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 9490 | L: netdev@vger.kernel.org |
d0374f4f PK |
9491 | W: http://www.linux-usb.org/usbnet |
9492 | S: Maintained | |
679655da | 9493 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9494 | |
cc2020e6 | 9495 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9496 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
9497 | L: rio500-users@lists.sourceforge.net |
9498 | W: http://rio500.sourceforge.net | |
9499 | S: Maintained | |
679655da | 9500 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9501 | |
1da177e4 | 9502 | USB EHCI DRIVER |
578333ab | 9503 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9504 | L: linux-usb@vger.kernel.org |
578333ab | 9505 | S: Maintained |
679655da JP |
9506 | F: Documentation/usb/ehci.txt |
9507 | F: drivers/usb/host/ehci* | |
1da177e4 | 9508 | |
69ae9e3e | 9509 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9510 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 9511 | L: linux-usb@vger.kernel.org |
69ae9e3e | 9512 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9513 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9514 | S: Maintained | |
679655da JP |
9515 | F: drivers/usb/gadget/ |
9516 | F: include/linux/usb/gadget* | |
69ae9e3e | 9517 | |
2dea64b4 | 9518 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9519 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 | 9520 | L: linux-usb@vger.kernel.org |
54e5881d | 9521 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9522 | S: Maintained |
c2f01971 | 9523 | F: Documentation/hid/hiddev.txt |
679655da | 9524 | F: drivers/hid/usbhid/ |
1da177e4 | 9525 | |
857aab34 | 9526 | USB/IP DRIVERS |
857aab34 | 9527 | L: linux-usb@vger.kernel.org |
3ff4afe8 | 9528 | S: Orphan |
857aab34 | 9529 | F: drivers/staging/usbip/ |
9530 | ||
959eea21 | 9531 | USB ISP116X DRIVER |
8b58be88 | 9532 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 9533 | L: linux-usb@vger.kernel.org |
959eea21 | 9534 | S: Maintained |
679655da JP |
9535 | F: drivers/usb/host/isp116x* |
9536 | F: include/linux/usb/isp116x.h | |
959eea21 | 9537 | |
1da177e4 | 9538 | USB MASS STORAGE DRIVER |
8b58be88 | 9539 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 9540 | L: linux-usb@vger.kernel.org |
8836aeb8 | 9541 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
9542 | S: Maintained |
9543 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9544 | F: drivers/usb/storage/ |
1da177e4 | 9545 | |
af39917d CL |
9546 | USB MIDI DRIVER |
9547 | M: Clemens Ladisch <clemens@ladisch.de> | |
9548 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9549 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9550 | S: Maintained | |
9551 | F: sound/usb/midi.* | |
9552 | ||
444ce9d4 JP |
9553 | USB NETWORKING DRIVERS |
9554 | L: linux-usb@vger.kernel.org | |
9555 | S: Odd Fixes | |
9556 | F: drivers/net/usb/ | |
9557 | ||
1da177e4 | 9558 | USB OHCI DRIVER |
578333ab | 9559 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9560 | L: linux-usb@vger.kernel.org |
578333ab | 9561 | S: Maintained |
679655da JP |
9562 | F: Documentation/usb/ohci.txt |
9563 | F: drivers/usb/host/ohci* | |
1da177e4 | 9564 | |
563da3a9 VM |
9565 | USB OVER IP DRIVER |
9566 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
9567 | M: Shuah Khan <shuah.kh@samsung.com> | |
9568 | L: linux-usb@vger.kernel.org | |
9569 | S: Maintained | |
9570 | F: drivers/usb/usbip/ | |
9571 | F: tools/usb/usbip/ | |
9572 | ||
1da177e4 | 9573 | USB PEGASUS DRIVER |
a16b945c | 9574 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9575 | L: linux-usb@vger.kernel.org |
043600a6 | 9576 | L: netdev@vger.kernel.org |
052e3128 PM |
9577 | T: git git://github.com/petkan/pegasus.git |
9578 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9579 | S: Maintained |
679655da | 9580 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9581 | |
d3ad558f FB |
9582 | USB PHY LAYER |
9583 | M: Felipe Balbi <balbi@ti.com> | |
9584 | L: linux-usb@vger.kernel.org | |
9585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9586 | S: Maintained | |
9587 | F: drivers/usb/phy/ | |
d3ad558f | 9588 | |
73e4fb3f | 9589 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9590 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 9591 | L: linux-usb@vger.kernel.org |
73e4fb3f | 9592 | S: Supported |
679655da | 9593 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9594 | |
9595 | USB RTL8150 DRIVER | |
a16b945c | 9596 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9597 | L: linux-usb@vger.kernel.org |
043600a6 | 9598 | L: netdev@vger.kernel.org |
052e3128 PM |
9599 | T: git git://github.com/petkan/rtl8150.git |
9600 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9601 | S: Maintained |
679655da | 9602 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9603 | |
f896b796 | 9604 | USB SERIAL SUBSYSTEM |
66085694 | 9605 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 9606 | L: linux-usb@vger.kernel.org |
4e68852d | 9607 | S: Maintained |
679655da | 9608 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9609 | F: drivers/usb/serial/ |
679655da | 9610 | F: include/linux/usb/serial.h |
1da177e4 | 9611 | |
b3f0db1c SG |
9612 | USB SMSC75XX ETHERNET DRIVER |
9613 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
9614 | L: netdev@vger.kernel.org | |
9615 | S: Maintained | |
9616 | F: drivers/net/usb/smsc75xx.* | |
9617 | ||
2f7ca802 | 9618 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9619 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 9620 | L: netdev@vger.kernel.org |
90b24cfb | 9621 | S: Maintained |
679655da | 9622 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9623 | |
1da177e4 | 9624 | USB SUBSYSTEM |
879a5a00 | 9625 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 9626 | L: linux-usb@vger.kernel.org |
1da177e4 | 9627 | W: http://www.linux-usb.org |
08deed1e | 9628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9629 | S: Supported |
679655da | 9630 | F: Documentation/usb/ |
679655da JP |
9631 | F: drivers/usb/ |
9632 | F: include/linux/usb.h | |
9633 | F: include/linux/usb/ | |
1da177e4 LT |
9634 | |
9635 | USB UHCI DRIVER | |
8b58be88 | 9636 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9637 | L: linux-usb@vger.kernel.org |
1da177e4 | 9638 | S: Maintained |
679655da | 9639 | F: drivers/usb/host/uhci* |
1da177e4 | 9640 | |
69ae9e3e | 9641 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9642 | M: Oliver Neukum <oneukum@suse.de> |
043600a6 | 9643 | L: netdev@vger.kernel.org |
69ae9e3e | 9644 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9645 | S: Maintained |
679655da JP |
9646 | F: drivers/net/usb/usbnet.c |
9647 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9648 | |
c0efd232 | 9649 | USB VIDEO CLASS |
c53ac071 | 9650 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 9651 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 9652 | L: linux-media@vger.kernel.org |
275ffde4 | 9653 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9654 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9655 | S: Maintained |
0c0d06ca | 9656 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9657 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9658 | |
b60b9c45 HV |
9659 | USB VISION DRIVER |
9660 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9661 | L: linux-media@vger.kernel.org | |
9662 | T: git git://linuxtv.org/media_tree.git | |
9663 | W: http://linuxtv.org | |
9664 | S: Odd Fixes | |
9665 | F: drivers/media/usb/usbvision/ | |
9666 | ||
8282da47 LP |
9667 | USB WEBCAM GADGET |
9668 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
9669 | L: linux-usb@vger.kernel.org | |
9670 | S: Maintained | |
faf2e1db JP |
9671 | F: drivers/usb/gadget/function/*uvc*.c |
9672 | F: drivers/usb/gadget/legacy/webcam.c | |
8282da47 | 9673 | |
bf164cc0 | 9674 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9675 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
9676 | L: linux-wireless@vger.kernel.org |
9677 | S: Maintained | |
679655da | 9678 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9679 | |
eb6bab13 | 9680 | USB XHCI DRIVER |
03d85053 | 9681 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
9682 | L: linux-usb@vger.kernel.org |
9683 | S: Supported | |
36d0344c SS |
9684 | F: drivers/usb/host/xhci* |
9685 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9686 | |
1da177e4 | 9687 | USB ZD1201 DRIVER |
4086b9ca | 9688 | L: linux-wireless@vger.kernel.org |
1da177e4 | 9689 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9690 | S: Orphan |
679655da | 9691 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9692 | |
b7eee616 | 9693 | USB ZR364XX DRIVER |
8b58be88 | 9694 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 9695 | L: linux-usb@vger.kernel.org |
661263b5 | 9696 | L: linux-media@vger.kernel.org |
275ffde4 | 9697 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9698 | W: http://royale.zerezo.com/zr364xx/ |
9699 | S: Maintained | |
679655da | 9700 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9701 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9702 | |
e7839f25 | 9703 | USER-MODE LINUX (UML) |
8b58be88 | 9704 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 9705 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
9706 | L: user-mode-linux-devel@lists.sourceforge.net |
9707 | L: user-mode-linux-user@lists.sourceforge.net | |
9708 | W: http://user-mode-linux.sourceforge.net | |
9709 | S: Maintained | |
61516587 | 9710 | F: Documentation/virtual/uml/ |
679655da | 9711 | F: arch/um/ |
b070989a | 9712 | F: arch/x86/um/ |
679655da JP |
9713 | F: fs/hostfs/ |
9714 | F: fs/hppfs/ | |
b7eee616 | 9715 | |
e5f114e9 | 9716 | USERSPACE I/O (UIO) |
6a534c9d | 9717 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 9718 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 9719 | S: Maintained |
679655da JP |
9720 | F: Documentation/DocBook/uio-howto.tmpl |
9721 | F: drivers/uio/ | |
9722 | F: include/linux/uio*.h | |
e5f114e9 | 9723 | |
256cccbe | 9724 | UTIL-LINUX PACKAGE |
8b58be88 | 9725 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
9726 | L: util-linux@vger.kernel.org |
9727 | W: http://en.wikipedia.org/wiki/Util-linux | |
9728 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9729 | S: Maintained |
9730 | ||
c1fd1c07 | 9731 | UVESAFB DRIVER |
8b58be88 | 9732 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 9733 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
9734 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9735 | S: Maintained | |
679655da | 9736 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 9737 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 9738 | |
4480f15b | 9739 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9740 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 9741 | S: Maintained |
679655da JP |
9742 | F: Documentation/filesystems/vfat.txt |
9743 | F: fs/fat/ | |
1da177e4 | 9744 | |
cba3345c AW |
9745 | VFIO DRIVER |
9746 | M: Alex Williamson <alex.williamson@redhat.com> | |
9747 | L: kvm@vger.kernel.org | |
9748 | S: Maintained | |
9749 | F: Documentation/vfio.txt | |
9750 | F: drivers/vfio/ | |
9751 | F: include/linux/vfio.h | |
c117ab84 | 9752 | F: include/uapi/linux/vfio.h |
cba3345c | 9753 | |
9e6f3438 PO |
9754 | VIDEOBUF2 FRAMEWORK |
9755 | M: Pawel Osciak <pawel@osciak.com> | |
9756 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 9757 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
9758 | L: linux-media@vger.kernel.org |
9759 | S: Maintained | |
90d72ac6 | 9760 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9761 | F: include/media/videobuf2-* |
9762 | ||
9a82446b AS |
9763 | VIRTIO CONSOLE DRIVER |
9764 | M: Amit Shah <amit.shah@redhat.com> | |
9765 | L: virtualization@lists.linux-foundation.org | |
9766 | S: Maintained | |
9767 | F: drivers/char/virtio_console.c | |
9768 | F: include/linux/virtio_console.h | |
c117ab84 | 9769 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9770 | |
2426ec8f MT |
9771 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9772 | M: Rusty Russell <rusty@rustcorp.com.au> | |
9773 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9774 | L: virtualization@lists.linux-foundation.org | |
9775 | S: Maintained | |
9776 | F: drivers/virtio/ | |
c893c8d7 | 9777 | F: tools/virtio/ |
2426ec8f MT |
9778 | F: drivers/net/virtio_net.c |
9779 | F: drivers/block/virtio_blk.c | |
9780 | F: include/linux/virtio_*.h | |
916cdabc | 9781 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9782 | |
3a4d5c94 MT |
9783 | VIRTIO HOST (VHOST) |
9784 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9785 | L: kvm@vger.kernel.org | |
c996d8b9 | 9786 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
9787 | L: netdev@vger.kernel.org |
9788 | S: Maintained | |
9789 | F: drivers/vhost/ | |
c117ab84 | 9790 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9791 | |
1da177e4 | 9792 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9793 | M: Roger Luethi <rl@hellgate.ch> |
1da177e4 | 9794 | S: Maintained |
f2148a47 | 9795 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9796 | |
f0bf7f61 | 9797 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9798 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 9799 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
9800 | S: Maintained |
9801 | F: drivers/mmc/host/via-sdmmc.c | |
9802 | ||
69e4a7c2 | 9803 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9804 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 9805 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 9806 | S: Maintained |
c7babebd FTS |
9807 | F: include/linux/via-core.h |
9808 | F: include/linux/via-gpio.h | |
9809 | F: include/linux/via_i2c.h | |
8a61f013 | 9810 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 9811 | |
01f20734 | 9812 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9813 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
9814 | L: netdev@vger.kernel.org |
9815 | S: Maintained | |
f2148a47 | 9816 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9817 | |
0b7bc1fa HV |
9818 | VIVI VIRTUAL VIDEO DRIVER |
9819 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9820 | L: linux-media@vger.kernel.org | |
9821 | T: git git://linuxtv.org/media_tree.git | |
9822 | W: http://linuxtv.org | |
9823 | S: Maintained | |
9824 | F: drivers/media/platform/vivi* | |
9825 | ||
be7f8273 | 9826 | VLAN (802.1Q) |
8b58be88 | 9827 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
9828 | L: netdev@vger.kernel.org |
9829 | S: Maintained | |
679655da JP |
9830 | F: drivers/net/macvlan.c |
9831 | F: include/linux/if_*vlan.h | |
9832 | F: net/8021q/ | |
be7f8273 | 9833 | |
55e331cf | 9834 | VLYNQ BUS |
8b58be88 | 9835 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 9836 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
9837 | S: Maintained |
9838 | F: drivers/vlynq/vlynq.c | |
9839 | F: include/linux/vlynq.h | |
9840 | ||
390beae4 MW |
9841 | VME SUBSYSTEM |
9842 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 9843 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
9844 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
9845 | L: devel@driverdev.osuosl.org | |
9846 | S: Maintained | |
9847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9848 | F: Documentation/vme_api.txt | |
9849 | F: drivers/staging/vme/ | |
9850 | F: drivers/vme/ | |
9851 | F: include/linux/vme* | |
9852 | ||
4488e09b AK |
9853 | VMWARE HYPERVISOR INTERFACE |
9854 | M: Alok Kataria <akataria@vmware.com> | |
9855 | L: virtualization@lists.linux-foundation.org | |
9856 | S: Supported | |
9857 | F: arch/x86/kernel/cpu/vmware.c | |
9858 | ||
73b35d07 DT |
9859 | VMWARE BALLOON DRIVER |
9860 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
9861 | M: Philip Moltmann <moltmann@vmware.com> | |
9862 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9863 | L: linux-kernel@vger.kernel.org | |
9864 | S: Maintained | |
9865 | F: drivers/misc/vmw_balloon.c | |
9866 | ||
d1a890fa | 9867 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9868 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
9869 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9870 | L: netdev@vger.kernel.org | |
9871 | S: Maintained | |
9872 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9873 | |
851b1642 | 9874 | VMware PVSCSI driver |
f2d7e40e | 9875 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
9876 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
9877 | L: linux-scsi@vger.kernel.org | |
9878 | S: Maintained | |
9879 | F: drivers/scsi/vmw_pvscsi.c | |
9880 | F: drivers/scsi/vmw_pvscsi.h | |
9881 | ||
e53e86c7 | 9882 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9883 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9884 | M: Mark Brown <broonie@kernel.org> |
e53e86c7 | 9885 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9886 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9888 | S: Supported |
679655da JP |
9889 | F: drivers/regulator/ |
9890 | F: include/linux/regulator/ | |
e53e86c7 | 9891 | |
ab41319e | 9892 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9893 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
9894 | L: lm-sensors@lm-sensors.org |
9895 | S: Maintained | |
679655da JP |
9896 | F: Documentation/hwmon/vt1211 |
9897 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9898 | |
1de9e371 | 9899 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9900 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
9901 | L: lm-sensors@lm-sensors.org |
9902 | S: Maintained | |
679655da | 9903 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9904 | |
88095e7b TO |
9905 | VUB300 USB to SDIO/SD/MMC bridge chip |
9906 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
9907 | L: linux-mmc@vger.kernel.org | |
9908 | L: linux-usb@vger.kernel.org | |
9909 | S: Supported | |
9910 | F: drivers/mmc/host/vub300.c | |
9911 | ||
1da177e4 | 9912 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9913 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 9914 | S: Maintained |
679655da JP |
9915 | F: Documentation/w1/ |
9916 | F: drivers/w1/ | |
1da177e4 | 9917 | |
13927079 | 9918 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9919 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 9920 | L: lm-sensors@lm-sensors.org |
25845c22 | 9921 | S: Maintained |
679655da JP |
9922 | F: Documentation/hwmon/w83791d |
9923 | F: drivers/hwmon/w83791d.c | |
13927079 | 9924 | |
61db011d | 9925 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9926 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
9927 | L: lm-sensors@lm-sensors.org |
9928 | S: Maintained | |
679655da JP |
9929 | F: Documentation/hwmon/w83793 |
9930 | F: drivers/hwmon/w83793.c | |
61db011d | 9931 | |
e3760b43 | 9932 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 9933 | M: Jean Delvare <jdelvare@suse.de> |
e3760b43 JD |
9934 | L: lm-sensors@lm-sensors.org |
9935 | S: Maintained | |
9936 | F: drivers/hwmon/w83795.c | |
9937 | ||
1da177e4 | 9938 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9939 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 9940 | S: Maintained |
679655da | 9941 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9942 | |
b4e05923 HG |
9943 | WACOM PROTOCOL 4 SERIAL TABLETS |
9944 | M: Julian Squires <julian@cipht.net> | |
9945 | M: Hans de Goede <hdegoede@redhat.com> | |
9946 | L: linux-input@vger.kernel.org | |
9947 | S: Maintained | |
9948 | F: drivers/input/tablet/wacom_serial4.c | |
9949 | ||
3527761c | 9950 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9951 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
9952 | L: linux-watchdog@vger.kernel.org |
9953 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9954 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9955 | S: Maintained |
679655da JP |
9956 | F: Documentation/watchdog/ |
9957 | F: drivers/watchdog/ | |
9958 | F: include/linux/watchdog.h | |
c117ab84 | 9959 | F: include/uapi/linux/watchdog.h |
3527761c | 9960 | |
1da177e4 | 9961 | WD7000 SCSI DRIVER |
8b58be88 | 9962 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
9963 | L: linux-scsi@vger.kernel.org |
9964 | S: Maintained | |
679655da | 9965 | F: drivers/scsi/wd7000.c |
1da177e4 | 9966 | |
b22e00f3 DH |
9967 | WIIMOTE HID DRIVER |
9968 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9969 | L: linux-input@vger.kernel.org | |
9970 | S: Maintained | |
9971 | F: drivers/hid/hid-wiimote* | |
9972 | ||
e258b80e | 9973 | WINBOND CIR DRIVER |
364e9e18 | 9974 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 9975 | S: Maintained |
116ab806 | 9976 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9977 | |
8a70da82 | 9978 | WIMAX STACK |
8b58be88 | 9979 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 9980 | M: linux-wimax@intel.com |
63fae219 | 9981 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
9982 | S: Supported |
9983 | W: http://linuxwimax.org | |
315987dc | 9984 | F: Documentation/wimax/README.wimax |
315987dc JP |
9985 | F: include/linux/wimax/debug.h |
9986 | F: include/net/wimax.h | |
c117ab84 | 9987 | F: include/uapi/linux/wimax.h |
315987dc | 9988 | F: net/wimax/ |
8a70da82 | 9989 | |
5fc14680 | 9990 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9991 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 9992 | S: Maintained |
679655da | 9993 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9994 | |
1da177e4 | 9995 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9996 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 9997 | L: linux-wireless@vger.kernel.org |
926554c4 | 9998 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9999 | S: Maintained |
679655da | 10000 | F: drivers/net/wireless/wl3501* |
1da177e4 | 10001 | |
febf1dff | 10002 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 10003 | M: Mark Brown <broonie@kernel.org> |
8b58be88 | 10004 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
febf1dff MB |
10005 | L: linux-input@vger.kernel.org |
10006 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
10007 | W: http://opensource.wolfsonmicro.com/node/7 | |
10008 | S: Supported | |
679655da JP |
10009 | F: drivers/input/touchscreen/*wm97* |
10010 | F: include/linux/wm97xx.h | |
febf1dff | 10011 | |
055bcbcb | 10012 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 10013 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 10014 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 10015 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 10016 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 10017 | S: Supported |
3768f0b1 | 10018 | F: Documentation/hwmon/wm83?? |
af1c5386 | 10019 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 10020 | F: drivers/clk/clk-wm83*.c |
9c309598 | 10021 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 10022 | F: drivers/leds/leds-wm83*.c |
25b273ba | 10023 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 10024 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 10025 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
10026 | F: drivers/input/misc/wm831x-on.c |
10027 | F: drivers/input/touchscreen/wm831x-ts.c | |
10028 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
10029 | F: drivers/mfd/arizona* |
10030 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
10031 | F: drivers/power/wm83*.c |
10032 | F: drivers/rtc/rtc-wm83*.c | |
10033 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 10034 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 10035 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 10036 | F: include/linux/mfd/arizona/ |
3860e6c4 | 10037 | F: include/linux/mfd/wm831x/ |
b75ea16a | 10038 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 10039 | F: include/linux/mfd/wm8400* |
59ec6da2 | 10040 | F: include/linux/wm97xx.h |
055bcbcb | 10041 | F: include/sound/wm????.h |
9c309598 | 10042 | F: sound/soc/codecs/arizona.? |
055bcbcb | 10043 | F: sound/soc/codecs/wm* |
b75ea16a | 10044 | |
3e6cd7a4 TH |
10045 | WORKQUEUE |
10046 | M: Tejun Heo <tj@kernel.org> | |
3e6cd7a4 TH |
10047 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
10048 | S: Maintained | |
10049 | F: include/linux/workqueue.h | |
10050 | F: kernel/workqueue.c | |
10051 | F: Documentation/workqueue.txt | |
10052 | ||
1da177e4 | 10053 | X.25 NETWORK LAYER |
8bf28059 | 10054 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 10055 | L: linux-x25@vger.kernel.org |
8bf28059 | 10056 | S: Odd Fixes |
679655da JP |
10057 | F: Documentation/networking/x25* |
10058 | F: include/net/x25* | |
10059 | F: net/x25/ | |
1da177e4 | 10060 | |
e2d1d6c0 | 10061 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
10062 | M: Thomas Gleixner <tglx@linutronix.de> |
10063 | M: Ingo Molnar <mingo@redhat.com> | |
10064 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 10065 | M: x86@kernel.org |
981c3a4f | 10066 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10067 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 10068 | S: Maintained |
679655da JP |
10069 | F: Documentation/x86/ |
10070 | F: arch/x86/ | |
e2d1d6c0 | 10071 | |
d0944853 | 10072 | X86 PLATFORM DRIVERS |
e181ba15 | 10073 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 10074 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 10075 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 10076 | S: Maintained |
14430813 | 10077 | F: drivers/platform/x86/ |
d0944853 | 10078 | |
c1f5c54b IM |
10079 | X86 MCE INFRASTRUCTURE |
10080 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 10081 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
10082 | L: linux-edac@vger.kernel.org |
10083 | S: Maintained | |
10084 | F: arch/x86/kernel/cpu/mcheck/* | |
10085 | ||
d6fad502 | 10086 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 10087 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d6fad502 MCC |
10088 | L: linux-media@vger.kernel.org |
10089 | W: http://linuxtv.org | |
10090 | T: git git://linuxtv.org/media_tree.git | |
10091 | S: Maintained | |
10092 | F: drivers/media/tuners/tuner-xc2028.* | |
10093 | ||
c4468085 | 10094 | XEN HYPERVISOR INTERFACE |
c4468085 | 10095 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
10096 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
10097 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 10098 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 10099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
10100 | S: Supported |
10101 | F: arch/x86/xen/ | |
10102 | F: drivers/*/xen-*front.c | |
10103 | F: drivers/xen/ | |
10104 | F: arch/x86/include/asm/xen/ | |
10105 | F: include/xen/ | |
c117ab84 | 10106 | F: include/uapi/xen/ |
c4468085 | 10107 | |
77bfb479 SS |
10108 | XEN HYPERVISOR ARM |
10109 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 10110 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
10111 | S: Supported |
10112 | F: arch/arm/xen/ | |
10113 | F: arch/arm/include/asm/xen/ | |
10114 | ||
b475e83f SS |
10115 | XEN HYPERVISOR ARM64 |
10116 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 10117 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
10118 | S: Supported |
10119 | F: arch/arm64/xen/ | |
10120 | F: arch/arm64/include/asm/xen/ | |
10121 | ||
9b57e1a7 IC |
10122 | XEN NETWORK BACKEND DRIVER |
10123 | M: Ian Campbell <ian.campbell@citrix.com> | |
8386040b | 10124 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 10125 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
10126 | L: netdev@vger.kernel.org |
10127 | S: Supported | |
10128 | F: drivers/net/xen-netback/* | |
10129 | ||
c5f8e29d KRW |
10130 | XEN PCI SUBSYSTEM |
10131 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 10132 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
10133 | S: Supported |
10134 | F: arch/x86/pci/*xen* | |
10135 | F: drivers/pci/*xen* | |
10136 | ||
a2c5ae65 KRW |
10137 | XEN BLOCK SUBSYSTEM |
10138 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
10139 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
10140 | S: Supported | |
10141 | F: drivers/block/xen-blkback/* | |
10142 | F: drivers/block/xen* | |
10143 | ||
c5f8e29d KRW |
10144 | XEN SWIOTLB SUBSYSTEM |
10145 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 10146 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
10147 | S: Supported |
10148 | F: arch/x86/xen/*swiotlb* | |
10149 | F: drivers/xen/*swiotlb* | |
10150 | ||
1da177e4 LT |
10151 | XFS FILESYSTEM |
10152 | P: Silicon Graphics Inc | |
809625ca | 10153 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 10154 | M: xfs@oss.sgi.com |
d7ede1aa | 10155 | L: xfs@oss.sgi.com |
1da177e4 | 10156 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 10157 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 10158 | S: Supported |
679655da JP |
10159 | F: Documentation/filesystems/xfs.txt |
10160 | F: fs/xfs/ | |
1da177e4 | 10161 | |
8a3b7a25 | 10162 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
10163 | M: Anirudha Sarangi <anirudh@xilinx.com> |
10164 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 10165 | S: Maintained |
10166 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
10167 | ||
c9d3d8ec | 10168 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 10169 | S: Orphan |
679655da | 10170 | F: drivers/block/xsysace.c |
c9d3d8ec | 10171 | |
238b8721 | 10172 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 10173 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
10174 | L: linux-serial@vger.kernel.org |
10175 | S: Maintained | |
df621252 | 10176 | F: drivers/tty/serial/uartlite.c |
238b8721 | 10177 | |
f620e4b8 MF |
10178 | XTENSA XTFPGA PLATFORM SUPPORT |
10179 | M: Max Filippov <jcmvbkbc@gmail.com> | |
10180 | L: linux-xtensa@linux-xtensa.org | |
10181 | S: Maintained | |
10182 | F: drivers/spi/spi-xtensa-xtfpga.c | |
10183 | ||
1da177e4 | 10184 | YAM DRIVER FOR AX.25 |
8b58be88 | 10185 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
10186 | L: linux-hams@vger.kernel.org |
10187 | S: Maintained | |
679655da JP |
10188 | F: drivers/net/hamradio/yam* |
10189 | F: include/linux/yam.h | |
1da177e4 | 10190 | |
af64a5eb | 10191 | YEALINK PHONE DRIVER |
8b58be88 | 10192 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
10193 | L: usbb2k-api-dev@nongnu.org |
10194 | S: Maintained | |
679655da JP |
10195 | F: Documentation/input/yealink.txt |
10196 | F: drivers/input/misc/yealink.* | |
af64a5eb | 10197 | |
1da177e4 | 10198 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 10199 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
10200 | W: http://yaina.de/jreuter/ |
10201 | W: http://www.qsl.net/dl1bke/ | |
10202 | L: linux-hams@vger.kernel.org | |
10203 | S: Maintained | |
679655da JP |
10204 | F: Documentation/networking/z8530drv.txt |
10205 | F: drivers/net/hamradio/*scc.c | |
10206 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 10207 | |
0cf31ec1 | 10208 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 10209 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10210 | L: linux-mm@kvack.org |
10211 | S: Maintained | |
10212 | F: mm/zbud.c | |
10213 | F: include/linux/zbud.h | |
10214 | ||
7c0c3afb | 10215 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
10216 | M: Daniel Drake <dsd@gentoo.org> |
10217 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 10218 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 10219 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
10220 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
10221 | S: Maintained | |
679655da | 10222 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 10223 | |
1da177e4 | 10224 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 10225 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 10226 | L: linux-media@vger.kernel.org |
1da177e4 | 10227 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 10228 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 10229 | S: Odd Fixes |
90d72ac6 | 10230 | F: drivers/media/pci/zoran/ |
1da177e4 | 10231 | |
6920f2cc MK |
10232 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
10233 | M: Minchan Kim <minchan@kernel.org> | |
10234 | M: Nitin Gupta <ngupta@vflare.org> | |
10235 | L: linux-kernel@vger.kernel.org | |
10236 | S: Maintained | |
10237 | F: drivers/block/zram/ | |
10238 | F: Documentation/blockdev/zram.txt | |
10239 | ||
8b4a4080 | 10240 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 10241 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 10242 | S: Maintained |
df621252 | 10243 | F: drivers/tty/serial/zs.* |
8b4a4080 | 10244 | |
eae70d06 MK |
10245 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
10246 | M: Minchan Kim <minchan@kernel.org> | |
10247 | M: Nitin Gupta <ngupta@vflare.org> | |
10248 | L: linux-mm@kvack.org | |
10249 | S: Maintained | |
10250 | F: mm/zsmalloc.c | |
10251 | F: include/linux/zsmalloc.h | |
10252 | ||
0cf31ec1 | 10253 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 10254 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10255 | L: linux-mm@kvack.org |
10256 | S: Maintained | |
10257 | F: mm/zswap.c | |
10258 | ||
1da177e4 | 10259 | THE REST |
8b58be88 | 10260 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 10261 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 10262 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 10263 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 10264 | S: Buried alive in reporters |
34d03cc1 JP |
10265 | F: * |
10266 | F: */ |