]>
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 | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
0a920b5b | 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 |
08602d74 SH |
54 | of the Linux Foundation certificate of contribution and should |
55 | include a Signed-off-by: line. The current version of this | |
56 | "Developer's Certificate of Origin" (DCO) is listed in the file | |
4500371e | 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> | |
6970c34c | 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 156 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 157 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
158 | S: Maintained |
159 | F: net/6lowpan/ | |
6304f8fc | 160 | F: include/net/6lowpan.h |
ea9eb698 | 161 | F: Documentation/networking/6lowpan.txt |
68d96dcf | 162 | |
1da177e4 | 163 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 164 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
165 | L: linux-hams@vger.kernel.org |
166 | S: Maintained | |
679655da | 167 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 168 | |
1da177e4 | 169 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 170 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 171 | L: netdev@vger.kernel.org |
1da177e4 | 172 | S: Maintained |
a8fe65b8 | 173 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
174 | |
175 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 176 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
177 | L: linux-serial@vger.kernel.org |
178 | W: http://serial.sourceforge.net | |
8ee16a1b | 179 | S: Maintained |
08deed1e | 180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 181 | F: drivers/tty/serial/8250* |
679655da | 182 | F: include/linux/serial_8250.h |
1da177e4 LT |
183 | |
184 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 185 | L: netdev@vger.kernel.org |
0cf445ce | 186 | S: Orphan / Obsolete |
644570b8 | 187 | F: drivers/net/ethernet/8390/ |
1da177e4 | 188 | |
67543e50 | 189 | 9P FILE SYSTEM |
8b58be88 JP |
190 | M: Eric Van Hensbergen <ericvh@gmail.com> |
191 | M: Ron Minnich <rminnich@sandia.gov> | |
192 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 193 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 194 | W: http://swik.net/v9fs |
8a6e2535 | 195 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 197 | S: Maintained |
679655da JP |
198 | F: Documentation/filesystems/9p.txt |
199 | F: fs/9p/ | |
2315cb14 RL |
200 | F: net/9p/ |
201 | F: include/net/9p/ | |
202 | F: include/uapi/linux/virtio_9p.h | |
203 | F: include/trace/events/9p.h | |
204 | ||
67543e50 | 205 | |
91952bc0 AP |
206 | A8293 MEDIA DRIVER |
207 | M: Antti Palosaari <crope@iki.fi> | |
208 | L: linux-media@vger.kernel.org | |
209 | W: http://linuxtv.org/ | |
210 | W: http://palosaari.fi/linux/ | |
211 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
212 | T: git git://linuxtv.org/anttip/media_tree.git | |
213 | S: Maintained | |
214 | F: drivers/media/dvb-frontends/a8293* | |
215 | ||
e2d1d6c0 | 216 | AACRAID SCSI RAID DRIVER |
8b58be88 | 217 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
218 | L: linux-scsi@vger.kernel.org |
219 | W: http://www.adaptec.com/ | |
1da177e4 | 220 | S: Supported |
679655da JP |
221 | F: Documentation/scsi/aacraid.txt |
222 | F: drivers/scsi/aacraid/ | |
1da177e4 | 223 | |
ea8f8fc8 JT |
224 | ABI/API |
225 | L: linux-api@vger.kernel.org | |
226 | F: Documentation/ABI/ | |
227 | F: include/linux/syscalls.h | |
228 | F: include/uapi/ | |
229 | F: kernel/sys_ni.c | |
230 | ||
249e3c85 | 231 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 232 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
233 | L: lm-sensors@lm-sensors.org |
234 | S: Maintained | |
679655da | 235 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 236 | |
249e3c85 | 237 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 238 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
239 | L: lm-sensors@lm-sensors.org |
240 | S: Maintained | |
679655da | 241 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 242 | |
1da177e4 | 243 | ACENIC DRIVER |
8b58be88 | 244 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
245 | L: linux-acenic@sunsite.dk |
246 | S: Maintained | |
531c4f89 | 247 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 248 | |
e86435eb | 249 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 250 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 251 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
252 | W: http://piie.net/?section=acerhdf |
253 | S: Maintained | |
254 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 255 | |
745a5d21 | 256 | ACER WMI LAPTOP EXTRAS |
182ae55c | 257 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 258 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 259 | S: Maintained |
679655da | 260 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 261 | |
1da177e4 | 262 | ACPI |
9c3646d1 | 263 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 264 | M: Len Brown <lenb@kernel.org> |
6968e50c | 265 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
266 | W: https://01.org/linux-acpi |
267 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
268 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 269 | S: Supported |
679655da JP |
270 | F: drivers/acpi/ |
271 | F: drivers/pnp/pnpacpi/ | |
272 | F: include/linux/acpi.h | |
43368e74 | 273 | F: include/acpi/ |
3a75ef0c | 274 | F: Documentation/acpi/ |
89ca78a0 | 275 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
276 | F: drivers/pci/*acpi* |
277 | F: drivers/pci/*/*acpi* | |
278 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 279 | F: tools/power/acpi/ |
8b59a454 | 280 | |
3774929d RW |
281 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
282 | M: Robert Moore <robert.moore@intel.com> | |
283 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 284 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
285 | L: linux-acpi@vger.kernel.org |
286 | L: devel@acpica.org | |
287 | W: https://acpica.org/ | |
288 | W: https://github.com/acpica/acpica/ | |
289 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
291 | S: Supported | |
292 | F: drivers/acpi/acpica/ | |
293 | F: include/acpi/ | |
2754c447 | 294 | F: tools/power/acpi/ |
3774929d | 295 | |
8b59a454 | 296 | ACPI FAN DRIVER |
8b58be88 | 297 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 298 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 299 | W: https://01.org/linux-acpi |
8b59a454 | 300 | S: Supported |
679655da | 301 | F: drivers/acpi/fan.c |
1da177e4 | 302 | |
8b59a454 | 303 | ACPI THERMAL DRIVER |
8b58be88 | 304 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 305 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 306 | W: https://01.org/linux-acpi |
8b59a454 | 307 | S: Supported |
679655da | 308 | F: drivers/acpi/*thermal* |
998be20f | 309 | |
359acec8 | 310 | ACPI VIDEO DRIVER |
8b58be88 | 311 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 312 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 313 | W: https://01.org/linux-acpi |
8b59a454 | 314 | S: Supported |
679655da | 315 | F: drivers/acpi/video.c |
998be20f | 316 | |
bff431e4 | 317 | ACPI WMI DRIVER |
d0944853 | 318 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 319 | S: Orphan |
679655da | 320 | F: drivers/platform/x86/wmi.c |
bff431e4 | 321 | |
2f39d519 | 322 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 323 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
324 | W: http://wiki.parisc-linux.org/AD1889 |
325 | L: linux-parisc@vger.kernel.org | |
326 | S: Maintained | |
679655da | 327 | F: sound/pci/ad1889.* |
2f39d519 | 328 | |
527a1a83 MH |
329 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
330 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 331 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 332 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
333 | S: Supported |
334 | F: drivers/misc/ad525x_dpot.c | |
335 | ||
336 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
337 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 338 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 339 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
340 | S: Supported |
341 | F: drivers/regulator/ad5398.c | |
342 | ||
343 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
344 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 345 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 346 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
347 | S: Supported |
348 | F: drivers/input/misc/ad714x.c | |
349 | ||
350 | AD7877 TOUCHSCREEN DRIVER | |
351 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 352 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 353 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
354 | S: Supported |
355 | F: drivers/input/touchscreen/ad7877.c | |
356 | ||
357 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
358 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 359 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 360 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
361 | S: Supported |
362 | F: drivers/input/touchscreen/ad7879.c | |
363 | ||
1330b0dc | 364 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 365 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
366 | S: Maintained |
367 | ||
1da177e4 | 368 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 369 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 370 | L: lm-sensors@lm-sensors.org |
1da177e4 | 371 | S: Maintained |
679655da JP |
372 | F: Documentation/hwmon/adm1025 |
373 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 374 | |
cae2caae | 375 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 376 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
377 | L: lm-sensors@lm-sensors.org |
378 | S: Maintained | |
679655da | 379 | F: drivers/hwmon/adm1029.c |
cae2caae | 380 | |
cc0b88cf | 381 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 382 | L: linux-wireless@vger.kernel.org |
491b26b4 | 383 | W: http://wireless.kernel.org/ |
e71bcbd0 | 384 | S: Orphan |
679655da | 385 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 386 | |
e8e31622 SA |
387 | ADP1653 FLASH CONTROLLER DRIVER |
388 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
389 | L: linux-media@vger.kernel.org | |
390 | S: Maintained | |
391 | F: drivers/media/i2c/adp1653.c | |
392 | F: include/media/adp1653.h | |
393 | ||
527a1a83 MH |
394 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
395 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 396 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 397 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
398 | S: Supported |
399 | F: drivers/mfd/adp5520.c | |
400 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 401 | F: drivers/leds/leds-adp5520.c |
77278d50 | 402 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
403 | F: drivers/input/keyboard/adp5520-keys.c |
404 | ||
405 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
406 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 407 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 408 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
409 | S: Supported |
410 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 411 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
412 | |
413 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
414 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 415 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 416 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
417 | S: Supported |
418 | F: drivers/video/backlight/adp8860_bl.c | |
419 | ||
8c22a8f5 DE |
420 | ADS1015 HARDWARE MONITOR DRIVER |
421 | M: Dirk Eibach <eibach@gdsys.de> | |
422 | L: lm-sensors@lm-sensors.org | |
423 | S: Maintained | |
424 | F: Documentation/hwmon/ads1015 | |
425 | F: drivers/hwmon/ads1015.c | |
426 | F: include/linux/i2c/ads1015.h | |
427 | ||
1da177e4 | 428 | ADT746X FAN DRIVER |
8b58be88 | 429 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 430 | S: Maintained |
679655da | 431 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 432 | |
b058b859 | 433 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 434 | M: Jean Delvare <jdelvare@suse.com> |
b058b859 JD |
435 | L: lm-sensors@lm-sensors.org |
436 | S: Maintained | |
437 | F: Documentation/hwmon/adt7475 | |
438 | F: drivers/hwmon/adt7475.c | |
439 | ||
527a1a83 MH |
440 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
441 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 442 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 443 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
444 | S: Supported |
445 | F: drivers/input/misc/adxl34x.c | |
446 | ||
8c6af9e1 | 447 | ADVANSYS SCSI DRIVER |
8b58be88 | 448 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 449 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
450 | L: linux-scsi@vger.kernel.org |
451 | S: Maintained | |
679655da JP |
452 | F: Documentation/scsi/advansys.txt |
453 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 454 | |
1da177e4 | 455 | AEDSP16 DRIVER |
8b58be88 | 456 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 457 | S: Maintained |
679655da | 458 | F: sound/oss/aedsp16.c |
1da177e4 | 459 | |
91952bc0 AP |
460 | AF9013 MEDIA DRIVER |
461 | M: Antti Palosaari <crope@iki.fi> | |
462 | L: linux-media@vger.kernel.org | |
463 | W: http://linuxtv.org/ | |
464 | W: http://palosaari.fi/linux/ | |
465 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
466 | T: git git://linuxtv.org/anttip/media_tree.git | |
467 | S: Maintained | |
468 | F: drivers/media/dvb-frontends/af9013* | |
469 | ||
470 | AF9033 MEDIA DRIVER | |
471 | M: Antti Palosaari <crope@iki.fi> | |
472 | L: linux-media@vger.kernel.org | |
473 | W: http://linuxtv.org/ | |
474 | W: http://palosaari.fi/linux/ | |
475 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
476 | T: git git://linuxtv.org/anttip/media_tree.git | |
477 | S: Maintained | |
478 | F: drivers/media/dvb-frontends/af9033* | |
479 | ||
1da177e4 | 480 | AFFS FILE SYSTEM |
6cf515e1 GU |
481 | L: linux-fsdevel@vger.kernel.org |
482 | S: Orphan | |
679655da JP |
483 | F: Documentation/filesystems/affs.txt |
484 | F: fs/affs/ | |
1da177e4 | 485 | |
e2d1d6c0 | 486 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 487 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
488 | L: linux-afs@lists.infradead.org |
489 | S: Supported | |
679655da JP |
490 | F: fs/afs/ |
491 | F: include/net/af_rxrpc.h | |
492 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 493 | |
1da177e4 | 494 | AGPGART DRIVER |
8b58be88 | 495 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 496 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 497 | S: Maintained |
679655da JP |
498 | F: drivers/char/agp/ |
499 | F: include/linux/agp* | |
c117ab84 | 500 | F: include/uapi/linux/agp* |
1da177e4 LT |
501 | |
502 | AHA152X SCSI DRIVER | |
8b58be88 | 503 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
504 | L: linux-scsi@vger.kernel.org |
505 | S: Maintained | |
679655da JP |
506 | F: drivers/scsi/aha152x* |
507 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 508 | |
64624d4f | 509 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 510 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 511 | L: linux-scsi@vger.kernel.org |
1da177e4 | 512 | S: Maintained |
679655da | 513 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 514 | |
450500ad HV |
515 | AIMSLAB FM RADIO RECEIVER DRIVER |
516 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
517 | L: linux-media@vger.kernel.org | |
518 | T: git git://linuxtv.org/media_tree.git | |
519 | W: http://linuxtv.org | |
520 | S: Maintained | |
521 | F: drivers/media/radio/radio-aimslab* | |
522 | ||
e2d1d6c0 | 523 | AIO |
8b58be88 | 524 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
525 | L: linux-aio@kvack.org |
526 | S: Supported | |
679655da JP |
527 | F: fs/aio.c |
528 | F: include/linux/*aio*.h | |
e2d1d6c0 | 529 | |
469d4ec8 AP |
530 | AIRSPY MEDIA DRIVER |
531 | M: Antti Palosaari <crope@iki.fi> | |
532 | L: linux-media@vger.kernel.org | |
533 | W: http://linuxtv.org/ | |
534 | W: http://palosaari.fi/linux/ | |
535 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
536 | T: git git://linuxtv.org/anttip/media_tree.git | |
537 | S: Maintained | |
538 | F: drivers/media/usb/airspy/ | |
539 | ||
1da177e4 | 540 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 541 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 542 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
543 | W: http://www.linux-usb.org/SpeedTouch/ |
544 | S: Maintained | |
679655da JP |
545 | F: drivers/usb/atm/speedtch.c |
546 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 547 | |
272f133a | 548 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 549 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 550 | S: Maintained |
679655da | 551 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 552 | |
4a4e5787 | 553 | ALI1563 I2C DRIVER |
8b58be88 | 554 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 555 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 556 | S: Maintained |
679655da JP |
557 | F: Documentation/i2c/busses/i2c-ali1563 |
558 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 559 | |
bc368798 LC |
560 | ALLWINNER SECURITY SYSTEM |
561 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
562 | L: linux-crypto@vger.kernel.org | |
563 | S: Maintained | |
564 | F: drivers/crypto/sunxi-ss/ | |
565 | ||
1da177e4 | 566 | ALPHA PORT |
8b58be88 | 567 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 568 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 569 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 570 | S: Odd Fixes |
a9406699 | 571 | L: linux-alpha@vger.kernel.org |
679655da | 572 | F: arch/alpha/ |
1da177e4 | 573 | |
f62092f6 LFT |
574 | ALTERA MAILBOX DRIVER |
575 | M: Ley Foon Tan <lftan@altera.com> | |
576 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
577 | S: Maintained | |
578 | F: drivers/mailbox/mailbox-altera.c | |
579 | ||
c5abbba9 THL |
580 | ALTERA PIO DRIVER |
581 | M: Tien Hock Loh <thloh@altera.com> | |
582 | L: linux-gpio@vger.kernel.org | |
583 | S: Maintained | |
584 | F: drivers/gpio/gpio-altera.c | |
585 | ||
16b8b922 | 586 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 587 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
588 | L: netdev@vger.kernel.org |
589 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
590 | S: Maintained | |
591 | F: drivers/net/ethernet/altera/ | |
592 | ||
adf9251f TK |
593 | ALTERA UART/JTAG UART SERIAL DRIVERS |
594 | M: Tobias Klauser <tklauser@distanz.ch> | |
595 | L: linux-serial@vger.kernel.org | |
61bd0943 | 596 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
597 | S: Maintained |
598 | F: drivers/tty/serial/altera_uart.c | |
599 | F: drivers/tty/serial/altera_jtaguart.c | |
600 | F: include/linux/altera_uart.h | |
601 | F: include/linux/altera_jtaguart.h | |
602 | ||
f4875e12 TL |
603 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
604 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
605 | L: linux-crypto@vger.kernel.org | |
606 | S: Supported | |
607 | F: drivers/crypto/ccp/ | |
608 | F: include/linux/ccp.h | |
609 | ||
512d1027 | 610 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 611 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
612 | L: lm-sensors@lm-sensors.org |
613 | S: Maintained | |
614 | F: Documentation/hwmon/fam15h_power | |
615 | F: drivers/hwmon/fam15h_power.c | |
616 | ||
167a675a | 617 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 618 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 619 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 620 | S: Supported |
faf2e1db | 621 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 622 | |
f90b8116 | 623 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 624 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 625 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
626 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
627 | S: Supported | |
679655da JP |
628 | F: drivers/char/hw_random/geode-rng.c |
629 | F: drivers/crypto/geode* | |
8a61f013 | 630 | F: drivers/video/fbdev/geode/ |
679655da | 631 | F: arch/x86/include/asm/geode.h |
f90b8116 | 632 | |
919ee7dd | 633 | AMD IOMMU (AMD-VI) |
e4110568 | 634 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 635 | L: iommu@lists.linux-foundation.org |
525b233c | 636 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 637 | S: Maintained |
b2c16391 JP |
638 | F: drivers/iommu/amd_iommu*.[ch] |
639 | F: include/linux/amd-iommu.h | |
919ee7dd | 640 | |
16423d67 | 641 | AMD KFD |
1241e0b4 | 642 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
643 | L: dri-devel@lists.freedesktop.org |
644 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
645 | S: Supported | |
130e0371 OG |
646 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
647 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 648 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 649 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 650 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
651 | F: drivers/gpu/drm/amd/include/cik_structs.h |
652 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 653 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
654 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
655 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
656 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 657 | |
e7f5b309 | 658 | AMD MICROCODE UPDATE SUPPORT |
ca68a525 | 659 | M: Borislav Petkov <bp@alien8.de> |
943482d0 | 660 | S: Maintained |
73d425fd | 661 | F: arch/x86/kernel/cpu/microcode/amd* |
e7f5b309 | 662 | |
45198c7b LT |
663 | AMD XGBE DRIVER |
664 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
665 | L: netdev@vger.kernel.org | |
666 | S: Supported | |
667 | F: drivers/net/ethernet/amd/xgbe/ | |
45198c7b | 668 | |
284f42b6 | 669 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 670 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 671 | S: Supported |
bd5f47ec | 672 | F: drivers/macintosh/ams/ |
284f42b6 | 673 | |
f94b533d | 674 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
675 | M: Tom Tucker <tom@opengridcomputing.com> |
676 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 677 | L: linux-rdma@vger.kernel.org |
f94b533d | 678 | S: Maintained |
679655da | 679 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 680 | |
531fca16 HV |
681 | ANALOG DEVICES INC AD9389B DRIVER |
682 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
683 | L: linux-media@vger.kernel.org | |
684 | S: Maintained | |
685 | F: drivers/media/i2c/ad9389b* | |
686 | ||
614b4384 LPC |
687 | ANALOG DEVICES INC ADV7180 DRIVER |
688 | M: Lars-Peter Clausen <lars@metafoo.de> | |
689 | L: linux-media@vger.kernel.org | |
690 | W: http://ez.analog.com/community/linux-device-drivers | |
691 | S: Supported | |
692 | F: drivers/media/i2c/adv7180.c | |
693 | ||
c40ddfa3 HV |
694 | ANALOG DEVICES INC ADV7511 DRIVER |
695 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
696 | L: linux-media@vger.kernel.org | |
697 | S: Maintained | |
698 | F: drivers/media/i2c/adv7511* | |
699 | ||
531fca16 HV |
700 | ANALOG DEVICES INC ADV7604 DRIVER |
701 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
702 | L: linux-media@vger.kernel.org | |
703 | S: Maintained | |
704 | F: drivers/media/i2c/adv7604* | |
705 | ||
c40ddfa3 HV |
706 | ANALOG DEVICES INC ADV7842 DRIVER |
707 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
708 | L: linux-media@vger.kernel.org | |
709 | S: Maintained | |
710 | F: drivers/media/i2c/adv7842* | |
711 | ||
527a1a83 | 712 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 713 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 714 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 715 | W: http://wiki.analog.com/ |
a4edbc10 | 716 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 717 | S: Supported |
39c9d199 | 718 | F: sound/soc/codecs/adau* |
cc52688a | 719 | F: sound/soc/codecs/adav* |
4bdef3bd | 720 | F: sound/soc/codecs/ad1* |
ae48f5ef | 721 | F: sound/soc/codecs/ad7* |
4bdef3bd | 722 | F: sound/soc/codecs/ssm* |
40216ce7 | 723 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 724 | |
527a1a83 | 725 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 726 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
727 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
728 | W: http://blackfin.uclinux.org/ | |
729 | S: Supported | |
730 | F: sound/soc/blackfin/* | |
7d1f9018 | 731 | |
4ce72abc LPC |
732 | ANALOG DEVICES INC IIO DRIVERS |
733 | M: Lars-Peter Clausen <lars@metafoo.de> | |
734 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
735 | W: http://wiki.analog.com/ | |
736 | W: http://ez.analog.com/community/linux-device-drivers | |
737 | S: Supported | |
738 | F: drivers/iio/*/ad* | |
739 | X: drivers/iio/*/adjd* | |
740 | F: drivers/staging/iio/*/ad* | |
741 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 742 | |
0e3b67b3 LPC |
743 | ANALOG DEVICES INC DMA DRIVERS |
744 | M: Lars-Peter Clausen <lars@metafoo.de> | |
745 | W: http://ez.analog.com/community/linux-device-drivers | |
746 | S: Supported | |
747 | F: drivers/dma/dma-axi-dmac.c | |
748 | ||
41c9e95d GK |
749 | ANDROID DRIVERS |
750 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 751 | M: Arve HjønnevĂ¥g <arve@android.com> |
41c9e95d | 752 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
754 | L: devel@driverdev.osuosl.org |
755 | S: Supported | |
756 | F: drivers/android/ | |
757 | F: drivers/staging/android/ | |
758 | ||
42269063 | 759 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 760 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 761 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 762 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 763 | S: Maintained |
679655da | 764 | F: sound/aoa/ |
42269063 | 765 | |
1da177e4 | 766 | APM DRIVER |
e5f6450c | 767 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 768 | S: Odd fixes |
679655da JP |
769 | F: arch/x86/kernel/apm_32.c |
770 | F: include/linux/apm_bios.h | |
c117ab84 | 771 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 772 | F: drivers/char/apm-emulation.c |
1da177e4 | 773 | |
bd7aa4b2 | 774 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 775 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 776 | L: linux-input@vger.kernel.org |
75dd112a | 777 | S: Odd fixes |
679655da | 778 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 779 | |
6f2fad74 | 780 | APPLE SMC DRIVER |
75dd112a | 781 | M: Henrik Rydberg <rydberg@bitmath.org> |
d618540f | 782 | L: lm-sensors@lm-sensors.org |
75dd112a | 783 | S: Odd fixes |
679655da | 784 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 785 | |
1da177e4 | 786 | APPLETALK NETWORK LAYER |
8b58be88 | 787 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 788 | S: Maintained |
679655da JP |
789 | F: drivers/net/appletalk/ |
790 | F: net/appletalk/ | |
1da177e4 | 791 | |
24299502 IS |
792 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
793 | M: Iyappan Subramanian <isubramanian@apm.com> | |
794 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
795 | S: Supported |
796 | F: drivers/net/ethernet/apm/xgene/ | |
797 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
798 | ||
62a37dc7 LP |
799 | APTINA CAMERA SENSOR PLL |
800 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
801 | L: linux-media@vger.kernel.org | |
802 | S: Maintained | |
803 | F: drivers/media/i2c/aptina-pll.* | |
804 | ||
1154ea7d | 805 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 806 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 807 | S: Maintained |
8a61f013 JH |
808 | F: drivers/video/fbdev/arcfb.c |
809 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 810 | |
1da177e4 | 811 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 812 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 813 | S: Maintained |
679655da JP |
814 | F: arch/arm/lib/floppydma.S |
815 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 816 | |
6f96521f WD |
817 | ARM PMU PROFILING AND DEBUGGING |
818 | M: Will Deacon <will.deacon@arm.com> | |
819 | S: Maintained | |
fa8ad788 | 820 | F: arch/arm/kernel/perf_* |
6f96521f | 821 | F: arch/arm/oprofile/common.c |
6f96521f WD |
822 | F: arch/arm/kernel/hw_breakpoint.c |
823 | F: arch/arm/include/asm/hw_breakpoint.h | |
fa8ad788 MR |
824 | F: arch/arm/include/asm/perf_event.h |
825 | F: drivers/perf/arm_pmu.c | |
826 | F: include/linux/perf/arm_pmu.h | |
6f96521f | 827 | |
d4275354 | 828 | ARM PORT |
8b58be88 | 829 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 830 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
831 | W: http://www.arm.linux.org.uk/ |
832 | S: Maintained | |
833 | F: arch/arm/ | |
834 | ||
d323c243 SB |
835 | ARM SUB-ARCHITECTURES |
836 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 837 | S: Maintained |
d323c243 SB |
838 | F: arch/arm/mach-*/ |
839 | F: arch/arm/plat-*/ | |
840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
841 | ||
cefbf4ea RK |
842 | ARM PRIMECELL AACI PL041 DRIVER |
843 | M: Russell King <linux@arm.linux.org.uk> | |
844 | S: Maintained | |
845 | F: sound/arm/aaci.* | |
846 | ||
847 | ARM PRIMECELL CLCD PL110 DRIVER | |
848 | M: Russell King <linux@arm.linux.org.uk> | |
849 | S: Maintained | |
8a61f013 | 850 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
851 | |
852 | ARM PRIMECELL KMI PL050 DRIVER | |
853 | M: Russell King <linux@arm.linux.org.uk> | |
854 | S: Maintained | |
855 | F: drivers/input/serio/ambakmi.* | |
856 | F: include/linux/amba/kmi.h | |
857 | ||
2761f5c2 | 858 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
859 | M: Russell King <linux@arm.linux.org.uk> |
860 | S: Maintained | |
679655da | 861 | F: drivers/mmc/host/mmci.* |
2f748aaa | 862 | F: include/linux/amba/mmci.h |
2761f5c2 | 863 | |
1b4304e5 RK |
864 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
865 | M: Russell King <linux@arm.linux.org.uk> | |
866 | S: Maintained | |
867 | F: drivers/tty/serial/amba-pl01*.c | |
868 | F: include/linux/amba/serial.h | |
2761f5c2 | 869 | |
cefbf4ea RK |
870 | ARM PRIMECELL BUS SUPPORT |
871 | M: Russell King <linux@arm.linux.org.uk> | |
872 | S: Maintained | |
873 | F: drivers/amba/ | |
874 | F: include/linux/amba/bus.h | |
875 | ||
2b7a52a4 | 876 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 877 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 878 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
879 | S: Maintained |
880 | ||
9c784f95 | 881 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 882 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 883 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
884 | S: Maintained |
885 | ||
2b7a52a4 | 886 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 887 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
889 | S: Maintained |
890 | ||
1b106699 MR |
891 | ARM/Allwinner A1X SoC support |
892 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
893 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
894 | S: Maintained | |
60b0f380 MR |
895 | N: sun[x4567]i |
896 | ||
897 | ARM/Allwinner SoC Clock Support | |
898 | M: Emilio LĂ³pez <emilio@elopez.com.ar> | |
899 | S: Maintained | |
900 | F: drivers/clk/sunxi/ | |
1b106699 | 901 | |
7c1e3876 CC |
902 | ARM/Amlogic MesonX SoC support |
903 | M: Carlo Caione <carlo@caione.org> | |
904 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
905 | S: Maintained | |
12ddbadf | 906 | F: drivers/media/rc/meson-ir.c |
7c1e3876 CC |
907 | N: meson[x68] |
908 | ||
eff506fa TZ |
909 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
910 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
911 | S: Maintained | |
912 | F: arch/arm/mach-alpine/ | |
913 | ||
c1fc8675 | 914 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
c1fc8675 | 915 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 916 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 917 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 NF |
919 | W: http://www.linux4sam.org |
920 | S: Supported | |
921 | F: arch/arm/mach-at91/ | |
f0a0a58e | 922 | F: include/soc/at91/ |
70e389cc MB |
923 | F: arch/arm/boot/dts/at91*.dts |
924 | F: arch/arm/boot/dts/at91*.dtsi | |
925 | F: arch/arm/boot/dts/sama*.dts | |
926 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 927 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 928 | |
6e05dd4e BB |
929 | ARM/ATMEL AT91 Clock Support |
930 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
931 | S: Maintained | |
932 | F: drivers/clk/at91 | |
933 | ||
986cf2e9 | 934 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 935 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
936 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
937 | S: Maintained | |
938 | F: arch/arm/mach-highbank/ | |
939 | ||
d94f944e | 940 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 941 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
942 | S: Maintained |
943 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 944 | |
4863dea3 SG |
945 | ARM/CAVIUM THUNDER NETWORK DRIVER |
946 | M: Sunil Goutham <sgoutham@cavium.com> | |
947 | M: Robert Richter <rric@kernel.org> | |
948 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
949 | S: Supported | |
322e5cc5 | 950 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 951 | |
386ab516 AS |
952 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
953 | M: Alexander Shiyan <shc_work@mail.ru> | |
954 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
955 | S: Odd Fixes | |
b8ba3874 | 956 | N: clps711x |
386ab516 | 957 | |
2b7a52a4 | 958 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 959 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 960 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 961 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 962 | S: Maintained |
d19d3667 HS |
963 | F: arch/arm/mach-ep93xx/ |
964 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
965 | |
966 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 967 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
969 | S: Maintained |
970 | ||
d4275354 | 971 | ARM/CLKDEV SUPPORT |
8b58be88 | 972 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 973 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 974 | S: Maintained |
d4275354 | 975 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 976 | F: drivers/clk/clkdev.c |
d4275354 | 977 | |
d48134e7 | 978 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 979 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 980 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
981 | S: Maintained |
982 | ||
94150095 HF |
983 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
984 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
985 | S: Maintained | |
986 | F: arch/arm/mach-ep93xx/micro9.c | |
987 | ||
a06ae860 PP |
988 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
989 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
990 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
991 | S: Maintained | |
01081f5a | 992 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
993 | F: Documentation/trace/coresight.txt |
994 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 995 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
a06ae860 | 996 | |
1da177e4 | 997 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 998 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
999 | S: Maintained |
1000 | ||
881a95f9 | 1001 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1002 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1003 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1004 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1005 | S: Maintained |
f49afbb5 | 1006 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1007 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1008 | |
a990cbd8 | 1009 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1010 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1011 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
1013 | S: Maintained |
1014 | F: arch/arm/mach-prima2/ | |
4a9c44f1 | 1015 | F: drivers/clk/sirf/ |
05f30e8d | 1016 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1017 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1018 | N: [^a-z]sirf |
a990cbd8 | 1019 | |
c9d862c4 BS |
1020 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1021 | M: Baruch Siach <baruch@tkos.co.il> | |
1022 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1023 | S: Maintained | |
cde137aa | 1024 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1025 | N: digicolor |
1026 | ||
d4275354 | 1027 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 1028 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1029 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1030 | W: http://www.arm.linux.org.uk/ |
1031 | S: Maintained | |
1032 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1033 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1034 | |
4721f3ce UKK |
1035 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1036 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1037 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1038 | S: Maintained | |
1039 | N: efm32 | |
1040 | ||
a9da4f7e | 1041 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1042 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1043 | M: Stefan Schmidt <stefan@openezx.org> | |
1044 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1045 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1046 | W: http://www.openezx.org/ |
1047 | S: Maintained | |
cafc2265 SS |
1048 | T: topgit git://git.openezx.org/openezx.git |
1049 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1050 | |
6a915af9 | 1051 | ARM/FARADAY FA526 PORT |
162500b3 | 1052 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1054 | S: Maintained |
1fa7e547 | 1055 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1056 | F: arch/arm/mm/*-fa* |
6a915af9 | 1057 | |
d4275354 | 1058 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 1059 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1060 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1061 | W: http://www.arm.linux.org.uk/ |
1062 | S: Maintained | |
1063 | F: arch/arm/include/asm/hardware/dec21285.h | |
1064 | F: arch/arm/mach-footbridge/ | |
1065 | ||
86183a5f | 1066 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1067 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1068 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 1069 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1070 | S: Maintained |
f1c12837 | 1071 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1072 | F: arch/arm/mach-imx/ |
ce515a6b | 1073 | F: arch/arm/mach-mxs/ |
2a82f95c | 1074 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1075 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1076 | F: drivers/clk/imx/ |
1077 | F: include/soc/imx/ | |
86183a5f | 1078 | |
142109d2 | 1079 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1080 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1081 | M: Sascha Hauer <kernel@pengutronix.de> |
1082 | R: Stefan Agner <stefan@agner.ch> | |
1083 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1084 | S: Maintained | |
1085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1086 | F: arch/arm/mach-imx/*vf610* | |
1087 | F: arch/arm/boot/dts/vf* | |
1088 | ||
2b7a52a4 | 1089 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1090 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1091 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1092 | S: Maintained |
1093 | ||
90b8fc34 | 1094 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1095 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1096 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1097 | S: Maintained |
1098 | ||
ef47d5f0 | 1099 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1100 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1101 | M: Paul Parsons <lost.distance@yahoo.com> |
1102 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1103 | S: Maintained |
1104 | F: arch/arm/mach-pxa/hx4700.c | |
1105 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1106 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1107 | |
4dfad069 WX |
1108 | ARM/HISILICON SOC SUPPORT |
1109 | M: Wei Xu <xuwei5@hisilicon.com> | |
1110 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1111 | W: http://www.hisilicon.com | |
1112 | S: Supported | |
1113 | T: git git://github.com/hisilicon/linux-hisi.git | |
1114 | F: arch/arm/mach-hisi/ | |
1115 | ||
21f37bc3 | 1116 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1117 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1118 | W: www.jlime.com |
1119 | S: Maintained | |
084bad91 KE |
1120 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1121 | F: arch/arm/mach-sa1100/jornada720.c | |
1122 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1123 | |
5e767ab9 JMC |
1124 | ARM/IGEP MACHINE SUPPORT |
1125 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1126 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1127 | L: linux-omap@vger.kernel.org | |
1128 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1129 | S: Maintained | |
06ff74fd | 1130 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1131 | |
403d2971 MV |
1132 | ARM/INCOME PXA270 SUPPORT |
1133 | M: Marek Vasut <marek.vasut@gmail.com> | |
1134 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1135 | S: Maintained | |
ec154082 | 1136 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1137 | |
2b7a52a4 | 1138 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1139 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1140 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1141 | S: Maintained |
e2bdb176 DW |
1142 | |
1143 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1144 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1145 | S: Orphan |
2b7a52a4 LB |
1146 | |
1147 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1148 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1149 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1150 | S: Maintained |
2b7a52a4 LB |
1151 | |
1152 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1153 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1154 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1155 | S: Maintained |
2b7a52a4 | 1156 | |
2b7a52a4 | 1157 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1158 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1159 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1160 | S: Maintained |
1161 | ||
dfdd8cc9 KH |
1162 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1163 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1164 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1165 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1166 | S: Maintained |
1167 | F: arch/arm/mach-ixp4xx/ | |
1168 | ||
838553c5 | 1169 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1170 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1171 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1172 | S: Maintained | |
1173 | F: arch/arm/mach-pxa/stargate2.c | |
1174 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1175 | ||
2b7a52a4 | 1176 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1177 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1178 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1179 | S: Maintained |
2b7a52a4 LB |
1180 | |
1181 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1182 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1183 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1184 | S: Maintained |
1185 | ||
1154f858 | 1186 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1187 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1188 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1189 | S: Maintained | |
1190 | F: arch/arm/mach-keystone/ | |
317929cd | 1191 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1192 | |
bc6aa566 | 1193 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1194 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1195 | L: linux-kernel@vger.kernel.org |
1196 | S: Maintained | |
1197 | F: drivers/clk/keystone/ | |
1198 | ||
1199 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1200 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1201 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1202 | L: linux-kernel@vger.kernel.org | |
1203 | S: Maintained | |
1204 | F: drivers/clocksource/timer-keystone.c | |
1205 | ||
1206 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1207 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1208 | L: linux-kernel@vger.kernel.org |
1209 | S: Maintained | |
1210 | F: drivers/power/reset/keystone-reset.c | |
1211 | ||
1212 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1213 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1214 | L: linux-kernel@vger.kernel.org |
1215 | S: Maintained | |
1216 | F: drivers/memory/*emif* | |
1217 | ||
2b7a52a4 | 1218 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1219 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1220 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1221 | S: Maintained |
1222 | ||
3143875f JE |
1223 | ARM/LPC18XX ARCHITECTURE |
1224 | M: Joachim Eastwood <manabian@gmail.com> | |
1225 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1226 | S: Maintained | |
1227 | N: lpc18xx | |
1228 | ||
3b886171 | 1229 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1230 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1231 | S: Maintained |
1232 | ||
31c17ac9 | 1233 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support |
75f41273 TP |
1234 | M: Jason Cooper <jason@lakedaemon.net> |
1235 | M: Andrew Lunn <andrew@lunn.ch> | |
1236 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1237 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1238 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1239 | S: Maintained | |
1240 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1241 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1242 | F: arch/arm/boot/dts/armada* |
1243 | F: arch/arm/boot/dts/kirkwood* | |
1244 | ||
75f41273 | 1245 | |
40f4978b SH |
1246 | ARM/Marvell Berlin SoC support |
1247 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1248 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1249 | S: Maintained | |
1250 | F: arch/arm/mach-berlin/ | |
31c17ac9 GC |
1251 | F: arch/arm/boot/dts/berlin* |
1252 | ||
40f4978b | 1253 | |
4cfab57e | 1254 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1255 | M: Jason Cooper <jason@lakedaemon.net> |
1256 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1257 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1258 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1260 | S: Maintained |
1261 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1262 | F: arch/arm/mach-mv78xx0/ |
1263 | F: arch/arm/mach-orion5x/ | |
1264 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1265 | F: arch/arm/boot/dts/dove* |
1266 | F: arch/arm/boot/dts/orion5x* | |
1267 | ||
3b886171 | 1268 | |
d69ac131 AC |
1269 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1270 | M: Alexander Clouter <alex@digriz.org.uk> | |
1271 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1272 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1273 | S: Maintained | |
1274 | F: arch/arm/mach-orion5x/ts78xx-* | |
1275 | ||
607b8fc9 EH |
1276 | ARM/Mediatek RTC DRIVER |
1277 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1278 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1279 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1280 | S: Maintained | |
1281 | F: drivers/rtc/rtc-mt6397.c | |
1282 | ||
e54951c8 MB |
1283 | ARM/Mediatek SoC support |
1284 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1285 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1286 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1287 | S: Maintained |
1288 | F: arch/arm/boot/dts/mt6* | |
1289 | F: arch/arm/boot/dts/mt8* | |
1290 | F: arch/arm/mach-mediatek/ | |
1291 | N: mtk | |
1292 | K: mediatek | |
1293 | ||
adcb079f AB |
1294 | ARM/MICREL KS8695 ARCHITECTURE |
1295 | M: Greg Ungerer <gerg@uclinux.org> | |
1296 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1297 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1298 | S: Odd Fixes |
1299 | ||
d78ff0a5 | 1300 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1301 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1303 | F: arch/arm/mach-pxa/mioa701.c |
1304 | S: Maintained | |
1305 | ||
9624dfe6 | 1306 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1307 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1308 | S: Maintained |
1309 | ||
e0ee9851 | 1310 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1311 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1312 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1313 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1314 | S: Maintained | |
1315 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1316 | F: drivers/pinctrl/nomadik/ |
87572880 | 1317 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1318 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1319 | |
9d76295a | 1320 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1321 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1322 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1323 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1324 | S: Supported | |
1325 | ||
8459c159 | 1326 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1327 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1328 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1329 | S: Maintained |
1330 | ||
5d783a2d | 1331 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1332 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1333 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1334 | W: http://hackndev.com |
1335 | S: Maintained | |
933d35f0 JP |
1336 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1337 | F: arch/arm/mach-pxa/palmtx.c | |
1338 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1339 | F: arch/arm/mach-pxa/palmt5.c | |
1340 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1341 | F: arch/arm/mach-pxa/palmld.c | |
1342 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1343 | F: arch/arm/mach-pxa/palmte2.c | |
1344 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1345 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1346 | |
b57fe924 | 1347 | ARM/PALM TREO SUPPORT |
d8130624 | 1348 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1349 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1350 | W: http://hackndev.com |
1351 | S: Maintained | |
b57fe924 JP |
1352 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1353 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1354 | |
c49e1e63 | 1355 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1356 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1357 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1358 | W: http://hackndev.com |
1359 | S: Maintained | |
933d35f0 JP |
1360 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1361 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1362 | |
1da177e4 | 1363 | ARM/PLEB SUPPORT |
8b58be88 | 1364 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1365 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1366 | S: Maintained | |
1367 | ||
1368 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1369 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1371 | W: http://www.arm.linux.org.uk/ |
1372 | S: Maintained | |
1373 | ||
8fc1b0f8 KG |
1374 | ARM/QUALCOMM SUPPORT |
1375 | M: Kumar Gala <galak@codeaurora.org> | |
f5d3af9d | 1376 | M: Andy Gross <agross@codeaurora.org> |
8fc1b0f8 KG |
1377 | M: David Brown <davidb@codeaurora.org> |
1378 | L: linux-arm-msm@vger.kernel.org | |
f5d3af9d | 1379 | L: linux-soc@vger.kernel.org |
8fc1b0f8 KG |
1380 | S: Maintained |
1381 | F: arch/arm/mach-qcom/ | |
f5d3af9d | 1382 | F: drivers/soc/qcom/ |
c0c89faf SB |
1383 | F: drivers/tty/serial/msm_serial.h |
1384 | F: drivers/tty/serial/msm_serial.c | |
1385 | F: drivers/*/pm8???-* | |
1386 | F: drivers/mfd/ssbi.c | |
916f743d | 1387 | F: drivers/firmware/qcom_scm.c |
8fc1b0f8 KG |
1388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
1389 | ||
2b7a52a4 | 1390 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1391 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1392 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1393 | S: Maintained |
1394 | ||
d4275354 | 1395 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1396 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1397 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1398 | W: http://www.arm.linux.org.uk/ |
1399 | S: Maintained | |
d4275354 RK |
1400 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1401 | F: arch/arm/include/asm/hardware/ioc.h | |
1402 | F: arch/arm/include/asm/hardware/iomd.h | |
1403 | F: arch/arm/include/asm/hardware/memc.h | |
1404 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1405 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1406 | F: drivers/net/ethernet/i825xx/ether1* |
1407 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1408 | F: drivers/scsi/arm/ |
1409 | ||
08ddbb0a HS |
1410 | ARM/Rockchip SoC support |
1411 | M: Heiko Stuebner <heiko@sntech.de> | |
1412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1413 | L: linux-rockchip@lists.infradead.org |
08ddbb0a | 1414 | S: Maintained |
541555e9 | 1415 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1416 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1417 | F: drivers/clk/rockchip/ |
1418 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1419 | F: drivers/*/*rockchip* |
541555e9 HS |
1420 | F: drivers/*/*/*rockchip* |
1421 | F: sound/soc/rockchip/ | |
b4331b43 | 1422 | N: rockchip |
08ddbb0a | 1423 | |
5bfb937c KK |
1424 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1425 | M: Kukjin Kim <kgene@kernel.org> | |
e8f98457 | 1426 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
efc03ecb | 1427 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1428 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1429 | S: Maintained |
6f0589c8 MB |
1430 | F: arch/arm/boot/dts/s3c* |
1431 | F: arch/arm/boot/dts/exynos* | |
d97236e6 | 1432 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1433 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1434 | F: arch/arm/mach-s3c24*/ |
1435 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1436 | F: arch/arm/mach-s5p*/ |
1437 | F: arch/arm/mach-exynos*/ | |
eb2ffcaf BD |
1438 | F: drivers/*/*s3c2410* |
1439 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1440 | F: drivers/spi/spi-s3c* |
1441 | F: sound/soc/samsung/* | |
33d43cdd | 1442 | N: exynos |
f556cb07 | 1443 | |
10ffa964 KP |
1444 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1445 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1446 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1447 | S: Maintained | |
004bbd3c | 1448 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1449 | |
3ce4ccb6 KD |
1450 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1451 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1452 | M: Kamil Debski <k.debski@samsung.com> | |
1453 | L: linux-arm-kernel@lists.infradead.org | |
1454 | L: linux-media@vger.kernel.org | |
1455 | S: Maintained | |
1456 | F: drivers/media/platform/s5p-g2d/ | |
1457 | ||
e6a476fd MS |
1458 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1459 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1460 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1461 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1462 | L: linux-arm-kernel@lists.infradead.org |
1463 | L: linux-media@vger.kernel.org | |
1464 | S: Maintained | |
934455d7 | 1465 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1466 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1467 | |
1468 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1469 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1470 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1471 | L: linux-arm-kernel@lists.infradead.org | |
1472 | L: linux-media@vger.kernel.org | |
1473 | S: Maintained | |
90d72ac6 | 1474 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1475 | |
d48d38e8 | 1476 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1477 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1478 | M: Magnus Damm <magnus.damm@gmail.com> |
1479 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1480 | W: http://oss.renesas.com |
bbff48f5 | 1481 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1483 | S: Supported |
0b514fdb SH |
1484 | F: arch/arm/boot/dts/emev2* |
1485 | F: arch/arm/boot/dts/r7s* | |
1486 | F: arch/arm/boot/dts/r8a* | |
1487 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1488 | F: arch/arm/configs/bockw_defconfig |
0b514fdb SH |
1489 | F: arch/arm/configs/marzen_defconfig |
1490 | F: arch/arm/configs/shmobile_defconfig | |
7a2071c5 | 1491 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 PM |
1492 | F: arch/arm/mach-shmobile/ |
1493 | F: drivers/sh/ | |
1494 | ||
66314223 | 1495 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1496 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1497 | S: Maintained |
1498 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1499 | F: arch/arm/boot/dts/socfpga* |
1500 | F: arch/arm/configs/socfpga_defconfig | |
ba2b7d0a | 1501 | W: http://www.rocketboards.org |
efadb751 | 1502 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1503 | |
1504 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1505 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1506 | S: Maintained |
1507 | F: drivers/clk/socfpga/ | |
1508 | ||
71bcada8 TT |
1509 | ARM/SOCFPGA EDAC SUPPORT |
1510 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1511 | S: Maintained | |
1512 | F: drivers/edac/altera_edac. | |
1513 | ||
65ebcc11 | 1514 | ARM/STI ARCHITECTURE |
a92177ea SK |
1515 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1516 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1517 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1518 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1519 | L: kernel@stlinux.com | |
1520 | W: http://www.stlinux.com | |
1521 | S: Maintained | |
1522 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1523 | F: arch/arm/boot/dts/sti* |
1524 | F: drivers/clocksource/arm_global_timer.c | |
82805d1b | 1525 | F: drivers/clocksource/clksrc_st_lpc.c |
a92177ea | 1526 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1527 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1528 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1529 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1530 | F: drivers/phy/phy-miphy28lp.c |
1531 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1532 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1533 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a GKH |
1534 | F: drivers/pinctrl/pinctrl-st.c |
1535 | F: drivers/reset/sti/ | |
db4112e6 | 1536 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1537 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1538 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1539 | F: drivers/usb/host/ehci-st.c |
1540 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1541 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1542 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1543 | |
ee6e7879 MC |
1544 | ARM/STM32 ARCHITECTURE |
1545 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
1546 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1547 | S: Maintained | |
1548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1549 | N: stm32 | |
1550 | F: drivers/clocksource/armv7m_systick.c | |
1551 | ||
2b7a52a4 | 1552 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1553 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1554 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1555 | S: Maintained |
1556 | ||
1bbd7089 | 1557 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1558 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1559 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1560 | S: Maintained | |
1561 | ||
2b7a52a4 | 1562 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1563 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1564 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1565 | S: Maintained |
1566 | ||
98ad6e3b | 1567 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1568 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1569 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1570 | W: http://www.mcuos.com |
1571 | S: Maintained | |
4e89e8f6 | 1572 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1573 | F: drivers/input/keyboard/w90p910_keypad.c |
1574 | F: drivers/input/touchscreen/w90p910_ts.c | |
1575 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1576 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1577 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1578 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1579 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1580 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1581 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1582 | |
54274d71 | 1583 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1584 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1585 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1586 | S: Supported | |
1587 | F: arch/arm/mach-u300/ | |
9affbd24 | 1588 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1589 | F: drivers/i2c/busses/i2c-stu300.c |
1590 | F: drivers/rtc/rtc-coh901331.c | |
1591 | F: drivers/watchdog/coh901327_wdt.c | |
1592 | F: drivers/dma/coh901318* | |
87572880 LW |
1593 | F: drivers/mfd/ab3100* |
1594 | F: drivers/rtc/rtc-ab3100.c | |
1595 | F: drivers/rtc/rtc-coh901331.c | |
1596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1597 | |
3d00d04f MY |
1598 | ARM/UNIPHIER ARCHITECTURE |
1599 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1600 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1601 | S: Maintained | |
a3ff83d2 | 1602 | F: arch/arm/boot/dts/uniphier* |
3d00d04f | 1603 | F: arch/arm/mach-uniphier/ |
a3ff83d2 MY |
1604 | F: drivers/pinctrl/uniphier/ |
1605 | F: drivers/tty/serial/8250/8250_uniphier.c | |
3d00d04f MY |
1606 | N: uniphier |
1607 | ||
87572880 | 1608 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1609 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1610 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1611 | S: Maintained | |
1612 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1613 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1614 | F: drivers/dma/ste_dma40* |
e4651a9f | 1615 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1616 | F: drivers/mfd/abx500* |
1617 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1618 | F: drivers/mfd/dbx500* |
1619 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1620 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1621 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1622 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1623 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1625 | |
e93fde28 UH |
1626 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1627 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1628 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1629 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1630 | S: Maintained | |
1631 | F: drivers/clk/ux500/ | |
1632 | F: include/linux/platform_data/clk-ux500.h | |
1633 | ||
740d93b1 PM |
1634 | ARM/VERSATILE EXPRESS PLATFORM |
1635 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1636 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1637 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1638 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1639 | S: Maintained | |
1640 | F: arch/arm/boot/dts/vexpress* | |
9ccd6080 | 1641 | F: arch/arm64/boot/dts/arm/vexpress* |
740d93b1 PM |
1642 | F: arch/arm/mach-vexpress/ |
1643 | F: */*/vexpress* | |
7e8f403f | 1644 | F: */*/*/vexpress* |
740d93b1 PM |
1645 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1646 | F: drivers/clocksource/versatile.c | |
1647 | ||
d4275354 | 1648 | ARM/VFP SUPPORT |
8b58be88 | 1649 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1650 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1651 | W: http://www.arm.linux.org.uk/ |
1652 | S: Maintained | |
1653 | F: arch/arm/vfp/ | |
1654 | ||
e66b6d8e MV |
1655 | ARM/VOIPAC PXA270 SUPPORT |
1656 | M: Marek Vasut <marek.vasut@gmail.com> | |
1657 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1658 | S: Maintained | |
1659 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1660 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1661 | |
04529fe2 TP |
1662 | ARM/VT8500 ARM ARCHITECTURE |
1663 | M: Tony Prisk <linux@prisktech.co.nz> | |
1664 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1665 | S: Maintained | |
1666 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1667 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1668 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1669 | F: drivers/mmc/host/wmt-sdmmc.c |
1670 | F: drivers/pwm/pwm-vt8500.c | |
1671 | F: drivers/rtc/rtc-vt8500.c | |
1672 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1673 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1674 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1675 | F: drivers/video/fbdev/vt8500lcdfb.* |
1676 | F: drivers/video/fbdev/wm8505fb* | |
1677 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1678 | |
e66b6d8e MV |
1679 | ARM/ZIPIT Z2 SUPPORT |
1680 | M: Marek Vasut <marek.vasut@gmail.com> | |
1681 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1682 | S: Maintained | |
1683 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1684 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1685 | |
5ecc4b53 JN |
1686 | ARM/ZTE ARCHITECTURE |
1687 | M: Jun Nie <jun.nie@linaro.org> | |
1688 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1689 | S: Maintained | |
1690 | F: arch/arm/mach-zx/ | |
1691 | F: drivers/clk/zte/ | |
1692 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1693 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1694 | ||
51f29d44 MS |
1695 | ARM/ZYNQ ARCHITECTURE |
1696 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1697 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1698 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1699 | W: http://wiki.xilinx.com | |
d6448b76 | 1700 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1701 | S: Supported |
1702 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1703 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1704 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1705 | N: zynq |
1706 | N: xilinx | |
1707 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1708 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1709 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1710 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1711 | |
48ec83bc | 1712 | ARM SMMU DRIVERS |
b8f9879e WD |
1713 | M: Will Deacon <will.deacon@arm.com> |
1714 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1715 | S: Maintained | |
1716 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1717 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1718 | F: drivers/iommu/io-pgtable-arm.c |
b8f9879e | 1719 | |
38074229 CM |
1720 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1721 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1722 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1723 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1724 | S: Maintained | |
1725 | F: arch/arm64/ | |
d19766ec | 1726 | F: Documentation/arm64/ |
38074229 | 1727 | |
9d7005f9 LP |
1728 | AS3645A LED FLASH CONTROLLER DRIVER |
1729 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1730 | L: linux-media@vger.kernel.org | |
1731 | T: git git://linuxtv.org/media_tree.git | |
1732 | S: Maintained | |
1733 | F: drivers/media/i2c/as3645a.c | |
1734 | F: include/media/as3645a.h | |
1735 | ||
d58de038 GJ |
1736 | ASC7621 HARDWARE MONITOR DRIVER |
1737 | M: George Joseph <george.joseph@fairview5.com> | |
1738 | L: lm-sensors@lm-sensors.org | |
1739 | S: Maintained | |
1740 | F: Documentation/hwmon/asc7621 | |
1741 | F: drivers/hwmon/asc7621.c | |
1742 | ||
b229ece9 | 1743 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1744 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1745 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1746 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1747 | W: http://acpi4asus.sf.net |
85091b71 | 1748 | S: Maintained |
b229ece9 CC |
1749 | F: drivers/platform/x86/asus*.c |
1750 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1751 | |
953a6479 | 1752 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 1753 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1754 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 1755 | S: Odd fixes |
679655da JP |
1756 | F: Documentation/crypto/async-tx-api.txt |
1757 | F: crypto/async_tx/ | |
1758 | F: drivers/dma/ | |
1759 | F: include/linux/dmaengine.h | |
1760 | F: include/linux/async_tx.h | |
b3e5f263 | 1761 | |
a1867d36 | 1762 | AT24 EEPROM DRIVER |
14d77c4d | 1763 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1764 | L: linux-i2c@vger.kernel.org |
1765 | S: Maintained | |
1766 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1767 | F: include/linux/platform_data/at24.h |
a1867d36 | 1768 | |
e7839f25 | 1769 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
1770 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
1771 | W: http://www.openaoe.org/ | |
1da177e4 | 1772 | S: Supported |
679655da JP |
1773 | F: Documentation/aoe/ |
1774 | F: drivers/block/aoe/ | |
1da177e4 | 1775 | |
9a10a870 | 1776 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1777 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1778 | L: linux-wireless@vger.kernel.org |
1779 | S: Supported | |
1780 | F: drivers/net/wireless/ath/* | |
1781 | ||
fa1c114f | 1782 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1783 | M: Jiri Slaby <jirislaby@gmail.com> |
1784 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1785 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 1786 | L: linux-wireless@vger.kernel.org |
72c706b7 | 1787 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1788 | S: Maintained |
fa451753 | 1789 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1790 | |
12e62d6f KV |
1791 | ATHEROS ATH6KL WIRELESS DRIVER |
1792 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1793 | L: linux-wireless@vger.kernel.org | |
1794 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1795 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1796 | S: Supported |
1797 | F: drivers/net/wireless/ath/ath6kl/ | |
1798 | ||
2be7d22f VK |
1799 | WILOCITY WIL6210 WIRELESS DRIVER |
1800 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1801 | L: linux-wireless@vger.kernel.org | |
1802 | L: wil6210@qca.qualcomm.com | |
1803 | S: Supported | |
1804 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1805 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 1806 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 1807 | |
1d7e1e6b CL |
1808 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1809 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1810 | L: linux-wireless@vger.kernel.org | |
1811 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1812 | S: Maintained | |
1813 | F: drivers/net/wireless/ath/carl9170/ | |
1814 | ||
2c2a6172 LT |
1815 | ATK0110 HWMON DRIVER |
1816 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1817 | L: lm-sensors@lm-sensors.org | |
1818 | S: Maintained | |
1819 | F: drivers/hwmon/asus_atk0110.c | |
1820 | ||
6f69a6d7 | 1821 | ATI_REMOTE2 DRIVER |
8b58be88 | 1822 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1823 | S: Maintained |
679655da | 1824 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1825 | |
7ae115b4 | 1826 | ATLX ETHERNET DRIVERS |
8b58be88 | 1827 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1828 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1829 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1830 | W: http://sourceforge.net/projects/atl1 |
1831 | W: http://atl1.sourceforge.net | |
1832 | S: Maintained | |
2b133ad6 | 1833 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1834 | |
1da177e4 | 1835 | ATM |
366c1bd1 | 1836 | M: Chas Williams <3chas3@gmail.com> |
476604de | 1837 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1838 | L: netdev@vger.kernel.org |
1da177e4 LT |
1839 | W: http://linux-atm.sourceforge.net |
1840 | S: Maintained | |
679655da JP |
1841 | F: drivers/atm/ |
1842 | F: include/linux/atm* | |
c117ab84 | 1843 | F: include/uapi/linux/atm* |
1da177e4 | 1844 | |
04ac2f46 | 1845 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1846 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1847 | S: Maintained |
1848 | F: drivers/mmc/host/atmel-mci.c | |
1849 | F: drivers/mmc/host/atmel-mci-regs.h | |
1850 | ||
a1cfac48 | 1851 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1852 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1853 | S: Supported |
df621252 | 1854 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1855 | |
dfae90ed | 1856 | ATMEL Audio ALSA driver |
3a82002c | 1857 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
1858 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
1859 | S: Supported | |
1860 | F: sound/soc/atmel | |
1861 | ||
b414dc16 NF |
1862 | ATMEL DMA DRIVER |
1863 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1864 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1865 | S: Supported | |
1866 | F: drivers/dma/at_hdmac.c | |
1867 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1868 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1869 | |
6bd0f436 LD |
1870 | ATMEL XDMA DRIVER |
1871 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1872 | L: linux-arm-kernel@lists.infradead.org | |
1873 | L: dmaengine@vger.kernel.org | |
1874 | S: Supported | |
1875 | F: drivers/dma/at_xdmac.c | |
1876 | ||
888f2804 LD |
1877 | ATMEL I2C DRIVER |
1878 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1879 | L: linux-i2c@vger.kernel.org | |
1880 | S: Supported | |
1881 | F: drivers/i2c/busses/i2c-at91.c | |
1882 | ||
15515545 JW |
1883 | ATMEL ISI DRIVER |
1884 | M: Josh Wu <josh.wu@atmel.com> | |
1885 | L: linux-media@vger.kernel.org | |
1886 | S: Supported | |
f2294c2d | 1887 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1888 | F: include/media/atmel-isi.h |
1889 | ||
8f4c79ce | 1890 | ATMEL LCDFB DRIVER |
8b58be88 | 1891 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1892 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1893 | S: Maintained |
8a61f013 | 1894 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1895 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1896 | |
89e5785f | 1897 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1898 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1899 | S: Supported |
9f2f381f | 1900 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1901 | |
5cbac98a JW |
1902 | ATMEL NAND DRIVER |
1903 | M: Josh Wu <josh.wu@atmel.com> | |
1904 | L: linux-mtd@lists.infradead.org | |
1905 | S: Supported | |
1906 | F: drivers/mtd/nand/atmel_nand* | |
1907 | ||
05c441ef | 1908 | ATMEL SDMMC DRIVER |
1909 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1910 | L: linux-mmc@vger.kernel.org | |
1911 | S: Supported | |
1912 | F: drivers/mmc/host/sdhci-of-at91.c | |
1913 | ||
754ce4f2 | 1914 | ATMEL SPI DRIVER |
a02875a6 | 1915 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1916 | S: Supported |
9df92e6c | 1917 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1918 | |
0ef09015 | 1919 | ATMEL SSC DRIVER |
03515f32 | 1920 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
1921 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1922 | S: Supported | |
1923 | F: drivers/misc/atmel-ssc.c | |
1924 | F: include/linux/atmel-ssc.h | |
1925 | ||
e9cb1c5a NF |
1926 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1927 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1928 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1929 | S: Supported | |
1930 | F: drivers/misc/atmel_tclib.c | |
1931 | F: drivers/clocksource/tcb_clksrc.c | |
1932 | ||
914a3f3b | 1933 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1934 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1935 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1936 | S: Supported |
faf2e1db | 1937 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 1938 | |
1da177e4 | 1939 | ATMEL WIRELESS DRIVER |
8b58be88 | 1940 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1941 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1942 | W: http://www.thekelleys.org.uk/atmel |
1943 | W: http://atmelwlandriver.sourceforge.net/ | |
1944 | S: Maintained | |
679655da | 1945 | F: drivers/net/wireless/atmel* |
1da177e4 | 1946 | |
a14c0f8f ND |
1947 | ATMEL MAXTOUCH DRIVER |
1948 | M: Nick Dyer <nick.dyer@itdev.co.uk> | |
1949 | T: git git://github.com/atmel-maxtouch/linux.git | |
1950 | S: Supported | |
1951 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
1952 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
1953 | F: include/linux/platform_data/atmel_mxt_ts.h | |
1954 | ||
26780d9e | 1955 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1956 | M: Bradley Grove <linuxdrivers@attotech.com> |
1957 | L: linux-scsi@vger.kernel.org | |
1958 | W: http://www.attotech.com | |
1959 | S: Supported | |
1960 | F: drivers/scsi/esas2r | |
26780d9e | 1961 | |
bc6e17b8 SS |
1962 | ATUSB IEEE 802.15.4 RADIO DRIVER |
1963 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
1964 | L: linux-wpan@vger.kernel.org | |
1965 | S: Maintained | |
1966 | F: drivers/net/ieee802154/atusb.c | |
1967 | F: drivers/net/ieee802154/atusb.h | |
1968 | F: drivers/net/ieee802154/at86rf230.h | |
1969 | ||
a92b7b80 | 1970 | AUDIT SUBSYSTEM |
915f389d | 1971 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 1972 | M: Eric Paris <eparis@redhat.com> |
915f389d | 1973 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 1974 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 1975 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 1976 | S: Maintained |
679655da | 1977 | F: include/linux/audit.h |
c117ab84 | 1978 | F: include/uapi/linux/audit.h |
679655da | 1979 | F: kernel/audit* |
a92b7b80 | 1980 | |
70e84049 | 1981 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1982 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1983 | W: http://miguelojeda.es/auxdisplay.htm |
1984 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1985 | S: Maintained |
679655da JP |
1986 | F: drivers/auxdisplay/ |
1987 | F: include/linux/cfag12864b.h | |
70e84049 | 1988 | |
5f97f7f9 | 1989 | AVR32 ARCHITECTURE |
e336f61f HCE |
1990 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1991 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 1992 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1993 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1994 | W: http://avrfreaks.net/ |
e336f61f | 1995 | S: Maintained |
679655da | 1996 | F: arch/avr32/ |
5f97f7f9 HS |
1997 | |
1998 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1999 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2000 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2001 | S: Maintained | |
679655da | 2002 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2003 | |
1da177e4 | 2004 | AX.25 NETWORK LAYER |
8b58be88 | 2005 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2006 | L: linux-hams@vger.kernel.org |
d34cb28a | 2007 | W: http://www.linux-ax25.org/ |
1da177e4 | 2008 | S: Maintained |
c117ab84 | 2009 | F: include/uapi/linux/ax25.h |
679655da JP |
2010 | F: include/net/ax25.h |
2011 | F: net/ax25/ | |
1da177e4 | 2012 | |
d5269395 | 2013 | AZ6007 DVB DRIVER |
009a5410 | 2014 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d5269395 MCC |
2015 | L: linux-media@vger.kernel.org |
2016 | W: http://linuxtv.org | |
2017 | T: git git://linuxtv.org/media_tree.git | |
2018 | S: Maintained | |
2019 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2020 | ||
6777376e HV |
2021 | AZTECH FM RADIO RECEIVER DRIVER |
2022 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2023 | L: linux-media@vger.kernel.org | |
2024 | T: git git://linuxtv.org/media_tree.git | |
2025 | W: http://linuxtv.org | |
2026 | S: Maintained | |
2027 | F: drivers/media/radio/radio-aztech* | |
2028 | ||
e2d1d6c0 | 2029 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2030 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2031 | L: b43-dev@lists.infradead.org |
491b26b4 | 2032 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2033 | S: Odd Fixes |
679655da | 2034 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
2035 | |
2036 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2037 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2038 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2039 | L: b43-dev@lists.infradead.org |
491b26b4 | 2040 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2041 | S: Maintained |
679655da | 2042 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 2043 | |
300abeb5 | 2044 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2045 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2046 | M: Lee Jones <lee.jones@linaro.org> |
300abeb5 | 2047 | S: Maintained |
679655da JP |
2048 | F: drivers/video/backlight/ |
2049 | F: include/linux/backlight.h | |
300abeb5 | 2050 | |
c6c8fea2 | 2051 | BATMAN ADVANCED |
207df49e | 2052 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2053 | M: Simon Wunderlich <sw@simonwunderlich.de> |
207df49e | 2054 | M: Antonio Quartulli <antonio@meshcoding.com> |
c6c8fea2 SE |
2055 | L: b.a.t.m.a.n@lists.open-mesh.org |
2056 | W: http://www.open-mesh.org/ | |
2057 | S: Maintained | |
2058 | F: net/batman-adv/ | |
2059 | ||
e2d1d6c0 | 2060 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2061 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2062 | L: linux-hams@vger.kernel.org |
2063 | W: http://www.baycom.org/~tom/ham/ham.html | |
2064 | S: Maintained | |
679655da | 2065 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2066 | |
cafe5635 | 2067 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2068 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2069 | L: linux-bcache@vger.kernel.org |
2070 | W: http://bcache.evilpiepirate.org | |
d1aa1ab3 | 2071 | S: Maintained |
cafe5635 KO |
2072 | F: drivers/md/bcache/ |
2073 | ||
04bd844a HV |
2074 | BDISP ST MEDIA DRIVER |
2075 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2076 | L: linux-media@vger.kernel.org | |
2077 | T: git git://linuxtv.org/media_tree.git | |
2078 | W: http://linuxtv.org | |
2079 | S: Supported | |
2080 | F: drivers/media/platform/sti/bdisp | |
2081 | ||
e2d1d6c0 | 2082 | BEFS FILE SYSTEM |
55817d3d | 2083 | S: Orphan |
679655da JP |
2084 | F: Documentation/filesystems/befs.txt |
2085 | F: fs/befs/ | |
e2d1d6c0 | 2086 | |
564ee360 | 2087 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2088 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2089 | L: netdev@vger.kernel.org | |
2090 | S: Maintained | |
2091 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2092 | |
e2d1d6c0 | 2093 | BFS FILE SYSTEM |
8b58be88 | 2094 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2095 | S: Maintained |
679655da JP |
2096 | F: Documentation/filesystems/bfs.txt |
2097 | F: fs/bfs/ | |
c117ab84 | 2098 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2099 | |
1394f032 | 2100 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2101 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2102 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2103 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2104 | W: http://blackfin.uclinux.org |
2105 | S: Supported | |
679655da | 2106 | F: arch/blackfin/ |
566da5b2 | 2107 | |
e190d6b1 | 2108 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2109 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2110 | W: http://blackfin.uclinux.org |
2111 | S: Supported | |
7b35f033 | 2112 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2113 | |
566da5b2 | 2114 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2115 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2116 | W: http://blackfin.uclinux.org |
2117 | S: Supported | |
679655da | 2118 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2119 | |
936ed49a | 2120 | BLACKFIN SDH DRIVER |
109ec8c3 | 2121 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2122 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2123 | W: http://blackfin.uclinux.org |
2124 | S: Supported | |
2125 | F: drivers/mmc/host/bfin_sdh.c | |
2126 | ||
1394f032 | 2127 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2128 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2129 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2130 | W: http://blackfin.uclinux.org |
2131 | S: Supported | |
8460241e | 2132 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2133 | |
1e6d320f | 2134 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2135 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2136 | W: http://blackfin.uclinux.org |
2137 | S: Supported | |
679655da | 2138 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2139 | |
d24ecfcc | 2140 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2141 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2142 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2143 | W: http://blackfin.uclinux.org/ |
2144 | S: Supported | |
679655da | 2145 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2146 | |
1e204377 SJ |
2147 | BLACKFIN MEDIA DRIVER |
2148 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2149 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2150 | W: http://blackfin.uclinux.org/ |
2151 | S: Supported | |
2152 | F: drivers/media/platform/blackfin/ | |
2153 | F: drivers/media/i2c/adv7183* | |
2154 | F: drivers/media/i2c/vs6624* | |
2155 | ||
b54cf35a JSM |
2156 | BLINKM RGB LED DRIVER |
2157 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2158 | S: Maintained | |
2159 | F: drivers/leds/leds-blinkm.c | |
2160 | ||
1da177e4 | 2161 | BLOCK LAYER |
8b58be88 | 2162 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 2163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2164 | S: Maintained |
679655da | 2165 | F: block/ |
ae11f7ef | 2166 | F: kernel/trace/blktrace.c |
1da177e4 | 2167 | |
2b54aaef | 2168 | BLOCK2MTD DRIVER |
8b58be88 | 2169 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2170 | L: linux-mtd@lists.infradead.org |
2171 | S: Maintained | |
679655da | 2172 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2173 | |
63fbd24e | 2174 | BLUETOOTH DRIVERS |
8b58be88 | 2175 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2176 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2177 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2178 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2179 | W: http://www.bluez.org/ |
22e7a424 MH |
2180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2182 | S: Maintained |
679655da | 2183 | F: drivers/bluetooth/ |
1da177e4 | 2184 | |
63fbd24e | 2185 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2186 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2187 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2188 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2189 | L: linux-bluetooth@vger.kernel.org |
2190 | W: http://www.bluez.org/ | |
22e7a424 MH |
2191 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2193 | S: Maintained |
679655da JP |
2194 | F: net/bluetooth/ |
2195 | F: include/net/bluetooth/ | |
1da177e4 LT |
2196 | |
2197 | BONDING DRIVER | |
79b30750 | 2198 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2199 | M: Veaceslav Falico <vfalico@gmail.com> |
31639b94 | 2200 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
a6c36ee6 | 2201 | L: netdev@vger.kernel.org |
ce00f85c JC |
2202 | W: http://sourceforge.net/projects/bonding/ |
2203 | S: Supported | |
679655da | 2204 | F: drivers/net/bonding/ |
c117ab84 | 2205 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2206 | |
b5f4df34 AS |
2207 | BPF (Safe dynamic programs and tools) |
2208 | M: Alexei Starovoitov <ast@kernel.org> | |
2209 | L: netdev@vger.kernel.org | |
2210 | L: linux-kernel@vger.kernel.org | |
2211 | S: Supported | |
2212 | F: kernel/bpf/ | |
2213 | ||
39105890 | 2214 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2215 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
2216 | L: netdev@vger.kernel.org |
2217 | S: Supported | |
adfc5217 | 2218 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2219 | |
32ec90d5 FF |
2220 | BROADCOM GENET ETHERNET DRIVER |
2221 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2222 | L: netdev@vger.kernel.org | |
2223 | S: Supported | |
2224 | F: drivers/net/ethernet/broadcom/genet/ | |
2225 | ||
948c51e6 | 2226 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2227 | M: Sony Chacko <sony.chacko@qlogic.com> |
2228 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2229 | L: netdev@vger.kernel.org |
2230 | S: Supported | |
adfc5217 JK |
2231 | F: drivers/net/ethernet/broadcom/bnx2.* |
2232 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2233 | |
4d9d2cb0 | 2234 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2235 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2236 | L: netdev@vger.kernel.org |
2237 | S: Supported | |
adfc5217 | 2238 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2239 | |
90f4c594 | 2240 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2241 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2242 | M: Ray Jui <rjui@broadcom.com> |
2243 | M: Scott Branden <sbranden@broadcom.com> | |
497a045d | 2244 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2245 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2246 | S: Maintained |
2247 | F: arch/arm/mach-bcm/ | |
2248 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2249 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
2250 | F: arch/arm/boot/dts/bcm281* |
2251 | F: arch/arm/configs/bcm_defconfig | |
e4ef47f2 | 2252 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2253 | F: drivers/clocksource/bcm_kona_timer.c |
2254 | ||
9209bec4 | 2255 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2256 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2257 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2258 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2259 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2260 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2262 | S: Maintained |
9209bec4 | 2263 | N: bcm2835 |
f680f25c | 2264 | |
a2f6734c KC |
2265 | BROADCOM BCM33XX MIPS ARCHITECTURE |
2266 | M: Kevin Cernekee <cernekee@gmail.com> | |
2267 | L: linux-mips@linux-mips.org | |
2268 | S: Maintained | |
2269 | F: arch/mips/bcm3384/* | |
2270 | F: arch/mips/include/asm/mach-bcm3384/* | |
2271 | F: arch/mips/kernel/*bmips* | |
2272 | ||
5564f092 RM |
2273 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2274 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2275 | M: Rafał Miłecki <zajec5@gmail.com> | |
2276 | L: linux-mips@linux-mips.org | |
2277 | S: Maintained | |
2278 | F: arch/mips/bcm47xx/* | |
2279 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2280 | ||
9209bec4 | 2281 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe HM |
2282 | M: Hauke Mehrtens <hauke@hauke-m.de> |
2283 | L: linux-arm-kernel@lists.infradead.org | |
2284 | S: Maintained | |
2285 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2286 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2287 | F: arch/arm/boot/dts/bcm470* | |
2288 | ||
e076e962 FF |
2289 | BROADCOM BCM63XX ARM ARCHITECTURE |
2290 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2291 | L: linux-arm-kernel@lists.infradead.org | |
eb6725d0 | 2292 | T: git git://github.com/broadcom/arm-bcm63xx.git |
e076e962 FF |
2293 | S: Maintained |
2294 | F: arch/arm/mach-bcm/bcm63xx.c | |
2295 | F: arch/arm/include/debug/bcm63xx.S | |
2296 | ||
7110e227 KC |
2297 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2298 | M: Kevin Cernekee <cernekee@gmail.com> | |
2299 | L: linux-usb@vger.kernel.org | |
2300 | S: Maintained | |
2301 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2302 | ||
2df94fd6 | 2303 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2304 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2305 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2306 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2df94fd6 | 2307 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2308 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2309 | S: Maintained |
2310 | F: arch/arm/mach-bcm/*brcmstb* | |
2311 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2312 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2313 | N: brcmstb |
2df94fd6 | 2314 | |
70371cef KC |
2315 | BROADCOM BMIPS MIPS ARCHITECTURE |
2316 | M: Kevin Cernekee <cernekee@gmail.com> | |
2317 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2318 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2319 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2320 | S: Maintained |
2321 | F: arch/mips/bmips/* | |
2322 | F: arch/mips/include/asm/mach-bmips/* | |
2323 | F: arch/mips/kernel/*bmips* | |
338808de | 2324 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
70371cef KC |
2325 | F: drivers/irqchip/irq-bcm7* |
2326 | F: drivers/irqchip/irq-brcmstb* | |
2327 | ||
948c51e6 | 2328 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2329 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2330 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2331 | L: netdev@vger.kernel.org |
2332 | S: Supported | |
adfc5217 | 2333 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2334 | |
a9533e7e HP |
2335 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2336 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 2337 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 2338 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 2339 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 2340 | L: linux-wireless@vger.kernel.org |
5615171c | 2341 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 2342 | S: Supported |
f62ebdd5 | 2343 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 2344 | |
9958d6f9 | 2345 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2346 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2347 | L: linux-scsi@vger.kernel.org |
2348 | S: Supported | |
2349 | F: drivers/scsi/bnx2fc/ | |
2350 | ||
6a6b5ad0 | 2351 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2352 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2353 | L: linux-scsi@vger.kernel.org |
2354 | S: Supported | |
2355 | F: drivers/scsi/bnx2i/ | |
2356 | ||
36c0237f SB |
2357 | BROADCOM CYGNUS/IPROC ARM ARCHITECTURE |
2358 | M: Ray Jui <rjui@broadcom.com> | |
2359 | M: Scott Branden <sbranden@broadcom.com> | |
2360 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2361 | L: bcm-kernel-feedback-list@broadcom.com | |
eb6725d0 | 2362 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2363 | S: Maintained |
2364 | N: iproc | |
2365 | N: cygnus | |
2366 | N: bcm9113* | |
2367 | N: bcm9583* | |
2368 | N: bcm583* | |
2369 | N: bcm113* | |
2370 | ||
3b0213d5 GF |
2371 | BROADCOM BRCMSTB GPIO DRIVER |
2372 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
2373 | L: bcm-kernel-feedback-list@broadcom.com> | |
2374 | S: Supported | |
2375 | F: drivers/gpio/gpio-brcmstb.c | |
2376 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2377 | ||
7b7f588b | 2378 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2379 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2380 | L: bcm-kernel-feedback-list@broadcom.com |
2381 | S: Supported | |
2382 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2383 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2384 | |
f6e734a8 RM |
2385 | BROADCOM NVRAM DRIVER |
2386 | M: Rafał Miłecki <zajec5@gmail.com> | |
2387 | L: linux-mips@linux-mips.org | |
2388 | S: Maintained | |
2389 | F: drivers/firmware/broadcom/* | |
2390 | ||
02787daa BN |
2391 | BROADCOM STB NAND FLASH DRIVER |
2392 | M: Brian Norris <computersforpeace@gmail.com> | |
2393 | L: linux-mtd@lists.infradead.org | |
2394 | S: Maintained | |
2395 | F: drivers/mtd/nand/brcmnand/ | |
2396 | ||
c9678d86 RM |
2397 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2398 | M: Rafał Miłecki <zajec5@gmail.com> | |
2399 | L: linux-wireless@vger.kernel.org | |
2400 | S: Maintained | |
2401 | F: drivers/bcma/ | |
2402 | F: include/linux/bcma/ | |
2403 | ||
b8302205 FF |
2404 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2405 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2406 | L: netdev@vger.kernel.org | |
2407 | S: Supported | |
2408 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2409 | ||
7725ccfd | 2410 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2411 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2412 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2413 | L: linux-scsi@vger.kernel.org |
2414 | S: Supported | |
2415 | F: drivers/scsi/bfa/ | |
7725ccfd | 2416 | |
8b230ed8 | 2417 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2418 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2419 | L: netdev@vger.kernel.org |
2420 | S: Supported | |
f844a0ea | 2421 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2422 | |
5cdf7f76 | 2423 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2424 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2425 | L: linux-scsi@vger.kernel.org |
2426 | S: Supported | |
679655da JP |
2427 | F: block/bsg.c |
2428 | F: include/linux/bsg.h | |
c117ab84 | 2429 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2430 | |
af39917d CL |
2431 | BT87X AUDIO DRIVER |
2432 | M: Clemens Ladisch <clemens@ladisch.de> | |
2433 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2434 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2435 | S: Maintained | |
2436 | F: Documentation/sound/alsa/Bt87x.txt | |
2437 | F: sound/pci/bt87x.c | |
2438 | ||
ff1d5c2f | 2439 | BT8XXGPIO DRIVER |
eb032b98 | 2440 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2441 | W: http://bu3sch.de/btgpio.php |
2442 | S: Maintained | |
72dbb705 | 2443 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2444 | |
eb1eb04f | 2445 | BTRFS FILE SYSTEM |
c0778e25 CM |
2446 | M: Chris Mason <clm@fb.com> |
2447 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2448 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2449 | L: linux-btrfs@vger.kernel.org |
2450 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2451 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2452 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2453 | S: Maintained |
679655da JP |
2454 | F: Documentation/filesystems/btrfs.txt |
2455 | F: fs/btrfs/ | |
eb1eb04f | 2456 | |
1da177e4 | 2457 | BTTV VIDEO4LINUX DRIVER |
009a5410 | 2458 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
661263b5 | 2459 | L: linux-media@vger.kernel.org |
96b6aba0 | 2460 | W: http://linuxtv.org |
275ffde4 | 2461 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2462 | S: Odd fixes |
679655da | 2463 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2464 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2465 | |
1f34923c KA |
2466 | BUSLOGIC SCSI DRIVER |
2467 | M: Khalid Aziz <khalid@gonehiking.org> | |
2468 | L: linux-scsi@vger.kernel.org | |
2469 | S: Maintained | |
2470 | F: drivers/scsi/BusLogic.* | |
2471 | F: drivers/scsi/FlashPoint.* | |
2472 | ||
af39917d CL |
2473 | C-MEDIA CMI8788 DRIVER |
2474 | M: Clemens Ladisch <clemens@ladisch.de> | |
2475 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2476 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2477 | S: Maintained | |
2478 | F: sound/pci/oxygen/ | |
2479 | ||
2141355f MS |
2480 | C6X ARCHITECTURE |
2481 | M: Mark Salter <msalter@redhat.com> | |
2482 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2483 | L: linux-c6x-dev@linux-c6x.org | |
2484 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2485 | S: Maintained | |
2486 | F: arch/c6x/ | |
2487 | ||
a5432f5a | 2488 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2489 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
2490 | L: linux-cachefs@redhat.com |
2491 | S: Supported | |
2492 | F: Documentation/filesystems/caching/cachefiles.txt | |
2493 | F: fs/cachefiles/ | |
2494 | ||
c815ca39 HV |
2495 | CADET FM/AM RADIO RECEIVER DRIVER |
2496 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2497 | L: linux-media@vger.kernel.org | |
2498 | T: git git://linuxtv.org/media_tree.git | |
2499 | W: http://linuxtv.org | |
2500 | S: Maintained | |
2501 | F: drivers/media/radio/radio-cadet* | |
2502 | ||
77d5140f | 2503 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2504 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2505 | L: linux-media@vger.kernel.org |
275ffde4 | 2506 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2507 | S: Maintained |
679655da | 2508 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2509 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2510 | |
201b6bab | 2511 | CAIF NETWORK LAYER |
5c574f50 | 2512 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2513 | L: netdev@vger.kernel.org |
2514 | S: Supported | |
2515 | F: Documentation/networking/caif/ | |
2516 | F: drivers/net/caif/ | |
c117ab84 | 2517 | F: include/uapi/linux/caif/ |
201b6bab JP |
2518 | F: include/net/caif/ |
2519 | F: net/caif/ | |
2520 | ||
77dac90f | 2521 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2522 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2523 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2524 | L: discuss@x86-64.org |
2525 | S: Maintained | |
679655da JP |
2526 | F: arch/x86/kernel/pci-calgary_64.c |
2527 | F: arch/x86/kernel/tce_64.c | |
2528 | F: arch/x86/include/asm/calgary.h | |
2529 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2530 | |
e2d1d6c0 | 2531 | CAN NETWORK LAYER |
8d15d386 | 2532 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2533 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2534 | L: linux-can@vger.kernel.org |
84b0d715 | 2535 | W: https://github.com/linux-can |
870482a4 MKB |
2536 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2538 | S: Maintained |
f35f6c8f | 2539 | F: Documentation/networking/can.txt |
8d15d386 | 2540 | F: net/can/ |
8d15d386 | 2541 | F: include/linux/can/core.h |
c117ab84 CEB |
2542 | F: include/uapi/linux/can.h |
2543 | F: include/uapi/linux/can/bcm.h | |
2544 | F: include/uapi/linux/can/raw.h | |
2545 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2546 | |
4261a204 | 2547 | CAN NETWORK DRIVERS |
8b58be88 | 2548 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2549 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2550 | L: linux-can@vger.kernel.org |
84b0d715 | 2551 | W: https://github.com/linux-can |
870482a4 MKB |
2552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2553 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2554 | S: Maintained |
8d15d386 OH |
2555 | F: drivers/net/can/ |
2556 | F: include/linux/can/dev.h | |
8d15d386 | 2557 | F: include/linux/can/platform/ |
c117ab84 CEB |
2558 | F: include/uapi/linux/can/error.h |
2559 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2560 | |
95d16c72 JM |
2561 | CAPABILITIES |
2562 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2563 | L: linux-security-module@vger.kernel.org | |
6305902c | 2564 | S: Supported |
95d16c72 | 2565 | F: include/linux/capability.h |
c117ab84 | 2566 | F: include/uapi/linux/capability.h |
6305902c | 2567 | F: security/commoncap.c |
38a94118 | 2568 | F: kernel/capability.c |
95d16c72 | 2569 | |
b84894c7 KT |
2570 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2571 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2572 | S: Maintained | |
2573 | F: drivers/iio/light/cm* | |
2574 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2575 | ||
f21fb3ed RV |
2576 | CAVIUM LIQUIDIO NETWORK DRIVER |
2577 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2578 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2579 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2580 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2581 | L: netdev@vger.kernel.org | |
2582 | W: http://www.cavium.com | |
2583 | S: Supported | |
f21fb3ed RV |
2584 | F: drivers/net/ethernet/cavium/liquidio/ |
2585 | ||
ef0bbac3 VB |
2586 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2587 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2588 | L: linux-wpan@vger.kernel.org | |
2589 | S: Maintained | |
2590 | F: drivers/net/ieee802154/cc2520.c | |
2591 | F: include/linux/spi/cc2520.h | |
2592 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2593 | ||
b8154542 | 2594 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2595 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2596 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2597 | W: http://www.ibm.com/developerworks/power/cell/ |
2598 | S: Supported | |
679655da | 2599 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2600 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2601 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2602 | F: arch/powerpc/oprofile/*cell* |
2603 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2604 | |
398ecff5 SW |
2605 | CEPH COMMON CODE (LIBCEPH) |
2606 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2607 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2608 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2609 | L: ceph-devel@vger.kernel.org |
09d90327 | 2610 | W: http://ceph.com/ |
fb99f881 | 2611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2612 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2613 | S: Supported |
14430813 JP |
2614 | F: net/ceph/ |
2615 | F: include/linux/ceph/ | |
2616 | F: include/linux/crush/ | |
9030aaf9 | 2617 | |
398ecff5 SW |
2618 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2619 | M: "Yan, Zheng" <zyan@redhat.com> | |
2620 | M: Sage Weil <sage@redhat.com> | |
2621 | M: Ilya Dryomov <idryomov@gmail.com> | |
2622 | L: ceph-devel@vger.kernel.org | |
2623 | W: http://ceph.com/ | |
2624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 2625 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
2626 | S: Supported |
2627 | F: Documentation/filesystems/ceph.txt | |
2628 | F: fs/ceph/ | |
2629 | ||
cfc411e7 DH |
2630 | CERTIFICATE HANDLING: |
2631 | M: David Howells <dhowells@redhat.com> | |
2632 | M: David Woodhouse <dwmw2@infradead.org> | |
2633 | L: keyrings@linux-nfs.org | |
2634 | S: Maintained | |
2635 | F: Documentation/module-signing.txt | |
2636 | F: certs/ | |
2637 | F: scripts/extract-cert.c | |
2638 | ||
18332a80 | 2639 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2640 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2641 | S: Orphan |
679655da JP |
2642 | F: Documentation/usb/WUSB-Design-overview.txt |
2643 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2644 | F: drivers/usb/host/hwa-hc.c |
2645 | F: drivers/usb/host/whci/ | |
679655da JP |
2646 | F: drivers/usb/wusbcore/ |
2647 | F: include/linux/usb/wusb* | |
18332a80 | 2648 | |
70e84049 | 2649 | CFAG12864B LCD DRIVER |
8b58be88 | 2650 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2651 | W: http://miguelojeda.es/auxdisplay.htm |
2652 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2653 | S: Maintained |
679655da JP |
2654 | F: drivers/auxdisplay/cfag12864b.c |
2655 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2656 | |
2657 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2658 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2659 | W: http://miguelojeda.es/auxdisplay.htm |
2660 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2661 | S: Maintained |
679655da JP |
2662 | F: drivers/auxdisplay/cfag12864bfb.c |
2663 | F: include/linux/cfag12864b.h | |
70e84049 | 2664 | |
704232c2 | 2665 | CFG80211 and NL80211 |
8b58be88 | 2666 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2667 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2668 | W: http://wireless.kernel.org/ |
2669 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2671 | S: Maintained |
c117ab84 | 2672 | F: include/uapi/linux/nl80211.h |
679655da JP |
2673 | F: include/net/cfg80211.h |
2674 | F: net/wireless/* | |
2675 | X: net/wireless/wext* | |
704232c2 | 2676 | |
46e64261 GKH |
2677 | CHAR and MISC DRIVERS |
2678 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2679 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2681 | S: Supported |
46e64261 GKH |
2682 | F: drivers/char/* |
2683 | F: drivers/misc/* | |
471322a8 | 2684 | F: include/linux/miscdevice.h |
46e64261 | 2685 | |
0a920b5b | 2686 | CHECKPATCH |
8b58be88 | 2687 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2688 | M: Joe Perches <joe@perches.com> |
2689 | S: Maintained | |
679655da | 2690 | F: scripts/checkpatch.pl |
0a920b5b | 2691 | |
f8407f26 HW |
2692 | CHINESE DOCUMENTATION |
2693 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2694 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2695 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2696 | S: Maintained | |
2697 | F: Documentation/zh_CN/ | |
2698 | ||
2721ea2c | 2699 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2700 | M: Peter Chen <Peter.Chen@freescale.com> |
8373856d | 2701 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
2702 | L: linux-usb@vger.kernel.org |
2703 | S: Maintained | |
2704 | F: drivers/usb/chipidea/ | |
2705 | ||
a93ad65d HG |
2706 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
2707 | M: Hans de Goede <hdegoede@redhat.com> | |
2708 | L: linux-input@vger.kernel.org | |
2709 | S: Maintained | |
2710 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
2711 | F: drivers/input/touchscreen/chipone_icn8318.c | |
2712 | ||
ab043105 OJ |
2713 | CHROME HARDWARE PLATFORM SUPPORT |
2714 | M: Olof Johansson <olof@lixom.net> | |
2715 | S: Maintained | |
2716 | F: drivers/platform/chrome/ | |
2717 | ||
641cb85e | 2718 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2719 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2720 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 2721 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 2722 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 2723 | S: Supported |
a6a5580c | 2724 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2725 | |
e3cf00d0 | 2726 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2727 | M: Upinder Malhi <umalhi@cisco.com> |
2728 | S: Supported | |
2729 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2730 | |
2b7a52a4 | 2731 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2732 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2733 | L: netdev@vger.kernel.org |
2734 | S: Maintained | |
57d0b7a0 | 2735 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2736 | |
3d4cfdc9 MB |
2737 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2738 | M: Brian Austin <brian.austin@cirrus.com> | |
2739 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2740 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2741 | S: Maintained | |
2742 | F: sound/soc/codecs/cs* | |
2743 | ||
94574d9a KRW |
2744 | CLEANCACHE API |
2745 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2746 | L: linux-kernel@vger.kernel.org | |
2747 | S: Maintained | |
2748 | F: mm/cleancache.c | |
2749 | F: include/linux/cleancache.h | |
2750 | ||
d4275354 | 2751 | CLK API |
8b58be88 | 2752 | M: Russell King <linux@arm.linux.org.uk> |
aa571b14 | 2753 | L: linux-clk@vger.kernel.org |
37417046 | 2754 | S: Maintained |
d4275354 RK |
2755 | F: include/linux/clk.h |
2756 | ||
9222d247 JS |
2757 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2758 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2759 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2760 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2761 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2762 | S: Supported | |
2763 | F: drivers/clocksource | |
2764 | ||
5df6d737 | 2765 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2766 | M: Hiral Patel <hiralpat@cisco.com> |
2767 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2768 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2769 | L: linux-scsi@vger.kernel.org |
2770 | S: Supported | |
2a99921a | 2771 | F: drivers/scsi/fnic/ |
5df6d737 | 2772 | |
c8806b6c NM |
2773 | CISCO SCSI HBA DRIVER |
2774 | M: Narsimhulu Musini <nmusini@cisco.com> | |
2775 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
2776 | L: linux-scsi@vger.kernel.org | |
2777 | S: Supported | |
2778 | F: drivers/scsi/snic/ | |
2779 | ||
529aa8cb TLSC |
2780 | CMPC ACPI DRIVER |
2781 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2782 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2783 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2784 | S: Supported |
2785 | F: drivers/platform/x86/classmate-laptop.c | |
2786 | ||
85756a06 HV |
2787 | COBALT MEDIA DRIVER |
2788 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2789 | L: linux-media@vger.kernel.org | |
2790 | T: git git://linuxtv.org/media_tree.git | |
2791 | W: http://linuxtv.org | |
2792 | S: Supported | |
2793 | F: drivers/media/pci/cobalt/ | |
2794 | ||
74425eee | 2795 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2796 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2797 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2798 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 2799 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 2800 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2802 | W: http://coccinelle.lip6.fr/ |
2803 | S: Supported | |
4b92b2aa | 2804 | F: Documentation/coccinelle.txt |
74425eee NP |
2805 | F: scripts/coccinelle/ |
2806 | F: scripts/coccicheck | |
2807 | ||
1da177e4 | 2808 | CODA FILE SYSTEM |
8b58be88 | 2809 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2810 | M: coda@cs.cmu.edu |
2811 | L: codalist@coda.cs.cmu.edu | |
2812 | W: http://www.coda.cs.cmu.edu/ | |
2813 | S: Maintained | |
679655da JP |
2814 | F: Documentation/filesystems/coda.txt |
2815 | F: fs/coda/ | |
2816 | F: include/linux/coda*.h | |
c117ab84 | 2817 | F: include/uapi/linux/coda*.h |
1da177e4 | 2818 | |
0b14261e PZ |
2819 | CODA V4L2 MEM2MEM DRIVER |
2820 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
2821 | L: linux-media@vger.kernel.org | |
2822 | S: Maintained | |
2823 | F: Documentation/devicetree/bindings/media/coda.txt | |
2824 | F: drivers/media/platform/coda/ | |
2825 | ||
7704addb | 2826 | COMMON CLK FRAMEWORK |
a85fa007 | 2827 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 2828 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 2829 | L: linux-clk@vger.kernel.org |
baeb0d9b | 2830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 2831 | S: Maintained |
60bea3b5 SW |
2832 | F: drivers/clk/ |
2833 | X: drivers/clk/clkdev.c | |
7704addb | 2834 | F: include/linux/clk-pr* |
60bea3b5 | 2835 | F: include/linux/clk/ |
7704addb | 2836 | |
e2d1d6c0 | 2837 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2838 | M: Steve French <sfrench@samba.org> |
51223df6 | 2839 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2840 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2841 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 2842 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 2843 | S: Supported |
ec421a71 | 2844 | F: Documentation/filesystems/cifs/ |
679655da | 2845 | F: fs/cifs/ |
e2d1d6c0 | 2846 | |
1da177e4 | 2847 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2848 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2849 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2850 | S: Maintained |
679655da | 2851 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2852 | |
2853 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2854 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2855 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2856 | S: Maintained |
679655da | 2857 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2858 | |
2859 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2860 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2861 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2862 | S: Maintained |
679655da | 2863 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2864 | |
5411552c | 2865 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2866 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2867 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2868 | S: Maintained |
679655da | 2869 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2870 | |
949be0f7 | 2871 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2872 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2873 | L: accessrunner-general@lists.sourceforge.net |
2874 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2875 | S: Maintained |
679655da | 2876 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2877 | |
e2d1d6c0 | 2878 | CONFIGFS |
d6351db2 JB |
2879 | M: Joel Becker <jlbec@evilplan.org> |
2880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2881 | S: Supported |
679655da JP |
2882 | F: fs/configfs/ |
2883 | F: include/linux/configfs.h | |
e2d1d6c0 | 2884 | |
acb9c1b2 | 2885 | CONNECTOR |
8b58be88 | 2886 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2887 | L: netdev@vger.kernel.org |
2888 | S: Maintained | |
2889 | F: drivers/connector/ | |
2890 | ||
a3e3354d | 2891 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2892 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2893 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 2894 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 2895 | L: cgroups@vger.kernel.org |
860ca0e6 | 2896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2897 | S: Maintained |
a3e3354d | 2898 | F: Documentation/cgroups/ |
679655da JP |
2899 | F: include/linux/cgroup* |
2900 | F: kernel/cgroup* | |
a3e3354d TH |
2901 | |
2902 | CONTROL GROUP - CPUSET | |
2903 | M: Li Zefan <lizefan@huawei.com> | |
2904 | L: cgroups@vger.kernel.org | |
2905 | W: http://www.bullopensource.org/cpuset/ | |
2906 | W: http://oss.sgi.com/projects/cpusets/ | |
2907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2908 | S: Maintained | |
2909 | F: Documentation/cgroups/cpusets.txt | |
2910 | F: include/linux/cpuset.h | |
2911 | F: kernel/cpuset.c | |
2912 | ||
2913 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2914 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 2915 | M: Michal Hocko <mhocko@kernel.org> |
a3e3354d TH |
2916 | L: cgroups@vger.kernel.org |
2917 | L: linux-mm@kvack.org | |
2918 | S: Maintained | |
2919 | F: mm/memcontrol.c | |
5d1ea48b | 2920 | F: mm/swap_cgroup.c |
fb3a0fb6 | 2921 | |
bebe4678 | 2922 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2923 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2924 | L: lm-sensors@lm-sensors.org |
2925 | S: Maintained | |
679655da JP |
2926 | F: Documentation/hwmon/coretemp |
2927 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2928 | |
1da177e4 | 2929 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2930 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2931 | W: http://www.fi.muni.cz/~kas/cosa/ |
2932 | S: Maintained | |
679655da | 2933 | F: drivers/net/wan/cosa* |
1da177e4 | 2934 | |
4371ee35 | 2935 | CPMAC ETHERNET DRIVER |
8b58be88 | 2936 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2937 | L: netdev@vger.kernel.org |
2938 | S: Maintained | |
b544dbac | 2939 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2940 | |
1da177e4 | 2941 | CPU FREQUENCY DRIVERS |
9c3646d1 | 2942 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 2943 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 2944 | L: linux-pm@vger.kernel.org |
1da177e4 | 2945 | S: Maintained |
27209d91 VK |
2946 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2947 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2948 | F: drivers/cpufreq/ |
2949 | F: include/linux/cpufreq.h | |
1da177e4 | 2950 | |
8a67f0ef VK |
2951 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2952 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 2953 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
2954 | L: linux-pm@vger.kernel.org |
2955 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2956 | S: Maintained | |
2957 | F: drivers/cpufreq/arm_big_little.h | |
2958 | F: drivers/cpufreq/arm_big_little.c | |
2959 | F: drivers/cpufreq/arm_big_little_dt.c | |
2960 | ||
14d2c34c | 2961 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2962 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
2963 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2964 | L: linux-pm@vger.kernel.org | |
2965 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 2966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2967 | S: Maintained |
2968 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2969 | |
0c570c18 BZ |
2970 | CPUIDLE DRIVER - ARM EXYNOS |
2971 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
2972 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2973 | M: Kukjin Kim <kgene@kernel.org> | |
2974 | L: linux-pm@vger.kernel.org | |
2975 | L: linux-samsung-soc@vger.kernel.org | |
2976 | S: Supported | |
2977 | F: drivers/cpuidle/cpuidle-exynos.c | |
2978 | F: arch/arm/mach-exynos/pm.c | |
2979 | ||
a8e39c35 | 2980 | CPUIDLE DRIVERS |
9c3646d1 | 2981 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
2982 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2983 | L: linux-pm@vger.kernel.org | |
2984 | S: Maintained | |
cea8321c | 2985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2986 | F: drivers/cpuidle/* |
2987 | F: include/linux/cpuidle.h | |
2988 | ||
1da177e4 | 2989 | CPUID/MSR DRIVER |
8b58be88 | 2990 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2991 | S: Maintained |
679655da JP |
2992 | F: arch/x86/kernel/cpuid.c |
2993 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2994 | |
7fe2f639 | 2995 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 2996 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 2997 | L: linux-pm@vger.kernel.org |
7fe2f639 | 2998 | S: Maintained |
14430813 | 2999 | F: tools/power/cpupower/ |
7fe2f639 | 3000 | |
1da177e4 | 3001 | CRAMFS FILESYSTEM |
ce00f85c | 3002 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3003 | S: Orphan / Obsolete |
679655da JP |
3004 | F: Documentation/filesystems/cramfs.txt |
3005 | F: fs/cramfs/ | |
1da177e4 LT |
3006 | |
3007 | CRIS PORT | |
8b58be88 JP |
3008 | M: Mikael Starvik <starvik@axis.com> |
3009 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3010 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
3011 | W: http://developer.axis.com |
3012 | S: Maintained | |
679655da | 3013 | F: arch/cris/ |
df621252 | 3014 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3015 | |
3016 | CRYPTO API | |
8b58be88 JP |
3017 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3018 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3019 | L: linux-crypto@vger.kernel.org |
54e5881d | 3020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3021 | S: Maintained |
679655da | 3022 | F: Documentation/crypto/ |
2ca87a17 | 3023 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3024 | F: arch/*/crypto/ |
3025 | F: crypto/ | |
3026 | F: drivers/crypto/ | |
3027 | F: include/crypto/ | |
1da177e4 | 3028 | |
5b07bd57 | 3029 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3030 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3031 | L: linux-crypto@vger.kernel.org |
3032 | S: Maintained | |
51a2228a JP |
3033 | F: crypto/ansi_cprng.c |
3034 | F: crypto/rng.c | |
5b07bd57 | 3035 | |
9b4ffa48 | 3036 | CS5535 Audio ALSA driver |
8b58be88 | 3037 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3038 | S: Maintained |
679655da | 3039 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3040 | |
a910e4a9 | 3041 | CW1200 WLAN driver |
b75f0050 JP |
3042 | M: Solomon Peachy <pizza@shaftnet.org> |
3043 | S: Maintained | |
3044 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 3045 | |
6d8425b1 | 3046 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3047 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3048 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3049 | L: linux-media@vger.kernel.org |
275ffde4 | 3050 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 3051 | W: http://linuxtv.org |
30e10993 | 3052 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3053 | S: Maintained |
679655da | 3054 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 3055 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3056 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3057 | |
3f101d91 HV |
3058 | CX2341X MPEG ENCODER HELPER MODULE |
3059 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3060 | L: linux-media@vger.kernel.org | |
3061 | T: git git://linuxtv.org/media_tree.git | |
3062 | W: http://linuxtv.org | |
3063 | S: Maintained | |
c368360b | 3064 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3065 | F: include/media/cx2341x* |
3066 | ||
b8fe6e2c PB |
3067 | CX24120 MEDIA DRIVER |
3068 | M: Jemma Denson <jdenson@gmail.com> | |
3069 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3070 | L: linux-media@vger.kernel.org | |
3071 | W: http://linuxtv.org/ | |
3072 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3073 | S: Maintained | |
3074 | F: drivers/media/dvb-frontends/cx24120* | |
3075 | ||
20357578 | 3076 | CX88 VIDEO4LINUX DRIVER |
009a5410 | 3077 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
20357578 MCC |
3078 | L: linux-media@vger.kernel.org |
3079 | W: http://linuxtv.org | |
3080 | T: git git://linuxtv.org/media_tree.git | |
3081 | S: Odd fixes | |
3082 | F: Documentation/video4linux/cx88/ | |
3083 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 3084 | |
91952bc0 AP |
3085 | CXD2820R MEDIA DRIVER |
3086 | M: Antti Palosaari <crope@iki.fi> | |
3087 | L: linux-media@vger.kernel.org | |
3088 | W: http://linuxtv.org/ | |
3089 | W: http://palosaari.fi/linux/ | |
3090 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3091 | T: git git://linuxtv.org/anttip/media_tree.git | |
3092 | S: Maintained | |
3093 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3094 | |
e5ec3789 | 3095 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3096 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3097 | L: netdev@vger.kernel.org |
3098 | W: http://www.chelsio.com | |
3099 | S: Supported | |
f7917c00 | 3100 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3101 | |
d8ae3c33 | 3102 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3103 | M: Karen Xie <kxie@chelsio.com> |
3104 | L: linux-scsi@vger.kernel.org | |
3105 | W: http://www.chelsio.com | |
3106 | S: Supported | |
3107 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3108 | |
e5ec3789 | 3109 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3110 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3111 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3112 | W: http://www.openfabrics.org |
3113 | S: Supported | |
679655da | 3114 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 3115 | |
be4c9bad | 3116 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3117 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3118 | L: netdev@vger.kernel.org |
3119 | W: http://www.chelsio.com | |
3120 | S: Supported | |
f7917c00 | 3121 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3122 | |
d8ae3c33 | 3123 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3124 | M: Karen Xie <kxie@chelsio.com> |
3125 | L: linux-scsi@vger.kernel.org | |
3126 | W: http://www.chelsio.com | |
3127 | S: Supported | |
3128 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3129 | |
be4c9bad RD |
3130 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3131 | M: Steve Wise <swise@chelsio.com> | |
3132 | L: linux-rdma@vger.kernel.org | |
3133 | W: http://www.openfabrics.org | |
3134 | S: Supported | |
3135 | F: drivers/infiniband/hw/cxgb4/ | |
3136 | ||
5c20a5c7 CL |
3137 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3138 | M: Casey Leedom <leedom@chelsio.com> | |
3139 | L: netdev@vger.kernel.org | |
3140 | W: http://www.chelsio.com | |
3141 | S: Supported | |
f7917c00 | 3142 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3143 | |
a9282d01 IM |
3144 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3145 | M: Ian Munsie <imunsie@au1.ibm.com> | |
3146 | M: Michael Neuling <mikey@neuling.org> | |
3147 | L: linuxppc-dev@lists.ozlabs.org | |
3148 | S: Supported | |
3149 | F: drivers/misc/cxl/ | |
ec249dd8 | 3150 | F: include/misc/cxl* |
a9282d01 IM |
3151 | F: include/uapi/misc/cxl.h |
3152 | F: Documentation/powerpc/cxl.txt | |
3153 | F: Documentation/powerpc/cxl.txt | |
3154 | F: Documentation/ABI/testing/sysfs-class-cxl | |
3155 | ||
b52b97a3 GC |
3156 | STMMAC ETHERNET DRIVER |
3157 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
3158 | L: netdev@vger.kernel.org | |
3159 | W: http://www.stlinux.com | |
3160 | S: Supported | |
7ac6653a | 3161 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3162 | |
1da177e4 | 3163 | CYBERPRO FB DRIVER |
8b58be88 | 3164 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 3165 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
3166 | W: http://www.arm.linux.org.uk/ |
3167 | S: Maintained | |
8a61f013 | 3168 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3169 | |
1da177e4 | 3170 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3171 | W: http://www.cyclades.com/ |
d459883e | 3172 | S: Orphan |
c897401b | 3173 | F: drivers/tty/cyclades.c |
679655da | 3174 | F: include/linux/cyclades.h |
c117ab84 | 3175 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3176 | |
3177 | CYCLADES PC300 DRIVER | |
1da177e4 | 3178 | W: http://www.cyclades.com/ |
d459883e | 3179 | S: Orphan |
679655da | 3180 | F: drivers/net/wan/pc300* |
1da177e4 | 3181 | |
402f6ae4 AP |
3182 | CYPRESS_FIRMWARE MEDIA DRIVER |
3183 | M: Antti Palosaari <crope@iki.fi> | |
3184 | L: linux-media@vger.kernel.org | |
3185 | W: http://linuxtv.org/ | |
3186 | W: http://palosaari.fi/linux/ | |
3187 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3188 | T: git git://linuxtv.org/anttip/media_tree.git | |
3189 | S: Maintained | |
3190 | F: drivers/media/common/cypress_firmware* | |
3191 | ||
e3ae3525 | 3192 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3193 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3194 | L: linux-input@vger.kernel.org |
be9a6f40 | 3195 | S: Supported |
6305902c JP |
3196 | F: drivers/input/touchscreen/cyttsp* |
3197 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3198 | |
aaaf5fbf JK |
3199 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3200 | M: Joshua Kinard <kumba@gentoo.org> | |
3201 | S: Maintained | |
3202 | F: drivers/rtc/rtc-ds1685.c | |
3203 | F: include/linux/rtc/ds1685.h | |
3204 | ||
1da177e4 | 3205 | DAMA SLAVE for AX.25 |
8b58be88 | 3206 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3207 | W: http://yaina.de/jreuter/ |
3208 | W: http://www.qsl.net/dl1bke/ | |
3209 | L: linux-hams@vger.kernel.org | |
3210 | S: Maintained | |
679655da JP |
3211 | F: net/ax25/af_ax25.c |
3212 | F: net/ax25/ax25_dev.c | |
3213 | F: net/ax25/ax25_ds_* | |
3214 | F: net/ax25/ax25_in.c | |
3215 | F: net/ax25/ax25_out.c | |
3216 | F: net/ax25/ax25_timer.c | |
3217 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3218 | |
e2d1d6c0 | 3219 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3220 | L: netdev@vger.kernel.org |
5ff77428 | 3221 | S: Orphan |
679655da | 3222 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3223 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3224 | |
3225 | DC390/AM53C974 SCSI driver | |
d8130624 | 3226 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3227 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3228 | S: Maintained |
71bd849d | 3229 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3230 | |
1da177e4 | 3231 | DC395x SCSI driver |
61eee9a7 | 3232 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3233 | M: Ali Akcaagac <aliakc@web.de> |
3234 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3235 | L: dc395x@twibble.org |
cf015e9f JP |
3236 | W: http://twibble.org/dist/dc395x/ |
3237 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3238 | S: Maintained |
679655da JP |
3239 | F: Documentation/scsi/dc395x.txt |
3240 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3241 | |
eb8edb08 | 3242 | DCCP PROTOCOL |
a89d030e | 3243 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3244 | L: dccp@vger.kernel.org |
c996d8b9 | 3245 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3246 | S: Maintained |
679655da | 3247 | F: include/linux/dccp.h |
c117ab84 | 3248 | F: include/uapi/linux/dccp.h |
679655da JP |
3249 | F: include/linux/tfrc.h |
3250 | F: net/dccp/ | |
eb8edb08 | 3251 | |
1da177e4 | 3252 | DECnet NETWORK LAYER |
1da177e4 LT |
3253 | W: http://linux-decnet.sourceforge.net |
3254 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3255 | S: Orphan |
679655da JP |
3256 | F: Documentation/networking/decnet.txt |
3257 | F: net/decnet/ | |
1da177e4 | 3258 | |
ebff05b9 MR |
3259 | DECSTATION PLATFORM SUPPORT |
3260 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3261 | L: linux-mips@linux-mips.org | |
3262 | W: http://www.linux-mips.org/wiki/DECstation | |
3263 | S: Maintained | |
3264 | F: arch/mips/dec/ | |
3265 | F: arch/mips/include/asm/dec/ | |
3266 | F: arch/mips/include/asm/mach-dec/ | |
3267 | ||
1da177e4 | 3268 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3269 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3270 | S: Maintained |
33f810b2 | 3271 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3272 | |
ad8f07cc | 3273 | DELL LAPTOP DRIVER |
8b58be88 | 3274 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3275 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
d0944853 | 3276 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3277 | S: Maintained |
679655da | 3278 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3279 | |
817a5cdb PR |
3280 | DELL LAPTOP RBTN DRIVER |
3281 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3282 | S: Maintained | |
3283 | F: drivers/platform/x86/dell-rbtn.* | |
3284 | ||
cdbff611 PR |
3285 | DELL LAPTOP FREEFALL DRIVER |
3286 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3287 | S: Maintained | |
3288 | F: drivers/platform/x86/dell-smo8800.c | |
3289 | ||
1da177e4 | 3290 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3291 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
ef3522f7 | 3292 | S: Maintained |
a5afba16 | 3293 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3294 | F: include/uapi/linux/i8k.h |
1da177e4 | 3295 | |
90563ec4 | 3296 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3297 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3298 | S: Maintained |
679655da JP |
3299 | F: Documentation/dcdbas.txt |
3300 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3301 | |
0b3f6109 | 3302 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3303 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3304 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
0b3f6109 | 3305 | S: Maintained |
36b3a96f | 3306 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3307 | |
5efc75e3 | 3308 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3309 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3310 | L: linux-usb@vger.kernel.org |
18f340f9 | 3311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3312 | S: Maintained |
197ba5f4 | 3313 | F: drivers/usb/dwc2/ |
5efc75e3 | 3314 | |
94ab23dd FB |
3315 | DESIGNWARE USB3 DRD IP DRIVER |
3316 | M: Felipe Balbi <balbi@ti.com> | |
3317 | L: linux-usb@vger.kernel.org | |
3318 | L: linux-omap@vger.kernel.org | |
3319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
3320 | S: Maintained | |
3321 | F: drivers/usb/dwc3/ | |
3322 | ||
833c9545 JB |
3323 | DEVICE COREDUMP (DEV_COREDUMP) |
3324 | M: Johannes Berg <johannes@sipsolutions.net> | |
3325 | L: linux-kernel@vger.kernel.org | |
3326 | S: Maintained | |
3327 | F: drivers/base/devcoredump.c | |
3328 | F: include/linux/devcoredump.h | |
3329 | ||
89d07767 KP |
3330 | DEVICE FREQUENCY (DEVFREQ) |
3331 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3332 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3333 | L: linux-pm@vger.kernel.org |
89d07767 KP |
3334 | S: Maintained |
3335 | F: drivers/devfreq/ | |
3336 | ||
1da177e4 | 3337 | DEVICE NUMBER REGISTRY |
8b58be88 | 3338 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3339 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3340 | S: Maintained |
3341 | ||
e2d1d6c0 | 3342 | DEVICE-MAPPER (LVM) |
854ecaad | 3343 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3344 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3345 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3346 | L: dm-devel@redhat.com |
3347 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3348 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3349 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3350 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3351 | S: Maintained |
679655da JP |
3352 | F: Documentation/device-mapper/ |
3353 | F: drivers/md/dm* | |
854ecaad | 3354 | F: drivers/md/persistent-data/ |
679655da JP |
3355 | F: include/linux/device-mapper.h |
3356 | F: include/linux/dm-*.h | |
8504eed3 | 3357 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3358 | |
c0d995aa OST |
3359 | DIALOG SEMICONDUCTOR DRIVERS |
3360 | M: Support Opensource <support.opensource@diasemi.com> | |
3361 | W: http://www.dialog-semiconductor.com/products | |
3362 | S: Supported | |
3363 | F: Documentation/hwmon/da90?? | |
3364 | F: drivers/gpio/gpio-da90??.c | |
3365 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3366 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3367 | F: drivers/input/misc/da90??_onkey.c |
3368 | F: drivers/input/touchscreen/da9052_tsi.c | |
3369 | F: drivers/leds/leds-da90??.c | |
3370 | F: drivers/mfd/da903x.c | |
3371 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3372 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3373 | F: drivers/power/da9052-battery.c |
7be72c2c | 3374 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3375 | F: drivers/regulator/da903x.c |
3376 | F: drivers/regulator/da9???-regulator.[ch] | |
3377 | F: drivers/rtc/rtc-da90??.c | |
3378 | F: drivers/video/backlight/da90??_bl.c | |
3379 | F: drivers/watchdog/da90??_wdt.c | |
3380 | F: include/linux/mfd/da903x.h | |
3381 | F: include/linux/mfd/da9052/ | |
3382 | F: include/linux/mfd/da9055/ | |
3383 | F: include/linux/mfd/da9063/ | |
7be72c2c | 3384 | F: include/linux/mfd/da9150/ |
c0d995aa OST |
3385 | F: include/sound/da[79]*.h |
3386 | F: sound/soc/codecs/da[79]*.[ch] | |
3387 | ||
599aa697 LL |
3388 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3389 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3390 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3391 | L: driverdev-devel@linuxdriverproject.org |
3392 | S: Maintained | |
3393 | F: drivers/staging/dgnc/ | |
3394 | ||
3395 | DIGI EPCA PCI PRODUCTS | |
3396 | M: Lidza Louina <lidza.louina@gmail.com> | |
abeb935f | 3397 | M: Mark Hounschell <markh@compro.net> |
6d825f79 | 3398 | M: Daeseok Youn <daeseok.youn@gmail.com> |
599aa697 LL |
3399 | L: driverdev-devel@linuxdriverproject.org |
3400 | S: Maintained | |
3401 | F: drivers/staging/dgap/ | |
3402 | ||
335d7c58 | 3403 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3404 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3405 | L: linux-i2c@vger.kernel.org |
3406 | S: Maintained | |
3407 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3408 | ||
d475c634 MW |
3409 | DIRECT ACCESS (DAX) |
3410 | M: Matthew Wilcox <willy@linux.intel.com> | |
3411 | L: linux-fsdevel@vger.kernel.org | |
3412 | S: Supported | |
3413 | F: fs/dax.c | |
3414 | ||
e7839f25 | 3415 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3416 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3417 | S: Maintained |
679655da JP |
3418 | F: Documentation/filesystems/dnotify.txt |
3419 | F: fs/notify/dnotify/ | |
3420 | F: include/linux/dnotify.h | |
1da177e4 LT |
3421 | |
3422 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3423 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3424 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3425 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3426 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3427 | S: Maintained | |
3428 | ||
4480f15b | 3429 | DISKQUOTA |
d8130624 | 3430 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3431 | S: Maintained |
679655da JP |
3432 | F: Documentation/filesystems/quota.txt |
3433 | F: fs/quota/ | |
3434 | F: include/linux/quota*.h | |
c117ab84 | 3435 | F: include/uapi/linux/quota*.h |
1da177e4 | 3436 | |
702686ad BT |
3437 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3438 | M: Bernie Thompson <bernie@plugable.com> | |
3439 | L: linux-fbdev@vger.kernel.org | |
3440 | S: Maintained | |
3441 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3442 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3443 | F: include/video/udlfb.h |
3444 | F: Documentation/fb/udlfb.txt | |
3445 | ||
e7839f25 | 3446 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3447 | M: Christine Caulfield <ccaulfie@redhat.com> |
3448 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3449 | L: cluster-devel@redhat.com |
5be7b50f | 3450 | W: http://sources.redhat.com/cluster/ |
54e5881d | 3451 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 3452 | S: Supported |
679655da | 3453 | F: fs/dlm/ |
5be7b50f | 3454 | |
53b6b3e0 SS |
3455 | DMA BUFFER SHARING FRAMEWORK |
3456 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3457 | S: Maintained | |
3458 | L: linux-media@vger.kernel.org | |
3459 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3460 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3461 | F: drivers/dma-buf/ |
e46d12c6 JP |
3462 | F: include/linux/dma-buf* |
3463 | F: include/linux/reservation.h | |
3464 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3465 | F: Documentation/dma-buf-sharing.txt |
3466 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3467 | ||
b3e5f263 | 3468 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3469 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3470 | L: dmaengine@vger.kernel.org |
3471 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3472 | S: Maintained |
679655da | 3473 | F: drivers/dma/ |
0ce3c066 | 3474 | F: include/linux/dmaengine.h |
979a281e VK |
3475 | F: Documentation/dmaengine/ |
3476 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3477 | |
b825037d | 3478 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3479 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
3480 | L: lm-sensors@lm-sensors.org |
3481 | S: Maintained | |
679655da JP |
3482 | F: Documentation/hwmon/dme1737 |
3483 | F: drivers/hwmon/dme1737.c | |
b825037d | 3484 | |
1f31e1b1 | 3485 | DMI/SMBIOS SUPPORT |
d8130624 | 3486 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3487 | S: Maintained |
d4aeef93 | 3488 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3489 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3490 | F: drivers/firmware/dmi-id.c |
3491 | F: drivers/firmware/dmi_scan.c | |
3492 | F: include/linux/dmi.h | |
3493 | ||
7d2c86b5 | 3494 | DOCUMENTATION |
ad3118b9 | 3495 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3496 | L: linux-doc@vger.kernel.org |
3497 | S: Maintained | |
679655da | 3498 | F: Documentation/ |
97be078b RD |
3499 | X: Documentation/ABI/ |
3500 | X: Documentation/devicetree/ | |
933a46b8 JC |
3501 | X: Documentation/acpi |
3502 | X: Documentation/power | |
3503 | X: Documentation/spi | |
6c121170 | 3504 | X: Documentation/DocBook/media |
e71e2c6f | 3505 | T: git git://git.lwn.net/linux-2.6.git docs-next |
abbaeff3 | 3506 | |
1da177e4 | 3507 | DOUBLETALK DRIVER |
8b58be88 | 3508 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3509 | L: blinux-list@redhat.com |
3510 | S: Maintained | |
679655da JP |
3511 | F: drivers/char/dtlk.c |
3512 | F: include/linux/dtlk.h | |
1da177e4 | 3513 | |
e2d1d6c0 | 3514 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3515 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3516 | L: linux-scsi@vger.kernel.org |
3517 | W: http://www.adaptec.com/ | |
3518 | S: Maintained | |
679655da JP |
3519 | F: drivers/scsi/dpt* |
3520 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3521 | |
b411b363 | 3522 | DRBD DRIVER |
28b8e8d4 JP |
3523 | P: Philipp Reisner |
3524 | P: Lars Ellenberg | |
3525 | M: drbd-dev@lists.linbit.com | |
3526 | L: drbd-user@lists.linbit.com | |
3527 | W: http://www.drbd.org | |
3528 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
3529 | T: git git://git.drbd.org/drbd-8.3.git | |
3530 | S: Supported | |
3531 | F: drivers/block/drbd/ | |
3532 | F: lib/lru_cache.c | |
3533 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3534 | |
dc7dfcd8 | 3535 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3536 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3538 | S: Supported |
679655da | 3539 | F: Documentation/kobject.txt |
7cfc51b9 | 3540 | F: drivers/base/ |
87544653 | 3541 | F: fs/debugfs/ |
dc7dfcd8 WS |
3542 | F: fs/kernfs/ |
3543 | F: fs/sysfs/ | |
87544653 | 3544 | F: include/linux/debugfs.h |
dc7dfcd8 | 3545 | F: include/linux/kobj* |
679655da | 3546 | F: lib/kobj* |
1da177e4 LT |
3547 | |
3548 | DRM DRIVERS | |
8b58be88 | 3549 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3550 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3551 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3552 | S: Maintained |
679655da | 3553 | F: drivers/gpu/drm/ |
433e3b34 | 3554 | F: drivers/gpu/vga/ |
850e9411 | 3555 | F: include/drm/ |
c117ab84 | 3556 | F: include/uapi/drm/ |
1da177e4 | 3557 | |
566f5939 AD |
3558 | RADEON DRM DRIVERS |
3559 | M: Alex Deucher <alexander.deucher@amd.com> | |
3560 | M: Christian König <christian.koenig@amd.com> | |
3561 | L: dri-devel@lists.freedesktop.org | |
3562 | T: git git://people.freedesktop.org/~agd5f/linux | |
3563 | S: Supported | |
3564 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3565 | F: include/uapi/drm/radeon* |
3566 | ||
03e255b9 TR |
3567 | DRM PANEL DRIVERS |
3568 | M: Thierry Reding <thierry.reding@gmail.com> | |
3569 | L: dri-devel@lists.freedesktop.org | |
3570 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3571 | S: Maintained | |
3572 | F: drivers/gpu/drm/drm_panel.c | |
3573 | F: drivers/gpu/drm/panel/ | |
3574 | F: include/drm/drm_panel.h | |
3575 | F: Documentation/devicetree/bindings/panel/ | |
3576 | ||
8daf7473 | 3577 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 3578 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 3579 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3580 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3581 | L: dri-devel@lists.freedesktop.org |
47f95647 | 3582 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3583 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3584 | S: Supported |
14430813 | 3585 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3586 | F: include/drm/i915* |
c117ab84 | 3587 | F: include/uapi/drm/i915* |
8daf7473 | 3588 | |
398a6d4a KP |
3589 | DRM DRIVERS FOR EXYNOS |
3590 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
3591 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3592 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
3593 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 3594 | L: dri-devel@lists.freedesktop.org |
25a58030 | 3595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3596 | S: Supported |
14430813 | 3597 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3598 | F: include/drm/exynos* |
c117ab84 | 3599 | F: include/uapi/drm/exynos* |
398a6d4a | 3600 | |
b55a1b9c JW |
3601 | DRM DRIVERS FOR FREESCALE DCU |
3602 | M: Jianwei Wang <jianwei.wang.chn@gmail.com> | |
3603 | M: Alison Wang <alison.wang@freescale.com> | |
3604 | L: dri-devel@lists.freedesktop.org | |
3605 | S: Supported | |
3606 | F: drivers/gpu/drm/fsl-dcu/ | |
3607 | F: Documentation/devicetree/bindings/video/fsl,dcu.txt | |
3608 | F: Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt | |
3609 | ||
0a3d775f PZ |
3610 | DRM DRIVERS FOR FREESCALE IMX |
3611 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3612 | L: dri-devel@lists.freedesktop.org | |
3613 | S: Maintained | |
3614 | F: drivers/gpu/drm/imx/ | |
3615 | F: Documentation/devicetree/bindings/drm/imx/ | |
3616 | ||
bd3b49f2 | 3617 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3618 | M: Thierry Reding <thierry.reding@gmail.com> |
3619 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
3620 | L: dri-devel@lists.freedesktop.org |
3621 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 3622 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3623 | S: Supported |
dee8268f | 3624 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3625 | F: drivers/gpu/host1x/ |
e1e90644 | 3626 | F: include/linux/host1x.h |
a5ad7a63 | 3627 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
3628 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3629 | ||
a284e9d1 LP |
3630 | DRM DRIVERS FOR RENESAS |
3631 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
3632 | L: dri-devel@lists.freedesktop.org | |
3633 | L: linux-sh@vger.kernel.org | |
3634 | T: git git://people.freedesktop.org/~airlied/linux | |
3635 | S: Supported | |
3636 | F: drivers/gpu/drm/rcar-du/ | |
3637 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 LP |
3638 | F: include/linux/platform_data/shmob_drm.h |
3639 | ||
625e0346 HS |
3640 | DRM DRIVERS FOR ROCKCHIP |
3641 | M: Mark Yao <mark.yao@rock-chips.com> | |
3642 | L: dri-devel@lists.freedesktop.org | |
3643 | S: Maintained | |
3644 | F: drivers/gpu/drm/rockchip/ | |
3645 | F: Documentation/devicetree/bindings/video/rockchip* | |
3646 | ||
7f11c476 BG |
3647 | DRM DRIVERS FOR STI |
3648 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
3649 | M: Vincent Abriou <vincent.abriou@st.com> | |
3650 | L: dri-devel@lists.freedesktop.org | |
3651 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
3652 | S: Maintained | |
3653 | F: drivers/gpu/drm/sti | |
3654 | F: Documentation/devicetree/bindings/gpu/st,stih4xx.txt | |
3655 | ||
598df1ac AK |
3656 | DSBR100 USB FM RADIO DRIVER |
3657 | M: Alexey Klimov <klimov.linux@gmail.com> | |
3658 | L: linux-media@vger.kernel.org | |
3659 | T: git git://linuxtv.org/media_tree.git | |
3660 | S: Maintained | |
3661 | F: drivers/media/radio/dsbr100.c | |
3662 | ||
1da177e4 | 3663 | DSCC4 DRIVER |
8b58be88 | 3664 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 3665 | L: netdev@vger.kernel.org |
1da177e4 | 3666 | S: Maintained |
679655da | 3667 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3668 | |
cc11b140 HV |
3669 | DT3155 MEDIA DRIVER |
3670 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3671 | L: linux-media@vger.kernel.org | |
3672 | T: git git://linuxtv.org/media_tree.git | |
3673 | W: http://linuxtv.org | |
3674 | S: Odd Fixes | |
3675 | F: drivers/media/pci/dt3155/ | |
3676 | ||
91952bc0 AP |
3677 | DVB_USB_AF9015 MEDIA DRIVER |
3678 | M: Antti Palosaari <crope@iki.fi> | |
3679 | L: linux-media@vger.kernel.org | |
3680 | W: http://linuxtv.org/ | |
3681 | W: http://palosaari.fi/linux/ | |
3682 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3683 | T: git git://linuxtv.org/anttip/media_tree.git | |
3684 | S: Maintained | |
3685 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3686 | ||
3687 | DVB_USB_AF9035 MEDIA DRIVER | |
3688 | M: Antti Palosaari <crope@iki.fi> | |
3689 | L: linux-media@vger.kernel.org | |
3690 | W: http://linuxtv.org/ | |
3691 | W: http://palosaari.fi/linux/ | |
3692 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3693 | T: git git://linuxtv.org/anttip/media_tree.git | |
3694 | S: Maintained | |
3695 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3696 | ||
3697 | DVB_USB_ANYSEE MEDIA DRIVER | |
3698 | M: Antti Palosaari <crope@iki.fi> | |
3699 | L: linux-media@vger.kernel.org | |
3700 | W: http://linuxtv.org/ | |
3701 | W: http://palosaari.fi/linux/ | |
3702 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3703 | T: git git://linuxtv.org/anttip/media_tree.git | |
3704 | S: Maintained | |
3705 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3706 | ||
3707 | DVB_USB_AU6610 MEDIA DRIVER | |
3708 | M: Antti Palosaari <crope@iki.fi> | |
3709 | L: linux-media@vger.kernel.org | |
3710 | W: http://linuxtv.org/ | |
3711 | W: http://palosaari.fi/linux/ | |
3712 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3713 | T: git git://linuxtv.org/anttip/media_tree.git | |
3714 | S: Maintained | |
3715 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3716 | ||
3717 | DVB_USB_CE6230 MEDIA DRIVER | |
3718 | M: Antti Palosaari <crope@iki.fi> | |
3719 | L: linux-media@vger.kernel.org | |
3720 | W: http://linuxtv.org/ | |
3721 | W: http://palosaari.fi/linux/ | |
3722 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3723 | T: git git://linuxtv.org/anttip/media_tree.git | |
3724 | S: Maintained | |
3725 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3726 | ||
d099dea2 MK |
3727 | DVB_USB_CXUSB MEDIA DRIVER |
3728 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3729 | L: linux-media@vger.kernel.org | |
3730 | W: http://linuxtv.org/ | |
3731 | W: http://github.com/mkrufky | |
3732 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3733 | T: git git://linuxtv.org/media_tree.git | |
3734 | S: Maintained | |
9819da66 | 3735 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3736 | |
91952bc0 | 3737 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3738 | M: Antti Palosaari <crope@iki.fi> |
3739 | L: linux-media@vger.kernel.org | |
3740 | W: http://linuxtv.org/ | |
3741 | W: http://palosaari.fi/linux/ | |
3742 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3743 | T: git git://linuxtv.org/anttip/media_tree.git | |
3744 | S: Maintained | |
91952bc0 | 3745 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3746 | |
5560983b | 3747 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3748 | M: Antti Palosaari <crope@iki.fi> |
3749 | L: linux-media@vger.kernel.org | |
3750 | W: http://linuxtv.org/ | |
91952bc0 AP |
3751 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3752 | T: git git://linuxtv.org/anttip/media_tree.git | |
3753 | S: Maintained | |
5560983b | 3754 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3755 | |
8856f5f2 MK |
3756 | DVB_USB_MXL111SF MEDIA DRIVER |
3757 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3758 | L: linux-media@vger.kernel.org | |
3759 | W: http://linuxtv.org/ | |
3760 | W: http://github.com/mkrufky | |
3761 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3762 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3763 | S: Maintained | |
3764 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3765 | ||
91952bc0 AP |
3766 | DVB_USB_RTL28XXU MEDIA DRIVER |
3767 | M: Antti Palosaari <crope@iki.fi> | |
3768 | L: linux-media@vger.kernel.org | |
3769 | W: http://linuxtv.org/ | |
3770 | W: http://palosaari.fi/linux/ | |
3771 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3772 | T: git git://linuxtv.org/anttip/media_tree.git | |
3773 | S: Maintained | |
3774 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3775 | ||
3776 | DVB_USB_V2 MEDIA DRIVER | |
3777 | M: Antti Palosaari <crope@iki.fi> | |
3778 | L: linux-media@vger.kernel.org | |
3779 | W: http://linuxtv.org/ | |
3780 | W: http://palosaari.fi/linux/ | |
3781 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3782 | T: git git://linuxtv.org/anttip/media_tree.git | |
3783 | S: Maintained | |
3784 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3785 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3786 | ||
ac0ac38f | 3787 | DYNAMIC DEBUG |
5c4a97d1 | 3788 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3789 | S: Maintained |
3790 | F: lib/dynamic_debug.c | |
3791 | F: include/linux/dynamic_debug.h | |
3792 | ||
789c7048 | 3793 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3794 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3795 | S: Maintained |
df621252 | 3796 | F: drivers/tty/serial/dz.* |
789c7048 | 3797 | |
f17effbe MF |
3798 | E3X0 POWER BUTTON DRIVER |
3799 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
3800 | L: usrp-users@lists.ettus.com | |
3801 | W: http://www.ettus.com | |
3802 | S: Supported | |
3803 | F: drivers/input/misc/e3x0-button.c | |
3804 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
3805 | ||
91952bc0 AP |
3806 | E4000 MEDIA DRIVER |
3807 | M: Antti Palosaari <crope@iki.fi> | |
3808 | L: linux-media@vger.kernel.org | |
3809 | W: http://linuxtv.org/ | |
3810 | W: http://palosaari.fi/linux/ | |
3811 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3812 | T: git git://linuxtv.org/anttip/media_tree.git | |
3813 | S: Maintained | |
3814 | F: drivers/media/tuners/e4000* | |
3815 | ||
1da177e4 | 3816 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3817 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3818 | L: linux-scsi@vger.kernel.org |
3819 | S: Maintained | |
679655da | 3820 | F: drivers/scsi/eata.c |
1da177e4 | 3821 | |
91952bc0 AP |
3822 | EC100 MEDIA DRIVER |
3823 | M: Antti Palosaari <crope@iki.fi> | |
3824 | L: linux-media@vger.kernel.org | |
3825 | W: http://linuxtv.org/ | |
3826 | W: http://palosaari.fi/linux/ | |
3827 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3828 | T: git git://linuxtv.org/anttip/media_tree.git | |
3829 | S: Maintained | |
3830 | F: drivers/media/dvb-frontends/ec100* | |
3831 | ||
237fead6 | 3832 | ECRYPT FILE SYSTEM |
0de9adf2 | 3833 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3834 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3835 | W: http://ecryptfs.org |
6dc7516e | 3836 | W: https://launchpad.net/ecryptfs |
237fead6 | 3837 | S: Supported |
679655da JP |
3838 | F: Documentation/filesystems/ecryptfs.txt |
3839 | F: fs/ecryptfs/ | |
237fead6 | 3840 | |
da9bb1d2 | 3841 | EDAC-CORE |
8b58be88 | 3842 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e | 3843 | M: Borislav Petkov <bp@alien8.de> |
009a5410 | 3844 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
91445c72 | 3845 | L: linux-edac@vger.kernel.org |
0e438e3f | 3846 | W: bluesmoke.sourceforge.net |
7a859516 BP |
3847 | T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next |
3848 | T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next | |
8c2a6a40 | 3849 | S: Supported |
679655da | 3850 | F: Documentation/edac.txt |
91445c72 | 3851 | F: drivers/edac/ |
679655da | 3852 | F: include/linux/edac.h |
0e438e3f | 3853 | |
c476c23b | 3854 | EDAC-AMD64 |
8b58be88 | 3855 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3856 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3857 | L: linux-edac@vger.kernel.org |
c476c23b | 3858 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3859 | S: Maintained |
c476c23b BP |
3860 | F: drivers/edac/amd64_edac* |
3861 | ||
836dae5d RR |
3862 | EDAC-CALXEDA |
3863 | M: Doug Thompson <dougthompson@xmission.com> | |
3864 | M: Robert Richter <rric@kernel.org> | |
3865 | L: linux-edac@vger.kernel.org | |
3866 | W: bluesmoke.sourceforge.net | |
3867 | S: Maintained | |
3868 | F: drivers/edac/highbank* | |
3869 | ||
f65aad41 RB |
3870 | EDAC-CAVIUM |
3871 | M: Ralf Baechle <ralf@linux-mips.org> | |
3872 | M: David Daney <david.daney@cavium.com> | |
3873 | L: linux-edac@vger.kernel.org | |
3874 | L: linux-mips@linux-mips.org | |
3875 | W: bluesmoke.sourceforge.net | |
3876 | S: Supported | |
3877 | F: drivers/edac/octeon_edac* | |
3878 | ||
0e438e3f | 3879 | EDAC-E752X |
8b58be88 JP |
3880 | M: Mark Gross <mark.gross@intel.com> |
3881 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3882 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3883 | W: bluesmoke.sourceforge.net |
3884 | S: Maintained | |
679655da | 3885 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3886 | |
3887 | EDAC-E7XXX | |
8b58be88 | 3888 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3889 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3890 | W: bluesmoke.sourceforge.net |
3891 | S: Maintained | |
679655da | 3892 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3893 | |
77c5f5d2 | 3894 | EDAC-GHES |
009a5410 | 3895 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
77c5f5d2 MCC |
3896 | L: linux-edac@vger.kernel.org |
3897 | W: bluesmoke.sourceforge.net | |
3898 | S: Maintained | |
2caa67a6 | 3899 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3900 | |
6bc78404 | 3901 | EDAC-I82443BXGX |
8b58be88 | 3902 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3903 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3904 | W: bluesmoke.sourceforge.net |
3905 | S: Maintained | |
679655da | 3906 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3907 | |
3908 | EDAC-I3000 | |
8b58be88 | 3909 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3910 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3911 | W: bluesmoke.sourceforge.net |
3912 | S: Maintained | |
679655da | 3913 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3914 | |
3915 | EDAC-I5000 | |
8b58be88 | 3916 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3917 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3918 | W: bluesmoke.sourceforge.net |
3919 | S: Maintained | |
679655da | 3920 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3921 | |
44c12cb2 | 3922 | EDAC-I5400 |
009a5410 | 3923 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 | 3924 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
3925 | W: bluesmoke.sourceforge.net |
3926 | S: Maintained | |
679655da | 3927 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3928 | |
3c9c92b6 | 3929 | EDAC-I7300 |
009a5410 | 3930 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
3c9c92b6 MCC |
3931 | L: linux-edac@vger.kernel.org |
3932 | W: bluesmoke.sourceforge.net | |
3933 | S: Maintained | |
3934 | F: drivers/edac/i7300_edac.c | |
3935 | ||
67c89316 | 3936 | EDAC-I7CORE |
009a5410 | 3937 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 MCC |
3938 | L: linux-edac@vger.kernel.org |
3939 | W: bluesmoke.sourceforge.net | |
3940 | S: Maintained | |
70aff0ce | 3941 | F: drivers/edac/i7core_edac.c |
67c89316 | 3942 | |
ba9a5918 | 3943 | EDAC-I82975X |
8b58be88 | 3944 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 3945 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 3946 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3947 | W: bluesmoke.sourceforge.net |
3948 | S: Maintained | |
679655da | 3949 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3950 | |
791b4706 JB |
3951 | EDAC-IE31200 |
3952 | M: Jason Baron <jbaron@akamai.com> | |
3953 | L: linux-edac@vger.kernel.org | |
3954 | W: bluesmoke.sourceforge.net | |
3955 | S: Maintained | |
3956 | F: drivers/edac/ie31200_edac.c | |
3957 | ||
ccdfb979 | 3958 | EDAC-MPC85XX |
30c7469b | 3959 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 JT |
3960 | L: linux-edac@vger.kernel.org |
3961 | W: bluesmoke.sourceforge.net | |
3962 | S: Maintained | |
3963 | F: drivers/edac/mpc85xx_edac.[ch] | |
3964 | ||
ba9a5918 | 3965 | EDAC-PASEMI |
8b58be88 | 3966 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 3967 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3968 | W: bluesmoke.sourceforge.net |
3969 | S: Maintained | |
679655da | 3970 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3971 | |
0e438e3f | 3972 | EDAC-R82600 |
8b58be88 | 3973 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3974 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3975 | W: bluesmoke.sourceforge.net |
3976 | S: Maintained | |
679655da | 3977 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3978 | |
4d096ca7 | 3979 | EDAC-SBRIDGE |
009a5410 | 3980 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
4d096ca7 MCC |
3981 | L: linux-edac@vger.kernel.org |
3982 | W: bluesmoke.sourceforge.net | |
3983 | S: Maintained | |
3984 | F: drivers/edac/sb_edac.c | |
3985 | ||
995e1de4 LH |
3986 | EDAC-XGENE |
3987 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
3988 | M: Loc Ho <lho@apm.com> | |
3989 | S: Supported | |
3990 | F: drivers/edac/xgene_edac.c | |
3991 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
3992 | ||
af39917d CL |
3993 | EDIROL UA-101/UA-1000 DRIVER |
3994 | M: Clemens Ladisch <clemens@ladisch.de> | |
3995 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3996 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3997 | S: Maintained | |
3998 | F: sound/usb/misc/ua101.c | |
3999 | ||
1f7df953 MF |
4000 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
4001 | M: Matt Fleming <matt.fleming@intel.com> | |
4002 | L: linux-efi@vger.kernel.org | |
78bef24e | 4003 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 4004 | S: Maintained |
fb2efb5c | 4005 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4006 | F: arch/ia64/kernel/efi.c |
4007 | F: arch/x86/boot/compressed/eboot.[ch] | |
4008 | F: arch/x86/include/asm/efi.h | |
4009 | F: arch/x86/platform/efi/* | |
a9499fa7 | 4010 | F: drivers/firmware/efi/* |
1f7df953 MF |
4011 | F: include/linux/efi*.h |
4012 | ||
d68772b7 MF |
4013 | EFI VARIABLE FILESYSTEM |
4014 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4015 | M: Jeremy Kerr <jk@ozlabs.org> | |
4016 | M: Matt Fleming <matt.fleming@intel.com> | |
4017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
4018 | L: linux-efi@vger.kernel.org | |
4019 | S: Maintained | |
4020 | F: fs/efivarfs/ | |
4021 | ||
85a00d9b PJ |
4022 | EFIFB FRAMEBUFFER DRIVER |
4023 | L: linux-fbdev@vger.kernel.org | |
4024 | M: Peter Jones <pjones@redhat.com> | |
4025 | S: Maintained | |
8a61f013 | 4026 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4027 | |
0bee8d28 JT |
4028 | EFS FILESYSTEM |
4029 | W: http://aeschi.ch.eu.org/efs/ | |
4030 | S: Orphan | |
679655da | 4031 | F: fs/efs/ |
0bee8d28 | 4032 | |
4480f15b | 4033 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
4034 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
4035 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 4036 | L: linux-rdma@vger.kernel.org |
fab97220 | 4037 | S: Supported |
679655da | 4038 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 4039 | |
aa8a9e25 | 4040 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 4041 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
4042 | L: netdev@vger.kernel.org |
4043 | S: Maintained | |
9aa32835 | 4044 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4045 | |
f0319efe | 4046 | EM28XX VIDEO4LINUX DRIVER |
009a5410 | 4047 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
f0319efe MCC |
4048 | L: linux-media@vger.kernel.org |
4049 | W: http://linuxtv.org | |
4050 | T: git git://linuxtv.org/media_tree.git | |
4051 | S: Maintained | |
4052 | F: drivers/media/usb/em28xx/ | |
4053 | ||
3e3a7d66 | 4054 | EMBEDDED LINUX |
8b58be88 JP |
4055 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4056 | M: Matt Mackall <mpm@selenic.com> | |
4057 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4058 | L: linux-embedded@vger.kernel.org |
4059 | S: Maintained | |
4060 | ||
32505876 JS |
4061 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4062 | M: James Smart <james.smart@avagotech.com> | |
4063 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4064 | L: linux-scsi@vger.kernel.org |
32505876 | 4065 | W: http://www.avagotech.com |
ce00f85c | 4066 | S: Supported |
679655da | 4067 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4068 | |
5f5bac82 | 4069 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4070 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4071 | S: Maintained |
4072 | F: drivers/misc/cb710/ | |
4073 | F: drivers/mmc/host/cb710-mmc.* | |
4074 | F: include/linux/cb710.h | |
4075 | ||
931e39a1 ML |
4076 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4077 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4078 | S: Maintained | |
2a837449 | 4079 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4080 | |
ec207dcc GS |
4081 | ENHANCED ERROR HANDLING (EEH) |
4082 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
4083 | L: linuxppc-dev@lists.ozlabs.org | |
4084 | S: Supported | |
4085 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
4086 | F: arch/powerpc/kernel/eeh*.c | |
4087 | ||
d5ca9006 | 4088 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4089 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4090 | S: Maintained |
084bad91 | 4091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4092 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4093 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4094 | |
38df6492 ME |
4095 | ET131X NETWORK DRIVER |
4096 | M: Mark Einon <mark.einon@gmail.com> | |
4097 | S: Odd Fixes | |
4098 | F: drivers/net/ethernet/agere/ | |
4099 | ||
1da177e4 | 4100 | ETHERNET BRIDGE |
adbbf69d | 4101 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 4102 | L: bridge@lists.linux-foundation.org |
4c325313 | 4103 | L: netdev@vger.kernel.org |
c996d8b9 | 4104 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4105 | S: Maintained |
679655da JP |
4106 | F: include/linux/netfilter_bridge/ |
4107 | F: net/bridge/ | |
1da177e4 | 4108 | |
22f08ad9 FF |
4109 | ETHERNET PHY LIBRARY |
4110 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4111 | L: netdev@vger.kernel.org | |
4112 | S: Maintained | |
4113 | F: include/linux/phy.h | |
4114 | F: include/linux/phy_fixed.h | |
4115 | F: drivers/net/phy/ | |
4116 | F: Documentation/networking/phy.txt | |
4117 | F: drivers/of/of_mdio.c | |
4118 | F: drivers/of/of_net.c | |
4119 | ||
1da177e4 | 4120 | EXT2 FILE SYSTEM |
d8130624 | 4121 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4122 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4123 | S: Maintained |
679655da JP |
4124 | F: Documentation/filesystems/ext2.txt |
4125 | F: fs/ext2/ | |
4126 | F: include/linux/ext2* | |
1da177e4 | 4127 | |
72be2ccf | 4128 | EXT4 FILE SYSTEM |
8b58be88 | 4129 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4130 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4131 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4132 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4133 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 4134 | S: Maintained |
679655da JP |
4135 | F: Documentation/filesystems/ext4.txt |
4136 | F: fs/ext4/ | |
1da177e4 | 4137 | |
c5532b09 | 4138 | Extended Verification Module (EVM) |
74dd744f MZ |
4139 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4140 | L: linux-ima-devel@lists.sourceforge.net | |
4141 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4142 | S: Supported |
4143 | F: security/integrity/evm/ | |
4144 | ||
df6b3cfe MH |
4145 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4146 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4147 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4148 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4150 | S: Maintained |
4151 | F: drivers/extcon/ | |
4152 | F: Documentation/extcon/ | |
4153 | ||
e2a75c44 | 4154 | EXYNOS DP DRIVER |
b7701755 | 4155 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4156 | L: dri-devel@lists.freedesktop.org |
4157 | S: Maintained | |
4158 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4159 | ||
33ad3912 DL |
4160 | EXYNOS MIPI DISPLAY DRIVERS |
4161 | M: Inki Dae <inki.dae@samsung.com> | |
4162 | M: Donghwa Lee <dh09.lee@samsung.com> | |
4163 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4164 | L: linux-fbdev@vger.kernel.org | |
4165 | S: Maintained | |
8a61f013 | 4166 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
4167 | F: include/video/exynos_mipi* |
4168 | ||
e53004e2 | 4169 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4170 | M: Jean Delvare <jdelvare@suse.com> |
e53004e2 JD |
4171 | L: lm-sensors@lm-sensors.org |
4172 | S: Maintained | |
679655da JP |
4173 | F: Documentation/hwmon/f71805f |
4174 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4175 | |
eea977ed MB |
4176 | FC0011 TUNER DRIVER |
4177 | M: Michael Buesch <m@bues.ch> | |
4178 | L: linux-media@vger.kernel.org | |
4179 | S: Maintained | |
ccae7af2 MCC |
4180 | F: drivers/media/tuners/fc0011.h |
4181 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4182 | |
91952bc0 AP |
4183 | FC2580 MEDIA DRIVER |
4184 | M: Antti Palosaari <crope@iki.fi> | |
4185 | L: linux-media@vger.kernel.org | |
4186 | W: http://linuxtv.org/ | |
4187 | W: http://palosaari.fi/linux/ | |
4188 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4189 | T: git git://linuxtv.org/anttip/media_tree.git | |
4190 | S: Maintained | |
4191 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4192 | |
88b2dbdb EP |
4193 | FANOTIFY |
4194 | M: Eric Paris <eparis@redhat.com> | |
4195 | S: Maintained | |
4196 | F: fs/notify/fanotify/ | |
4197 | F: include/linux/fanotify.h | |
c117ab84 | 4198 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4199 | |
1da177e4 | 4200 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4201 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4202 | W: http://www.farsite.co.uk/ |
4203 | S: Supported | |
679655da | 4204 | F: drivers/net/wan/farsync.* |
1da177e4 | 4205 | |
c5408b88 | 4206 | FAULT INJECTION SUPPORT |
8b58be88 | 4207 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4208 | S: Supported |
679655da JP |
4209 | F: Documentation/fault-injection/ |
4210 | F: lib/fault-inject.c | |
c5408b88 | 4211 | |
053e514f NT |
4212 | FBTFT Framebuffer drivers |
4213 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4214 | M: Noralf Trønnes <noralf@tronnes.org> | |
4215 | S: Maintained | |
4216 | F: drivers/staging/fbtft/ | |
4217 | ||
cae727db | 4218 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3bd746cf | 4219 | M: Vasu Dev <vasu.dev@intel.com> |
f4aaea6d | 4220 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4221 | W: www.Open-FCoE.org |
4222 | S: Supported | |
4223 | F: drivers/scsi/libfc/ | |
4224 | F: drivers/scsi/fcoe/ | |
4225 | F: include/scsi/fc/ | |
4226 | F: include/scsi/libfc.h | |
4227 | F: include/scsi/libfcoe.h | |
c117ab84 | 4228 | F: include/uapi/scsi/fc/ |
cae727db | 4229 | |
e2d1d6c0 | 4230 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4231 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4232 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4233 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4234 | S: Maintained |
679655da JP |
4235 | F: include/linux/fcntl.h |
4236 | F: include/linux/fs.h | |
c117ab84 CEB |
4237 | F: include/uapi/linux/fcntl.h |
4238 | F: include/uapi/linux/fs.h | |
679655da JP |
4239 | F: fs/fcntl.c |
4240 | F: fs/locks.c | |
1da177e4 | 4241 | |
e2d1d6c0 | 4242 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4243 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4244 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4245 | S: Maintained |
679655da | 4246 | F: fs/* |
173acc7c | 4247 | |
b26e0ed4 | 4248 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4249 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
4250 | L: lm-sensors@lm-sensors.org |
4251 | S: Maintained | |
d5ca6918 JP |
4252 | F: drivers/hwmon/f75375s.c |
4253 | F: include/linux/f75375s.h | |
b26e0ed4 | 4254 | |
a331b0c3 CL |
4255 | FIREWIRE AUDIO DRIVERS |
4256 | M: Clemens Ladisch <clemens@ladisch.de> | |
4257 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4258 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4259 | S: Maintained | |
4260 | F: sound/firewire/ | |
4261 | ||
eb86ec51 SR |
4262 | FIREWIRE MEDIA DRIVERS (firedtv) |
4263 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4264 | L: linux-media@vger.kernel.org | |
4265 | L: linux1394-devel@lists.sourceforge.net | |
4266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4267 | S: Maintained | |
4268 | F: drivers/media/firewire/ | |
4269 | ||
a511ce33 CB |
4270 | FIREWIRE SBP-2 TARGET |
4271 | M: Chris Boot <bootc@bootc.net> | |
4272 | L: linux-scsi@vger.kernel.org | |
4273 | L: target-devel@vger.kernel.org | |
4274 | L: linux1394-devel@lists.sourceforge.net | |
4275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4276 | S: Maintained | |
4277 | F: drivers/target/sbp/ | |
4278 | ||
7d2c86b5 | 4279 | FIREWIRE SUBSYSTEM |
8b58be88 | 4280 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4281 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4282 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4284 | S: Maintained |
679655da | 4285 | F: drivers/firewire/ |
8f06ce3b SR |
4286 | F: include/linux/firewire.h |
4287 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4288 | F: tools/firewire/ |
e2d1d6c0 RD |
4289 | |
4290 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
4291 | M: Ming Lei <ming.lei@canonical.com> |
4292 | L: linux-kernel@vger.kernel.org | |
4293 | S: Maintained | |
679655da JP |
4294 | F: Documentation/firmware_class/ |
4295 | F: drivers/base/firmware*.c | |
4296 | F: include/linux/firmware.h | |
e2d1d6c0 | 4297 | |
f730e3dc | 4298 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4299 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4300 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4301 | S: Maintained | |
4302 | F: drivers/block/rsxx/ | |
4303 | ||
8206f664 | 4304 | FLOPPY DRIVER |
e5f6450c | 4305 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4307 | S: Odd fixes | |
4308 | F: drivers/block/floppy.c | |
4309 | ||
9c9f32ed AR |
4310 | FMC SUBSYSTEM |
4311 | M: Alessandro Rubini <rubini@gnudd.com> | |
4312 | W: http://www.ohwr.org/projects/fmc-bus | |
4313 | S: Supported | |
4314 | F: drivers/fmc/ | |
4315 | F: include/linux/fmc*.h | |
4316 | F: include/linux/ipmi-fru.h | |
4317 | K: fmc_d.*register | |
4318 | ||
e2d1d6c0 | 4319 | FPU EMULATOR |
8b58be88 | 4320 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4321 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4322 | S: Maintained |
679655da | 4323 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4324 | |
4325 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4326 | L: netdev@vger.kernel.org |
c173bfac | 4327 | S: Orphan |
679655da JP |
4328 | F: drivers/net/wan/dlci.c |
4329 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4330 | |
4331 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4332 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
4333 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 4334 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 4335 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4336 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4337 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4338 | S: Maintained |
679655da | 4339 | F: Documentation/fb/ |
d958c62c | 4340 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
4341 | F: drivers/video/ |
4342 | F: include/video/ | |
679655da | 4343 | F: include/linux/fb.h |
c117ab84 CEB |
4344 | F: include/uapi/video/ |
4345 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4346 | |
a57c188e | 4347 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4348 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4349 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4350 | S: Maintained |
8a61f013 | 4351 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4352 | |
e2d1d6c0 | 4353 | FREESCALE DMA DRIVER |
8b58be88 JP |
4354 | M: Li Yang <leoli@freescale.com> |
4355 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4356 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4357 | S: Maintained |
679655da | 4358 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
4359 | |
4360 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 4361 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4362 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4363 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4364 | S: Maintained |
679655da | 4365 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4366 | |
60e8c5ab | 4367 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4368 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 4369 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 4370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 4371 | S: Maintained |
bad985a1 | 4372 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4373 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4374 | |
4d8e2cef HX |
4375 | FREESCALE QUAD SPI DRIVER |
4376 | M: Han Xu <han.xu@freescale.com> | |
4377 | L: linux-mtd@lists.infradead.org | |
4378 | S: Maintained | |
4379 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4380 | ||
4689a6b1 | 4381 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4382 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
4383 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 4384 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
4385 | L: netdev@vger.kernel.org |
4386 | S: Maintained | |
ec21e2ec | 4387 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4388 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4389 | |
d9e9d82c | 4390 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4391 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4392 | S: Orphan |
679655da JP |
4393 | F: arch/powerpc/sysdev/qe_lib/ |
4394 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 4395 | |
b55ef929 | 4396 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4397 | M: Li Yang <leoli@freescale.com> |
6372594a | 4398 | L: linux-usb@vger.kernel.org |
a4724ed6 | 4399 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 4400 | S: Maintained |
faf2e1db | 4401 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4402 | |
beaf53bf | 4403 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 4404 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 4405 | L: netdev@vger.kernel.org |
a4724ed6 | 4406 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 4407 | S: Maintained |
ec21e2ec | 4408 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 4409 | |
d9e9d82c | 4410 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 4411 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 4412 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4413 | S: Maintained |
df621252 | 4414 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
4415 | |
4416 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 4417 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 4418 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 4419 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
93711660 | 4420 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 4421 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4422 | S: Maintained |
69aefcea | 4423 | F: sound/soc/fsl/fsl* |
dc85950a | 4424 | F: sound/soc/fsl/imx* |
69aefcea | 4425 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 4426 | |
31c88965 | 4427 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 4428 | M: "J. German Rivera" <German.Rivera@freescale.com> |
31c88965 GR |
4429 | L: linux-kernel@vger.kernel.org |
4430 | S: Maintained | |
4431 | F: drivers/staging/fsl-mc/ | |
4432 | ||
1da177e4 | 4433 | FREEVXFS FILESYSTEM |
8b58be88 | 4434 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
4435 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
4436 | S: Maintained | |
679655da | 4437 | F: fs/freevxfs/ |
1da177e4 | 4438 | |
71038f52 | 4439 | FREEZER |
49db1903 | 4440 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4441 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4442 | L: linux-pm@vger.kernel.org |
71038f52 | 4443 | S: Supported |
679655da JP |
4444 | F: Documentation/power/freezing-of-tasks.txt |
4445 | F: include/linux/freezer.h | |
4446 | F: kernel/freezer.c | |
71038f52 | 4447 | |
839a1f79 KRW |
4448 | FRONTSWAP API |
4449 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
4450 | L: linux-kernel@vger.kernel.org | |
4451 | S: Maintained | |
4452 | F: mm/frontswap.c | |
4453 | F: include/linux/frontswap.h | |
4454 | ||
a5432f5a | 4455 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 4456 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
4457 | L: linux-cachefs@redhat.com |
4458 | S: Supported | |
4459 | F: Documentation/filesystems/caching/ | |
4460 | F: fs/fscache/ | |
4461 | F: include/linux/fscache*.h | |
4462 | ||
f58ad8f5 | 4463 | F2FS FILE SYSTEM |
9b29d481 | 4464 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 4465 | M: Changman Lee <cm224.lee@samsung.com> |
7b2a246b | 4466 | R: Chao Yu <chao2.yu@samsung.com> |
f58ad8f5 JK |
4467 | L: linux-f2fs-devel@lists.sourceforge.net |
4468 | W: http://en.wikipedia.org/wiki/F2FS | |
4469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
4470 | S: Maintained | |
4471 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 4472 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
4473 | F: fs/f2fs/ |
4474 | F: include/linux/f2fs_fs.h | |
62d43eeb | 4475 | F: include/trace/events/f2fs.h |
f58ad8f5 | 4476 | |
5ab7ffea | 4477 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 4478 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 4479 | S: Maintained |
679655da | 4480 | F: arch/frv/ |
1da177e4 | 4481 | |
20b93734 | 4482 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 4483 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 4484 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 4485 | S: Maintained |
679655da | 4486 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 4487 | |
4da621b6 HK |
4488 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
4489 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4490 | M: Heungjun Kim <riverful.kim@samsung.com> | |
4491 | L: linux-media@vger.kernel.org | |
4492 | S: Maintained | |
90d72ac6 | 4493 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
4494 | F: include/media/m5mols.h |
4495 | ||
2d24c490 RG |
4496 | FUJITSU TABLET EXTRAS |
4497 | M: Robert Gerlach <khnz@gmx.de> | |
4498 | L: platform-driver-x86@vger.kernel.org | |
4499 | S: Maintained | |
4500 | F: drivers/platform/x86/fujitsu-tablet.c | |
4501 | ||
04578f17 | 4502 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 4503 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
4504 | L: fuse-devel@lists.sourceforge.net |
4505 | W: http://fuse.sourceforge.net/ | |
0a30f612 | 4506 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 4507 | S: Maintained |
679655da | 4508 | F: fs/fuse/ |
c117ab84 | 4509 | F: include/uapi/linux/fuse.h |
0a30f612 | 4510 | F: Documentation/filesystems/fuse.txt |
04578f17 | 4511 | |
1da177e4 | 4512 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 4513 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 4514 | L: linux-scsi@vger.kernel.org |
baaea1dc | 4515 | S: Odd Fixes (e.g., new signatures) |
679655da | 4516 | F: drivers/scsi/fdomain.* |
1da177e4 | 4517 | |
d8e2162c PO |
4518 | GCOV BASED KERNEL PROFILING |
4519 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
4520 | S: Maintained | |
4521 | F: kernel/gcov/ | |
4522 | F: Documentation/gcov.txt | |
4523 | ||
1da177e4 | 4524 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 4525 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
4526 | L: linux-scsi@vger.kernel.org |
4527 | W: http://www.icp-vortex.com/ | |
4528 | S: Supported | |
679655da | 4529 | F: drivers/scsi/gdt* |
1da177e4 | 4530 | |
158daf16 JK |
4531 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
4532 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
4533 | S: Supported | |
4534 | F: scripts/gdb/ | |
4535 | ||
3169a1c7 HV |
4536 | GEMTEK FM RADIO RECEIVER DRIVER |
4537 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4538 | L: linux-media@vger.kernel.org | |
4539 | T: git git://linuxtv.org/media_tree.git | |
4540 | W: http://linuxtv.org | |
4541 | S: Maintained | |
4542 | F: drivers/media/radio/radio-gemtek* | |
4543 | ||
1c23af90 | 4544 | GENERIC GPIO I2C DRIVER |
880b0e26 | 4545 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 4546 | S: Supported |
679655da JP |
4547 | F: drivers/i2c/busses/i2c-gpio.c |
4548 | F: include/linux/i2c-gpio.h | |
1c23af90 | 4549 | |
92ed1a76 PK |
4550 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
4551 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
4552 | L: linux-i2c@vger.kernel.org | |
4553 | S: Supported | |
e7065e20 JD |
4554 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
4555 | F: include/linux/i2c-mux-gpio.h | |
4556 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 4557 | |
9251ce95 | 4558 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 4559 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
4560 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
4561 | S: Maintained | |
679655da JP |
4562 | F: drivers/net/wan/c101.c |
4563 | F: drivers/net/wan/hd6457* | |
4564 | F: drivers/net/wan/hdlc* | |
4565 | F: drivers/net/wan/n2.c | |
4566 | F: drivers/net/wan/pc300too.c | |
4567 | F: drivers/net/wan/pci200syn.c | |
4568 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4569 | |
1527aab6 | 4570 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4571 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
4572 | L: linux-arch@vger.kernel.org |
4573 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4574 | S: Maintained | |
14430813 JP |
4575 | F: include/asm-generic/ |
4576 | F: include/uapi/asm-generic/ | |
1527aab6 | 4577 | |
ff764963 KVA |
4578 | GENERIC PHY FRAMEWORK |
4579 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
4580 | L: linux-kernel@vger.kernel.org | |
4581 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4582 | S: Supported | |
4583 | F: drivers/phy/ | |
4584 | F: include/linux/phy/ | |
4585 | ||
eea97aed KH |
4586 | GENERIC PM DOMAINS |
4587 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
4588 | M: Kevin Hilman <khilman@kernel.org> | |
4589 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
4590 | L: linux-pm@vger.kernel.org | |
4591 | S: Supported | |
4592 | F: drivers/base/power/domain*.c | |
4593 | F: include/linux/pm_domain.h | |
4594 | ||
ccb86a69 | 4595 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4596 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 4597 | L: kvm@vger.kernel.org |
ccb86a69 MT |
4598 | S: Supported |
4599 | F: drivers/uio/uio_pci_generic.c | |
4600 | ||
f8f1ec73 JP |
4601 | GET_MAINTAINER SCRIPT |
4602 | M: Joe Perches <joe@perches.com> | |
4603 | S: Maintained | |
4604 | F: scripts/get_maintainer.pl | |
4605 | ||
5be7b50f | 4606 | GFS2 FILE SYSTEM |
8b58be88 | 4607 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 4608 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 4609 | L: cluster-devel@redhat.com |
5be7b50f | 4610 | W: http://sources.redhat.com/cluster/ |
28666d6d | 4611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 4612 | S: Supported |
679655da JP |
4613 | F: Documentation/filesystems/gfs2*.txt |
4614 | F: fs/gfs2/ | |
c117ab84 | 4615 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4616 | |
0a34eb8f | 4617 | GIGASET ISDN DRIVERS |
6b096fde | 4618 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
4619 | L: gigaset307x-common@lists.sourceforge.net |
4620 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 4621 | S: Odd Fixes |
679655da JP |
4622 | F: Documentation/isdn/README.gigaset |
4623 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4624 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4625 | |
7eea35fe JP |
4626 | GO7007 MPEG CODEC |
4627 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
4628 | L: linux-media@vger.kernel.org | |
4629 | S: Maintained | |
4630 | F: drivers/media/usb/go7007/ | |
4631 | ||
ca96ea86 BN |
4632 | GOODIX TOUCHSCREEN |
4633 | M: Bastien Nocera <hadess@hadess.net> | |
4634 | L: linux-input@vger.kernel.org | |
4635 | S: Maintained | |
4636 | F: drivers/input/touchscreen/goodix.c | |
4637 | ||
a0dc00b4 | 4638 | GPIO SUBSYSTEM |
e4651a9f | 4639 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 4640 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 4641 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
4642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4643 | S: Maintained | |
4644 | F: Documentation/gpio/ | |
a0dc00b4 | 4645 | F: drivers/gpio/ |
bdc6e95e AC |
4646 | F: include/linux/gpio/ |
4647 | F: include/linux/gpio.h | |
9b692346 | 4648 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4649 | |
71a6d0af HW |
4650 | GRE DEMULTIPLEXER DRIVER |
4651 | M: Dmitry Kozlov <xeb@mail.ru> | |
4652 | L: netdev@vger.kernel.org | |
4653 | S: Maintained | |
11c26770 JP |
4654 | F: net/ipv4/gre_demux.c |
4655 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4656 | F: include/net/gre.h |
4657 | ||
d4c41139 KG |
4658 | GRETH 10/100/1G Ethernet MAC device driver |
4659 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
4660 | L: netdev@vger.kernel.org | |
4661 | S: Maintained | |
a31a96ad | 4662 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4663 | |
e8deeae2 | 4664 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4665 | M: Frank Zago <frank@zago.net> |
661263b5 | 4666 | L: linux-media@vger.kernel.org |
275ffde4 | 4667 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4668 | S: Maintained |
0c0d06ca | 4669 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4670 | |
4b3fa3c4 OL |
4671 | GSPCA GL860 SUBDRIVER |
4672 | M: Olivier Lorin <o.lorin@laposte.net> | |
4673 | L: linux-media@vger.kernel.org | |
275ffde4 | 4674 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4675 | S: Maintained |
0c0d06ca | 4676 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4677 | |
e8deeae2 | 4678 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4679 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 4680 | L: linux-media@vger.kernel.org |
275ffde4 | 4681 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4682 | S: Maintained |
0c0d06ca | 4683 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4684 | |
4685 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4686 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4687 | L: linux-media@vger.kernel.org |
275ffde4 | 4688 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4689 | S: Maintained |
0c0d06ca | 4690 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4691 | |
261982f1 | 4692 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4693 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 4694 | L: linux-media@vger.kernel.org |
275ffde4 | 4695 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4696 | S: Maintained |
0c0d06ca | 4697 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4698 | |
e8deeae2 | 4699 | GSPCA T613 SUBDRIVER |
8b58be88 | 4700 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 4701 | L: linux-media@vger.kernel.org |
275ffde4 | 4702 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4703 | S: Maintained |
0c0d06ca | 4704 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4705 | |
4706 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4707 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4708 | L: linux-media@vger.kernel.org |
275ffde4 | 4709 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4710 | S: Maintained |
0c0d06ca | 4711 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4712 | |
584ec979 | 4713 | GUID PARTITION TABLE (GPT) |
4f973c63 | 4714 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
4715 | L: linux-efi@vger.kernel.org |
4716 | S: Maintained | |
4717 | F: block/partitions/efi.* | |
4718 | ||
aa3c598b | 4719 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 4720 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 4721 | L: linux-media@vger.kernel.org |
275ffde4 | 4722 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4723 | S: Maintained |
4724 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4725 | |
4e456b86 YS |
4726 | H8/300 ARCHITECTURE |
4727 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 4728 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
4729 | W: http://uclinux-h8.sourceforge.jp |
4730 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
4731 | S: Maintained | |
4732 | F: arch/h8300/ | |
4733 | F: drivers/clocksource/h8300_*.c | |
4734 | F: drivers/clk/h8300/ | |
4735 | F: drivers/irqchip/irq-renesas-h8*.c | |
4736 | ||
71a6d0af HW |
4737 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4738 | M: Frank Seidel <frank@f-seidel.de> | |
4739 | L: platform-driver-x86@vger.kernel.org | |
4740 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4741 | S: Maintained | |
4742 | F: drivers/platform/x86/hdaps.c | |
4743 | ||
48fc9e26 HV |
4744 | HDPVR USB VIDEO ENCODER DRIVER |
4745 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4746 | L: linux-media@vger.kernel.org | |
4747 | T: git git://linuxtv.org/media_tree.git | |
4748 | W: http://linuxtv.org | |
4749 | S: Odd Fixes | |
14430813 | 4750 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4751 | |
71a6d0af | 4752 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4753 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4754 | L: linux-mm@kvack.org |
71a6d0af HW |
4755 | S: Maintained |
4756 | F: mm/memory-failure.c | |
4757 | F: mm/hwpoison-inject.c | |
4758 | ||
4759 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4760 | L: linuxppc-dev@lists.ozlabs.org | |
4761 | S: Odd Fixes | |
4762 | F: drivers/tty/hvc/ | |
4763 | ||
e5ab1477 AP |
4764 | HACKRF MEDIA DRIVER |
4765 | M: Antti Palosaari <crope@iki.fi> | |
4766 | L: linux-media@vger.kernel.org | |
4767 | W: http://linuxtv.org/ | |
4768 | W: http://palosaari.fi/linux/ | |
4769 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4770 | T: git git://linuxtv.org/anttip/media_tree.git | |
4771 | S: Maintained | |
4772 | F: drivers/media/usb/hackrf/ | |
4773 | ||
5b543965 | 4774 | HARDWARE MONITORING |
d8130624 | 4775 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 4776 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4777 | L: lm-sensors@lm-sensors.org |
595142e0 | 4778 | W: http://www.lm-sensors.org/ |
a94ef4ed | 4779 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 4780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4781 | S: Maintained |
047f4ec2 | 4782 | F: Documentation/hwmon/ |
679655da | 4783 | F: drivers/hwmon/ |
047f4ec2 | 4784 | F: include/linux/hwmon*.h |
5b543965 | 4785 | |
844dd05f | 4786 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4787 | M: Matt Mackall <mpm@selenic.com> |
4788 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 4789 | L: linux-crypto@vger.kernel.org |
c0d0787b | 4790 | S: Odd fixes |
679655da JP |
4791 | F: Documentation/hw_random.txt |
4792 | F: drivers/char/hw_random/ | |
4793 | F: include/linux/hw_random.h | |
844dd05f | 4794 | |
8b37fcfc OBC |
4795 | HARDWARE SPINLOCK CORE |
4796 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4797 | S: Maintained | |
4798 | F: Documentation/hwspinlock.txt | |
4799 | F: drivers/hwspinlock/hwspinlock_* | |
4800 | F: include/linux/hwspinlock.h | |
4801 | ||
1da177e4 | 4802 | HARMONY SOUND DRIVER |
ac6aecbf | 4803 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4804 | S: Maintained |
679655da | 4805 | F: sound/parisc/harmony.* |
1da177e4 | 4806 | |
91952bc0 AP |
4807 | HD29L2 MEDIA DRIVER |
4808 | M: Antti Palosaari <crope@iki.fi> | |
4809 | L: linux-media@vger.kernel.org | |
4810 | W: http://linuxtv.org/ | |
4811 | W: http://palosaari.fi/linux/ | |
4812 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4813 | T: git git://linuxtv.org/anttip/media_tree.git | |
4814 | S: Maintained | |
4815 | F: drivers/media/dvb-frontends/hd29l2* | |
4816 | ||
e2d1d6c0 | 4817 | HEWLETT-PACKARD SMART2 RAID DRIVER |
e2d1d6c0 | 4818 | L: iss_storagedev@hp.com |
af9f1b3c | 4819 | S: Orphan |
679655da JP |
4820 | F: Documentation/blockdev/cpqarray.txt |
4821 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4822 | |
9257aa49 | 4823 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
693373db | 4824 | M: Don Brace <don.brace@pmcs.com> |
9257aa49 | 4825 | L: iss_storagedev@hp.com |
693373db DB |
4826 | L: storagedev@pmcs.com |
4827 | L: linux-scsi@vger.kernel.org | |
9257aa49 SC |
4828 | S: Supported |
4829 | F: Documentation/scsi/hpsa.txt | |
4830 | F: drivers/scsi/hpsa*.[ch] | |
4831 | F: include/linux/cciss*.h | |
c117ab84 | 4832 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4833 | |
e2d1d6c0 | 4834 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
693373db | 4835 | M: Don Brace <don.brace@pmcs.com> |
e2d1d6c0 | 4836 | L: iss_storagedev@hp.com |
693373db DB |
4837 | L: storagedev@pmcs.com |
4838 | L: linux-scsi@vger.kernel.org | |
e2d1d6c0 | 4839 | S: Supported |
679655da JP |
4840 | F: Documentation/blockdev/cciss.txt |
4841 | F: drivers/block/cciss* | |
4842 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4843 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4844 | |
1da177e4 | 4845 | HFS FILESYSTEM |
6cf515e1 GU |
4846 | L: linux-fsdevel@vger.kernel.org |
4847 | S: Orphan | |
679655da JP |
4848 | F: Documentation/filesystems/hfs.txt |
4849 | F: fs/hfs/ | |
1da177e4 | 4850 | |
ef575f47 GU |
4851 | HFSPLUS FILESYSTEM |
4852 | L: linux-fsdevel@vger.kernel.org | |
4853 | S: Orphan | |
4854 | F: Documentation/filesystems/hfsplus.txt | |
4855 | F: fs/hfsplus/ | |
4856 | ||
1da177e4 | 4857 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4858 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
4859 | L: linux-nvidia@lists.surfsouth.com |
4860 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4861 | S: Maintained | |
8a61f013 | 4862 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 4863 | |
4480f15b | 4864 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4865 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4866 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4867 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 4868 | S: Supported |
679655da JP |
4869 | F: arch/x86/power/ |
4870 | F: drivers/base/power/ | |
4871 | F: kernel/power/ | |
4872 | F: include/linux/suspend.h | |
4873 | F: include/linux/freezer.h | |
4874 | F: include/linux/pm.h | |
679655da | 4875 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4876 | |
4ef4caad | 4877 | HID CORE LAYER |
e5f6450c | 4878 | M: Jiri Kosina <jikos@kernel.org> |
eb76c5c0 | 4879 | L: linux-input@vger.kernel.org |
54e5881d | 4880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4881 | S: Maintained |
679655da JP |
4882 | F: drivers/hid/ |
4883 | F: include/linux/hid* | |
c117ab84 | 4884 | F: include/uapi/linux/hid* |
4ef4caad | 4885 | |
30ee72f0 | 4886 | HID SENSOR HUB DRIVERS |
e5f6450c | 4887 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
4888 | M: Jonathan Cameron <jic23@kernel.org> |
4889 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
4890 | L: linux-input@vger.kernel.org | |
4891 | L: linux-iio@vger.kernel.org | |
4892 | S: Maintained | |
4893 | F: Documentation/hid/hid-sensor* | |
4894 | F: drivers/hid/hid-sensor-* | |
4895 | F: drivers/iio/*/hid-* | |
4896 | F: include/linux/hid-sensor-* | |
4897 | ||
38bed542 | 4898 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4899 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 4900 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 4901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4902 | S: Maintained |
679655da | 4903 | F: Documentation/timers/ |
5cee9645 | 4904 | F: kernel/time/hrtimer.c |
88606e80 TG |
4905 | F: kernel/time/clockevents.c |
4906 | F: kernel/time/tick*.* | |
4907 | F: kernel/time/timer_*.c | |
05ed8490 | 4908 | F: include/linux/clockchips.h |
679655da | 4909 | F: include/linux/hrtimer.h |
38bed542 | 4910 | |
1da177e4 | 4911 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4912 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 4913 | S: Orphan |
679655da JP |
4914 | F: drivers/net/hamradio/dmascc.c |
4915 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4916 | |
ede1e6f8 | 4917 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4918 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
4919 | W: http://www.highpoint-tech.com |
4920 | S: Supported | |
679655da JP |
4921 | F: Documentation/scsi/hptiop.txt |
4922 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4923 | |
1da177e4 | 4924 | HIPPI |
8b58be88 | 4925 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
4926 | L: linux-hippi@sunsite.dk |
4927 | S: Maintained | |
679655da | 4928 | F: include/linux/hippidevice.h |
c117ab84 | 4929 | F: include/uapi/linux/if_hippi.h |
679655da | 4930 | F: net/802/hippi.c |
ff5a3b50 | 4931 | F: drivers/net/hippi/ |
1da177e4 | 4932 | |
ff1d2767 | 4933 | HOST AP DRIVER |
8b58be88 | 4934 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 4935 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 4936 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
4937 | W: http://hostap.epitest.fi/ |
4938 | S: Maintained | |
679655da | 4939 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4940 | |
dd8cd779 | 4941 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4942 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 4943 | S: Orphan |
679655da | 4944 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4945 | |
e2d1d6c0 | 4946 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4947 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4948 | S: Maintained |
7e25d724 | 4949 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4950 | |
7d2c86b5 | 4951 | HPET: High Precision Event Timers driver |
8b58be88 | 4952 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 4953 | S: Maintained |
679655da JP |
4954 | F: Documentation/timers/hpet.txt |
4955 | F: drivers/char/hpet.c | |
4956 | F: include/linux/hpet.h | |
c117ab84 | 4957 | F: include/uapi/linux/hpet.h |
b9b0332f | 4958 | |
e07b5d79 | 4959 | HPET: x86 |
9e06f631 | 4960 | S: Orphan |
679655da JP |
4961 | F: arch/x86/kernel/hpet.c |
4962 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4963 | |
1da177e4 | 4964 | HPFS FILESYSTEM |
8b58be88 | 4965 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
4966 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4967 | S: Maintained | |
679655da | 4968 | F: fs/hpfs/ |
1da177e4 | 4969 | |
3441cded | 4970 | HSI SUBSYSTEM |
56459ea9 SR |
4971 | M: Sebastian Reichel <sre@kernel.org> |
4972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4973 | S: Maintained |
4974 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4975 | F: Documentation/hsi.txt |
3441cded SR |
4976 | F: drivers/hsi/ |
4977 | F: include/linux/hsi/ | |
4978 | F: include/uapi/linux/hsi/ | |
4979 | ||
7d2c86b5 | 4980 | HSO 3G MODEM DRIVER |
8b58be88 | 4981 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
4982 | W: http://www.pharscape.org |
4983 | S: Maintained | |
679655da | 4984 | F: drivers/net/usb/hso.c |
11cd29b0 | 4985 | |
19990e29 AB |
4986 | HSR NETWORK PROTOCOL |
4987 | M: Arvid Brodin <arvid.brodin@alten.se> | |
4988 | L: netdev@vger.kernel.org | |
4989 | S: Maintained | |
4990 | F: net/hsr/ | |
4991 | ||
5a18c343 | 4992 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4993 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
4994 | L: linux-input@vger.kernel.org |
4995 | S: Maintained | |
679655da | 4996 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4997 | |
1da177e4 | 4998 | HUGETLB FILESYSTEM |
6d49e352 | 4999 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5000 | S: Maintained |
679655da | 5001 | F: fs/hugetlbfs/ |
1da177e4 | 5002 | |
05183189 | 5003 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5004 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5005 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5006 | L: devel@linuxdriverproject.org | |
5007 | S: Maintained | |
a4162747 HZ |
5008 | F: arch/x86/include/asm/mshyperv.h |
5009 | F: arch/x86/include/uapi/asm/hyperv.h | |
5010 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5011 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5012 | F: drivers/hv/ |
f92ca80b | 5013 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 5014 | F: drivers/net/hyperv/ |
a4162747 | 5015 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5016 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5017 | F: include/linux/hyperv.h |
5018 | F: tools/hv/ | |
54bf725e | 5019 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5020 | |
d85c8a6a | 5021 | I2C OVER PARALLEL PORT |
d8130624 | 5022 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5023 | L: linux-i2c@vger.kernel.org |
5024 | S: Maintained | |
5025 | F: Documentation/i2c/busses/i2c-parport | |
5026 | F: Documentation/i2c/busses/i2c-parport-light | |
5027 | F: drivers/i2c/busses/i2c-parport.c | |
5028 | F: drivers/i2c/busses/i2c-parport-light.c | |
5029 | ||
5030 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5031 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5032 | L: linux-i2c@vger.kernel.org |
5033 | S: Maintained | |
5034 | F: Documentation/i2c/busses/i2c-ali1535 | |
5035 | F: Documentation/i2c/busses/i2c-ali1563 | |
5036 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5037 | F: Documentation/i2c/busses/i2c-amd756 | |
5038 | F: Documentation/i2c/busses/i2c-amd8111 | |
5039 | F: Documentation/i2c/busses/i2c-i801 | |
5040 | F: Documentation/i2c/busses/i2c-nforce2 | |
5041 | F: Documentation/i2c/busses/i2c-piix4 | |
5042 | F: Documentation/i2c/busses/i2c-sis5595 | |
5043 | F: Documentation/i2c/busses/i2c-sis630 | |
5044 | F: Documentation/i2c/busses/i2c-sis96x | |
5045 | F: Documentation/i2c/busses/i2c-via | |
5046 | F: Documentation/i2c/busses/i2c-viapro | |
5047 | F: drivers/i2c/busses/i2c-ali1535.c | |
5048 | F: drivers/i2c/busses/i2c-ali1563.c | |
5049 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5050 | F: drivers/i2c/busses/i2c-amd756.c | |
5051 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5052 | F: drivers/i2c/busses/i2c-amd8111.c | |
5053 | F: drivers/i2c/busses/i2c-i801.c | |
5054 | F: drivers/i2c/busses/i2c-isch.c | |
5055 | F: drivers/i2c/busses/i2c-nforce2.c | |
5056 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5057 | F: drivers/i2c/busses/i2c-piix4.c | |
5058 | F: drivers/i2c/busses/i2c-sis5595.c | |
5059 | F: drivers/i2c/busses/i2c-sis630.c | |
5060 | F: drivers/i2c/busses/i2c-sis96x.c | |
5061 | F: drivers/i2c/busses/i2c-via.c | |
5062 | F: drivers/i2c/busses/i2c-viapro.c | |
5063 | ||
cb7f07a4 NH |
5064 | I2C/SMBUS ISMT DRIVER |
5065 | M: Seth Heasley <seth.heasley@intel.com> | |
5066 | M: Neil Horman <nhorman@tuxdriver.com> | |
5067 | L: linux-i2c@vger.kernel.org | |
5068 | F: drivers/i2c/busses/i2c-ismt.c | |
5069 | F: Documentation/i2c/busses/i2c-ismt | |
5070 | ||
6ea884db | 5071 | I2C/SMBUS STUB DRIVER |
d8130624 | 5072 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5073 | L: linux-i2c@vger.kernel.org |
6ea884db | 5074 | S: Maintained |
8547a5bc | 5075 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5076 | |
5b543965 | 5077 | I2C SUBSYSTEM |
14d77c4d | 5078 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5079 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5080 | W: https://i2c.wiki.kernel.org/ |
5081 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5083 | S: Maintained |
40ed1b4c | 5084 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5085 | F: Documentation/i2c/ |
5086 | F: drivers/i2c/ | |
5087 | F: include/linux/i2c.h | |
03b70d62 | 5088 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5089 | F: include/uapi/linux/i2c.h |
5090 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5091 | |
4560d677 WS |
5092 | I2C ACPI SUPPORT |
5093 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5094 | L: linux-i2c@vger.kernel.org | |
5095 | L: linux-acpi@vger.kernel.org | |
5096 | S: Maintained | |
4560d677 | 5097 | |
d85c8a6a | 5098 | I2C-TAOS-EVM DRIVER |
d8130624 | 5099 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5100 | L: linux-i2c@vger.kernel.org |
5101 | S: Maintained | |
5102 | F: Documentation/i2c/busses/i2c-taos-evm | |
5103 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5104 | ||
e8c76eed | 5105 | I2C-TINY-USB DRIVER |
8b58be88 | 5106 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5107 | L: linux-i2c@vger.kernel.org |
932d1872 | 5108 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5109 | S: Maintained |
679655da | 5110 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5111 | |
1da177e4 | 5112 | i386 BOOT CODE |
8b58be88 | 5113 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5114 | S: Maintained |
679655da | 5115 | F: arch/x86/boot/ |
1da177e4 LT |
5116 | |
5117 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5118 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5120 | S: Maintained |
5121 | ||
1da177e4 | 5122 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5123 | M: Tony Luck <tony.luck@intel.com> |
5124 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5125 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5126 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5127 | S: Maintained |
679655da | 5128 | F: arch/ia64/ |
1da177e4 | 5129 | |
4cd38750 LDSB |
5130 | IBM Power VMX Cryptographic instructions |
5131 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5132 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5133 | L: linux-crypto@vger.kernel.org |
5134 | S: Supported | |
5135 | F: drivers/crypto/vmx/Makefile | |
5136 | F: drivers/crypto/vmx/Kconfig | |
5137 | F: drivers/crypto/vmx/vmx.c | |
5138 | F: drivers/crypto/vmx/aes* | |
5139 | F: drivers/crypto/vmx/ghash* | |
5140 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5141 | ||
956c203c | 5142 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5143 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5144 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5145 | L: linux-crypto@vger.kernel.org |
5146 | S: Supported | |
28bceeaa DS |
5147 | F: drivers/crypto/nx/Makefile |
5148 | F: drivers/crypto/nx/Kconfig | |
5149 | F: drivers/crypto/nx/nx-aes* | |
5150 | F: drivers/crypto/nx/nx-sha* | |
5151 | F: drivers/crypto/nx/nx.* | |
5152 | F: drivers/crypto/nx/nx_csbcpb.h | |
5153 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5154 | |
0e16aafb | 5155 | IBM Power 842 compression accelerator |
41656aa7 | 5156 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5157 | S: Supported |
28bceeaa DS |
5158 | F: drivers/crypto/nx/Makefile |
5159 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5160 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5161 | F: include/linux/sw842.h |
2062c5b6 | 5162 | F: crypto/842.c |
2da572c9 | 5163 | F: lib/842/ |
0e16aafb | 5164 | |
1da177e4 | 5165 | IBM Power Linux RAID adapter |
8b58be88 | 5166 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 5167 | S: Supported |
679655da | 5168 | F: drivers/scsi/ipr.* |
1da177e4 | 5169 | |
9d348af4 | 5170 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 5171 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
5172 | L: netdev@vger.kernel.org |
5173 | S: Supported | |
9aa32835 | 5174 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 5175 | |
e6babec6 | 5176 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 5177 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
5178 | L: linux-scsi@vger.kernel.org |
5179 | S: Supported | |
e6babec6 NF |
5180 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
5181 | F: drivers/scsi/ibmvscsi/viosrp.h | |
5182 | ||
5183 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 5184 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
5185 | L: linux-scsi@vger.kernel.org |
5186 | S: Supported | |
5187 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 5188 | |
1da177e4 | 5189 | IBM ServeRAID RAID DRIVER |
f9213e78 | 5190 | S: Orphan |
679655da | 5191 | F: drivers/scsi/ips.* |
1da177e4 | 5192 | |
6ed9f9c4 PT |
5193 | ICH LPC AND GPIO DRIVER |
5194 | M: Peter Tyser <ptyser@xes-inc.com> | |
5195 | S: Maintained | |
5196 | F: drivers/mfd/lpc_ich.c | |
5197 | F: drivers/gpio/gpio-ich.c | |
5198 | ||
1e7106fc | 5199 | IDE SUBSYSTEM |
8b58be88 | 5200 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 5201 | L: linux-ide@vger.kernel.org |
8a6e2535 | 5202 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 5203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 5204 | S: Maintained |
679655da JP |
5205 | F: Documentation/ide/ |
5206 | F: drivers/ide/ | |
5207 | F: include/linux/ide.h | |
1da177e4 | 5208 | |
6cb8c13d IP |
5209 | IDEAPAD LAPTOP EXTRAS DRIVER |
5210 | M: Ike Panhc <ike.pan@canonical.com> | |
5211 | L: platform-driver-x86@vger.kernel.org | |
5212 | W: http://launchpad.net/ideapad-laptop | |
5213 | S: Maintained | |
5214 | F: drivers/platform/x86/ideapad-laptop.c | |
5215 | ||
1ea4c161 AM |
5216 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
5217 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
5218 | L: linux-input@vger.kernel.org | |
5219 | W: https://github.com/o2genum/ideapad-slidebar | |
5220 | S: Maintained | |
5221 | F: drivers/input/misc/ideapad_slidebar.c | |
5222 | ||
0f861e8c | 5223 | IDE/ATAPI DRIVERS |
487ba8e8 | 5224 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 5225 | L: linux-ide@vger.kernel.org |
c404c199 | 5226 | S: Maintained |
679655da JP |
5227 | F: Documentation/cdrom/ide-cd |
5228 | F: drivers/ide/ide-cd* | |
1da177e4 | 5229 | |
27471fdb | 5230 | IDLE-I7300 |
8b58be88 | 5231 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 5232 | L: linux-pm@vger.kernel.org |
27471fdb | 5233 | S: Supported |
679655da | 5234 | F: drivers/idle/i7300_idle.c |
27471fdb | 5235 | |
02cf2286 | 5236 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 5237 | M: Alexander Aring <alex.aring@gmail.com> |
ebef9c12 VB |
5238 | L: linux-wpan@vger.kernel.org |
5239 | W: https://github.com/linux-wpan | |
5240 | T: git git://github.com/linux-wpan/linux-wpan-next.git | |
02cf2286 SL |
5241 | S: Maintained |
5242 | F: net/ieee802154/ | |
68653359 | 5243 | F: net/mac802154/ |
251741b1 | 5244 | F: drivers/net/ieee802154/ |
580947d3 AA |
5245 | F: include/linux/nl802154.h |
5246 | F: include/linux/ieee802154.h | |
5247 | F: include/net/nl802154.h | |
5248 | F: include/net/mac802154.h | |
5249 | F: include/net/af_ieee802154.h | |
5250 | F: include/net/cfg802154.h | |
5251 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 5252 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 5253 | |
b1c97193 SY |
5254 | IGORPLUG-USB IR RECEIVER |
5255 | M: Sean Young <sean@mess.org> | |
5256 | L: linux-media@vger.kernel.org | |
5257 | S: Maintained | |
5258 | F: drivers/media/rc/igorplugusb.c | |
5259 | ||
40ad4a30 SY |
5260 | IGUANAWORKS USB IR TRANSCEIVER |
5261 | M: Sean Young <sean@mess.org> | |
5262 | L: linux-media@vger.kernel.org | |
5263 | S: Maintained | |
5264 | F: drivers/media/rc/iguanair.c | |
5265 | ||
9545f86e | 5266 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 5267 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
5268 | R: Hartmut Knaack <knaack.h@gmx.de> |
5269 | R: Lars-Peter Clausen <lars@metafoo.de> | |
5270 | R: Peter Meerwald <pmeerw@pmeerw.net> | |
9545f86e AP |
5271 | L: linux-iio@vger.kernel.org |
5272 | S: Maintained | |
03e7c251 | 5273 | F: drivers/iio/ |
9545f86e | 5274 | F: drivers/staging/iio/ |
8fe671fc | 5275 | F: include/linux/iio/ |
817020cf | 5276 | F: tools/iio/ |
9545f86e | 5277 | |
65519263 SG |
5278 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5279 | M: Matthieu Castet <castet.matthieu@free.fr> | |
5280 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
5281 | S: Maintained | |
5282 | F: drivers/usb/atm/ueagle-atm.c | |
5283 | ||
e89ab51f GR |
5284 | INA209 HARDWARE MONITOR DRIVER |
5285 | M: Guenter Roeck <linux@roeck-us.net> | |
5286 | L: lm-sensors@lm-sensors.org | |
5287 | S: Maintained | |
5288 | F: Documentation/hwmon/ina209 | |
5289 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5290 | F: drivers/hwmon/ina209.c | |
5291 | ||
5292 | INA2XX HARDWARE MONITOR DRIVER | |
5293 | M: Guenter Roeck <linux@roeck-us.net> | |
5294 | L: lm-sensors@lm-sensors.org | |
5295 | S: Maintained | |
5296 | F: Documentation/hwmon/ina2xx | |
5297 | F: drivers/hwmon/ina2xx.c | |
5298 | F: include/linux/platform_data/ina2xx.h | |
5299 | ||
14dc124f SIG |
5300 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5301 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
5302 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
5303 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5304 | L: industrypack-devel@lists.sourceforge.net | |
5305 | W: http://industrypack.sourceforge.net | |
5306 | S: Maintained | |
5307 | F: drivers/ipack/ | |
5308 | ||
8adc53fd ZLK |
5309 | INGENIC JZ4780 DMA Driver |
5310 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
5311 | S: Maintained | |
5312 | F: drivers/dma/dma-jz4780.c | |
5313 | ||
aa7168f4 | 5314 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 5315 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 5316 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
5317 | L: linux-ima-devel@lists.sourceforge.net |
5318 | L: linux-ima-user@lists.sourceforge.net | |
5319 | L: linux-security-module@vger.kernel.org | |
aa7168f4 | 5320 | S: Supported |
679655da | 5321 | F: security/integrity/ima/ |
aa7168f4 | 5322 | |
9a4ea5a9 JH |
5323 | IMGTEC IR DECODER DRIVER |
5324 | M: James Hogan <james.hogan@imgtec.com> | |
5325 | S: Maintained | |
5326 | F: drivers/media/rc/img-ir/ | |
5327 | ||
1da177e4 | 5328 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 5329 | L: linux-fbdev@vger.kernel.org |
843393d3 | 5330 | S: Orphan |
8a61f013 | 5331 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
5332 | |
5333 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 5334 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
5335 | M: Sean Hefty <sean.hefty@intel.com> |
5336 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 5337 | L: linux-rdma@vger.kernel.org |
605841f5 | 5338 | W: http://www.openfabrics.org/ |
8a6e2535 | 5339 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 5340 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 5341 | S: Supported |
679655da JP |
5342 | F: Documentation/infiniband/ |
5343 | F: drivers/infiniband/ | |
2dfcad3a | 5344 | F: drivers/staging/rdma/ |
c117ab84 | 5345 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
5346 | F: include/uapi/rdma/ |
5347 | F: include/rdma/ | |
1da177e4 | 5348 | |
c9f04f58 | 5349 | INOTIFY |
8b58be88 JP |
5350 | M: John McCutchan <john@johnmccutchan.com> |
5351 | M: Robert Love <rlove@rlove.org> | |
5352 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 5353 | S: Maintained |
679655da JP |
5354 | F: Documentation/filesystems/inotify.txt |
5355 | F: fs/notify/inotify/ | |
5356 | F: include/linux/inotify.h | |
c117ab84 | 5357 | F: include/uapi/linux/inotify.h |
c9f04f58 | 5358 | |
e2d1d6c0 | 5359 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 5360 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 5361 | L: linux-input@vger.kernel.org |
8a6e2535 | 5362 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 5363 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 5364 | S: Maintained |
679655da | 5365 | F: drivers/input/ |
f4eea7e2 | 5366 | F: include/linux/input.h |
c117ab84 | 5367 | F: include/uapi/linux/input.h |
f4eea7e2 | 5368 | F: include/linux/input/ |
e2d1d6c0 | 5369 | |
3267a87f | 5370 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 5371 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 5372 | L: linux-input@vger.kernel.org |
75dd112a | 5373 | S: Odd fixes |
3267a87f | 5374 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 5375 | F: drivers/input/input-mt.c |
3267a87f HR |
5376 | K: \b(ABS|SYN)_MT_ |
5377 | ||
97fa99a3 JY |
5378 | INTEL ASoC BDW/HSW DRIVERS |
5379 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 5380 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 5381 | S: Supported |
e8e1225d JP |
5382 | F: sound/soc/intel/common/sst-dsp* |
5383 | F: sound/soc/intel/common/sst-firmware.c | |
5384 | F: sound/soc/intel/boards/broadwell.c | |
5385 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 5386 | |
4ac13e17 DJ |
5387 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
5388 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 5389 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 5390 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
5391 | T: git git://git.code.sf.net/p/intel-sas/isci |
5392 | S: Supported | |
4ac13e17 | 5393 | F: drivers/scsi/isci/ |
4ac13e17 | 5394 | |
26717172 LB |
5395 | INTEL IDLE DRIVER |
5396 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 5397 | L: linux-pm@vger.kernel.org |
08deed1e | 5398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
5399 | S: Supported |
5400 | F: drivers/idle/intel_idle.c | |
5401 | ||
7c1ac18d KCA |
5402 | INTEL PSTATE DRIVER |
5403 | M: Kristen Carlson Accardi <kristen@linux.intel.com> | |
5404 | L: linux-pm@vger.kernel.org | |
5405 | S: Supported | |
5406 | F: drivers/cpufreq/intel_pstate.c | |
5407 | ||
9eb8ef74 | 5408 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 5409 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 5410 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5411 | S: Maintained |
679655da | 5412 | F: Documentation/fb/intelfb.txt |
8a61f013 | 5413 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 5414 | |
1da177e4 | 5415 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 5416 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 5417 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5418 | S: Maintained |
8a61f013 | 5419 | F: drivers/video/fbdev/i810/ |
1da177e4 | 5420 | |
f4a9bc4c | 5421 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 5422 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 5423 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 5424 | W: https://01.org/linux-acpi |
f4a9bc4c | 5425 | S: Supported |
679655da | 5426 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 5427 | |
1da177e4 | 5428 | INTEL IA32 MICROCODE UPDATE SUPPORT |
ca68a525 | 5429 | M: Borislav Petkov <bp@alien8.de> |
1da177e4 | 5430 | S: Maintained |
73d425fd JP |
5431 | F: arch/x86/kernel/cpu/microcode/core* |
5432 | F: arch/x86/kernel/cpu/microcode/intel* | |
1da177e4 | 5433 | |
248a9dc3 | 5434 | INTEL I/OAT DMA DRIVER |
18ebd564 | 5435 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 5436 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
5437 | L: dmaengine@vger.kernel.org |
5438 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
5439 | S: Supported | |
679655da | 5440 | F: drivers/dma/ioat* |
248a9dc3 | 5441 | |
6c8909b4 | 5442 | INTEL IOMMU (VT-d) |
8b58be88 | 5443 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 5444 | L: iommu@lists.linux-foundation.org |
54e5881d | 5445 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 5446 | S: Supported |
3fb39615 | 5447 | F: drivers/iommu/intel-iommu.c |
679655da | 5448 | F: include/linux/intel-iommu.h |
6c8909b4 | 5449 | |
b3e5f263 | 5450 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 5451 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 5452 | S: Odd fixes |
679655da | 5453 | F: drivers/dma/iop-adma.c |
b3e5f263 | 5454 | |
9251ce95 | 5455 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 5456 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 5457 | S: Maintained |
679655da JP |
5458 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
5459 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
5460 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
5461 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 5462 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 5463 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 5464 | |
844dd05f | 5465 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 5466 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 5467 | S: Maintained |
679655da | 5468 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 5469 | |
2f302324 | 5470 | INTEL ETHERNET DRIVERS |
8b58be88 | 5471 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
2f302324 JK |
5472 | R: Jesse Brandeburg <jesse.brandeburg@intel.com> |
5473 | R: Shannon Nelson <shannon.nelson@intel.com> | |
5474 | R: Carolyn Wyborny <carolyn.wyborny@intel.com> | |
5475 | R: Don Skidmore <donald.c.skidmore@intel.com> | |
5476 | R: Matthew Vick <matthew.vick@intel.com> | |
5477 | R: John Ronciak <john.ronciak@intel.com> | |
5478 | R: Mitch Williams <mitch.a.williams@intel.com> | |
5479 | L: intel-wired-lan@lists.osuosl.org | |
f6fde11a | 5480 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 5481 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
5482 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
5483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
5484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 5485 | S: Supported |
0d164401 JK |
5486 | F: Documentation/networking/e100.txt |
5487 | F: Documentation/networking/e1000.txt | |
5488 | F: Documentation/networking/e1000e.txt | |
5489 | F: Documentation/networking/igb.txt | |
5490 | F: Documentation/networking/igbvf.txt | |
5491 | F: Documentation/networking/ixgb.txt | |
5492 | F: Documentation/networking/ixgbe.txt | |
5493 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 5494 | F: Documentation/networking/i40e.txt |
105bf2fe | 5495 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 5496 | F: drivers/net/ethernet/intel/ |
bc90d291 | 5497 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 5498 | |
0963d59b LW |
5499 | INTEL-MID GPIO DRIVER |
5500 | M: David Cohen <david.a.cohen@linux.intel.com> | |
5501 | L: linux-gpio@vger.kernel.org | |
5502 | S: Maintained | |
5503 | F: drivers/gpio/gpio-intel-mid.c | |
5504 | ||
ca907a90 SY |
5505 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
5506 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 5507 | L: linux-wireless@vger.kernel.org |
ca907a90 | 5508 | S: Maintained |
679655da | 5509 | F: Documentation/networking/README.ipw2100 |
679655da | 5510 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 5511 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 5512 | |
4bd96a7a | 5513 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
5514 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
5515 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
5516 | M: Shane Wang <shane.wang@intel.com> |
5517 | L: tboot-devel@lists.sourceforge.net | |
5518 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 5519 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
5520 | S: Supported |
5521 | F: Documentation/intel_txt.txt | |
5522 | F: include/linux/tboot.h | |
5523 | F: arch/x86/kernel/tboot.c | |
5524 | ||
8a70da82 | 5525 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 5526 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 5527 | M: linux-wimax@intel.com |
49e7d9df | 5528 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
5529 | S: Supported |
5530 | W: http://linuxwimax.org | |
679655da JP |
5531 | F: Documentation/wimax/README.i2400m |
5532 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 5533 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 5534 | |
1c0ce89c SG |
5535 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
5536 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 5537 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 5538 | S: Supported |
efa3144e WYG |
5539 | F: drivers/net/wireless/iwlegacy/ |
5540 | ||
b481de9c | 5541 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 5542 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 5543 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
a0bf797f | 5544 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 5545 | L: linux-wireless@vger.kernel.org |
b481de9c | 5546 | W: http://intellinuxwireless.org |
b62ff718 | 5547 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 5548 | S: Supported |
679655da | 5549 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 5550 | |
de8fe023 TW |
5551 | INTEL MANAGEMENT ENGINE (mei) |
5552 | M: Tomas Winkler <tomas.winkler@intel.com> | |
5553 | L: linux-kernel@vger.kernel.org | |
5554 | S: Supported | |
c117ab84 | 5555 | F: include/uapi/linux/mei.h |
5069288b | 5556 | F: include/linux/mei_cl_bus.h |
de8fe023 | 5557 | F: drivers/misc/mei/* |
e07950a1 | 5558 | F: Documentation/misc-devices/mei/* |
de8fe023 | 5559 | |
0a8b8353 | 5560 | INTEL PMC IPC DRIVER |
5561 | M: Zha Qipeng<qipeng.zha@intel.com> | |
5562 | L: platform-driver-x86@vger.kernel.org | |
5563 | S: Maintained | |
5564 | F: drivers/platform/x86/intel_pmc_ipc.c | |
5565 | F: arch/x86/include/asm/intel_pmc_ipc.h | |
5566 | ||
cb109a0e | 5567 | IOC3 ETHERNET DRIVER |
8b58be88 | 5568 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
5569 | L: linux-mips@linux-mips.org |
5570 | S: Maintained | |
8862bf1e | 5571 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 5572 | |
cb109a0e | 5573 | IOC3 SERIAL DRIVER |
8b58be88 | 5574 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 5575 | L: linux-serial@vger.kernel.org |
cb109a0e | 5576 | S: Maintained |
df621252 | 5577 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 5578 | |
0b6e8569 SW |
5579 | IOMMU DRIVERS |
5580 | M: Joerg Roedel <joro@8bytes.org> | |
5581 | L: iommu@lists.linux-foundation.org | |
5582 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
5583 | S: Maintained | |
5584 | F: drivers/iommu/ | |
5585 | ||
4480f15b | 5586 | IP MASQUERADING |
8b58be88 | 5587 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 5588 | S: Maintained |
679655da | 5589 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 5590 | |
1202d6ff | 5591 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
5592 | M: Francois Romieu <romieu@fr.zoreil.com> |
5593 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
5594 | L: netdev@vger.kernel.org |
5595 | S: Maintained | |
7443713a | 5596 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 5597 | |
4480f15b | 5598 | IPATH DRIVER |
8473c603 | 5599 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 5600 | L: linux-rdma@vger.kernel.org |
52a09a04 | 5601 | S: Maintained |
6f9b3890 | 5602 | F: drivers/staging/rdma/ipath/ |
77d8798b | 5603 | |
4409ebe9 | 5604 | IPMI SUBSYSTEM |
8b58be88 | 5605 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 5606 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
5607 | W: http://openipmi.sourceforge.net/ |
5608 | S: Supported | |
679655da JP |
5609 | F: Documentation/IPMI.txt |
5610 | F: drivers/char/ipmi/ | |
5611 | F: include/linux/ipmi* | |
c117ab84 | 5612 | F: include/uapi/linux/ipmi* |
4409ebe9 | 5613 | |
2d800897 KW |
5614 | QCOM AUDIO (ASoC) DRIVERS |
5615 | M: Patrick Lai <plai@codeaurora.org> | |
5616 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
5617 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5618 | S: Supported | |
5619 | F: sound/soc/qcom/ | |
5620 | ||
e2d1d6c0 | 5621 | IPS SCSI RAID DRIVER |
8b58be88 | 5622 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
5623 | L: linux-scsi@vger.kernel.org |
5624 | W: http://www.adaptec.com/ | |
5625 | S: Maintained | |
679655da | 5626 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
5627 | |
5628 | IPVS | |
8b58be88 JP |
5629 | M: Wensong Zhang <wensong@linux-vs.org> |
5630 | M: Simon Horman <horms@verge.net.au> | |
5631 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 5632 | L: netdev@vger.kernel.org |
e2d1d6c0 | 5633 | L: lvs-devel@vger.kernel.org |
1da177e4 | 5634 | S: Maintained |
679655da | 5635 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 5636 | F: include/net/ip_vs.h |
c117ab84 | 5637 | F: include/uapi/linux/ip_vs.h |
679655da | 5638 | F: net/netfilter/ipvs/ |
1da177e4 | 5639 | |
e7839f25 | 5640 | IPWIRELESS DRIVER |
e5f6450c | 5641 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 5642 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 5643 | S: Odd Fixes |
282361a0 | 5644 | F: drivers/tty/ipwireless/ |
099dc4fb | 5645 | |
e2d1d6c0 | 5646 | IPX NETWORK LAYER |
8b58be88 | 5647 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
5648 | L: netdev@vger.kernel.org |
5649 | S: Maintained | |
679655da | 5650 | F: include/net/ipx.h |
c117ab84 | 5651 | F: include/uapi/linux/ipx.h |
679655da | 5652 | F: net/ipx/ |
e2d1d6c0 | 5653 | |
1da177e4 | 5654 | IRDA SUBSYSTEM |
8b58be88 | 5655 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 5656 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 5657 | L: netdev@vger.kernel.org |
1da177e4 | 5658 | W: http://irda.sourceforge.net/ |
f353976d | 5659 | S: Maintained |
e0057975 | 5660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
5661 | F: Documentation/networking/irda.txt |
5662 | F: drivers/net/irda/ | |
5663 | F: include/net/irda/ | |
5664 | F: net/irda/ | |
1da177e4 | 5665 | |
a800c7cc TG |
5666 | IRQ SUBSYSTEM |
5667 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 5668 | L: linux-kernel@vger.kernel.org |
a800c7cc | 5669 | S: Maintained |
75fc2d37 | 5670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 5671 | F: kernel/irq/ |
2ed9fd28 JC |
5672 | |
5673 | IRQCHIP DRIVERS | |
5674 | M: Thomas Gleixner <tglx@linutronix.de> | |
5675 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 5676 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
5677 | L: linux-kernel@vger.kernel.org |
5678 | S: Maintained | |
5679 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5680 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 5681 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 5682 | F: drivers/irqchip/ |
a800c7cc | 5683 | |
7ab3a837 | 5684 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c TG |
5685 | M: Jiang Liu <jiang.liu@linux.intel.com> |
5686 | M: Marc Zyngier <marc.zyngier@arm.com> | |
7ab3a837 | 5687 | S: Maintained |
b09dec2c | 5688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
5689 | F: Documentation/IRQ-domain.txt |
5690 | F: include/linux/irqdomain.h | |
5691 | F: kernel/irq/irqdomain.c | |
b09dec2c | 5692 | F: kernel/irq/msi.c |
7ab3a837 | 5693 | |
e2d1d6c0 | 5694 | ISAPNP |
8b58be88 | 5695 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5696 | S: Maintained |
679655da JP |
5697 | F: Documentation/isapnp.txt |
5698 | F: drivers/pnp/isapnp/ | |
5699 | F: include/linux/isapnp.h | |
e2d1d6c0 | 5700 | |
d39b8420 HV |
5701 | ISA RADIO MODULE |
5702 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5703 | L: linux-media@vger.kernel.org | |
5704 | T: git git://linuxtv.org/media_tree.git | |
5705 | W: http://linuxtv.org | |
5706 | S: Maintained | |
5707 | F: drivers/media/radio/radio-isa* | |
5708 | ||
71a6d0af HW |
5709 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5710 | M: Peter Jones <pjones@redhat.com> | |
5711 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
5712 | S: Maintained | |
5713 | F: drivers/firmware/iscsi_ibft* | |
5714 | ||
14816b1e | 5715 | ISCSI |
8b58be88 | 5716 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
5717 | L: open-iscsi@googlegroups.com |
5718 | W: www.open-iscsi.org | |
54e5881d | 5719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5720 | S: Maintained |
679655da JP |
5721 | F: drivers/scsi/*iscsi* |
5722 | F: include/scsi/*iscsi* | |
14816b1e | 5723 | |
1e65eb42 OG |
5724 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5725 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
b261aeaf | 5726 | M: Sagi Grimberg <sagig@mellanox.com> |
1e65eb42 OG |
5727 | M: Roi Dayan <roid@mellanox.com> |
5728 | L: linux-rdma@vger.kernel.org | |
5729 | S: Supported | |
5730 | W: http://www.openfabrics.org | |
5731 | W: www.open-iscsi.org | |
5732 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5733 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5734 | |
2b70e5fd SG |
5735 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
5736 | M: Sagi Grimberg <sagig@mellanox.com> | |
5737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master | |
5738 | L: linux-rdma@vger.kernel.org | |
5739 | L: target-devel@vger.kernel.org | |
5740 | S: Supported | |
5741 | W: http://www.linux-iscsi.org | |
5742 | F: drivers/infiniband/ulp/isert | |
5743 | ||
1da177e4 | 5744 | ISDN SUBSYSTEM |
8b58be88 | 5745 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 5746 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 5747 | L: netdev@vger.kernel.org |
1da177e4 | 5748 | W: http://www.isdn4linux.de |
54e5881d | 5749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5750 | S: Maintained |
679655da JP |
5751 | F: Documentation/isdn/ |
5752 | F: drivers/isdn/ | |
5753 | F: include/linux/isdn.h | |
5754 | F: include/linux/isdn/ | |
c117ab84 CEB |
5755 | F: include/uapi/linux/isdn.h |
5756 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5757 | |
5758 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5759 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 5760 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
5761 | W: http://www.melware.de |
5762 | S: Maintained | |
679655da | 5763 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5764 | |
d624870f | 5765 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 5766 | M: Jean Delvare <jdelvare@suse.com> |
d624870f JD |
5767 | L: lm-sensors@lm-sensors.org |
5768 | S: Maintained | |
5769 | F: Documentation/hwmon/it87 | |
5770 | F: drivers/hwmon/it87.c | |
5771 | ||
d7104bff AP |
5772 | IT913X MEDIA DRIVER |
5773 | M: Antti Palosaari <crope@iki.fi> | |
5774 | L: linux-media@vger.kernel.org | |
5775 | W: http://linuxtv.org/ | |
5776 | W: http://palosaari.fi/linux/ | |
5777 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5778 | T: git git://linuxtv.org/anttip/media_tree.git | |
5779 | S: Maintained | |
249c697e | 5780 | F: drivers/media/tuners/it913x* |
d7104bff | 5781 | |
91821ff3 | 5782 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 5783 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 5784 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 5785 | L: linux-media@vger.kernel.org |
275ffde4 | 5786 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
5787 | W: http://www.ivtvdriver.org |
5788 | S: Maintained | |
679655da | 5789 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 5790 | F: drivers/media/pci/ivtv/ |
c117ab84 | 5791 | F: include/uapi/linux/ivtv* |
91821ff3 | 5792 | |
68620bdd MP |
5793 | IX2505V MEDIA DRIVER |
5794 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5795 | L: linux-media@vger.kernel.org | |
5796 | W: http://linuxtv.org/ | |
5797 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5798 | S: Maintained | |
5799 | F: drivers/media/dvb-frontends/ix2505v* | |
5800 | ||
4453d736 GR |
5801 | JC42.4 TEMPERATURE SENSOR DRIVER |
5802 | M: Guenter Roeck <linux@roeck-us.net> | |
5803 | L: lm-sensors@lm-sensors.org | |
5804 | S: Maintained | |
5805 | F: drivers/hwmon/jc42.c | |
5806 | F: Documentation/hwmon/jc42 | |
5807 | ||
e2d1d6c0 | 5808 | JFS FILESYSTEM |
3256f80f | 5809 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
5810 | L: jfs-discussion@lists.sourceforge.net |
5811 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5812 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5813 | S: Maintained |
679655da JP |
5814 | F: Documentation/filesystems/jfs.txt |
5815 | F: fs/jfs/ | |
e2d1d6c0 | 5816 | |
95252236 | 5817 | JME NETWORK DRIVER |
8b58be88 | 5818 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
5819 | L: netdev@vger.kernel.org |
5820 | S: Maintained | |
63d24a0e | 5821 | F: drivers/net/ethernet/jme.* |
95252236 | 5822 | |
1da177e4 | 5823 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5824 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
5825 | L: linux-mtd@lists.infradead.org |
5826 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5827 | S: Maintained |
679655da | 5828 | F: fs/jffs2/ |
c117ab84 | 5829 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5830 | |
d183e11a TT |
5831 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
5832 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 5833 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
5834 | L: linux-ext4@vger.kernel.org |
5835 | S: Maintained | |
5836 | F: fs/jbd2/ | |
5837 | F: include/linux/jbd2.h | |
ae0718f8 | 5838 | |
207dab5f MU |
5839 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
5840 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
5841 | L: linux-media@vger.kernel.org | |
5842 | S: Maintained | |
5843 | F: drivers/media/platform/rcar_jpu.c | |
5844 | ||
fd8b6cb4 | 5845 | JSM Neo PCI based serial card |
9d141cb9 | 5846 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
5847 | L: linux-serial@vger.kernel.org |
5848 | S: Maintained | |
df621252 | 5849 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5850 | |
af39917d CL |
5851 | K10TEMP HARDWARE MONITORING DRIVER |
5852 | M: Clemens Ladisch <clemens@ladisch.de> | |
5853 | L: lm-sensors@lm-sensors.org | |
5854 | S: Maintained | |
5855 | F: Documentation/hwmon/k10temp | |
5856 | F: drivers/hwmon/k10temp.c | |
5857 | ||
4660cb35 | 5858 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5859 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 5860 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 5861 | S: Maintained |
679655da JP |
5862 | F: Documentation/hwmon/k8temp |
5863 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5864 | |
1da177e4 | 5865 | KCONFIG |
5eb1f99e | 5866 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 5867 | L: linux-kbuild@vger.kernel.org |
cea8321c | 5868 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5869 | S: Maintained |
679655da JP |
5870 | F: Documentation/kbuild/kconfig-language.txt |
5871 | F: scripts/kconfig/ | |
1da177e4 | 5872 | |
ea6c2089 | 5873 | KDUMP |
8b58be88 JP |
5874 | M: Vivek Goyal <vgoyal@redhat.com> |
5875 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 5876 | L: kexec@lists.infradead.org |
ea6c2089 VG |
5877 | W: http://lse.sourceforge.net/kdump/ |
5878 | S: Maintained | |
80811493 | 5879 | F: Documentation/kdump/ |
ea6c2089 | 5880 | |
f41bf02f HV |
5881 | KEENE FM RADIO TRANSMITTER DRIVER |
5882 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5883 | L: linux-media@vger.kernel.org | |
5884 | T: git git://linuxtv.org/media_tree.git | |
5885 | W: http://linuxtv.org | |
5886 | S: Maintained | |
5887 | F: drivers/media/radio/radio-keene* | |
5888 | ||
1da177e4 | 5889 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5890 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 5891 | L: autofs@vger.kernel.org |
1da177e4 | 5892 | S: Maintained |
679655da | 5893 | F: fs/autofs4/ |
1da177e4 | 5894 | |
70fb7ba6 | 5895 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 5896 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
5897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5898 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5899 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 5900 | S: Maintained |
679655da JP |
5901 | F: Documentation/kbuild/ |
5902 | F: Makefile | |
5903 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5904 | F: scripts/basic/ |
5905 | F: scripts/mk* | |
5906 | F: scripts/package/ | |
1da177e4 LT |
5907 | |
5908 | KERNEL JANITORS | |
c3000e03 | 5909 | L: kernel-janitors@vger.kernel.org |
10466f5a | 5910 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5911 | S: Odd Fixes |
1da177e4 | 5912 | |
e8b43555 | 5913 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5914 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 5915 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 5916 | L: linux-nfs@vger.kernel.org |
1da177e4 | 5917 | W: http://nfs.sourceforge.net/ |
98fac23f | 5918 | S: Supported |
679655da | 5919 | F: fs/nfsd/ |
c117ab84 | 5920 | F: include/uapi/linux/nfsd/ |
679655da JP |
5921 | F: fs/lockd/ |
5922 | F: fs/nfs_common/ | |
5923 | F: net/sunrpc/ | |
5924 | F: include/linux/lockd/ | |
5925 | F: include/linux/sunrpc/ | |
c117ab84 | 5926 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5927 | |
13b122b3 SK |
5928 | KERNEL SELFTEST FRAMEWORK |
5929 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
5930 | L: linux-api@vger.kernel.org | |
5931 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest | |
5932 | S: Maintained | |
5933 | F: tools/testing/selftests | |
5934 | ||
426d62e2 | 5935 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5936 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 5937 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 5938 | L: kvm@vger.kernel.org |
e3e58478 | 5939 | W: http://www.linux-kvm.org |
a94b40a6 | 5940 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5941 | S: Supported |
c93a64fe PB |
5942 | F: Documentation/*/kvm*.txt |
5943 | F: Documentation/virtual/kvm/ | |
679655da | 5944 | F: arch/*/kvm/ |
1662e862 CB |
5945 | F: arch/x86/kernel/kvm.c |
5946 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
5947 | F: arch/*/include/asm/kvm* |
5948 | F: include/linux/kvm* | |
c117ab84 | 5949 | F: include/uapi/linux/kvm* |
679655da | 5950 | F: virt/kvm/ |
426d62e2 | 5951 | |
ad8003d3 | 5952 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5953 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
5954 | L: kvm@vger.kernel.org |
5955 | W: http://kvm.qumranet.com | |
7de609c8 | 5956 | S: Maintained |
679655da | 5957 | F: arch/x86/include/asm/svm.h |
679655da | 5958 | F: arch/x86/kvm/svm.c |
426d62e2 | 5959 | |
513014b7 | 5960 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 5961 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf AK |
5962 | L: kvm-ppc@vger.kernel.org |
5963 | W: http://kvm.qumranet.com | |
6a7f972d | 5964 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5965 | S: Supported |
679655da JP |
5966 | F: arch/powerpc/include/asm/kvm* |
5967 | F: arch/powerpc/kvm/ | |
513014b7 | 5968 | |
85f8fffe | 5969 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5970 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 5971 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
5972 | L: linux-s390@vger.kernel.org |
5973 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5974 | S: Supported | |
679655da JP |
5975 | F: Documentation/s390/kvm.txt |
5976 | F: arch/s390/include/asm/kvm* | |
80811493 | 5977 | F: arch/s390/kvm/ |
85f8fffe | 5978 | |
a749474d | 5979 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5980 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
5981 | M: Marc Zyngier <marc.zyngier@arm.com> |
5982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
5983 | L: kvmarm@lists.cs.columbia.edu |
5984 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5985 | S: Supported |
a749474d CD |
5986 | F: arch/arm/include/uapi/asm/kvm* |
5987 | F: arch/arm/include/asm/kvm* | |
5988 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5989 | F: virt/kvm/arm/ |
5990 | F: include/kvm/arm_* | |
a749474d | 5991 | |
6394a3ec | 5992 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5993 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
5994 | M: Marc Zyngier <marc.zyngier@arm.com> |
5995 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5996 | L: kvmarm@lists.cs.columbia.edu | |
5997 | S: Maintained | |
5998 | F: arch/arm64/include/uapi/asm/kvm* | |
5999 | F: arch/arm64/include/asm/kvm* | |
6000 | F: arch/arm64/kvm/ | |
6001 | ||
dc009d92 | 6002 | KEXEC |
8b58be88 | 6003 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6004 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6005 | L: kexec@lists.infradead.org |
dc009d92 | 6006 | S: Maintained |
679655da | 6007 | F: include/linux/kexec.h |
c117ab84 | 6008 | F: include/uapi/linux/kexec.h |
679655da | 6009 | F: kernel/kexec.c |
dc009d92 | 6010 | |
e971461f DH |
6011 | KEYS/KEYRINGS: |
6012 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6013 | L: keyrings@vger.kernel.org |
e971461f | 6014 | S: Maintained |
d410fa4e | 6015 | F: Documentation/security/keys.txt |
e971461f DH |
6016 | F: include/linux/key.h |
6017 | F: include/linux/key-type.h | |
6018 | F: include/keys/ | |
6019 | F: security/keys/ | |
6020 | ||
7f3c68be | 6021 | KEYS-TRUSTED |
74dd744f MZ |
6022 | M: David Safford <safford@us.ibm.com> |
6023 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6024 | L: linux-security-module@vger.kernel.org |
aa62efff | 6025 | L: keyrings@vger.kernel.org |
7f3c68be | 6026 | S: Supported |
d410fa4e | 6027 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6028 | F: include/keys/trusted-type.h |
6029 | F: security/keys/trusted.c | |
6030 | F: security/keys/trusted.h | |
6031 | ||
6032 | KEYS-ENCRYPTED | |
74dd744f MZ |
6033 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6034 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6035 | L: linux-security-module@vger.kernel.org |
aa62efff | 6036 | L: keyrings@vger.kernel.org |
7f3c68be | 6037 | S: Supported |
d410fa4e | 6038 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6039 | F: include/keys/encrypted-type.h |
19c90aa6 | 6040 | F: security/keys/encrypted-keys/ |
7f3c68be | 6041 | |
5b778dad | 6042 | KGDB / KDB /debug_core |
8b58be88 | 6043 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6044 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
6045 | L: kgdb-bugreport@lists.sourceforge.net |
6046 | S: Maintained | |
679655da JP |
6047 | F: Documentation/DocBook/kgdb.tmpl |
6048 | F: drivers/misc/kgdbts.c | |
df621252 | 6049 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 6050 | F: include/linux/kdb.h |
679655da | 6051 | F: include/linux/kgdb.h |
4063eb5f | 6052 | F: kernel/debug/ |
e3e2aaf7 | 6053 | |
456db8cc | 6054 | KMEMCHECK |
8b58be88 | 6055 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 6056 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 6057 | S: Maintained |
410d7a97 JP |
6058 | F: Documentation/kmemcheck.txt |
6059 | F: arch/x86/include/asm/kmemcheck.h | |
6060 | F: arch/x86/mm/kmemcheck/ | |
6061 | F: include/linux/kmemcheck.h | |
6062 | F: mm/kmemcheck.c | |
b9ce08c0 | 6063 | |
c3bb4d24 | 6064 | KMEMLEAK |
8b58be88 | 6065 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
6066 | S: Maintained |
6067 | F: Documentation/kmemleak.txt | |
6068 | F: include/linux/kmemleak.h | |
6069 | F: mm/kmemleak.c | |
6070 | F: mm/kmemleak-test.c | |
6071 | ||
89559a61 | 6072 | KPROBES |
8b58be88 JP |
6073 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
6074 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
6075 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 6076 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 6077 | S: Maintained |
679655da JP |
6078 | F: Documentation/kprobes.txt |
6079 | F: include/linux/kprobes.h | |
6080 | F: kernel/kprobes.c | |
89559a61 | 6081 | |
70e84049 | 6082 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 6083 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
6084 | W: http://miguelojeda.es/auxdisplay.htm |
6085 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 6086 | S: Maintained |
679655da JP |
6087 | F: Documentation/auxdisplay/ks0108 |
6088 | F: drivers/auxdisplay/ks0108.c | |
6089 | F: include/linux/ks0108.h | |
70e84049 | 6090 | |
1da177e4 | 6091 | LAPB module |
1da177e4 | 6092 | L: linux-x25@vger.kernel.org |
bf9915cc | 6093 | S: Orphan |
679655da JP |
6094 | F: Documentation/networking/lapb-module.txt |
6095 | F: include/*/lapb.h | |
6096 | F: net/lapb/ | |
1da177e4 LT |
6097 | |
6098 | LASI 53c700 driver for PARISC | |
8b58be88 | 6099 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6100 | L: linux-scsi@vger.kernel.org |
6101 | S: Maintained | |
679655da JP |
6102 | F: Documentation/scsi/53c700.txt |
6103 | F: drivers/scsi/53c700* | |
1da177e4 | 6104 | |
263de9b5 | 6105 | LED SUBSYSTEM |
8b58be88 | 6106 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 6107 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 6108 | L: linux-leds@vger.kernel.org |
b8926ba0 | 6109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 6110 | S: Maintained |
679655da JP |
6111 | F: drivers/leds/ |
6112 | F: include/linux/leds.h | |
263de9b5 | 6113 | |
b0461a44 | 6114 | LEGACY EEPROM DRIVER |
d8130624 | 6115 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
6116 | S: Maintained |
6117 | F: Documentation/misc-devices/eeprom | |
6118 | F: drivers/misc/eeprom/eeprom.c | |
6119 | ||
1da177e4 | 6120 | LEGO USB Tower driver |
8b58be88 | 6121 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
6122 | L: legousb-devel@lists.sourceforge.net |
6123 | W: http://legousb.sourceforge.net/ | |
6124 | S: Maintained | |
679655da | 6125 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 6126 | |
055616a8 MK |
6127 | LG2160 MEDIA DRIVER |
6128 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6129 | L: linux-media@vger.kernel.org | |
6130 | W: http://linuxtv.org/ | |
6131 | W: http://github.com/mkrufky | |
6132 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6133 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6134 | S: Maintained | |
6135 | F: drivers/media/dvb-frontends/lg2160.* | |
6136 | ||
6f0e7725 MK |
6137 | LGDT3305 MEDIA DRIVER |
6138 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6139 | L: linux-media@vger.kernel.org | |
6140 | W: http://linuxtv.org/ | |
6141 | W: http://github.com/mkrufky | |
6142 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6143 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6144 | S: Maintained | |
6145 | F: drivers/media/dvb-frontends/lgdt3305.* | |
6146 | ||
568a17ff | 6147 | LGUEST |
8b58be88 | 6148 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 6149 | L: lguest@lists.ozlabs.org |
568a17ff | 6150 | W: http://lguest.ozlabs.org/ |
72e91863 | 6151 | S: Odd Fixes |
070f420b | 6152 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
6153 | F: arch/x86/lguest/ |
6154 | F: drivers/lguest/ | |
6155 | F: include/linux/lguest*.h | |
070f420b | 6156 | F: tools/lguest/ |
568a17ff | 6157 | |
32ac7cb2 TH |
6158 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
6159 | M: Tejun Heo <tj@kernel.org> | |
6160 | L: linux-ide@vger.kernel.org | |
6161 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6162 | S: Maintained | |
6163 | F: drivers/ata/ | |
6164 | F: include/linux/ata.h | |
6165 | F: include/linux/libata.h | |
6166 | ||
6167 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 6168 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
6169 | L: linux-ide@vger.kernel.org |
6170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6171 | S: Maintained | |
6172 | F: include/linux/pata_arasan_cf_data.h | |
6173 | F: drivers/ata/pata_arasan_cf.c | |
6174 | ||
c7fa056c BZ |
6175 | LIBATA PATA DRIVERS |
6176 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
6177 | M: Tejun Heo <tj@kernel.org> | |
6178 | L: linux-ide@vger.kernel.org | |
6179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6180 | S: Maintained | |
6181 | F: drivers/ata/pata_*.c | |
6182 | F: drivers/ata/ata_generic.c | |
6183 | ||
32ac7cb2 TH |
6184 | LIBATA SATA AHCI PLATFORM devices support |
6185 | M: Hans de Goede <hdegoede@redhat.com> | |
6186 | M: Tejun Heo <tj@kernel.org> | |
6187 | L: linux-ide@vger.kernel.org | |
6188 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6189 | S: Maintained | |
6190 | F: drivers/ata/ahci_platform.c | |
6191 | F: drivers/ata/libahci_platform.c | |
6192 | F: include/linux/ahci_platform.h | |
6193 | ||
6194 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
6195 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
6196 | L: linux-ide@vger.kernel.org | |
6197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6198 | S: Maintained | |
6199 | F: drivers/ata/sata_promise.* | |
6200 | ||
1acd437c SL |
6201 | LIBLOCKDEP |
6202 | M: Sasha Levin <sasha.levin@oracle.com> | |
6203 | S: Maintained | |
6204 | F: tools/lib/lockdep/ | |
6205 | ||
bc30196f DW |
6206 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
6207 | M: Dan Williams <dan.j.williams@intel.com> | |
6208 | L: linux-nvdimm@lists.01.org | |
6209 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6210 | S: Supported | |
6211 | F: drivers/nvdimm/* | |
6212 | F: include/linux/nd.h | |
6213 | F: include/linux/libnvdimm.h | |
6214 | F: include/uapi/linux/ndctl.h | |
6215 | ||
6216 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
6217 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6218 | L: linux-nvdimm@lists.01.org | |
6219 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6220 | S: Supported | |
6221 | F: drivers/nvdimm/blk.c | |
6222 | F: drivers/nvdimm/region_devs.c | |
6223 | F: drivers/acpi/nfit* | |
6224 | ||
6225 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
6226 | M: Vishal Verma <vishal.l.verma@intel.com> | |
6227 | L: linux-nvdimm@lists.01.org | |
6228 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6229 | S: Supported | |
6230 | F: drivers/nvdimm/btt* | |
6231 | ||
6232 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
6233 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6234 | L: linux-nvdimm@lists.01.org | |
6235 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6236 | S: Supported | |
6237 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 6238 | F: include/linux/pmem.h |
40603526 | 6239 | F: arch/*/include/asm/pmem.h |
bc30196f | 6240 | |
1da177e4 | 6241 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 6242 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
6243 | W: http://www.ibm.com/linux/ltc/projects/ppc |
6244 | S: Supported | |
11c34c7d | 6245 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 6246 | |
852bb9f5 | 6247 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
6248 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
6249 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 6250 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 6251 | W: http://www.penguinppc.org/ |
a4724ed6 | 6252 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 6253 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 6254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 6255 | S: Supported |
11c34c7d JP |
6256 | F: Documentation/powerpc/ |
6257 | F: arch/powerpc/ | |
1da177e4 LT |
6258 | |
6259 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 6260 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 6261 | W: http://www.penguinppc.org/ |
a4724ed6 | 6262 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6263 | S: Maintained |
11c34c7d JP |
6264 | F: arch/powerpc/platforms/powermac/ |
6265 | F: drivers/macintosh/ | |
1da177e4 | 6266 | |
77a76369 | 6267 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 6268 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 6269 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 6270 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 6271 | S: Maintained |
11c34c7d JP |
6272 | F: arch/powerpc/platforms/512x/ |
6273 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
6274 | |
6275 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 6276 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 6277 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 6278 | W: http://www.penguinppc.org/ |
a4724ed6 | 6279 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6280 | S: Maintained |
11c34c7d JP |
6281 | F: arch/powerpc/platforms/40x/ |
6282 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 6283 | |
260c02a9 | 6284 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 6285 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 6286 | S: Orphan |
11c34c7d JP |
6287 | F: arch/powerpc/*/*virtex* |
6288 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 6289 | |
e93adf1e | 6290 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 6291 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 6292 | W: http://www.penguinppc.org/ |
a4724ed6 | 6293 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 6294 | S: Maintained |
a2b1f7c8 | 6295 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 6296 | |
1da177e4 | 6297 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
a1e0fb42 | 6298 | M: Scott Wood <scottwood@freescale.com> |
8b58be88 | 6299 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 6300 | W: http://www.penguinppc.org/ |
a4724ed6 | 6301 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 6302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 6303 | S: Maintained |
11c34c7d | 6304 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 6305 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 6306 | |
ab06ff3a | 6307 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 6308 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 6309 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 6310 | S: Maintained |
11c34c7d JP |
6311 | F: arch/powerpc/platforms/pasemi/ |
6312 | F: drivers/*/*pasemi* | |
6313 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 6314 | |
1da177e4 | 6315 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 6316 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 6317 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
6318 | S: Supported |
6319 | ||
a23ce6da HW |
6320 | LIS3LV02D ACCELEROMETER DRIVER |
6321 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
6322 | S: Maintained | |
ff606677 JD |
6323 | F: Documentation/misc-devices/lis3lv02d |
6324 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 6325 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 6326 | |
b700e7f0 SJ |
6327 | LIVE PATCHING |
6328 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
6329 | M: Seth Jennings <sjenning@redhat.com> | |
e5f6450c | 6330 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6331 | M: Vojtech Pavlik <vojtech@suse.com> |
b700e7f0 SJ |
6332 | S: Maintained |
6333 | F: kernel/livepatch/ | |
6334 | F: include/linux/livepatch.h | |
6335 | F: arch/x86/include/asm/livepatch.h | |
6336 | F: arch/x86/kernel/livepatch.c | |
6337 | F: Documentation/ABI/testing/sysfs-kernel-livepatch | |
13d1cf7e | 6338 | F: samples/livepatch/ |
b700e7f0 | 6339 | L: live-patching@vger.kernel.org |
74d50da3 | 6340 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 6341 | |
e2d1d6c0 | 6342 | LLC (802.2) |
8b58be88 | 6343 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 6344 | S: Maintained |
679655da | 6345 | F: include/linux/llc.h |
c117ab84 | 6346 | F: include/uapi/linux/llc.h |
679655da JP |
6347 | F: include/net/llc* |
6348 | F: net/llc/ | |
e2d1d6c0 | 6349 | |
4e233cbe AD |
6350 | LM73 HARDWARE MONITOR DRIVER |
6351 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
6352 | L: lm-sensors@lm-sensors.org | |
6353 | S: Maintained | |
6354 | F: drivers/hwmon/lm73.c | |
6355 | ||
156e2d1a | 6356 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 6357 | M: Jean Delvare <jdelvare@suse.com> |
156e2d1a JD |
6358 | L: lm-sensors@lm-sensors.org |
6359 | S: Maintained | |
6360 | F: Documentation/hwmon/lm78 | |
6361 | F: drivers/hwmon/lm78.c | |
6362 | ||
1da177e4 | 6363 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 6364 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6365 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6366 | S: Maintained |
679655da JP |
6367 | F: Documentation/hwmon/lm83 |
6368 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
6369 | |
6370 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 6371 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6372 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6373 | S: Maintained |
679655da | 6374 | F: Documentation/hwmon/lm90 |
aae7bce4 | 6375 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 6376 | F: drivers/hwmon/lm90.c |
1da177e4 | 6377 | |
917cc4e6 GR |
6378 | LM95234 HARDWARE MONITOR DRIVER |
6379 | M: Guenter Roeck <linux@roeck-us.net> | |
6380 | L: lm-sensors@lm-sensors.org | |
6381 | S: Maintained | |
6382 | F: Documentation/hwmon/lm95234 | |
6383 | F: drivers/hwmon/lm95234.c | |
6384 | ||
68620bdd MP |
6385 | LME2510 MEDIA DRIVER |
6386 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6387 | L: linux-media@vger.kernel.org | |
6388 | W: http://linuxtv.org/ | |
6389 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6390 | S: Maintained | |
6391 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
6392 | ||
512e67f9 | 6393 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
6394 | M: Peter Zijlstra <peterz@infradead.org> |
6395 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 6396 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 6398 | S: Maintained |
214e0aed DB |
6399 | F: Documentation/locking/lockdep*.txt |
6400 | F: Documentation/locking/lockstat.txt | |
679655da | 6401 | F: include/linux/lockdep.h |
7486d6da | 6402 | F: kernel/locking/ |
512e67f9 | 6403 | |
dde33348 | 6404 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 6405 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
6406 | L: linux-ntfs-dev@lists.sourceforge.net |
6407 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 6408 | S: Maintained |
679655da | 6409 | F: Documentation/ldm.txt |
20d16fef | 6410 | F: block/partitions/ldm.* |
1da177e4 | 6411 | |
ef6ada3d JE |
6412 | LogFS |
6413 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 6414 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
6415 | L: logfs@logfs.org |
6416 | W: logfs.org | |
6417 | S: Maintained | |
6418 | F: fs/logfs/ | |
6419 | ||
b62d7946 RS |
6420 | LPC32XX MACHINE SUPPORT |
6421 | M: Roland Stigge <stigge@antcom.de> | |
6422 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6423 | S: Maintained | |
6424 | F: arch/arm/mach-lpc32xx/ | |
6425 | ||
c87e34ef | 6426 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
6427 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
6428 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> | |
6429 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> | |
6430 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> | |
6431 | L: MPT-FusionLinux.pdl@avagotech.com | |
c87e34ef MED |
6432 | L: linux-scsi@vger.kernel.org |
6433 | W: http://www.lsilogic.com/support | |
6434 | S: Supported | |
679655da | 6435 | F: drivers/message/fusion/ |
500c152a | 6436 | F: drivers/scsi/mpt2sas/ |
6437 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 6438 | |
1da177e4 | 6439 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 6440 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
6441 | L: linux-scsi@vger.kernel.org |
6442 | S: Maintained | |
679655da | 6443 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 6444 | |
e5f5c99a GR |
6445 | LTC4261 HARDWARE MONITOR DRIVER |
6446 | M: Guenter Roeck <linux@roeck-us.net> | |
6447 | L: lm-sensors@lm-sensors.org | |
6448 | S: Maintained | |
6449 | F: Documentation/hwmon/ltc4261 | |
6450 | F: drivers/hwmon/ltc4261.c | |
6451 | ||
81365c31 | 6452 | LTP (Linux Test Project) |
28b8e8d4 | 6453 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 6454 | M: Cyril Hrubis <chrubis@suse.cz> |
7d1ae8a8 | 6455 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
f2eb7f6f CH |
6456 | M: Jan Stancek <jstancek@redhat.com> |
6457 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
6458 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
81365c31 | 6459 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
f2eb7f6f | 6460 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 6461 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
6462 | S: Maintained |
6463 | ||
c12a54b3 | 6464 | M32R ARCHITECTURE |
c12a54b3 | 6465 | W: http://www.linux-m32r.org/ |
b4174867 | 6466 | S: Orphan |
679655da | 6467 | F: arch/m32r/ |
c12a54b3 | 6468 | |
1da177e4 | 6469 | M68K ARCHITECTURE |
8b58be88 | 6470 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
6471 | L: linux-m68k@lists.linux-m68k.org |
6472 | W: http://www.linux-m68k.org/ | |
54e5881d | 6473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 6474 | S: Maintained |
679655da | 6475 | F: arch/m68k/ |
9db35182 | 6476 | F: drivers/zorro/ |
1da177e4 LT |
6477 | |
6478 | M68K ON APPLE MACINTOSH | |
8b58be88 | 6479 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 6480 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 6481 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 6482 | S: Maintained |
9db35182 | 6483 | F: arch/m68k/mac/ |
1da177e4 LT |
6484 | |
6485 | M68K ON HP9000/300 | |
8b58be88 | 6486 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
6487 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
6488 | S: Maintained | |
679655da | 6489 | F: arch/m68k/hp300/ |
1da177e4 | 6490 | |
74425546 AP |
6491 | M88DS3103 MEDIA DRIVER |
6492 | M: Antti Palosaari <crope@iki.fi> | |
6493 | L: linux-media@vger.kernel.org | |
6494 | W: http://linuxtv.org/ | |
6495 | W: http://palosaari.fi/linux/ | |
6496 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6497 | T: git git://linuxtv.org/anttip/media_tree.git | |
6498 | S: Maintained | |
6499 | F: drivers/media/dvb-frontends/m88ds3103* | |
6500 | ||
68620bdd MP |
6501 | M88RS2000 MEDIA DRIVER |
6502 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6503 | L: linux-media@vger.kernel.org | |
6504 | W: http://linuxtv.org/ | |
6505 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6506 | S: Maintained | |
6507 | F: drivers/media/dvb-frontends/m88rs2000* | |
6508 | ||
07a092fa | 6509 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
6510 | M: Alexey Klimov <klimov.linux@gmail.com> |
6511 | L: linux-media@vger.kernel.org | |
6512 | T: git git://linuxtv.org/media_tree.git | |
6513 | S: Maintained | |
6514 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 6515 | |
64a327a7 | 6516 | MAC80211 |
8b58be88 | 6517 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 6518 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6519 | W: http://wireless.kernel.org/ |
ce466579 JB |
6520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
6521 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 6522 | S: Maintained |
679655da JP |
6523 | F: Documentation/networking/mac80211-injection.txt |
6524 | F: include/net/mac80211.h | |
6525 | F: net/mac80211/ | |
64a327a7 | 6526 | |
b863ceb7 | 6527 | MACVLAN DRIVER |
8b58be88 | 6528 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
6529 | L: netdev@vger.kernel.org |
6530 | S: Maintained | |
679655da JP |
6531 | F: drivers/net/macvlan.c |
6532 | F: include/linux/if_macvlan.h | |
b863ceb7 | 6533 | |
2b6d83e2 JB |
6534 | MAILBOX API |
6535 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
6536 | L: linux-kernel@vger.kernel.org | |
6537 | S: Maintained | |
6538 | F: drivers/mailbox/ | |
6539 | F: include/linux/mailbox_client.h | |
6540 | F: include/linux/mailbox_controller.h | |
6541 | ||
faf1668c | 6542 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 6543 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 6544 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 6545 | L: linux-man@vger.kernel.org |
1b53dc74 | 6546 | S: Maintained |
faf1668c | 6547 | |
8427defd RK |
6548 | MARVELL ARMADA DRM SUPPORT |
6549 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6550 | S: Maintained | |
6551 | F: drivers/gpu/drm/armada/ | |
6552 | ||
3ad50cca GR |
6553 | MARVELL 88E6352 DSA support |
6554 | M: Guenter Roeck <linux@roeck-us.net> | |
6555 | S: Maintained | |
6556 | F: drivers/net/dsa/mv88e6352.c | |
6557 | ||
44c14c1d | 6558 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
6559 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 6560 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 6561 | L: netdev@vger.kernel.org |
6562 | S: Maintained | |
6563 | F: drivers/net/ethernet/marvell/sk* | |
6564 | ||
74cda169 | 6565 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 6566 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 6567 | S: Orphan |
679655da | 6568 | F: drivers/net/wireless/libertas/ |
74cda169 | 6569 | |
b60d6975 | 6570 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 6571 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 6572 | L: netdev@vger.kernel.org |
f5ca8502 | 6573 | S: Maintained |
527a6266 | 6574 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 6575 | F: include/linux/mv643xx.h |
1da177e4 | 6576 | |
370b8ed9 TP |
6577 | MARVELL MVNETA ETHERNET DRIVER |
6578 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6579 | L: netdev@vger.kernel.org | |
6580 | S: Maintained | |
6581 | F: drivers/net/ethernet/marvell/mvneta.* | |
6582 | ||
fcad584d | 6583 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 6584 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 6585 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
6586 | L: linux-wireless@vger.kernel.org |
6587 | S: Maintained | |
6588 | F: drivers/net/wireless/mwifiex/ | |
6589 | ||
a2c3f656 | 6590 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 6591 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 6592 | L: linux-wireless@vger.kernel.org |
16345910 | 6593 | S: Odd Fixes |
a2c3f656 LB |
6594 | F: drivers/net/wireless/mwl8k.c |
6595 | ||
2a69567b | 6596 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 6597 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 6598 | S: Odd Fixes |
1fa7e547 | 6599 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 6600 | |
1da177e4 | 6601 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 6602 | L: linux-fbdev@vger.kernel.org |
52653199 | 6603 | S: Orphan |
8a61f013 | 6604 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 6605 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 6606 | |
ca462085 GR |
6607 | MAX16065 HARDWARE MONITOR DRIVER |
6608 | M: Guenter Roeck <linux@roeck-us.net> | |
6609 | L: lm-sensors@lm-sensors.org | |
6610 | S: Maintained | |
6611 | F: Documentation/hwmon/max16065 | |
6612 | F: drivers/hwmon/max16065.c | |
6613 | ||
1f61cab8 GR |
6614 | MAX20751 HARDWARE MONITOR DRIVER |
6615 | M: Guenter Roeck <linux@roeck-us.net> | |
6616 | L: lm-sensors@lm-sensors.org | |
6617 | S: Maintained | |
6618 | F: Documentation/hwmon/max20751 | |
6619 | F: drivers/hwmon/max20751.c | |
6620 | ||
d20620de | 6621 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 6622 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
6623 | L: lm-sensors@lm-sensors.org |
6624 | S: Maintained | |
679655da JP |
6625 | F: Documentation/hwmon/max6650 |
6626 | F: drivers/hwmon/max6650.c | |
d20620de | 6627 | |
e89ab51f GR |
6628 | MAX6697 HARDWARE MONITOR DRIVER |
6629 | M: Guenter Roeck <linux@roeck-us.net> | |
6630 | L: lm-sensors@lm-sensors.org | |
6631 | S: Maintained | |
6632 | F: Documentation/hwmon/max6697 | |
6633 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
6634 | F: drivers/hwmon/max6697.c | |
6635 | F: include/linux/platform_data/max6697.h | |
6636 | ||
f8f847b5 KK |
6637 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
6638 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6639 | L: linux-pm@vger.kernel.org | |
6640 | S: Supported | |
6641 | F: drivers/power/max14577_charger.c | |
6642 | F: drivers/power/max77693_charger.c | |
6643 | ||
3811405e JMC |
6644 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
6645 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
6646 | L: linux-kernel@vger.kernel.org | |
6647 | S: Supported | |
6648 | F: drivers/*/*max77802.c | |
6649 | F: Documentation/devicetree/bindings/*/*max77802.txt | |
6650 | F: include/dt-bindings/*/*max77802.h | |
6651 | ||
befeb596 KK |
6652 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
6653 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
6654 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6655 | L: linux-kernel@vger.kernel.org | |
6656 | S: Supported | |
6657 | F: drivers/*/max14577.c | |
6658 | F: drivers/*/max77686.c | |
6659 | F: drivers/*/max77693.c | |
6660 | F: drivers/extcon/extcon-max14577.c | |
6661 | F: drivers/extcon/extcon-max77693.c | |
6662 | F: drivers/rtc/rtc-max77686.c | |
6663 | F: drivers/clk/clk-max77686.c | |
6664 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 6665 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
6666 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
6667 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
6668 | F: include/linux/mfd/max14577*.h | |
6669 | F: include/linux/mfd/max77686*.h | |
6670 | F: include/linux/mfd/max77693*.h | |
6671 | ||
9be3c9a5 HV |
6672 | MAXIRADIO FM RADIO RECEIVER DRIVER |
6673 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6674 | L: linux-media@vger.kernel.org | |
6675 | T: git git://linuxtv.org/media_tree.git | |
6676 | W: http://linuxtv.org | |
6677 | S: Maintained | |
6678 | F: drivers/media/radio/radio-maxiradio* | |
6679 | ||
6f32a8c9 LP |
6680 | MEDIA DRIVERS FOR RENESAS - VSP1 |
6681 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
6682 | L: linux-media@vger.kernel.org | |
6683 | L: linux-sh@vger.kernel.org | |
6684 | T: git git://linuxtv.org/media_tree.git | |
6685 | S: Supported | |
6686 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
6687 | F: drivers/media/platform/vsp1/ | |
6688 | ||
dacf9ce8 KS |
6689 | MEDIA DRIVERS FOR ASCOT2E |
6690 | M: Sergey Kozlov <serjk@netup.ru> | |
6691 | L: linux-media@vger.kernel.org | |
6692 | W: http://linuxtv.org | |
6693 | W: http://netup.tv/ | |
6694 | T: git git://linuxtv.org/media_tree.git | |
6695 | S: Supported | |
6696 | F: drivers/media/dvb-frontends/ascot2e* | |
6697 | ||
a6dc60ff KS |
6698 | MEDIA DRIVERS FOR CXD2841ER |
6699 | M: Sergey Kozlov <serjk@netup.ru> | |
6700 | L: linux-media@vger.kernel.org | |
6701 | W: http://linuxtv.org/ | |
6702 | W: http://netup.tv/ | |
6703 | T: git git://linuxtv.org/media_tree.git | |
6704 | S: Supported | |
6705 | F: drivers/media/dvb-frontends/cxd2841er* | |
6706 | ||
a5d32b35 KS |
6707 | MEDIA DRIVERS FOR HORUS3A |
6708 | M: Sergey Kozlov <serjk@netup.ru> | |
6709 | L: linux-media@vger.kernel.org | |
6710 | W: http://linuxtv.org/ | |
6711 | W: http://netup.tv/ | |
6712 | T: git git://linuxtv.org/media_tree.git | |
6713 | S: Supported | |
6714 | F: drivers/media/dvb-frontends/horus3a* | |
6715 | ||
e025273b KS |
6716 | MEDIA DRIVERS FOR LNBH25 |
6717 | M: Sergey Kozlov <serjk@netup.ru> | |
6718 | L: linux-media@vger.kernel.org | |
6719 | W: http://linuxtv.org/ | |
6720 | W: http://netup.tv/ | |
6721 | T: git git://linuxtv.org/media_tree.git | |
6722 | S: Supported | |
6723 | F: drivers/media/dvb-frontends/lnbh25* | |
6724 | ||
52b1eaf4 KS |
6725 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
6726 | M: Sergey Kozlov <serjk@netup.ru> | |
6727 | L: linux-media@vger.kernel.org | |
6728 | W: http://linuxtv.org/ | |
6729 | W: http://netup.tv/ | |
6730 | T: git git://linuxtv.org/media_tree.git | |
6731 | S: Supported | |
6732 | F: drivers/media/pci/netup_unidvb/* | |
6733 | ||
127c49ae | 6734 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
009a5410 | 6735 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
127c49ae JP |
6736 | P: LinuxTV.org Project |
6737 | L: linux-media@vger.kernel.org | |
6738 | W: http://linuxtv.org | |
8a6e2535 | 6739 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 6740 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
6741 | S: Maintained |
6742 | F: Documentation/dvb/ | |
6743 | F: Documentation/video4linux/ | |
ffe06198 | 6744 | F: Documentation/DocBook/media/ |
127c49ae | 6745 | F: drivers/media/ |
ffe06198 | 6746 | F: drivers/staging/media/ |
127c49ae | 6747 | F: include/media/ |
6c0f0359 MCC |
6748 | F: include/uapi/linux/dvb/ |
6749 | F: include/uapi/linux/videodev2.h | |
6750 | F: include/uapi/linux/media.h | |
6751 | F: include/uapi/linux/v4l2-* | |
6752 | F: include/uapi/linux/meye.h | |
6753 | F: include/uapi/linux/ivtv* | |
6754 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 6755 | |
c869f77d JK |
6756 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
6757 | M: Jakub Kicinski <kubakici@wp.pl> | |
6758 | L: linux-wireless@vger.kernel.org | |
6759 | S: Maintained | |
6760 | F: drivers/net/wireless/mediatek/mt7601u/ | |
6761 | ||
e399065b SS |
6762 | MEGARAID SCSI/SAS DRIVERS |
6763 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
6764 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
6765 | M: Uday Lingala <uday.lingala@avagotech.com> | |
6766 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 6767 | L: linux-scsi@vger.kernel.org |
e399065b | 6768 | W: http://www.lsi.com |
ce00f85c | 6769 | S: Maintained |
679655da JP |
6770 | F: Documentation/scsi/megaraid.txt |
6771 | F: drivers/scsi/megaraid.* | |
6772 | F: drivers/scsi/megaraid/ | |
757e0108 | 6773 | |
2c46c9d5 AV |
6774 | MELLANOX ETHERNET DRIVER (mlx4_en) |
6775 | M: Amir Vadai <amirv@mellanox.com> | |
db603047 | 6776 | M: Ido Shamay <idos@mellanox.com> |
b75f0050 | 6777 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
6778 | S: Supported |
6779 | W: http://www.mellanox.com | |
6780 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6781 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
6782 | ||
93c1edb2 JP |
6783 | MELLANOX ETHERNET SWITCH DRIVERS |
6784 | M: Jiri Pirko <jiri@mellanox.com> | |
6785 | M: Ido Schimmel <idosch@mellanox.com> | |
6786 | L: netdev@vger.kernel.org | |
6787 | S: Supported | |
6788 | W: http://www.mellanox.com | |
6789 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6790 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
6791 | ||
5b25b13a MD |
6792 | MEMBARRIER SUPPORT |
6793 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
6794 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
6795 | L: linux-kernel@vger.kernel.org | |
6796 | S: Supported | |
6797 | F: kernel/membarrier.c | |
6798 | F: include/uapi/linux/membarrier.h | |
6799 | ||
70ea91f1 SR |
6800 | MEMORY MANAGEMENT |
6801 | L: linux-mm@kvack.org | |
70ea91f1 SR |
6802 | W: http://www.linux-mm.org |
6803 | S: Maintained | |
679655da | 6804 | F: include/linux/mm.h |
551450bb CS |
6805 | F: include/linux/gfp.h |
6806 | F: include/linux/mmzone.h | |
6807 | F: include/linux/memory_hotplug.h | |
6808 | F: include/linux/vmalloc.h | |
679655da | 6809 | F: mm/ |
70ea91f1 | 6810 | |
f4e9ce66 | 6811 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 6812 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 6813 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 6814 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
6815 | W: http://www.linux-mtd.infradead.org/ |
6816 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 6817 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 6818 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 6819 | S: Maintained |
679655da JP |
6820 | F: drivers/mtd/ |
6821 | F: include/linux/mtd/ | |
c117ab84 | 6822 | F: include/uapi/mtd/ |
1da177e4 | 6823 | |
26c57ef1 | 6824 | MEN A21 WATCHDOG DRIVER |
30c7469b | 6825 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 6826 | L: linux-watchdog@vger.kernel.org |
30c7469b | 6827 | S: Maintained |
26c57ef1 JT |
6828 | F: drivers/watchdog/mena21_wdt.c |
6829 | ||
3764e82e | 6830 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
6831 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
6832 | S: Maintained | |
3764e82e JT |
6833 | F: drivers/mcb/ |
6834 | F: include/linux/mcb.h | |
b9f2f459 | 6835 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 6836 | |
48b490d2 AW |
6837 | MEN F21BMC (Board Management Controller) |
6838 | M: Andreas Werner <andreas.werner@men.de> | |
6839 | S: Supported | |
6840 | F: drivers/mfd/menf21bmc.c | |
6841 | F: drivers/watchdog/menf21bmc_wdt.c | |
6842 | F: drivers/leds/leds-menf21bmc.c | |
6843 | F: drivers/hwmon/menf21bmc_hwmon.c | |
6844 | F: Documentation/hwmon/menf21bmc | |
6845 | ||
12285945 JH |
6846 | METAG ARCHITECTURE |
6847 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 6848 | L: linux-metag@vger.kernel.org |
12285945 JH |
6849 | S: Supported |
6850 | F: arch/metag/ | |
6851 | F: Documentation/metag/ | |
6852 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 6853 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
6854 | F: drivers/irqchip/irq-metag.c |
6855 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 6856 | F: drivers/tty/metag_da.c |
12285945 | 6857 | |
c6375b0a | 6858 | MICROBLAZE ARCHITECTURE |
8b58be88 | 6859 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
6860 | W: http://www.monstr.eu/fdt/ |
6861 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
6862 | S: Supported | |
0a8c7914 | 6863 | F: arch/microblaze/ |
1da177e4 | 6864 | |
2508a45a CY |
6865 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
6866 | M: Chen Yu <yu.c.chen@intel.com> | |
6867 | L: platform-driver-x86@vger.kernel.org | |
6868 | S: Supported | |
6869 | F: drivers/platform/x86/surfacepro3_button.c | |
6870 | ||
1da177e4 | 6871 | MICROTEK X6 SCANNER |
61eee9a7 | 6872 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 6873 | S: Maintained |
679655da | 6874 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
6875 | |
6876 | MIPS | |
8b58be88 | 6877 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6878 | L: linux-mips@linux-mips.org |
6097050d | 6879 | W: http://www.linux-mips.org/ |
b05e988e | 6880 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 6881 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 6882 | S: Supported |
679655da JP |
6883 | F: Documentation/mips/ |
6884 | F: arch/mips/ | |
1da177e4 | 6885 | |
08b7620a HV |
6886 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
6887 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6888 | L: linux-media@vger.kernel.org | |
6889 | T: git git://linuxtv.org/media_tree.git | |
6890 | W: http://linuxtv.org | |
6891 | S: Odd Fixes | |
6892 | F: drivers/media/radio/radio-miropcm20* | |
6893 | ||
e126ba97 EC |
6894 | Mellanox MLX5 core VPI driver |
6895 | M: Eli Cohen <eli@mellanox.com> | |
6896 | L: netdev@vger.kernel.org | |
6897 | L: linux-rdma@vger.kernel.org | |
6898 | W: http://www.mellanox.com | |
6899 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6900 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6901 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
6902 | S: Supported |
6903 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
6904 | F: include/linux/mlx5/ | |
6905 | ||
6906 | Mellanox MLX5 IB driver | |
b75f0050 JP |
6907 | M: Eli Cohen <eli@mellanox.com> |
6908 | L: linux-rdma@vger.kernel.org | |
6909 | W: http://www.mellanox.com | |
6910 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6911 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
6912 | S: Supported |
6913 | F: include/linux/mlx5/ | |
6914 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 6915 | |
0ce277e4 AP |
6916 | MN88472 MEDIA DRIVER |
6917 | M: Antti Palosaari <crope@iki.fi> | |
6918 | L: linux-media@vger.kernel.org | |
6919 | W: http://linuxtv.org/ | |
6920 | W: http://palosaari.fi/linux/ | |
6921 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6922 | T: git git://linuxtv.org/anttip/media_tree.git | |
6923 | S: Maintained | |
6924 | F: drivers/staging/media/mn88472/ | |
6925 | F: drivers/media/dvb-frontends/mn88472.h | |
6926 | ||
4f4d238f AP |
6927 | MN88473 MEDIA DRIVER |
6928 | M: Antti Palosaari <crope@iki.fi> | |
6929 | L: linux-media@vger.kernel.org | |
6930 | W: http://linuxtv.org/ | |
6931 | W: http://palosaari.fi/linux/ | |
6932 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6933 | T: git git://linuxtv.org/anttip/media_tree.git | |
6934 | S: Maintained | |
6935 | F: drivers/staging/media/mn88473/ | |
6936 | F: drivers/media/dvb-frontends/mn88473.h | |
6937 | ||
1da177e4 | 6938 | MODULE SUPPORT |
8b58be88 | 6939 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 6940 | S: Maintained |
679655da JP |
6941 | F: include/linux/module.h |
6942 | F: kernel/module.c | |
1da177e4 LT |
6943 | |
6944 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 6945 | W: http://popies.net/meye/ |
b7788e13 | 6946 | S: Orphan |
679655da | 6947 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 6948 | F: drivers/media/pci/meye/ |
6c0f0359 | 6949 | F: include/uapi/linux/meye.h |
1da177e4 | 6950 | |
b9705b60 | 6951 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 6952 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 6953 | S: Maintained |
679655da | 6954 | F: Documentation/serial/moxa-smartio |
c897401b | 6955 | F: drivers/tty/mxser.* |
d735410a | 6956 | |
889b2f87 AK |
6957 | MR800 AVERMEDIA USB FM RADIO DRIVER |
6958 | M: Alexey Klimov <klimov.linux@gmail.com> | |
6959 | L: linux-media@vger.kernel.org | |
6960 | T: git git://linuxtv.org/media_tree.git | |
6961 | S: Maintained | |
6962 | F: drivers/media/radio/radio-mr800.c | |
6963 | ||
d7155691 AO |
6964 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
6965 | M: Alan Ott <alan@signal11.us> | |
6966 | L: linux-wpan@vger.kernel.org | |
6967 | S: Maintained | |
6968 | F: drivers/net/ieee802154/mrf24j40.c | |
6969 | ||
8c4c731a | 6970 | MSI LAPTOP SUPPORT |
182ae55c | 6971 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 6972 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 6973 | S: Maintained |
679655da | 6974 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 6975 | |
0f1006b1 | 6976 | MSI WMI SUPPORT |
d0944853 | 6977 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 6978 | S: Orphan |
0f1006b1 AA |
6979 | F: drivers/platform/x86/msi-wmi.c |
6980 | ||
19a628a0 AP |
6981 | MSI001 MEDIA DRIVER |
6982 | M: Antti Palosaari <crope@iki.fi> | |
6983 | L: linux-media@vger.kernel.org | |
6984 | W: http://linuxtv.org/ | |
6985 | W: http://palosaari.fi/linux/ | |
6986 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6987 | T: git git://linuxtv.org/anttip/media_tree.git | |
6988 | S: Maintained | |
0185e197 | 6989 | F: drivers/media/tuners/msi001* |
19a628a0 | 6990 | |
7570589d | 6991 | MSI2500 MEDIA DRIVER |
2c57213f AP |
6992 | M: Antti Palosaari <crope@iki.fi> |
6993 | L: linux-media@vger.kernel.org | |
6994 | W: http://linuxtv.org/ | |
6995 | W: http://palosaari.fi/linux/ | |
6996 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6997 | T: git git://linuxtv.org/anttip/media_tree.git | |
6998 | S: Maintained | |
7570589d | 6999 | F: drivers/media/usb/msi2500/ |
2c57213f | 7000 | |
159eeea4 RJ |
7001 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
7002 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
7003 | L: linux-mtd@lists.infradead.org | |
7004 | S: Maintained | |
7005 | F: drivers/mtd/devices/docg3* | |
7006 | ||
62a37dc7 | 7007 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
7008 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7009 | L: linux-media@vger.kernel.org | |
7010 | T: git git://linuxtv.org/media_tree.git | |
7011 | S: Maintained | |
7012 | F: drivers/media/i2c/mt9m032.c | |
7013 | F: include/media/mt9m032.h | |
7014 | ||
62a37dc7 | 7015 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
7016 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7017 | L: linux-media@vger.kernel.org | |
7018 | T: git git://linuxtv.org/media_tree.git | |
7019 | S: Maintained | |
7020 | F: drivers/media/i2c/mt9p031.c | |
7021 | F: include/media/mt9p031.h | |
7022 | ||
62a37dc7 | 7023 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
7024 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7025 | L: linux-media@vger.kernel.org | |
7026 | T: git git://linuxtv.org/media_tree.git | |
7027 | S: Maintained | |
7028 | F: drivers/media/i2c/mt9t001.c | |
7029 | F: include/media/mt9t001.h | |
7030 | ||
62a37dc7 | 7031 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
7032 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7033 | L: linux-media@vger.kernel.org | |
7034 | T: git git://linuxtv.org/media_tree.git | |
7035 | S: Maintained | |
f2272e13 | 7036 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 LP |
7037 | F: drivers/media/i2c/mt9v032.c |
7038 | F: include/media/mt9v032.h | |
7039 | ||
4e0d13cb | 7040 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 7041 | M: Samuel Ortiz <sameo@linux.intel.com> |
f7d3210e | 7042 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 7043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 7044 | S: Supported |
679655da | 7045 | F: drivers/mfd/ |
55b5940d | 7046 | F: include/linux/mfd/ |
4e0d13cb | 7047 | |
5c4e6f13 | 7048 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 7049 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 7050 | L: linux-mmc@vger.kernel.org |
708dce3f | 7051 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 7052 | S: Maintained |
679655da JP |
7053 | F: drivers/mmc/ |
7054 | F: include/linux/mmc/ | |
c117ab84 | 7055 | F: include/uapi/linux/mmc/ |
baca2da4 | 7056 | |
15a0580c | 7057 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 7058 | S: Orphan |
679655da JP |
7059 | F: drivers/mmc/host/mmc_spi.c |
7060 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 7061 | |
1da177e4 | 7062 | MULTISOUND SOUND DRIVER |
8b58be88 | 7063 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 7064 | S: Maintained |
679655da JP |
7065 | F: Documentation/sound/oss/MultiSound |
7066 | F: sound/oss/msnd* | |
1da177e4 | 7067 | |
d735410a | 7068 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 7069 | S: Orphan |
c897401b | 7070 | F: drivers/tty/isicom.c |
679655da | 7071 | F: include/linux/isicom.h |
d735410a | 7072 | |
550a7375 | 7073 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 7074 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 7075 | L: linux-usb@vger.kernel.org |
43b416e5 | 7076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 7077 | S: Maintained |
679655da | 7078 | F: drivers/usb/musb/ |
550a7375 | 7079 | |
ea0af5f6 MK |
7080 | MXL5007T MEDIA DRIVER |
7081 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7082 | L: linux-media@vger.kernel.org | |
7083 | W: http://linuxtv.org/ | |
7084 | W: http://github.com/mkrufky | |
7085 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7086 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7087 | S: Maintained | |
7088 | F: drivers/media/tuners/mxl5007t.* | |
7089 | ||
2d3cf588 | 7090 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 7091 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 7092 | L: netdev@vger.kernel.org |
205057ae | 7093 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 7094 | S: Supported |
93f7848b | 7095 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 7096 | |
1da177e4 | 7097 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 7098 | S: Orphan |
d9fb9f38 | 7099 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 7100 | |
23dc05a3 DM |
7101 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
7102 | M: Daniel Mack <zonque@gmail.com> | |
7103 | S: Maintained | |
e5747e40 | 7104 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
7105 | W: http://www.native-instruments.com |
7106 | F: sound/usb/caiaq/ | |
7107 | ||
1da177e4 | 7108 | NCP FILESYSTEM |
52653199 PV |
7109 | M: Petr Vandrovec <petr@vandrovec.name> |
7110 | S: Odd Fixes | |
679655da | 7111 | F: fs/ncpfs/ |
1da177e4 | 7112 | |
a79b0322 FT |
7113 | NCR 5380 SCSI DRIVERS |
7114 | M: Finn Thain <fthain@telegraphics.com.au> | |
7115 | M: Michael Schmitz <schmitzmic@gmail.com> | |
7116 | L: linux-scsi@vger.kernel.org | |
7117 | S: Maintained | |
7118 | F: Documentation/scsi/g_NCR5380.txt | |
7119 | F: drivers/scsi/NCR5380.* | |
7120 | F: drivers/scsi/arm/cumana_1.c | |
7121 | F: drivers/scsi/arm/oak.c | |
7122 | F: drivers/scsi/atari_NCR5380.c | |
7123 | F: drivers/scsi/atari_scsi.* | |
7124 | F: drivers/scsi/dmx3191d.c | |
7125 | F: drivers/scsi/dtc.* | |
7126 | F: drivers/scsi/g_NCR5380.* | |
7127 | F: drivers/scsi/g_NCR5380_mmio.c | |
7128 | F: drivers/scsi/mac_scsi.* | |
7129 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
7130 | F: drivers/scsi/sun3_scsi.* |
7131 | F: drivers/scsi/sun3_scsi_vme.c | |
7132 | F: drivers/scsi/t128.* | |
7133 | ||
1da177e4 | 7134 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 7135 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7136 | L: linux-scsi@vger.kernel.org |
7137 | S: Maintained | |
679655da | 7138 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 7139 | |
4aa3eb4c GR |
7140 | NCT6775 HARDWARE MONITOR DRIVER |
7141 | M: Guenter Roeck <linux@roeck-us.net> | |
7142 | L: lm-sensors@lm-sensors.org | |
7143 | S: Maintained | |
7144 | F: Documentation/hwmon/nct6775 | |
7145 | F: drivers/hwmon/nct6775.c | |
7146 | ||
3c2d774c | 7147 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 7148 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 7149 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 7150 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
7151 | S: Supported |
7152 | F: drivers/infiniband/hw/nes/ | |
7153 | ||
be2f2e84 | 7154 | NETEM NETWORK EMULATOR |
adbbf69d | 7155 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 7156 | L: netem@lists.linux-foundation.org |
be2f2e84 | 7157 | S: Maintained |
679655da | 7158 | F: net/sched/sch_netem.c |
be2f2e84 | 7159 | |
b2f5a051 | 7160 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 7161 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 7162 | L: netdev@vger.kernel.org |
4a58448b | 7163 | S: Supported |
679655da | 7164 | F: Documentation/networking/s2io.txt |
b2f5a051 | 7165 | F: Documentation/networking/vxge.txt |
86387e1a | 7166 | F: drivers/net/ethernet/neterion/ |
4a58448b | 7167 | |
db9cf3a3 | 7168 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 7169 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 7170 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 7171 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 7172 | L: netfilter-devel@vger.kernel.org |
82b98543 | 7173 | L: coreteam@netfilter.org |
1da177e4 LT |
7174 | W: http://www.netfilter.org/ |
7175 | W: http://www.iptables.org/ | |
42010ed0 PNA |
7176 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
7177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
7178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 7179 | S: Supported |
679655da JP |
7180 | F: include/linux/netfilter* |
7181 | F: include/linux/netfilter/ | |
7182 | F: include/net/netfilter/ | |
c117ab84 CEB |
7183 | F: include/uapi/linux/netfilter* |
7184 | F: include/uapi/linux/netfilter/ | |
679655da JP |
7185 | F: net/*/netfilter.c |
7186 | F: net/*/netfilter/ | |
7187 | F: net/netfilter/ | |
91c269a0 | 7188 | F: net/bridge/br_netfilter*.c |
1da177e4 | 7189 | |
4cc67735 | 7190 | NETLABEL |
87a0874c | 7191 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
7192 | W: http://netlabel.sf.net |
7193 | L: netdev@vger.kernel.org | |
87a0874c | 7194 | S: Maintained |
80811493 | 7195 | F: Documentation/netlabel/ |
679655da JP |
7196 | F: include/net/netlabel.h |
7197 | F: net/netlabel/ | |
4cc67735 | 7198 | |
1da177e4 | 7199 | NETROM NETWORK LAYER |
8b58be88 | 7200 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7201 | L: linux-hams@vger.kernel.org |
d34cb28a | 7202 | W: http://www.linux-ax25.org/ |
1da177e4 | 7203 | S: Maintained |
679655da | 7204 | F: include/net/netrom.h |
c117ab84 | 7205 | F: include/uapi/linux/netrom.h |
679655da | 7206 | F: net/netrom/ |
1da177e4 | 7207 | |
5ddb88c0 | 7208 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 7209 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 7210 | S: Maintained |
5e4b269b | 7211 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 7212 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
7213 | F: Documentation/blockdev/nbd.txt |
7214 | F: drivers/block/nbd.c | |
c117ab84 | 7215 | F: include/uapi/linux/nbd.h |
1da177e4 | 7216 | |
6e43650c NH |
7217 | NETWORK DROP MONITOR |
7218 | M: Neil Horman <nhorman@tuxdriver.com> | |
7219 | L: netdev@vger.kernel.org | |
7220 | S: Maintained | |
7221 | W: https://fedorahosted.org/dropwatch/ | |
7222 | F: net/core/drop_monitor.c | |
7223 | ||
1da177e4 | 7224 | NETWORKING [GENERAL] |
8b58be88 | 7225 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 7226 | L: netdev@vger.kernel.org |
b1e8fd54 | 7227 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 7228 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
7229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7230 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 7231 | S: Maintained |
679655da JP |
7232 | F: net/ |
7233 | F: include/net/ | |
018d21ed JP |
7234 | F: include/linux/in.h |
7235 | F: include/linux/net.h | |
7236 | F: include/linux/netdevice.h | |
c117ab84 CEB |
7237 | F: include/uapi/linux/in.h |
7238 | F: include/uapi/linux/net.h | |
7239 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 7240 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 7241 | F: tools/net/ |
f4e53f9a | 7242 | F: tools/testing/selftests/net/ |
335a67d2 | 7243 | F: lib/random32.c |
a101ccd1 | 7244 | F: lib/test_bpf.c |
1da177e4 LT |
7245 | |
7246 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
7247 | M: "David S. Miller" <davem@davemloft.net> |
7248 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
7249 | M: James Morris <jmorris@namei.org> |
7250 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
7251 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 7252 | L: netdev@vger.kernel.org |
08deed1e | 7253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 7254 | S: Maintained |
679655da JP |
7255 | F: net/ipv4/ |
7256 | F: net/ipv6/ | |
7257 | F: include/net/ip* | |
0a14842f | 7258 | F: arch/x86/net/* |
1da177e4 | 7259 | |
73b7656c DM |
7260 | NETWORKING [IPSEC] |
7261 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
7262 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
7263 | M: "David S. Miller" <davem@davemloft.net> | |
7264 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
7265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
7266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 7267 | S: Maintained |
5826bdd1 | 7268 | F: net/core/flow.c |
73b7656c DM |
7269 | F: net/xfrm/ |
7270 | F: net/key/ | |
7271 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
7272 | F: net/ipv4/esp4.c |
7273 | F: net/ipv4/ah4.c | |
7274 | F: net/ipv4/ipcomp.c | |
7275 | F: net/ipv4/ip_vti.c | |
73b7656c | 7276 | F: net/ipv6/xfrm* |
d1fc5024 SK |
7277 | F: net/ipv6/esp6.c |
7278 | F: net/ipv6/ah6.c | |
7279 | F: net/ipv6/ipcomp6.c | |
7280 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
7281 | F: include/uapi/linux/xfrm.h |
7282 | F: include/net/xfrm.h | |
7283 | ||
10e2ff1c | 7284 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 7285 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
7286 | L: netdev@vger.kernel.org |
7287 | S: Maintained | |
7288 | ||
29f8f632 | 7289 | NETWORKING [WIRELESS] |
2cb4abd1 | 7290 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 7291 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 7292 | |
788873ac JP |
7293 | NETWORKING DRIVERS |
7294 | L: netdev@vger.kernel.org | |
7295 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 7296 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
7297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
7299 | S: Odd Fixes |
7300 | F: drivers/net/ | |
018d21ed | 7301 | F: include/linux/if_* |
0b63bf1f JD |
7302 | F: include/linux/netdevice.h |
7303 | F: include/linux/arcdevice.h | |
7304 | F: include/linux/etherdevice.h | |
7305 | F: include/linux/fcdevice.h | |
7306 | F: include/linux/fddidevice.h | |
7307 | F: include/linux/hippidevice.h | |
7308 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
7309 | F: include/uapi/linux/if_* |
7310 | F: include/uapi/linux/netdevice.h | |
788873ac | 7311 | |
0e324cf6 JL |
7312 | NETWORKING DRIVERS (WIRELESS) |
7313 | M: Kalle Valo <kvalo@codeaurora.org> | |
7314 | L: linux-wireless@vger.kernel.org | |
7315 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
7316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/ | |
7317 | S: Maintained | |
7318 | F: drivers/net/wireless/ | |
7319 | ||
3d396eb1 | 7320 | NETXEN (1/10) GbE SUPPORT |
8622315e | 7321 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
7322 | M: Sony Chacko <sony.chacko@qlogic.com> |
7323 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 7324 | L: netdev@vger.kernel.org |
9c2b5bde | 7325 | W: http://www.qlogic.com |
3d396eb1 | 7326 | S: Supported |
aa43c215 | 7327 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 7328 | |
6423d30f AAJ |
7329 | NFC SUBSYSTEM |
7330 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
7331 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
7332 | M: Samuel Ortiz <sameo@linux.intel.com> | |
7333 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 7334 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 7335 | S: Supported |
6423d30f | 7336 | F: net/nfc/ |
55eb94f9 | 7337 | F: include/net/nfc/ |
c117ab84 | 7338 | F: include/uapi/linux/nfc.h |
6423d30f | 7339 | F: drivers/nfc/ |
08eaa1e0 | 7340 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 7341 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 7342 | |
e8b43555 | 7343 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 7344 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 7345 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
7346 | L: linux-nfs@vger.kernel.org |
7347 | W: http://client.linux-nfs.org | |
cd7b996a | 7348 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 7349 | S: Maintained |
679655da JP |
7350 | F: fs/lockd/ |
7351 | F: fs/nfs/ | |
7352 | F: fs/nfs_common/ | |
7353 | F: net/sunrpc/ | |
7354 | F: include/linux/lockd/ | |
7355 | F: include/linux/nfs* | |
7356 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
7357 | F: include/uapi/linux/nfs* |
7358 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 7359 | |
85ef9cea | 7360 | NILFS2 FILESYSTEM |
e2126935 | 7361 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 7362 | L: linux-nilfs@vger.kernel.org |
f9472265 | 7363 | W: http://nilfs.sourceforge.net/ |
e2126935 | 7364 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 7365 | S: Supported |
679655da JP |
7366 | F: Documentation/filesystems/nilfs2.txt |
7367 | F: fs/nilfs2/ | |
7368 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 7369 | |
1da177e4 | 7370 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 7371 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
7372 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7373 | S: Maintained | |
679655da JP |
7374 | F: Documentation/scsi/NinjaSCSI.txt |
7375 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
7376 | |
7377 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
7378 | M: GOTO Masanori <gotom@debian.or.jp> |
7379 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
7380 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7381 | S: Maintained | |
679655da JP |
7382 | F: Documentation/scsi/NinjaSCSI.txt |
7383 | F: drivers/scsi/nsp32* | |
1da177e4 | 7384 | |
383b8fb9 LFT |
7385 | NIOS2 ARCHITECTURE |
7386 | M: Ley Foon Tan <lftan@altera.com> | |
7387 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 7388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
7389 | S: Maintained |
7390 | F: arch/nios2/ | |
7391 | ||
2a6afddb PR |
7392 | NOKIA N900 POWER SUPPLY DRIVERS |
7393 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
7394 | S: Maintained | |
7395 | F: include/linux/power/bq2415x_charger.h | |
7396 | F: include/linux/power/bq27x00_battery.h | |
7397 | F: include/linux/power/isp1704_charger.h | |
7398 | F: drivers/power/bq2415x_charger.c | |
7399 | F: drivers/power/bq27x00_battery.c | |
7400 | F: drivers/power/isp1704_charger.c | |
7401 | F: drivers/power/rx51_battery.c | |
7402 | ||
a1bd3bae | 7403 | NTB DRIVER CORE |
9ef6bf6c JM |
7404 | M: Jon Mason <jdmason@kudzu.us> |
7405 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 7406 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 7407 | L: linux-ntb@googlegroups.com |
fce8a7bb | 7408 | S: Supported |
2984411f JM |
7409 | W: https://github.com/jonmason/ntb/wiki |
7410 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 7411 | F: drivers/ntb/ |
548c237c | 7412 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 7413 | F: include/linux/ntb.h |
a1bd3bae | 7414 | F: include/linux/ntb_transport.h |
fce8a7bb | 7415 | |
e26a5843 AH |
7416 | NTB INTEL DRIVER |
7417 | M: Jon Mason <jdmason@kudzu.us> | |
7418 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 7419 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
7420 | S: Supported |
7421 | W: https://github.com/jonmason/ntb/wiki | |
7422 | T: git git://github.com/jonmason/ntb.git | |
7423 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 7424 | |
1da177e4 | 7425 | NTFS FILESYSTEM |
2818ef50 | 7426 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 7427 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 7428 | W: http://www.tuxera.com/ |
e6f4dee7 | 7429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 7430 | S: Supported |
679655da JP |
7431 | F: Documentation/filesystems/ntfs.txt |
7432 | F: fs/ntfs/ | |
1da177e4 | 7433 | |
9eb8ef74 | 7434 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 7435 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7436 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7437 | S: Maintained |
8a61f013 JH |
7438 | F: drivers/video/fbdev/riva/ |
7439 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 7440 | |
79461681 MW |
7441 | NVM EXPRESS DRIVER |
7442 | M: Matthew Wilcox <willy@linux.intel.com> | |
7443 | L: linux-nvme@lists.infradead.org | |
7444 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
7445 | S: Supported | |
5be37bf9 | 7446 | F: drivers/block/nvme* |
79461681 MW |
7447 | F: include/linux/nvme.h |
7448 | ||
aee4b9bd SK |
7449 | NVMEM FRAMEWORK |
7450 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
7451 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
7452 | S: Maintained | |
7453 | F: drivers/nvmem/ | |
7454 | F: Documentation/devicetree/bindings/nvmem/ | |
7455 | F: include/linux/nvmem-consumer.h | |
7456 | F: include/linux/nvmem-provider.h | |
7457 | ||
dece4585 CP |
7458 | NXP-NCI NFC DRIVER |
7459 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
7460 | R: Charles Gorand <charles.gorand@effinnov.com> | |
7461 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
7462 | S: Supported | |
7463 | F: drivers/nfc/nxp-nci | |
7464 | ||
f50d7146 RK |
7465 | NXP TDA998X DRM DRIVER |
7466 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
7467 | S: Supported | |
7468 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
7469 | F: include/drm/i2c/tda998x.h | |
7470 | ||
fbace43e PR |
7471 | NXP TFA9879 DRIVER |
7472 | M: Peter Rosin <peda@axentia.se> | |
7473 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7474 | S: Maintained | |
7475 | F: sound/soc/codecs/tfa9879* | |
7476 | ||
f5525786 | 7477 | OMAP SUPPORT |
0e24bdd4 | 7478 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
7479 | L: linux-omap@vger.kernel.org |
7480 | W: http://www.muru.com/linux/omap/ | |
7481 | W: http://linux.omap.com/ | |
8a6e2535 | 7482 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 7483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 7484 | S: Maintained |
4e04d5a3 | 7485 | F: arch/arm/*omap*/ |
026da812 FB |
7486 | F: arch/arm/configs/omap1_defconfig |
7487 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 7488 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
7489 | F: drivers/irqchip/irq-omap-intc.c |
7490 | F: drivers/mfd/*omap*.c | |
7491 | F: drivers/mfd/menelaus.c | |
7492 | F: drivers/mfd/palmas.c | |
7493 | F: drivers/mfd/tps65217.c | |
7494 | F: drivers/mfd/tps65218.c | |
7495 | F: drivers/mfd/tps65910.c | |
7496 | F: drivers/mfd/twl-core.[ch] | |
7497 | F: drivers/mfd/twl4030*.c | |
7498 | F: drivers/mfd/twl6030*.c | |
7499 | F: drivers/mfd/twl6040*.c | |
7500 | F: drivers/regulator/palmas-regulator*.c | |
7501 | F: drivers/regulator/pbias-regulator.c | |
7502 | F: drivers/regulator/tps65217-regulator.c | |
7503 | F: drivers/regulator/tps65218-regulator.c | |
7504 | F: drivers/regulator/tps65910-regulator.c | |
7505 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 7506 | F: include/linux/i2c-omap.h |
f5525786 | 7507 | |
50f29fbd | 7508 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 7509 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
7510 | M: Tony Lindgren <tony@atomide.com> |
7511 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 7512 | L: devicetree@vger.kernel.org |
50f29fbd TL |
7513 | S: Maintained |
7514 | F: arch/arm/boot/dts/*omap* | |
7515 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
7516 | F: arch/arm/boot/dts/*am4* |
7517 | F: arch/arm/boot/dts/*am5* | |
7518 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 7519 | |
f5525786 | 7520 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 7521 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
7522 | L: linux-omap@vger.kernel.org |
7523 | S: Maintained | |
7524 | F: arch/arm/*omap*/*clock* | |
7525 | ||
7526 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 7527 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
7528 | L: linux-omap@vger.kernel.org |
7529 | S: Maintained | |
7530 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 7531 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 7532 | |
d21db568 | 7533 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
7534 | M: Rajendra Nayak <rnayak@ti.com> |
7535 | M: Paul Walmsley <paul@pwsan.com> | |
7536 | L: linux-omap@vger.kernel.org | |
7537 | S: Maintained | |
d21db568 | 7538 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 7539 | |
f5525786 | 7540 | OMAP AUDIO SUPPORT |
6c284903 | 7541 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 7542 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 7543 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
7544 | L: linux-omap@vger.kernel.org |
7545 | S: Maintained | |
7546 | F: sound/soc/omap/ | |
7547 | ||
18640193 TL |
7548 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
7549 | M: Roger Quadros <rogerq@ti.com> | |
7550 | M: Tony Lindgren <tony@atomide.com> | |
7551 | L: linux-omap@vger.kernel.org | |
7552 | S: Maintained | |
7553 | F: drivers/memory/omap-gpmc.c | |
7554 | F: arch/arm/mach-omap2/*gpmc* | |
7555 | ||
f5525786 | 7556 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 7557 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 7558 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
7559 | L: linux-omap@vger.kernel.org |
7560 | S: Maintained | |
8a61f013 | 7561 | F: drivers/video/fbdev/omap/ |
f5525786 | 7562 | |
676eec0d | 7563 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 7564 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 7565 | L: linux-omap@vger.kernel.org |
676eec0d | 7566 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 7567 | S: Maintained |
8a61f013 | 7568 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
7569 | F: Documentation/arm/OMAP/DSS |
7570 | ||
8b37fcfc OBC |
7571 | OMAP HARDWARE SPINLOCK SUPPORT |
7572 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7573 | L: linux-omap@vger.kernel.org | |
7574 | S: Maintained | |
7575 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 7576 | |
f5525786 | 7577 | OMAP MMC SUPPORT |
8b58be88 | 7578 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
7579 | L: linux-omap@vger.kernel.org |
7580 | S: Maintained | |
653f41b5 MC |
7581 | F: drivers/mmc/host/omap.c |
7582 | ||
7583 | OMAP HS MMC SUPPORT | |
0a4585c6 | 7584 | L: linux-mmc@vger.kernel.org |
653f41b5 | 7585 | L: linux-omap@vger.kernel.org |
dfa5d196 | 7586 | S: Orphan |
653f41b5 | 7587 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
7588 | |
7589 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 7590 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
7591 | S: Maintained |
7592 | F: drivers/char/hw_random/omap-rng.c | |
7593 | ||
f400c82e | 7594 | OMAP HWMOD SUPPORT |
cdb55ab0 | 7595 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7596 | M: Paul Walmsley <paul@pwsan.com> |
7597 | L: linux-omap@vger.kernel.org | |
7598 | S: Maintained | |
8fc8b12b | 7599 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 7600 | |
8633fb30 PW |
7601 | OMAP HWMOD DATA |
7602 | M: Paul Walmsley <paul@pwsan.com> | |
7603 | L: linux-omap@vger.kernel.org | |
7604 | S: Maintained | |
7605 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
7606 | ||
f400c82e | 7607 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 7608 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7609 | L: linux-omap@vger.kernel.org |
7610 | S: Maintained | |
7611 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
7612 | ||
0db83ced | 7613 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
7614 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7615 | L: linux-media@vger.kernel.org | |
7616 | S: Maintained | |
7eec52db | 7617 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 7618 | F: drivers/media/platform/omap3isp/ |
0db83ced | 7619 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 7620 | |
f5525786 | 7621 | OMAP USB SUPPORT |
f299470a | 7622 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
7623 | L: linux-usb@vger.kernel.org |
7624 | L: linux-omap@vger.kernel.org | |
43b416e5 | 7625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 7626 | S: Maintained |
a16fbd65 JP |
7627 | F: drivers/usb/*/*omap* |
7628 | F: arch/arm/*omap*/usb* | |
f5525786 | 7629 | |
6d994710 | 7630 | OMAP GPIO DRIVER |
a1415a8f | 7631 | M: Javier Martinez Canillas <javier@dowhile0.org> |
97215800 | 7632 | M: Santosh Shilimkar <ssantosh@kernel.org> |
c69d72ae | 7633 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
7634 | L: linux-omap@vger.kernel.org |
7635 | S: Maintained | |
7636 | F: drivers/gpio/gpio-omap.c | |
7637 | ||
c351e290 MJ |
7638 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
7639 | M: Mark Jackson <mpfj@newflow.co.uk> | |
7640 | L: linux-omap@vger.kernel.org | |
7641 | S: Maintained | |
7642 | F: arch/arm/boot/dts/am335x-nano.dts | |
7643 | ||
0ad122d9 | 7644 | OMFS FILESYSTEM |
8b58be88 | 7645 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
7646 | L: linux-karma-devel@lists.sourceforge.net |
7647 | S: Maintained | |
679655da JP |
7648 | F: Documentation/filesystems/omfs.txt |
7649 | F: fs/omfs/ | |
0ad122d9 | 7650 | |
c1986ee9 | 7651 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 7652 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 7653 | S: Maintained |
679655da JP |
7654 | F: drivers/char/pcmcia/cm4000_cs.c |
7655 | F: include/linux/cm4000_cs.h | |
c117ab84 | 7656 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 7657 | |
77c44ab1 | 7658 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 7659 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 7660 | S: Maintained |
679655da | 7661 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 7662 | |
77d5140f | 7663 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 7664 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 7665 | L: linux-media@vger.kernel.org |
275ffde4 | 7666 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 7667 | S: Maintained |
90d72ac6 | 7668 | F: drivers/media/i2c/ov7670.c |
77d5140f | 7669 | |
431bca73 | 7670 | ONENAND FLASH DRIVER |
8b58be88 | 7671 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
7672 | L: linux-mtd@lists.infradead.org |
7673 | S: Maintained | |
679655da JP |
7674 | F: drivers/mtd/onenand/ |
7675 | F: include/linux/mtd/onenand*.h | |
431bca73 | 7676 | |
1da177e4 | 7677 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 7678 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
7679 | L: osst-users@lists.sourceforge.net |
7680 | L: linux-scsi@vger.kernel.org | |
7681 | S: Maintained | |
f7269cfc JD |
7682 | F: Documentation/scsi/osst.txt |
7683 | F: drivers/scsi/osst.* | |
7684 | F: drivers/scsi/osst_*.h | |
7685 | F: drivers/scsi/st.h | |
1da177e4 | 7686 | |
e2d1d6c0 | 7687 | OPENCORES I2C BUS DRIVER |
8b58be88 | 7688 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 7689 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 7690 | S: Maintained |
679655da JP |
7691 | F: Documentation/i2c/busses/i2c-ocores |
7692 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 7693 | |
860c44c1 | 7694 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 7695 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 GL |
7696 | M: Frank Rowand <frowand.list@gmail.com> |
7697 | M: Grant Likely <grant.likely@linaro.org> | |
d0fb18c5 | 7698 | L: devicetree@vger.kernel.org |
a7fefe9f RH |
7699 | W: http://www.devicetree.org/ |
7700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git | |
860c44c1 | 7701 | S: Maintained |
f8828205 | 7702 | F: drivers/of/ |
860c44c1 | 7703 | F: include/linux/of*.h |
f8828205 | 7704 | F: scripts/dtc/ |
860c44c1 | 7705 | |
f8828205 | 7706 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 7707 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
7708 | M: Pawel Moll <pawel.moll@arm.com> |
7709 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 7710 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 7711 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 GL |
7712 | L: devicetree@vger.kernel.org |
7713 | S: Maintained | |
7714 | F: Documentation/devicetree/ | |
7715 | F: arch/*/boot/dts/ | |
7716 | F: include/dt-bindings/ | |
7717 | ||
2bb65f56 PA |
7718 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
7719 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
7720 | L: devicetree@vger.kernel.org | |
7721 | S: Maintained | |
7722 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
7723 | F: Documentation/devicetree/overlay-notes.txt | |
7724 | F: drivers/of/overlay.c | |
7725 | F: drivers/of/resolver.c | |
7726 | ||
19f9d392 JB |
7727 | OPENRISC ARCHITECTURE |
7728 | M: Jonas Bonn <jonas@southpole.se> | |
7729 | W: http://openrisc.net | |
eab7c1c0 | 7730 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
7731 | S: Maintained |
7732 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 7733 | F: arch/openrisc/ |
19f9d392 | 7734 | |
ccb1352e | 7735 | OPENVSWITCH |
4f337ed5 | 7736 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 7737 | L: netdev@vger.kernel.org |
ccb1352e JG |
7738 | L: dev@openvswitch.org |
7739 | W: http://openvswitch.org | |
ccb1352e JG |
7740 | S: Maintained |
7741 | F: net/openvswitch/ | |
b422da7c | 7742 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 7743 | |
af39917d CL |
7744 | OPL4 DRIVER |
7745 | M: Clemens Ladisch <clemens@ladisch.de> | |
7746 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7747 | T: git git://git.alsa-project.org/alsa-kernel.git | |
7748 | S: Maintained | |
7749 | F: sound/drivers/opl4/ | |
7750 | ||
1da177e4 | 7751 | OPROFILE |
4cf7e718 | 7752 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
7753 | L: oprofile-list@lists.sf.net |
7754 | S: Maintained | |
81c4a8a6 | 7755 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
7756 | F: arch/*/oprofile/ |
7757 | F: drivers/oprofile/ | |
7758 | F: include/linux/oprofile.h | |
1da177e4 | 7759 | |
e2d1d6c0 | 7760 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 7761 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 7762 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 7763 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 7764 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 7765 | S: Supported |
679655da JP |
7766 | F: Documentation/filesystems/ocfs2.txt |
7767 | F: Documentation/filesystems/dlmfs.txt | |
7768 | F: fs/ocfs2/ | |
e2d1d6c0 | 7769 | |
1da177e4 | 7770 | ORINOCO DRIVER |
724c6b35 | 7771 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7772 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 7773 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 7774 | S: Orphan |
679655da | 7775 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 7776 | |
42c55aa8 | 7777 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 7778 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 7779 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
7780 | L: osd-dev@open-osd.org |
7781 | W: http://open-osd.org | |
54e5881d | 7782 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 7783 | S: Maintained |
42c55aa8 | 7784 | F: drivers/scsi/osd/ |
6b6f0b6c | 7785 | F: include/scsi/osd_* |
42c55aa8 | 7786 | F: fs/exofs/ |
68274794 | 7787 | |
ef94b186 | 7788 | OVERLAY FILESYSTEM |
7c37fbda | 7789 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
7790 | L: linux-unionfs@vger.kernel.org |
7791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 7792 | S: Supported |
1d113735 | 7793 | F: fs/overlayfs/ |
7c37fbda NB |
7794 | F: Documentation/filesystems/overlayfs.txt |
7795 | ||
e2d1d6c0 | 7796 | P54 WIRELESS DRIVER |
084cb0fe | 7797 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 7798 | L: linux-wireless@vger.kernel.org |
084cb0fe | 7799 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 7800 | S: Maintained |
679655da | 7801 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 7802 | |
f5cd7872 | 7803 | PA SEMI ETHERNET DRIVER |
8b58be88 | 7804 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
7805 | L: netdev@vger.kernel.org |
7806 | S: Maintained | |
ded19add | 7807 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 7808 | |
beb58aa3 | 7809 | PA SEMI SMBUS DRIVER |
8b58be88 | 7810 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 7811 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 7812 | S: Maintained |
679655da | 7813 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 7814 | |
48fc267e SK |
7815 | PADATA PARALLEL EXECUTION MECHANISM |
7816 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
7817 | L: linux-crypto@vger.kernel.org |
7818 | S: Maintained | |
7819 | F: kernel/padata.c | |
7820 | F: include/linux/padata.h | |
7821 | F: Documentation/padata.txt | |
7822 | ||
709ee531 | 7823 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 7824 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 7825 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 7826 | S: Maintained |
679655da | 7827 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 7828 | |
368dd5ac | 7829 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
7830 | M: David Howells <dhowells@redhat.com> |
7831 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
7832 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
7833 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
7834 | S: Maintained | |
679655da JP |
7835 | F: Documentation/mn10300/ |
7836 | F: arch/mn10300/ | |
4fa97181 | 7837 | |
64dfff03 SM |
7838 | PARALLEL PORT SUBSYSTEM |
7839 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
7840 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 7841 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 7842 | S: Maintained |
679655da JP |
7843 | F: drivers/parport/ |
7844 | F: include/linux/parport*.h | |
7845 | F: drivers/char/ppdev.c | |
c117ab84 | 7846 | F: include/uapi/linux/ppdev.h |
64dfff03 | 7847 | F: Documentation/parport*.txt |
1da177e4 | 7848 | |
4cdf6bc2 | 7849 | PARAVIRT_OPS INTERFACE |
d633180c | 7850 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
7851 | M: Chris Wright <chrisw@sous-sol.org> |
7852 | M: Alok Kataria <akataria@vmware.com> | |
7853 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 7854 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 7855 | S: Supported |
a2e19991 | 7856 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
7857 | F: arch/*/kernel/paravirt* |
7858 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 7859 | |
e2d1d6c0 | 7860 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 7861 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 7862 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 7863 | S: Maintained |
679655da JP |
7864 | F: Documentation/blockdev/paride.txt |
7865 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
7866 | |
7867 | PARISC ARCHITECTURE | |
b8828770 | 7868 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 7869 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
7870 | L: linux-parisc@vger.kernel.org |
7871 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 7872 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 7873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 7874 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 7875 | S: Maintained |
679655da | 7876 | F: arch/parisc/ |
2b6bac9e | 7877 | F: Documentation/parisc/ |
679655da | 7878 | F: drivers/parisc/ |
2b6bac9e HD |
7879 | F: drivers/char/agp/parisc-agp.c |
7880 | F: drivers/input/serio/gscps2.c | |
7881 | F: drivers/parport/parport_gsc.* | |
7882 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 7883 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
7884 | F: drivers/video/console/sti* |
7885 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 7886 | |
1662d32c | 7887 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 7888 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
7889 | L: lm-sensors@lm-sensors.org |
7890 | S: Maintained | |
679655da JP |
7891 | F: Documentation/hwmon/pc87360 |
7892 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
7893 | |
7894 | PC8736x GPIO DRIVER | |
8b58be88 | 7895 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7896 | S: Maintained |
679655da | 7897 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 7898 | |
1ad107fd | 7899 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 7900 | M: Jean Delvare <jdelvare@suse.com> |
1ad107fd JD |
7901 | L: lm-sensors@lm-sensors.org |
7902 | S: Maintained | |
7903 | F: Documentation/hwmon/pc87427 | |
7904 | F: drivers/hwmon/pc87427.c | |
7905 | ||
b26e0ed4 | 7906 | PCA9532 LED DRIVER |
8b58be88 | 7907 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 7908 | S: Maintained |
d5ca6918 JP |
7909 | F: drivers/leds/leds-pca9532.c |
7910 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 7911 | |
5ce914a8 | 7912 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 7913 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
7914 | L: linux-i2c@vger.kernel.org |
7915 | S: Maintained | |
b4f0b74e | 7916 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 7917 | |
3971dae5 | 7918 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 7919 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
7920 | S: Maintained |
7921 | F: drivers/firmware/pcdp.* | |
7922 | ||
065c6359 | 7923 | PCI ERROR RECOVERY |
6305902c | 7924 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 7925 | L: linux-pci@vger.kernel.org |
065c6359 | 7926 | S: Supported |
679655da | 7927 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 7928 | |
1da177e4 | 7929 | PCI SUBSYSTEM |
5ac3a6d2 | 7930 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 7931 | L: linux-pci@vger.kernel.org |
99662dd1 | 7932 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 7933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 7934 | S: Supported |
679655da JP |
7935 | F: Documentation/PCI/ |
7936 | F: drivers/pci/ | |
7937 | F: include/linux/pci* | |
6b49ee49 | 7938 | F: arch/x86/pci/ |
cad01f91 | 7939 | F: arch/x86/kernel/quirks.c |
1da177e4 | 7940 | |
b7e78170 RH |
7941 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
7942 | M: Rob Herring <robh@kernel.org> | |
7943 | L: linux-pci@vger.kernel.org | |
7944 | L: linux-arm-kernel@lists.infradead.org | |
7945 | S: Maintained | |
7946 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
7947 | F: drivers/pci/host/pci-versatile.c | |
7948 | ||
5f6b6ccd TI |
7949 | PCI DRIVER FOR APPLIEDMICRO XGENE |
7950 | M: Tanmay Inamdar <tinamdar@apm.com> | |
7951 | L: linux-pci@vger.kernel.org | |
7952 | L: linux-arm-kernel@lists.infradead.org | |
7953 | S: Maintained | |
7954 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
7955 | F: drivers/pci/host/pci-xgene.c | |
7956 | ||
62d0ff83 ML |
7957 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
7958 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
7959 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
7960 | M: Roy Zang <tie-fei.zang@freescale.com> | |
7961 | L: linuxppc-dev@lists.ozlabs.org | |
7962 | L: linux-pci@vger.kernel.org | |
7963 | L: linux-arm-kernel@lists.infradead.org | |
7964 | S: Maintained | |
7965 | F: drivers/pci/host/*layerscape* | |
7966 | ||
f0b75693 | 7967 | PCI DRIVER FOR IMX6 |
f175aa2c | 7968 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 7969 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
7970 | L: linux-pci@vger.kernel.org |
7971 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7972 | S: Maintained | |
7973 | F: drivers/pci/host/*imx6* | |
7974 | ||
0c4ffcfe MK |
7975 | PCI DRIVER FOR TI KEYSTONE |
7976 | M: Murali Karicheri <m-karicheri2@ti.com> | |
7977 | L: linux-pci@vger.kernel.org | |
7978 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7979 | S: Maintained | |
7980 | F: drivers/pci/host/*keystone* | |
7981 | ||
f0b75693 BH |
7982 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
7983 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7984 | M: Jason Cooper <jason@lakedaemon.net> | |
7985 | L: linux-pci@vger.kernel.org | |
7986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7987 | S: Maintained | |
7988 | F: drivers/pci/host/*mvebu* | |
7989 | ||
0447cfd7 TR |
7990 | PCI DRIVER FOR NVIDIA TEGRA |
7991 | M: Thierry Reding <thierry.reding@gmail.com> | |
7992 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 7993 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
7994 | S: Supported |
7995 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
7996 | F: drivers/pci/host/pci-tegra.c | |
7997 | ||
47ff3de9 KVA |
7998 | PCI DRIVER FOR TI DRA7XX |
7999 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
8000 | L: linux-omap@vger.kernel.org | |
8001 | L: linux-pci@vger.kernel.org | |
8002 | S: Supported | |
8003 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
8004 | F: drivers/pci/host/pci-dra7xx.c | |
8005 | ||
f0b75693 BH |
8006 | PCI DRIVER FOR RENESAS R-CAR |
8007 | M: Simon Horman <horms@verge.net.au> | |
8008 | L: linux-pci@vger.kernel.org | |
8009 | L: linux-sh@vger.kernel.org | |
8010 | S: Maintained | |
8011 | F: drivers/pci/host/*rcar* | |
8012 | ||
4af82255 | 8013 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 8014 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 8015 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
8016 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8017 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
8018 | S: Maintained |
8019 | F: drivers/pci/host/pci-exynos.c | |
8020 | ||
f0b75693 | 8021 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 8022 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 8023 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
8024 | L: linux-pci@vger.kernel.org |
8025 | S: Maintained | |
8026 | F: drivers/pci/host/*designware* | |
8027 | ||
cf28855b WD |
8028 | PCI DRIVER FOR GENERIC OF HOSTS |
8029 | M: Will Deacon <will.deacon@arm.com> | |
8030 | L: linux-pci@vger.kernel.org | |
8031 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8032 | S: Maintained | |
8033 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
8034 | F: drivers/pci/host/pci-host-generic.c | |
8035 | ||
51b66a6c | 8036 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 8037 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 8038 | L: linux-pci@vger.kernel.org |
110baab1 | 8039 | S: Maintained |
51b66a6c PA |
8040 | F: drivers/pci/host/*spear* |
8041 | ||
dcd19de3 DD |
8042 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
8043 | M: Duc Dang <dhdang@apm.com> | |
8044 | L: linux-pci@vger.kernel.org | |
8045 | L: linux-arm-kernel@lists.infradead.org | |
8046 | S: Maintained | |
8047 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
8048 | F: drivers/pci/host/pci-xgene-msi.c | |
8049 | ||
1da177e4 | 8050 | PCMCIA SUBSYSTEM |
4230dfc9 | 8051 | P: Linux PCMCIA Team |
f5df5881 | 8052 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 8053 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 8054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 8055 | S: Maintained |
679655da JP |
8056 | F: Documentation/pcmcia/ |
8057 | F: drivers/pcmcia/ | |
8058 | F: include/pcmcia/ | |
1da177e4 LT |
8059 | |
8060 | PCNET32 NETWORK DRIVER | |
227fb925 | 8061 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 8062 | L: netdev@vger.kernel.org |
1da177e4 | 8063 | S: Maintained |
b955f6ca | 8064 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 8065 | |
48fc267e SK |
8066 | PCRYPT PARALLEL CRYPTO ENGINE |
8067 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8068 | L: linux-crypto@vger.kernel.org | |
8069 | S: Maintained | |
8070 | F: crypto/pcrypt.c | |
8071 | F: include/crypto/pcrypt.h | |
8072 | ||
e72df0b8 TH |
8073 | PER-CPU MEMORY ALLOCATOR |
8074 | M: Tejun Heo <tj@kernel.org> | |
8075 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
8076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
8077 | S: Maintained | |
8078 | F: include/linux/percpu*.h | |
8079 | F: mm/percpu*.c | |
8080 | F: arch/*/include/asm/percpu.h | |
8081 | ||
ad4ecbcb | 8082 | PER-TASK DELAY ACCOUNTING |
185e595f | 8083 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 8084 | S: Maintained |
679655da JP |
8085 | F: include/linux/delayacct.h |
8086 | F: kernel/delayacct.c | |
ad4ecbcb | 8087 | |
57c0c15b | 8088 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 | 8089 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
dd9b238c | 8090 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 8091 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 8092 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 8094 | S: Supported |
d53e8365 | 8095 | F: kernel/events/* |
a003236c | 8096 | F: include/linux/perf_event.h |
c117ab84 | 8097 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
8098 | F: arch/*/kernel/perf_event*.c |
8099 | F: arch/*/kernel/*/perf_event*.c | |
8100 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 8101 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
8102 | F: arch/*/kernel/perf_callchain.c |
8103 | F: tools/perf/ | |
6c0b3244 | 8104 | |
dd49d0f5 | 8105 | PERSONALITY HANDLING |
8b58be88 | 8106 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
8107 | L: linux-abi-devel@lists.sourceforge.net |
8108 | S: Maintained | |
679655da | 8109 | F: include/linux/personality.h |
c117ab84 | 8110 | F: include/uapi/linux/personality.h |
dd49d0f5 | 8111 | |
838e7a03 | 8112 | PHONET PROTOCOL |
2a06b40f | 8113 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
8114 | S: Supported |
8115 | F: Documentation/networking/phonet.txt | |
8116 | F: include/linux/phonet.h | |
8117 | F: include/net/phonet/ | |
c117ab84 | 8118 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
8119 | F: net/phonet/ |
8120 | ||
1da177e4 | 8121 | PHRAM MTD DRIVER |
8b58be88 | 8122 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
8123 | L: linux-mtd@lists.infradead.org |
8124 | S: Maintained | |
679655da | 8125 | F: drivers/mtd/devices/phram.c |
1da177e4 | 8126 | |
efdbb10e BP |
8127 | PICOLCD HID DRIVER |
8128 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
8129 | L: linux-input@vger.kernel.org | |
8130 | S: Maintained | |
8131 | F: drivers/hid/hid-picolcd* | |
8132 | ||
a53bfa07 JI |
8133 | PICOXCELL SUPPORT |
8134 | M: Jamie Iles <jamie@jamieiles.com> | |
8135 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8136 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
8137 | S: Supported | |
b8733987 | 8138 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 8139 | F: arch/arm/mach-picoxcell/ |
b8733987 | 8140 | F: drivers/crypto/picoxcell* |
a53bfa07 | 8141 | |
2744e8af LW |
8142 | PIN CONTROL SUBSYSTEM |
8143 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 8144 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 8145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 8146 | S: Maintained |
07f29ba6 | 8147 | F: drivers/pinctrl/ |
8e406fe4 | 8148 | F: include/linux/pinctrl/ |
2744e8af | 8149 | |
2201bbb8 JCPV |
8150 | PIN CONTROLLER - ATMEL AT91 |
8151 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
8152 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8153 | S: Maintained | |
c654b6bf | 8154 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 8155 | |
cbd1b652 MW |
8156 | PIN CONTROLLER - INTEL |
8157 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
8158 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
8159 | S: Maintained | |
8160 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 8161 | |
9963b536 LP |
8162 | PIN CONTROLLER - RENESAS |
8163 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8164 | L: linux-sh@vger.kernel.org | |
8165 | S: Maintained | |
8166 | F: drivers/pinctrl/sh-pfc/ | |
8167 | ||
b75e60d6 | 8168 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 8169 | M: Tomasz Figa <tomasz.figa@gmail.com> |
b75e60d6 DA |
8170 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8171 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
8172 | S: Maintained | |
9b5b33f6 | 8173 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 8174 | |
deda8287 | 8175 | PIN CONTROLLER - ST SPEAR |
da89947b | 8176 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
8177 | L: spear-devel@list.st.com |
8178 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8179 | W: http://www.st.com/spear | |
8180 | S: Maintained | |
8e406fe4 | 8181 | F: drivers/pinctrl/spear/ |
deda8287 | 8182 | |
249a6771 | 8183 | PKTCDVD DRIVER |
e5f6450c | 8184 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 8185 | S: Maintained |
679655da JP |
8186 | F: drivers/block/pktcdvd.c |
8187 | F: include/linux/pktcdvd.h | |
c117ab84 | 8188 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 8189 | |
b31d8273 G |
8190 | PKUNITY SOC DRIVERS |
8191 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
8192 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8193 | S: Maintained | |
ceebf4d5 | 8194 | T: git git://github.com/gxt/linux.git |
b31d8273 | 8195 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 8196 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 8197 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 8198 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 8199 | |
9d2ecfb7 | 8200 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 8201 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
8202 | L: lm-sensors@lm-sensors.org |
8203 | W: http://www.lm-sensors.org/ | |
8204 | W: http://www.roeck-us.net/linux/drivers/ | |
8205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
8206 | S: Maintained | |
8207 | F: Documentation/hwmon/pmbus | |
8208 | F: drivers/hwmon/pmbus/ | |
8209 | F: include/linux/i2c/pmbus.h | |
8210 | ||
89a36810 | 8211 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
8212 | L: linux-scsi@vger.kernel.org |
8213 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 8214 | S: Orphan |
89a36810 AR |
8215 | F: drivers/scsi/pmcraid.* |
8216 | ||
dbf9bfe6 | 8217 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 8218 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 8219 | M: lindar_liu@usish.com |
f5a7b525 | 8220 | L: pmchba@pmcs.com |
dbf9bfe6 | 8221 | L: linux-scsi@vger.kernel.org |
8222 | S: Supported | |
8223 | F: drivers/scsi/pm8001/ | |
8224 | ||
1da177e4 | 8225 | POSIX CLOCKS and TIMERS |
8b58be88 | 8226 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 8227 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 8229 | S: Maintained |
679655da JP |
8230 | F: fs/timerfd.c |
8231 | F: include/linux/timer* | |
5cee9645 | 8232 | F: kernel/time/*timer* |
1da177e4 | 8233 | |
3be86148 | 8234 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 8235 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 8236 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 8237 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 8238 | L: linux-pm@vger.kernel.org |
54e5881d | 8239 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 8240 | S: Maintained |
679655da | 8241 | F: include/linux/power_supply.h |
8cd725a1 | 8242 | F: drivers/power/ |
26305022 | 8243 | X: drivers/power/avs/ |
3be86148 | 8244 | |
514f161a MR |
8245 | POWER STATE COORDINATION INTERFACE (PSCI) |
8246 | M: Mark Rutland <mark.rutland@arm.com> | |
8247 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
8248 | L: linux-arm-kernel@lists.infradead.org | |
8249 | S: Maintained | |
8250 | F: drivers/firmware/psci.c | |
8251 | F: include/linux/psci.h | |
8252 | F: include/uapi/linux/psci.h | |
8253 | ||
1da177e4 | 8254 | PNP SUPPORT |
9c3646d1 | 8255 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 8256 | S: Maintained |
679655da | 8257 | F: drivers/pnp/ |
1da177e4 | 8258 | |
999445d4 | 8259 | PNXxxxx I2C DRIVER |
8b58be88 | 8260 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 8261 | L: linux-i2c@vger.kernel.org |
999445d4 | 8262 | S: Maintained |
679655da | 8263 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 8264 | |
1da177e4 | 8265 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 8266 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
8267 | L: linux-ppp@vger.kernel.org |
8268 | S: Maintained | |
224cf5ad | 8269 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
8270 | |
8271 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 8272 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 8273 | S: Maintained |
679655da | 8274 | F: net/atm/pppoatm.c |
c117ab84 | 8275 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
8276 | |
8277 | PPP OVER ETHERNET | |
8b58be88 | 8278 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 8279 | S: Maintained |
224cf5ad JK |
8280 | F: drivers/net/ppp/pppoe.c |
8281 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 8282 | |
a6d2370b | 8283 | PPP OVER L2TP |
8b58be88 | 8284 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 8285 | S: Maintained |
90ca28d1 | 8286 | F: net/l2tp/l2tp_ppp.c |
679655da | 8287 | F: include/linux/if_pppol2tp.h |
c117ab84 | 8288 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 8289 | |
eae9d2ba | 8290 | PPS SUPPORT |
8b58be88 | 8291 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
8292 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
8293 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
8294 | S: Maintained | |
cabaaf41 JP |
8295 | F: Documentation/pps/ |
8296 | F: drivers/pps/ | |
8297 | F: include/linux/pps*.h | |
eae9d2ba | 8298 | |
71a6d0af HW |
8299 | PPTP DRIVER |
8300 | M: Dmitry Kozlov <xeb@mail.ru> | |
8301 | L: netdev@vger.kernel.org | |
8302 | S: Maintained | |
224cf5ad | 8303 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
8304 | W: http://sourceforge.net/projects/accel-pptp |
8305 | ||
1da177e4 | 8306 | PREEMPTIBLE KERNEL |
8b58be88 | 8307 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
8308 | L: kpreempt-tech@lists.sourceforge.net |
8309 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
8310 | S: Supported | |
679655da JP |
8311 | F: Documentation/preempt-locking.txt |
8312 | F: include/linux/preempt.h | |
1da177e4 LT |
8313 | |
8314 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 8315 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 8316 | L: linux-wireless@vger.kernel.org |
9ef80804 | 8317 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 8318 | S: Obsolete |
679655da | 8319 | F: drivers/net/wireless/prism54/ |
1da177e4 | 8320 | |
02c18891 | 8321 | PS3 NETWORK SUPPORT |
b809b9ca | 8322 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 8323 | L: netdev@vger.kernel.org |
a14ab6b6 | 8324 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8325 | S: Maintained |
8df158ac | 8326 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 8327 | |
f58a9d17 | 8328 | PS3 PLATFORM SUPPORT |
b809b9ca | 8329 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 8330 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8331 | S: Maintained |
679655da JP |
8332 | F: arch/powerpc/boot/ps3* |
8333 | F: arch/powerpc/include/asm/lv1call.h | |
8334 | F: arch/powerpc/include/asm/ps3*.h | |
8335 | F: arch/powerpc/platforms/ps3/ | |
8336 | F: drivers/*/ps3* | |
8337 | F: drivers/ps3/ | |
fec629b8 | 8338 | F: drivers/rtc/rtc-ps3.c |
679655da | 8339 | F: drivers/usb/host/*ps3.c |
fec629b8 | 8340 | F: sound/ppc/snd_ps3* |
f58a9d17 | 8341 | |
cffb4add | 8342 | PS3VRAM DRIVER |
8b58be88 | 8343 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 8344 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 8345 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 8346 | S: Maintained |
8a3977cb | 8347 | F: drivers/block/ps3vram.c |
cffb4add | 8348 | |
8defe599 | 8349 | PSTORE FILESYSTEM |
9d5e2a02 | 8350 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
8351 | M: Colin Cross <ccross@android.com> |
8352 | M: Kees Cook <keescook@chromium.org> | |
8353 | M: Tony Luck <tony.luck@intel.com> | |
8354 | S: Maintained | |
8355 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
8356 | F: fs/pstore/ | |
8357 | F: include/linux/pstore* | |
04851772 | 8358 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
8359 | F: drivers/acpi/apei/erst.c |
8360 | ||
7fbc415d RC |
8361 | PTP HARDWARE CLOCK SUPPORT |
8362 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 8363 | L: netdev@vger.kernel.org |
7fbc415d RC |
8364 | S: Maintained |
8365 | W: http://linuxptp.sourceforge.net/ | |
8366 | F: Documentation/ABI/testing/sysfs-ptp | |
8367 | F: Documentation/ptp/* | |
0ecb3cdd | 8368 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
8369 | F: drivers/net/phy/dp83640* |
8370 | F: drivers/ptp/* | |
8371 | F: include/linux/ptp_cl* | |
8372 | ||
cf94a4d1 | 8373 | PTRACE SUPPORT |
e846ee5f | 8374 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 8375 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
8376 | S: Maintained |
8377 | F: include/asm-generic/syscall.h | |
8378 | F: include/linux/ptrace.h | |
8379 | F: include/linux/regset.h | |
8380 | F: include/linux/tracehook.h | |
c117ab84 | 8381 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
8382 | F: kernel/ptrace.c |
8383 | ||
8320204a | 8384 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 8385 | M: Mike Isely <isely@pobox.com> |
16e9495d | 8386 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 8387 | L: linux-media@vger.kernel.org |
8320204a | 8388 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 8389 | T: git git://linuxtv.org/media_tree.git |
8320204a | 8390 | S: Maintained |
679655da | 8391 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 8392 | F: drivers/media/usb/pvrusb2/ |
8320204a | 8393 | |
39532e6c HG |
8394 | PWC WEBCAM DRIVER |
8395 | M: Hans de Goede <hdegoede@redhat.com> | |
8396 | L: linux-media@vger.kernel.org | |
8397 | T: git git://linuxtv.org/media_tree.git | |
8398 | S: Maintained | |
8399 | F: drivers/media/usb/pwc/* | |
8400 | ||
93c090b3 KD |
8401 | PWM FAN DRIVER |
8402 | M: Kamil Debski <k.debski@samsung.com> | |
8403 | L: lm-sensors@lm-sensors.org | |
8404 | S: Supported | |
8405 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
8406 | F: Documentation/hwmon/pwm-fan | |
8407 | F: drivers/hwmon/pwm-fan.c | |
8408 | ||
200efedd | 8409 | PWM SUBSYSTEM |
aa3495f7 TR |
8410 | M: Thierry Reding <thierry.reding@gmail.com> |
8411 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 8412 | S: Maintained |
006e854f | 8413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
8414 | F: Documentation/pwm.txt |
8415 | F: Documentation/devicetree/bindings/pwm/ | |
8416 | F: include/linux/pwm.h | |
0c2498f1 | 8417 | F: drivers/pwm/ |
a140b98d TR |
8418 | F: drivers/video/backlight/pwm_bl.c |
8419 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 8420 | |
30ec261e | 8421 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 8422 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 8423 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 8424 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 8425 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 8426 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 8427 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 8428 | S: Maintained |
679655da | 8429 | F: arch/arm/mach-pxa/ |
820439f1 | 8430 | F: drivers/dma/pxa* |
679655da | 8431 | F: drivers/pcmcia/pxa2xx* |
9df92e6c | 8432 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 8433 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 8434 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 8435 | F: sound/arm/pxa* |
14430813 | 8436 | F: sound/soc/pxa/ |
1da177e4 | 8437 | |
ec64d3bf EG |
8438 | PXA3xx NAND FLASH DRIVER |
8439 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
8440 | L: linux-mtd@lists.infradead.org | |
8441 | S: Maintained | |
9a67f099 | 8442 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 8443 | |
3f640c61 | 8444 | MMP SUPPORT |
8b58be88 | 8445 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 8446 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 8447 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
8448 | T: git git://github.com/hzhuang1/linux.git |
8449 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 8450 | S: Maintained |
3f640c61 | 8451 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 8452 | |
272f133a PO |
8453 | PXA MMCI DRIVER |
8454 | S: Orphan | |
8455 | ||
57f63bc8 | 8456 | PXA RTC DRIVER |
8b58be88 | 8457 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
8458 | L: rtc-linux@googlegroups.com |
8459 | S: Maintained | |
8460 | ||
cea4001a | 8461 | QAT DRIVER |
49e7d9df JP |
8462 | M: Tadeusz Struk <tadeusz.struk@intel.com> |
8463 | L: qat-linux@intel.com | |
8464 | S: Supported | |
8465 | F: drivers/crypto/qat/ | |
cea4001a | 8466 | |
52a09a04 | 8467 | QIB DRIVER |
8473c603 | 8468 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
8469 | L: linux-rdma@vger.kernel.org |
8470 | S: Supported | |
8471 | F: drivers/infiniband/hw/qib/ | |
8472 | ||
5e9772b9 JS |
8473 | QLOGIC QLA1280 SCSI DRIVER |
8474 | M: Michael Reed <mdr@sgi.com> | |
8475 | L: linux-scsi@vger.kernel.org | |
8476 | S: Maintained | |
8477 | F: drivers/scsi/qla1280.[ch] | |
8478 | ||
1da177e4 | 8479 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 8480 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
8481 | L: linux-scsi@vger.kernel.org |
8482 | S: Supported | |
679655da JP |
8483 | F: Documentation/scsi/LICENSE.qla2xxx |
8484 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 8485 | |
883c98fe | 8486 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 8487 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
8488 | L: linux-scsi@vger.kernel.org |
8489 | S: Supported | |
bacfb81b | 8490 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
8491 | F: drivers/scsi/qla4xxx/ |
8492 | ||
5a4faa87 | 8493 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 8494 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 8495 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
8496 | M: linux-driver@qlogic.com |
8497 | L: netdev@vger.kernel.org | |
8498 | S: Supported | |
679655da | 8499 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 8500 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 8501 | |
0ec00f03 | 8502 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 8503 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
9f35a3cc | 8504 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
8505 | L: netdev@vger.kernel.org |
8506 | S: Supported | |
aa43c215 | 8507 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 8508 | |
c4e84bde | 8509 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
8510 | M: Harish Patil <harish.patil@qlogic.com> |
8511 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
8512 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 8513 | M: linux-driver@qlogic.com |
c4e84bde RM |
8514 | L: netdev@vger.kernel.org |
8515 | S: Supported | |
aa43c215 | 8516 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 8517 | |
1da177e4 | 8518 | QNX4 FILESYSTEM |
8b58be88 | 8519 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
8520 | W: http://www.alarsen.net/linux/qnx4fs/ |
8521 | S: Maintained | |
80811493 | 8522 | F: fs/qnx4/ |
c117ab84 CEB |
8523 | F: include/uapi/linux/qnx4_fs.h |
8524 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 8525 | |
91952bc0 AP |
8526 | QT1010 MEDIA DRIVER |
8527 | M: Antti Palosaari <crope@iki.fi> | |
8528 | L: linux-media@vger.kernel.org | |
8529 | W: http://linuxtv.org/ | |
8530 | W: http://palosaari.fi/linux/ | |
8531 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8532 | T: git git://linuxtv.org/anttip/media_tree.git | |
8533 | S: Maintained | |
8534 | F: drivers/media/tuners/qt1010* | |
8535 | ||
966fb5ec SM |
8536 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
8537 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
8538 | L: linux-wireless@vger.kernel.org | |
8539 | L: ath9k-devel@lists.ath9k.org | |
8540 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
8541 | S: Supported | |
8542 | F: drivers/net/wireless/ath/ath9k/ | |
8543 | ||
2ea0ffcb KV |
8544 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
8545 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
8546 | L: ath10k@lists.infradead.org | |
8547 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
8548 | T: git git://github.com/kvalo/ath.git | |
8549 | S: Supported | |
8550 | F: drivers/net/wireless/ath/ath10k/ | |
8551 | ||
4f4567cf RK |
8552 | QUALCOMM HEXAGON ARCHITECTURE |
8553 | M: Richard Kuo <rkuo@codeaurora.org> | |
8554 | L: linux-hexagon@vger.kernel.org | |
8555 | S: Supported | |
8556 | F: arch/hexagon/ | |
8557 | ||
8e84c258 EK |
8558 | QUALCOMM WCN36XX WIRELESS DRIVER |
8559 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
8560 | L: wcn36xx@lists.infradead.org | |
8561 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
8562 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
8563 | S: Supported | |
8564 | F: drivers/net/wireless/ath/wcn36xx/ | |
8565 | ||
602adf40 | 8566 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
8567 | M: Ilya Dryomov <idryomov@gmail.com> |
8568 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 8569 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 8570 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
8571 | W: http://ceph.com/ |
8572 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 8573 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 8574 | S: Supported |
398ecff5 | 8575 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
8576 | F: drivers/block/rbd.c |
8577 | F: drivers/block/rbd_types.h | |
8578 | ||
1da177e4 | 8579 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8580 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 8581 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 8582 | S: Maintained |
8a61f013 | 8583 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 8584 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 8585 | |
c6c9b34c HG |
8586 | RADIOSHARK RADIO DRIVER |
8587 | M: Hans de Goede <hdegoede@redhat.com> | |
8588 | L: linux-media@vger.kernel.org | |
8589 | T: git git://linuxtv.org/media_tree.git | |
8590 | S: Maintained | |
8591 | F: drivers/media/radio/radio-shark.c | |
8592 | ||
8593 | RADIOSHARK2 RADIO DRIVER | |
8594 | M: Hans de Goede <hdegoede@redhat.com> | |
8595 | L: linux-media@vger.kernel.org | |
8596 | T: git git://linuxtv.org/media_tree.git | |
8597 | S: Maintained | |
8598 | F: drivers/media/radio/radio-shark2.c | |
8599 | F: drivers/media/radio/radio-tea5777.c | |
8600 | ||
1da177e4 | 8601 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8602 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 8603 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 8604 | S: Maintained |
8a61f013 | 8605 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 8606 | |
e7839f25 | 8607 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 8608 | P: rt2x00 project |
b182427e | 8609 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 8610 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 8611 | L: linux-wireless@vger.kernel.org |
95ea3627 ID |
8612 | S: Maintained |
8613 | F: drivers/net/wireless/rt2x00/ | |
8614 | ||
9db5579b | 8615 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 8616 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 8617 | S: Maintained |
679655da JP |
8618 | F: Documentation/blockdev/ramdisk.txt |
8619 | F: drivers/block/brd.c | |
9db5579b | 8620 | |
9e95ce27 | 8621 | RANDOM NUMBER DRIVER |
0624bcaa | 8622 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 8623 | S: Maintained |
679655da | 8624 | F: drivers/char/random.c |
9e95ce27 | 8625 | |
394b701c | 8626 | RAPIDIO SUBSYSTEM |
8b58be88 | 8627 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 8628 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 8629 | S: Maintained |
679655da | 8630 | F: drivers/rapidio/ |
394b701c | 8631 | |
e2d1d6c0 | 8632 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 8633 | L: linux-wireless@vger.kernel.org |
f52a5490 | 8634 | S: Orphan |
679655da | 8635 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
8636 | |
8637 | RCUTORTURE MODULE | |
e0198b29 | 8638 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 8639 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 8640 | L: linux-kernel@vger.kernel.org |
f9094d8e | 8641 | S: Supported |
08deed1e | 8642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 8643 | F: Documentation/RCU/torture.txt |
34e2d560 | 8644 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 8645 | |
c87b9c60 PM |
8646 | RCUTORTURE TEST FRAMEWORK |
8647 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 8648 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8649 | R: Steven Rostedt <rostedt@goodmis.org> |
8650 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 8651 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 8652 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
8653 | S: Supported |
8654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
8655 | F: tools/testing/selftests/rcutorture | |
8656 | ||
c1f766b5 | 8657 | RDC R-321X SoC |
8b58be88 | 8658 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
8659 | S: Maintained |
8660 | ||
db17f395 | 8661 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 8662 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
8663 | L: netdev@vger.kernel.org |
8664 | S: Maintained | |
58565a35 | 8665 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 8666 | |
a09ed661 | 8667 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 8668 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 8669 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 8670 | S: Supported |
679655da | 8671 | F: net/rds/ |
a09ed661 | 8672 | |
595182bc | 8673 | READ-COPY UPDATE (RCU) |
8b58be88 | 8674 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 8675 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8676 | R: Steven Rostedt <rostedt@goodmis.org> |
8677 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 8678 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 8679 | L: linux-kernel@vger.kernel.org |
9fab9787 | 8680 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 8681 | S: Supported |
08deed1e | 8682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 8683 | F: Documentation/RCU/ |
9fab9787 | 8684 | X: Documentation/RCU/torture.txt |
f9094d8e | 8685 | F: include/linux/rcu* |
4102adab PM |
8686 | X: include/linux/srcu.h |
8687 | F: kernel/rcu/ | |
34e2d560 | 8688 | X: kernel/torture.c |
595182bc | 8689 | |
0c86edc0 | 8690 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 8691 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 8692 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 8693 | L: rtc-linux@googlegroups.com |
8a6e2535 | 8694 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 8695 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 8696 | S: Maintained |
679655da JP |
8697 | F: Documentation/rtc.txt |
8698 | F: drivers/rtc/ | |
8699 | F: include/linux/rtc.h | |
c117ab84 | 8700 | F: include/uapi/linux/rtc.h |
0c86edc0 | 8701 | |
0e400c53 MB |
8702 | REALTEK AUDIO CODECS |
8703 | M: Bard Liao <bardliao@realtek.com> | |
8704 | M: Oder Chiou <oder_chiou@realtek.com> | |
8705 | S: Maintained | |
8706 | F: sound/soc/codecs/rt* | |
8707 | F: include/sound/rt*.h | |
8708 | ||
1da177e4 | 8709 | REISERFS FILE SYSTEM |
76c4e5ea | 8710 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 8711 | S: Supported |
679655da | 8712 | F: fs/reiserfs/ |
1da177e4 | 8713 | |
b83a313b | 8714 | REGISTER MAP ABSTRACTION |
b02e48f2 | 8715 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 8716 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
8717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
8718 | S: Supported | |
8719 | F: drivers/base/regmap/ | |
8720 | F: include/linux/regmap.h | |
8721 | ||
400e64df OBC |
8722 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
8723 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 8724 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
8725 | S: Maintained |
8726 | F: drivers/remoteproc/ | |
8727 | F: Documentation/remoteproc.txt | |
6fc26488 | 8728 | F: include/linux/remoteproc.h |
400e64df | 8729 | |
d8115db5 OBC |
8730 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
8731 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
8733 | S: Maintained | |
8734 | F: drivers/rpmsg/ | |
8735 | F: Documentation/rpmsg.txt | |
8736 | F: include/linux/rpmsg.h | |
8737 | ||
1b0fe6be PZ |
8738 | RESET CONTROLLER FRAMEWORK |
8739 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
8740 | S: Maintained | |
8741 | F: drivers/reset/ | |
8742 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 8743 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
8744 | F: include/linux/reset.h |
8745 | F: include/linux/reset-controller.h | |
8746 | ||
e0897645 | 8747 | RFKILL |
8b58be88 | 8748 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 8749 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
8750 | W: http://wireless.kernel.org/ |
8751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
8752 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 8753 | S: Maintained |
505c9247 | 8754 | F: Documentation/rfkill.txt |
80811493 | 8755 | F: net/rfkill/ |
e0897645 | 8756 | |
933685ca TG |
8757 | RHASHTABLE |
8758 | M: Thomas Graf <tgraf@suug.ch> | |
8759 | L: netdev@vger.kernel.org | |
8760 | S: Maintained | |
8761 | F: lib/rhashtable.c | |
8762 | F: include/linux/rhashtable.h | |
8763 | ||
67e054e9 ML |
8764 | RICOH SMARTMEDIA/XD DRIVER |
8765 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8766 | S: Maintained | |
21c26f50 JP |
8767 | F: drivers/mtd/nand/r852.c |
8768 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 8769 | |
92634125 ML |
8770 | RICOH R5C592 MEMORYSTICK DRIVER |
8771 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8772 | S: Maintained | |
8773 | F: drivers/memstick/host/r592.* | |
8774 | ||
27f1d2f9 SA |
8775 | ROCCAT DRIVERS |
8776 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
8777 | W: http://sourceforge.net/projects/roccat/ | |
8778 | S: Maintained | |
8779 | F: drivers/hid/hid-roccat* | |
8780 | F: include/linux/hid-roccat* | |
8781 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
8782 | ||
4b8ac966 JP |
8783 | ROCKER DRIVER |
8784 | M: Jiri Pirko <jiri@resnulli.us> | |
8785 | M: Scott Feldman <sfeldma@gmail.com> | |
8786 | L: netdev@vger.kernel.org | |
8787 | S: Supported | |
8788 | F: drivers/net/ethernet/rocker/ | |
8789 | ||
1da177e4 LT |
8790 | ROCKETPORT DRIVER |
8791 | P: Comtrol Corp. | |
1da177e4 LT |
8792 | W: http://www.comtrol.com |
8793 | S: Maintained | |
679655da | 8794 | F: Documentation/serial/rocket.txt |
c897401b | 8795 | F: drivers/tty/rocket* |
1da177e4 | 8796 | |
7645c2f4 KC |
8797 | ROCKETPORT EXPRESS/INFINITY DRIVER |
8798 | M: Kevin Cernekee <cernekee@gmail.com> | |
8799 | L: linux-serial@vger.kernel.org | |
8800 | S: Odd Fixes | |
8801 | F: drivers/tty/serial/rp2.* | |
8802 | ||
1da177e4 | 8803 | ROSE NETWORK LAYER |
8b58be88 | 8804 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8805 | L: linux-hams@vger.kernel.org |
d34cb28a | 8806 | W: http://www.linux-ax25.org/ |
1da177e4 | 8807 | S: Maintained |
679655da | 8808 | F: include/net/rose.h |
c117ab84 | 8809 | F: include/uapi/linux/rose.h |
679655da | 8810 | F: net/rose/ |
1da177e4 | 8811 | |
91952bc0 AP |
8812 | RTL2830 MEDIA DRIVER |
8813 | M: Antti Palosaari <crope@iki.fi> | |
8814 | L: linux-media@vger.kernel.org | |
8815 | W: http://linuxtv.org/ | |
8816 | W: http://palosaari.fi/linux/ | |
8817 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8818 | T: git git://linuxtv.org/anttip/media_tree.git | |
8819 | S: Maintained | |
8820 | F: drivers/media/dvb-frontends/rtl2830* | |
8821 | ||
27a0aacf AP |
8822 | RTL2832 MEDIA DRIVER |
8823 | M: Antti Palosaari <crope@iki.fi> | |
8824 | L: linux-media@vger.kernel.org | |
8825 | W: http://linuxtv.org/ | |
8826 | W: http://palosaari.fi/linux/ | |
8827 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8828 | T: git git://linuxtv.org/anttip/media_tree.git | |
8829 | S: Maintained | |
8830 | F: drivers/media/dvb-frontends/rtl2832* | |
8831 | ||
ba6e6f6e AP |
8832 | RTL2832_SDR MEDIA DRIVER |
8833 | M: Antti Palosaari <crope@iki.fi> | |
8834 | L: linux-media@vger.kernel.org | |
8835 | W: http://linuxtv.org/ | |
8836 | W: http://palosaari.fi/linux/ | |
8837 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8838 | T: git git://linuxtv.org/anttip/media_tree.git | |
8839 | S: Maintained | |
b4bb1c28 | 8840 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 8841 | |
59840488 | 8842 | RTL8180 WIRELESS DRIVER |
605bebe2 | 8843 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8844 | W: http://wireless.kernel.org/ |
54e5881d | 8845 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 8846 | S: Orphan |
3cfeb0c3 | 8847 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 8848 | |
59840488 | 8849 | RTL8187 WIRELESS DRIVER |
9f0939bf | 8850 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
8851 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
8852 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 8853 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8854 | W: http://wireless.kernel.org/ |
54e5881d | 8855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 8856 | S: Maintained |
3cfeb0c3 | 8857 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 8858 | |
3cf0c8ad LF |
8859 | RTL8192CE WIRELESS DRIVER |
8860 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8861 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
8862 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 8863 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
8864 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
8865 | S: Maintained | |
8866 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 8867 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 8868 | |
9eb8ef74 | 8869 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 8870 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8871 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8872 | S: Maintained |
8a61f013 | 8873 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 8874 | |
1da177e4 | 8875 | S390 |
8b58be88 JP |
8876 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
8877 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 8878 | L: linux-s390@vger.kernel.org |
5238da45 HC |
8879 | W: http://www.ibm.com/developerworks/linux/linux390/ |
8880 | S: Supported | |
679655da | 8881 | F: arch/s390/ |
a968cd3e | 8882 | F: drivers/s390/ |
3bfe6858 JN |
8883 | F: Documentation/s390/ |
8884 | F: Documentation/DocBook/s390* | |
5238da45 | 8885 | |
322986ca SO |
8886 | S390 COMMON I/O LAYER |
8887 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
8888 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
8889 | L: linux-s390@vger.kernel.org | |
8890 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8891 | S: Supported | |
8892 | F: drivers/s390/cio/ | |
8893 | ||
8894 | S390 DASD DRIVER | |
8895 | M: Stefan Weinhuber <wein@de.ibm.com> | |
8896 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
8897 | L: linux-s390@vger.kernel.org | |
8898 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8899 | S: Supported | |
8900 | F: drivers/s390/block/dasd* | |
8901 | F: block/partitions/ibm.c | |
8902 | ||
5238da45 | 8903 | S390 NETWORK DRIVERS |
8b58be88 | 8904 | M: Ursula Braun <ursula.braun@de.ibm.com> |
d58140cc | 8905 | L: linux-s390@vger.kernel.org |
5238da45 HC |
8906 | W: http://www.ibm.com/developerworks/linux/linux390/ |
8907 | S: Supported | |
679655da | 8908 | F: drivers/s390/net/ |
5238da45 | 8909 | |
322986ca SO |
8910 | S390 PCI SUBSYSTEM |
8911 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
8912 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
8913 | L: linux-s390@vger.kernel.org | |
8914 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8915 | S: Supported | |
8916 | F: arch/s390/pci/ | |
8917 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
8918 | ||
feed9b62 | 8919 | S390 ZCRYPT DRIVER |
5c8d0983 | 8920 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 8921 | L: linux-s390@vger.kernel.org |
a968cd3e | 8922 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 8923 | S: Supported |
d5ca6918 | 8924 | F: drivers/s390/crypto/ |
feed9b62 | 8925 | |
5238da45 | 8926 | S390 ZFCP DRIVER |
d38e19d0 | 8927 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 8928 | L: linux-s390@vger.kernel.org |
5238da45 | 8929 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 8930 | S: Supported |
679655da | 8931 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 8932 | |
dd96df2c | 8933 | S390 IUCV NETWORK LAYER |
8b58be88 | 8934 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
8935 | L: linux-s390@vger.kernel.org |
8936 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
8937 | S: Supported | |
679655da JP |
8938 | F: drivers/s390/net/*iucv* |
8939 | F: include/net/iucv/ | |
8940 | F: net/iucv/ | |
dd96df2c | 8941 | |
4dde7f75 | 8942 | S3C24XX SD/MMC Driver |
8b58be88 | 8943 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 8944 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 8945 | S: Supported |
679655da | 8946 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 8947 | |
1f15a229 HV |
8948 | SAA6588 RDS RECEIVER DRIVER |
8949 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8950 | L: linux-media@vger.kernel.org | |
8951 | T: git git://linuxtv.org/media_tree.git | |
8952 | W: http://linuxtv.org | |
8953 | S: Odd Fixes | |
8954 | F: drivers/media/i2c/saa6588* | |
8955 | ||
98ed12e6 | 8956 | SAA7134 VIDEO4LINUX DRIVER |
009a5410 | 8957 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
98ed12e6 MCC |
8958 | L: linux-media@vger.kernel.org |
8959 | W: http://linuxtv.org | |
8960 | T: git git://linuxtv.org/media_tree.git | |
8961 | S: Odd fixes | |
e42bf501 | 8962 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
8963 | F: drivers/media/pci/saa7134/ |
8964 | ||
1da177e4 | 8965 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 8966 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 8967 | L: linux-media@vger.kernel.org |
275ffde4 | 8968 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 8969 | S: Maintained |
90d72ac6 MCC |
8970 | F: drivers/media/common/saa7146/ |
8971 | F: drivers/media/pci/saa7146/ | |
8972 | F: include/media/saa7146* | |
1da177e4 | 8973 | |
92304a40 | 8974 | SAMSUNG LAPTOP DRIVER |
5909c654 | 8975 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
8976 | L: platform-driver-x86@vger.kernel.org |
8977 | S: Maintained | |
8978 | F: drivers/platform/x86/samsung-laptop.c | |
8979 | ||
4a109cc0 | 8980 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 8981 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
8982 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
8983 | S: Supported | |
14430813 | 8984 | F: sound/soc/samsung/ |
4a109cc0 | 8985 | |
0d89a28b | 8986 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 8987 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
8988 | L: linux-fbdev@vger.kernel.org |
8989 | S: Maintained | |
8a61f013 | 8990 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 8991 | |
b40f0632 | 8992 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 8993 | M: Sangbeom Kim <sbkim73@samsung.com> |
b40f0632 | 8994 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
f69d3a17 | 8995 | L: linux-kernel@vger.kernel.org |
b40f0632 | 8996 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
8997 | S: Supported |
8998 | F: drivers/mfd/sec*.c | |
8999 | F: drivers/regulator/s2m*.c | |
9000 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
9001 | F: drivers/clk/clk-s2mps11.c |
9002 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 9003 | F: include/linux/mfd/samsung/ |
b40f0632 KK |
9004 | F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt |
9005 | F: Documentation/devicetree/bindings/mfd/s2mp*.txt | |
f69d3a17 | 9006 | |
038f5c4b SN |
9007 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
9008 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9009 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
9010 | L: linux-media@vger.kernel.org | |
9011 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
9012 | S: Supported | |
9013 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 9014 | |
6fd86ab2 SN |
9015 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
9016 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
9017 | L: linux-media@vger.kernel.org | |
9018 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9019 | S: Maintained | |
9020 | F: drivers/media/platform/s3c-camif/ | |
9021 | F: include/media/s3c_camif.h | |
9022 | ||
b84ef24e AH |
9023 | SAMSUNG S5C73M3 CAMERA DRIVER |
9024 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9025 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9026 | L: linux-media@vger.kernel.org | |
9027 | S: Supported | |
9028 | F: drivers/media/i2c/s5c73m3/* | |
9029 | ||
7d459937 AH |
9030 | SAMSUNG S5K5BAF CAMERA DRIVER |
9031 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9032 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9033 | L: linux-media@vger.kernel.org | |
9034 | S: Supported | |
9035 | F: drivers/media/i2c/s5k5baf.c | |
9036 | ||
c04c674f RB |
9037 | SAMSUNG S3FWRN5 NFC DRIVER |
9038 | M: Robert Baldyga <r.baldyga@samsung.com> | |
9039 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
9040 | S: Supported | |
9041 | F: drivers/nfc/s3fwrn5 | |
9042 | ||
310e39c9 | 9043 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
9044 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
9045 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
9046 | S: Supported |
9047 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9048 | F: drivers/clk/samsung/ | |
9049 | ||
66890ed6 BA |
9050 | SAMSUNG SXGBE DRIVERS |
9051 | M: Byungho An <bh74.an@samsung.com> | |
9052 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
9053 | M: Vipul Pandya <vipul.pandya@samsung.com> |
9054 | S: Supported | |
9055 | L: netdev@vger.kernel.org | |
9056 | F: drivers/net/ethernet/samsung/sxgbe/ | |
9057 | ||
93c537af LM |
9058 | SAMSUNG THERMAL DRIVER |
9059 | M: Lukasz Majewski <l.majewski@samsung.com> | |
9060 | L: linux-pm@vger.kernel.org | |
9061 | L: linux-samsung-soc@vger.kernel.org | |
9062 | S: Supported | |
9063 | T: https://github.com/lmajewski/linux-samsung-thermal.git | |
9064 | F: drivers/thermal/samsung/ | |
9065 | ||
e296cd32 KD |
9066 | SAMSUNG USB2 PHY DRIVER |
9067 | M: Kamil Debski <k.debski@samsung.com> | |
9068 | L: linux-kernel@vger.kernel.org | |
9069 | S: Supported | |
9070 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
9071 | F: Documentation/phy/samsung-usb2.txt | |
9072 | F: drivers/phy/phy-exynos4210-usb2.c | |
9073 | F: drivers/phy/phy-exynos4x12-usb2.c | |
9074 | F: drivers/phy/phy-exynos5250-usb2.c | |
9075 | F: drivers/phy/phy-s5pv210-usb2.c | |
9076 | F: drivers/phy/phy-samsung-usb2.c | |
9077 | F: drivers/phy/phy-samsung-usb2.h | |
9078 | ||
ca749e2a | 9079 | SERIAL DRIVERS |
5e30bbb7 | 9080 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 9081 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 9082 | S: Maintained |
14430813 | 9083 | F: drivers/tty/serial/ |
ca749e2a | 9084 | |
aecb7b64 | 9085 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 9086 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 9087 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 9088 | S: Maintained |
1fb200d6 | 9089 | F: include/linux/dma/dw.h |
3d598f47 | 9090 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 9091 | F: drivers/dma/dw/ |
aecb7b64 | 9092 | |
058999cc LP |
9093 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
9094 | M: Lars Persson <lars.persson@axis.com> | |
9095 | L: netdev@vger.kernel.org | |
9096 | S: Supported | |
9097 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
9098 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
9099 | ||
f9e37137 SJ |
9100 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
9101 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
9102 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
9103 | L: linux-mmc@vger.kernel.org | |
9104 | S: Maintained | |
9105 | F: include/linux/mmc/dw_mmc.h | |
9106 | F: drivers/mmc/host/dw_mmc* | |
9107 | ||
1db121d6 AN |
9108 | THUNDERBOLT DRIVER |
9109 | M: Andreas Noever <andreas.noever@gmail.com> | |
9110 | S: Maintained | |
9111 | F: drivers/thunderbolt/ | |
9112 | ||
9222d247 | 9113 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 9114 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 9115 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9116 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
9118 | S: Supported |
9119 | F: include/linux/clocksource.h | |
9120 | F: include/linux/time.h | |
9121 | F: include/linux/timex.h | |
c117ab84 CEB |
9122 | F: include/uapi/linux/time.h |
9123 | F: include/uapi/linux/timex.h | |
88606e80 TG |
9124 | F: kernel/time/clocksource.c |
9125 | F: kernel/time/time*.c | |
9126 | F: kernel/time/ntp.c | |
7fe5f1c1 | 9127 | F: tools/testing/selftests/timers/ |
88606e80 | 9128 | |
1da177e4 | 9129 | SC1200 WDT DRIVER |
b300645a | 9130 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 9131 | S: Maintained |
679655da | 9132 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
9133 | |
9134 | SCHEDULER | |
dd9b238c | 9135 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 9136 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 9137 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 9139 | S: Maintained |
95c0d71d | 9140 | F: kernel/sched/ |
679655da | 9141 | F: include/linux/sched.h |
c117ab84 | 9142 | F: include/uapi/linux/sched.h |
c2eb505b | 9143 | F: include/linux/wait.h |
1da177e4 | 9144 | |
6bcf6737 | 9145 | SCORE ARCHITECTURE |
ed38665e | 9146 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 9147 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 9148 | W: http://www.sunplus.com |
6bcf6737 | 9149 | S: Supported |
a2681a75 | 9150 | F: arch/score/ |
6bcf6737 | 9151 | |
1da177e4 | 9152 | SCSI CDROM DRIVER |
8b58be88 | 9153 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9154 | L: linux-scsi@vger.kernel.org |
9155 | W: http://www.kernel.dk | |
9156 | S: Maintained | |
679655da | 9157 | F: drivers/scsi/sr* |
1da177e4 | 9158 | |
fb50a83d | 9159 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 9160 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
9161 | L: linux-rdma@vger.kernel.org |
9162 | S: Supported | |
9163 | W: http://www.openfabrics.org | |
9164 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
9165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
9166 | F: drivers/infiniband/ulp/srp/ | |
9167 | F: include/scsi/srp.h | |
9168 | ||
1da177e4 | 9169 | SCSI SG DRIVER |
8b58be88 | 9170 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 9171 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 9172 | W: http://sg.danny.cz/sg |
1da177e4 | 9173 | S: Maintained |
59ab3c93 | 9174 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
9175 | F: drivers/scsi/sg.c |
9176 | F: include/scsi/sg.h | |
1da177e4 LT |
9177 | |
9178 | SCSI SUBSYSTEM | |
0351b8f8 | 9179 | M: "James E.J. Bottomley" <JBottomley@odin.com> |
1da177e4 | 9180 | L: linux-scsi@vger.kernel.org |
0351b8f8 | 9181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
1da177e4 | 9182 | S: Maintained |
679655da JP |
9183 | F: drivers/scsi/ |
9184 | F: include/scsi/ | |
1da177e4 LT |
9185 | |
9186 | SCSI TAPE DRIVER | |
8b58be88 | 9187 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
9188 | L: linux-scsi@vger.kernel.org |
9189 | S: Maintained | |
679655da | 9190 | F: Documentation/scsi/st.txt |
f7269cfc JD |
9191 | F: drivers/scsi/st.* |
9192 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
9193 | |
9194 | SCTP PROTOCOL | |
8b6efb75 | 9195 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 9196 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 9197 | L: linux-sctp@vger.kernel.org |
5f85813c | 9198 | W: http://lksctp.sourceforge.net |
8b6efb75 | 9199 | S: Maintained |
679655da JP |
9200 | F: Documentation/networking/sctp.txt |
9201 | F: include/linux/sctp.h | |
4d58c025 | 9202 | F: include/uapi/linux/sctp.h |
679655da JP |
9203 | F: include/net/sctp/ |
9204 | F: net/sctp/ | |
1da177e4 LT |
9205 | |
9206 | SCx200 CPU SUPPORT | |
8b58be88 | 9207 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9208 | S: Odd Fixes |
679655da | 9209 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 9210 | F: arch/x86/platform/scx200/ |
679655da JP |
9211 | F: drivers/watchdog/scx200_wdt.c |
9212 | F: drivers/i2c/busses/scx200* | |
9213 | F: drivers/mtd/maps/scx200_docflash.c | |
9214 | F: include/linux/scx200.h | |
1662d32c JC |
9215 | |
9216 | SCx200 GPIO DRIVER | |
8b58be88 | 9217 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9218 | S: Maintained |
679655da JP |
9219 | F: drivers/char/scx200_gpio.c |
9220 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
9221 | |
9222 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 9223 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9224 | S: Maintained |
679655da | 9225 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 9226 | |
6a36913a | 9227 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 9228 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
9229 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
9230 | S: Maintained | |
679655da | 9231 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 9232 | |
e7839f25 | 9233 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
7a241d6e | 9234 | L: linux-mmc@vger.kernel.org |
a1cb1d11 | 9235 | S: Orphan |
7a241d6e | 9236 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 9237 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 9238 | |
c04f9d61 KC |
9239 | SECURE COMPUTING |
9240 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
9241 | R: Andy Lutomirski <luto@amacapital.net> |
9242 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
9243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
9244 | S: Supported | |
9245 | F: kernel/seccomp.c | |
9246 | F: include/uapi/linux/seccomp.h | |
9247 | F: include/linux/seccomp.h | |
c99ee51a | 9248 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
9249 | K: \bsecure_computing |
9250 | K: \bTIF_SECCOMP\b | |
9251 | ||
0d1bb41a | 9252 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 9253 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 9254 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 9255 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 9256 | S: Maintained |
dc524882 | 9257 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 9258 | |
c63b3cba | 9259 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 9260 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 9261 | L: spear-devel@list.st.com |
c63b3cba VK |
9262 | L: linux-mmc@vger.kernel.org |
9263 | S: Maintained | |
9264 | F: drivers/mmc/host/sdhci-spear.c | |
9265 | ||
8711cca2 | 9266 | SECURITY SUBSYSTEM |
9b45c0d2 | 9267 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 9268 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 9269 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 9270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 9271 | W: http://kernsec.org/ |
8711cca2 | 9272 | S: Supported |
7d2c86b5 | 9273 | F: security/ |
8711cca2 | 9274 | |
1da177e4 | 9275 | SECURITY CONTACT |
8b58be88 | 9276 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
9277 | S: Supported |
9278 | ||
9279 | SELINUX SECURITY MODULE | |
e0238b4c | 9280 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 9281 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 9282 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 9283 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 9284 | W: http://selinuxproject.org |
5a5f2acf | 9285 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 9286 | S: Supported |
679655da JP |
9287 | F: include/linux/selinux* |
9288 | F: security/selinux/ | |
6bde95ce | 9289 | F: scripts/selinux/ |
1da177e4 | 9290 | |
c1c124e9 JJ |
9291 | APPARMOR SECURITY MODULE |
9292 | M: John Johansen <john.johansen@canonical.com> | |
9293 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
9294 | W: apparmor.wiki.kernel.org | |
9295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
9296 | S: Supported | |
9297 | F: security/apparmor/ | |
9298 | ||
730daa16 KC |
9299 | YAMA SECURITY MODULE |
9300 | M: Kees Cook <keescook@chromium.org> | |
9301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
9302 | S: Supported | |
9303 | F: security/yama/ | |
9304 | ||
cef2cf07 | 9305 | SENSABLE PHANTOM |
8b58be88 | 9306 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 9307 | S: Maintained |
679655da | 9308 | F: drivers/misc/phantom.c |
c117ab84 | 9309 | F: include/uapi/linux/phantom.h |
cef2cf07 | 9310 | |
6733b39a | 9311 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
4627de93 | 9312 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
9d27e216 KM |
9313 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
9314 | M: John Soni Jose <sony.john@avagotech.com> | |
3387f656 | 9315 | L: linux-scsi@vger.kernel.org |
4627de93 | 9316 | W: http://www.avagotech.com |
3387f656 JP |
9317 | S: Supported |
9318 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 9319 | |
6938f855 SP |
9320 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER |
9321 | M: Sathya Perla <sathya.perla@avagotech.com> | |
9322 | M: Ajit Khaparde <ajit.khaparde@avagotech.com> | |
9323 | M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com> | |
9324 | M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com> | |
7d2c86b5 | 9325 | L: netdev@vger.kernel.org |
fea3af67 | 9326 | W: http://www.emulex.com |
7d2c86b5 | 9327 | S: Supported |
9aebddd1 | 9328 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 9329 | |
d2928a8c | 9330 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
9331 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
9332 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
9333 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
9334 | L: linux-rdma@vger.kernel.org |
9335 | W: http://www.emulex.com | |
9336 | S: Supported | |
9337 | F: drivers/infiniband/hw/ocrdma/ | |
9338 | ||
8ceee660 | 9339 | SFC NETWORK DRIVER |
c06f51ea | 9340 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 9341 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 9342 | L: netdev@vger.kernel.org |
8ceee660 | 9343 | S: Supported |
874aeea5 | 9344 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 9345 | |
e2d1d6c0 | 9346 | SGI GRU DRIVER |
cc883afc | 9347 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 9348 | S: Maintained |
679655da | 9349 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
9350 | |
9351 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 9352 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
9353 | L: linux-ia64@vger.kernel.org |
9354 | S: Supported | |
679655da | 9355 | F: Documentation/ia64/serial.txt |
df621252 | 9356 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 9357 | F: include/linux/ioc?.h |
e2d1d6c0 | 9358 | |
75312619 | 9359 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
9360 | M: Cliff Whickman <cpw@sgi.com> |
9361 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 9362 | S: Maintained |
679655da | 9363 | F: drivers/misc/sgi-xp/ |
75312619 | 9364 | |
46eacf3b AP |
9365 | SI2157 MEDIA DRIVER |
9366 | M: Antti Palosaari <crope@iki.fi> | |
9367 | L: linux-media@vger.kernel.org | |
9368 | W: http://linuxtv.org/ | |
9369 | W: http://palosaari.fi/linux/ | |
9370 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9371 | T: git git://linuxtv.org/anttip/media_tree.git | |
9372 | S: Maintained | |
9373 | F: drivers/media/tuners/si2157* | |
9374 | ||
75e2d5ba AP |
9375 | SI2168 MEDIA DRIVER |
9376 | M: Antti Palosaari <crope@iki.fi> | |
9377 | L: linux-media@vger.kernel.org | |
9378 | W: http://linuxtv.org/ | |
9379 | W: http://palosaari.fi/linux/ | |
9380 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9381 | T: git git://linuxtv.org/anttip/media_tree.git | |
9382 | S: Maintained | |
9383 | F: drivers/media/dvb-frontends/si2168* | |
9384 | ||
49cc629d HV |
9385 | SI470X FM RADIO RECEIVER I2C DRIVER |
9386 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9387 | L: linux-media@vger.kernel.org | |
9388 | T: git git://linuxtv.org/media_tree.git | |
9389 | W: http://linuxtv.org | |
9390 | S: Odd Fixes | |
9391 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
9392 | ||
9393 | SI470X FM RADIO RECEIVER USB DRIVER | |
9394 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9395 | L: linux-media@vger.kernel.org | |
9396 | T: git git://linuxtv.org/media_tree.git | |
9397 | W: http://linuxtv.org | |
9398 | S: Maintained | |
9399 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
9400 | F: drivers/media/radio/si470x/radio-si470x.h | |
9401 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
9402 | ||
c937ca03 EV |
9403 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
9404 | M: Eduardo Valentin <edubezval@gmail.com> | |
9405 | L: linux-media@vger.kernel.org | |
9406 | T: git git://linuxtv.org/media_tree.git | |
9407 | W: http://linuxtv.org | |
9408 | S: Odd Fixes | |
99995ded | 9409 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
9410 | |
9411 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
9412 | M: Eduardo Valentin <edubezval@gmail.com> | |
9413 | L: linux-media@vger.kernel.org | |
9414 | T: git git://linuxtv.org/media_tree.git | |
9415 | W: http://linuxtv.org | |
9416 | S: Odd Fixes | |
99995ded DR |
9417 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
9418 | ||
9419 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
9420 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9421 | L: linux-media@vger.kernel.org | |
9422 | T: git git://linuxtv.org/media_tree.git | |
9423 | W: http://linuxtv.org | |
9424 | S: Maintained | |
9425 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 9426 | |
beb91d46 | 9427 | SIANO DVB DRIVER |
009a5410 | 9428 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
beb91d46 MCC |
9429 | L: linux-media@vger.kernel.org |
9430 | W: http://linuxtv.org | |
9431 | T: git git://linuxtv.org/media_tree.git | |
9432 | S: Odd fixes | |
9433 | F: drivers/media/common/siano/ | |
beb91d46 | 9434 | F: drivers/media/usb/siano/ |
beb91d46 | 9435 | F: drivers/media/usb/siano/ |
14430813 | 9436 | F: drivers/media/mmc/siano/ |
beb91d46 | 9437 | |
6f15b602 HG |
9438 | SIMPLEFB FB DRIVER |
9439 | M: Hans de Goede <hdegoede@redhat.com> | |
9440 | L: linux-fbdev@vger.kernel.org | |
9441 | S: Maintained | |
9442 | F: Documentation/devicetree/bindings/video/simple-framebuffer.txt | |
9443 | F: drivers/video/fbdev/simplefb.c | |
9444 | F: include/linux/platform_data/simplefb.h | |
9445 | ||
b618b69c | 9446 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 9447 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9448 | S: Orphan |
b618b69c | 9449 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
9450 | |
9451 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 9452 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9453 | S: Orphan |
b618b69c GL |
9454 | F: drivers/media/platform/sh_vou.c |
9455 | F: include/media/sh_vou.h | |
9456 | ||
6349d997 | 9457 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 9458 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
9459 | L: sfi-devel@simplefirmware.org |
9460 | W: http://simplefirmware.org/ | |
9461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 9462 | S: Supported |
943fc810 | 9463 | F: arch/x86/platform/sfi/ |
6349d997 LB |
9464 | F: drivers/sfi/ |
9465 | F: include/linux/sfi*.h | |
e2d1d6c0 | 9466 | |
1da177e4 LT |
9467 | SIMTEC EB110ATX (Chalice CATS) |
9468 | P: Ben Dooks | |
b16957c6 BD |
9469 | P: Vincent Sanders <vince@simtec.co.uk> |
9470 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9471 | W: http://www.simtec.co.uk/products/EB110ATX/ |
9472 | S: Supported | |
9473 | ||
9474 | SIMTEC EB2410ITX (BAST) | |
9475 | P: Ben Dooks | |
b16957c6 BD |
9476 | P: Vincent Sanders <vince@simtec.co.uk> |
9477 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9478 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
9479 | S: Supported | |
15dba387 JP |
9480 | F: arch/arm/mach-s3c24xx/mach-bast.c |
9481 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
9482 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 9483 | |
4c5adde7 | 9484 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 9485 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 9486 | M: Kevin Hilman <khilman@deeprootsystems.com> |
c9f46a85 | 9487 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 9488 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 9489 | S: Supported |
14430813 | 9490 | F: arch/arm/mach-davinci/ |
046d0a37 | 9491 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 9492 | |
8d4b3f08 | 9493 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 9494 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 9495 | L: linux-media@vger.kernel.org |
8d4b3f08 LP |
9496 | W: http://linuxtv.org/ |
9497 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9498 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 9499 | S: Maintained |
8d4b3f08 LP |
9500 | F: drivers/media/platform/davinci/ |
9501 | F: include/media/davinci/ | |
9502 | ||
417d2e50 | 9503 | TI AM437X VPFE DRIVER |
e43cdb56 | 9504 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 BP |
9505 | L: linux-media@vger.kernel.org |
9506 | W: http://linuxtv.org/ | |
9507 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9508 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9509 | S: Maintained | |
9510 | F: drivers/media/platform/am437x/ | |
9511 | ||
c4c0283a | 9512 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 9513 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a BP |
9514 | L: linux-media@vger.kernel.org |
9515 | W: http://linuxtv.org/ | |
9516 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9517 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9518 | S: Maintained | |
9519 | F: drivers/media/i2c/ov2659.c | |
9520 | F: include/media/ov2659.h | |
9521 | ||
3a6779f5 SM |
9522 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
9523 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
9524 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
9525 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
9526 | L: linux-fbdev@vger.kernel.org | |
9527 | S: Maintained | |
9528 | F: drivers/video/fbdev/sm712* | |
9529 | F: Documentation/fb/sm712fb.txt | |
9530 | ||
92aab3c0 | 9531 | SIS 190 ETHERNET DRIVER |
8b58be88 | 9532 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
9533 | L: netdev@vger.kernel.org |
9534 | S: Maintained | |
8c7de408 | 9535 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 9536 | |
1da177e4 | 9537 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 9538 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 9539 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 9540 | L: netdev@vger.kernel.org |
1da177e4 | 9541 | S: Maintained |
8c7de408 | 9542 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
9543 | |
9544 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 9545 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 9546 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 9547 | S: Maintained |
679655da | 9548 | F: Documentation/fb/sisfb.txt |
8a61f013 | 9549 | F: drivers/video/fbdev/sis/ |
679655da | 9550 | F: include/video/sisfb.h |
1da177e4 LT |
9551 | |
9552 | SIS USB2VGA DRIVER | |
8b58be88 | 9553 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
9554 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
9555 | S: Maintained | |
679655da | 9556 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 9557 | |
415ad26d | 9558 | SLAB ALLOCATOR |
16e943bf | 9559 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 9560 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
9561 | M: David Rientjes <rientjes@google.com> |
9562 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
9563 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
9564 | L: linux-mm@kvack.org |
9565 | S: Maintained | |
679655da | 9566 | F: include/linux/sl?b*.h |
16e943bf | 9567 | F: mm/sl?b* |
415ad26d | 9568 | |
9fab9787 | 9569 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 9570 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 9571 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 9572 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9573 | R: Steven Rostedt <rostedt@goodmis.org> |
9574 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 9575 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
9576 | W: http://www.rdrop.com/users/paulmck/RCU/ |
9577 | S: Supported | |
9578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
9579 | F: include/linux/srcu.h |
9580 | F: kernel/rcu/srcu.c | |
9fab9787 | 9581 | |
66372841 CS |
9582 | SMACK SECURITY MODULE |
9583 | M: Casey Schaufler <casey@schaufler-ca.com> | |
9584 | L: linux-security-module@vger.kernel.org | |
9585 | W: http://schaufler-ca.com | |
9586 | T: git git://git.gitorious.org/smack-next/kernel.git | |
9587 | S: Maintained | |
9588 | F: Documentation/security/Smack.txt | |
9589 | F: security/smack/ | |
9590 | ||
20651e0b | 9591 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
9592 | M: Kevin Hilman <khilman@kernel.org> |
9593 | M: Nishanth Menon <nm@ti.com> | |
9594 | S: Maintained | |
20651e0b | 9595 | F: drivers/power/avs/ |
68ace3e1 KH |
9596 | F: include/linux/power/smartreflex.h |
9597 | L: linux-pm@vger.kernel.org | |
9598 | ||
1da177e4 | 9599 | SMC91x ETHERNET DRIVER |
2f82af08 | 9600 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 9601 | S: Odd Fixes |
ae150435 | 9602 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 9603 | |
e8e31622 SA |
9604 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
9605 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
9606 | L: linux-media@vger.kernel.org | |
9607 | S: Maintained | |
14430813 | 9608 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
9609 | F: include/media/smiapp.h |
9610 | F: drivers/media/i2c/smiapp-pll.c | |
9611 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 9612 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 9613 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 9614 | |
920fa1ff GR |
9615 | SMM665 HARDWARE MONITOR DRIVER |
9616 | M: Guenter Roeck <linux@roeck-us.net> | |
9617 | L: lm-sensors@lm-sensors.org | |
9618 | S: Maintained | |
9619 | F: Documentation/hwmon/smm665 | |
9620 | F: drivers/hwmon/smm665.c | |
9621 | ||
9df7305b | 9622 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 9623 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 9624 | L: lm-sensors@lm-sensors.org |
90b24cfb | 9625 | S: Maintained |
9df7305b SG |
9626 | F: Documentation/hwmon/emc2103 |
9627 | F: drivers/hwmon/emc2103.c | |
9628 | ||
a98d506c HG |
9629 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
9630 | M: Hans de Goede <hdegoede@redhat.com> | |
9631 | L: lm-sensors@lm-sensors.org | |
9632 | S: Supported | |
9633 | F: Documentation/hwmon/sch5627 | |
9634 | F: drivers/hwmon/sch5627.c | |
9635 | ||
6ea884db | 9636 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 9637 | M: Jean Delvare <jdelvare@suse.com> |
6ea884db MH |
9638 | L: lm-sensors@lm-sensors.org |
9639 | S: Maintained | |
679655da JP |
9640 | F: Documentation/hwmon/smsc47b397 |
9641 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 9642 | |
fd9abb3d | 9643 | SMSC911x ETHERNET DRIVER |
90b24cfb | 9644 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 9645 | L: netdev@vger.kernel.org |
90b24cfb | 9646 | S: Maintained |
679655da | 9647 | F: include/linux/smsc911x.h |
ae150435 | 9648 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
9649 | |
9650 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 9651 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 9652 | L: netdev@vger.kernel.org |
90b24cfb | 9653 | S: Maintained |
ae150435 | 9654 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 9655 | |
3c8a63e2 | 9656 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 9657 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 9658 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 9659 | S: Maintained |
8a61f013 | 9660 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 9661 | |
668acf32 | 9662 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 9663 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 9664 | L: linux-media@vger.kernel.org |
275ffde4 | 9665 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 9666 | S: Maintained |
90d72ac6 MCC |
9667 | F: include/media/soc* |
9668 | F: drivers/media/i2c/soc_camera/ | |
9669 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 9670 | |
e2d1d6c0 | 9671 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 9672 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 9673 | S: Maintained |
679655da | 9674 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 9675 | |
e3994db1 | 9676 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
9677 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
9678 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
9679 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 9680 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
9681 | L: linux-media@vger.kernel.org |
9682 | S: Supported | |
9683 | F: drivers/media/pci/solo6x10/ | |
9684 | ||
1da177e4 | 9685 | SOFTWARE RAID (Multiple Disks) SUPPORT |
d8130624 | 9686 | M: Neil Brown <neilb@suse.com> |
1da177e4 | 9687 | L: linux-raid@vger.kernel.org |
524418bb | 9688 | S: Supported |
679655da JP |
9689 | F: drivers/md/ |
9690 | F: include/linux/raid/ | |
c117ab84 | 9691 | F: include/uapi/linux/raid/ |
1da177e4 | 9692 | |
1da177e4 | 9693 | SONIC NETWORK DRIVER |
8b58be88 | 9694 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 9695 | L: netdev@vger.kernel.org |
1da177e4 | 9696 | S: Maintained |
d9fb9f38 | 9697 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 9698 | |
61e115a5 | 9699 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 9700 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
9701 | L: netdev@vger.kernel.org |
9702 | S: Maintained | |
679655da JP |
9703 | F: drivers/ssb/ |
9704 | F: include/linux/ssb/ | |
61e115a5 | 9705 | |
1da177e4 | 9706 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 9707 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 9708 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 9709 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 9710 | S: Maintained |
679655da JP |
9711 | F: Documentation/laptops/sony-laptop.txt |
9712 | F: drivers/char/sonypi.c | |
9713 | F: drivers/platform/x86/sony-laptop.c | |
9714 | F: include/linux/sony-laptop.h | |
1da177e4 | 9715 | |
baf8532a | 9716 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 9717 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
9718 | W: http://tifmxx.berlios.de/ |
9719 | S: Maintained | |
679655da | 9720 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 9721 | |
0ab30494 ML |
9722 | SONY MEMORYSTICK STANDARD SUPPORT |
9723 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9724 | S: Maintained | |
9725 | F: drivers/memstick/core/ms_block.* | |
9726 | ||
1da177e4 | 9727 | SOUND |
8b58be88 | 9728 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 9729 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 9730 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 9731 | W: http://www.alsa-project.org/ |
dde7ad8d | 9732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 9733 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 9734 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 9735 | S: Maintained |
3126a179 JP |
9736 | F: Documentation/sound/ |
9737 | F: include/sound/ | |
c117ab84 | 9738 | F: include/uapi/sound/ |
679655da | 9739 | F: sound/ |
1da177e4 | 9740 | |
33bbe149 MB |
9741 | SOUND - COMPRESSED AUDIO |
9742 | M: Vinod Koul <vinod.koul@intel.com> | |
9743 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
9745 | S: Supported | |
f672f31a | 9746 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 9747 | F: include/sound/compress_driver.h |
f672f31a | 9748 | F: include/uapi/sound/compress_* |
33bbe149 MB |
9749 | F: sound/core/compress_offload.c |
9750 | F: sound/soc/soc-compress.c | |
9751 | ||
bd903bde | 9752 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 9753 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9754 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 9755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 9756 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 9757 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 9758 | S: Supported |
2820f615 | 9759 | F: Documentation/sound/alsa/soc/ |
679655da | 9760 | F: sound/soc/ |
e6e55122 | 9761 | F: include/sound/soc* |
eb1a6af3 | 9762 | |
d7f8761b MB |
9763 | SOUND - DMAENGINE HELPERS |
9764 | M: Lars-Peter Clausen <lars@metafoo.de> | |
9765 | S: Supported | |
9766 | F: include/sound/dmaengine_pcm.h | |
9767 | F: sound/core/pcm_dmaengine.c | |
9768 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
9769 | ||
990a6a99 OS |
9770 | SP2 MEDIA DRIVER |
9771 | M: Olli Salonen <olli.salonen@iki.fi> | |
9772 | L: linux-media@vger.kernel.org | |
9773 | W: http://linuxtv.org/ | |
9774 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9775 | S: Maintained | |
9776 | F: drivers/media/dvb-frontends/sp2* | |
9777 | ||
473321fc | 9778 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 9779 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 9780 | L: sparclinux@vger.kernel.org |
8a6e2535 | 9781 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
9782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
9783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 9784 | S: Maintained |
679655da | 9785 | F: arch/sparc/ |
7765b8bb | 9786 | F: drivers/sbus/ |
1da177e4 | 9787 | |
6404fcca DM |
9788 | SPARC SERIAL DRIVERS |
9789 | M: "David S. Miller" <davem@davemloft.net> | |
9790 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
9791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
9792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 9793 | S: Maintained |
6816383a | 9794 | F: include/linux/sunserialcore.h |
df621252 | 9795 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
9796 | F: drivers/tty/serial/sunhv.c |
9797 | F: drivers/tty/serial/sunsab.c | |
9798 | F: drivers/tty/serial/sunsab.h | |
9799 | F: drivers/tty/serial/sunsu.c | |
9800 | F: drivers/tty/serial/sunzilog.c | |
9801 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 9802 | |
389325b4 CL |
9803 | SPARSE CHECKER |
9804 | M: "Christopher Li" <sparse@chrisli.org> | |
9805 | L: linux-sparse@vger.kernel.org | |
9806 | W: https://sparse.wiki.kernel.org/ | |
9807 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
9808 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
9809 | S: Maintained | |
9810 | F: include/linux/compiler.h | |
9811 | ||
fc0c195a | 9812 | SPEAR PLATFORM SUPPORT |
da89947b | 9813 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 9814 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
9815 | L: spear-devel@list.st.com |
9816 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
9817 | W: http://www.st.com/spear |
9818 | S: Maintained | |
281e192f | 9819 | F: arch/arm/mach-spear/ |
fc0c195a VK |
9820 | |
9821 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 9822 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 VK |
9823 | L: spear-devel@list.st.com |
9824 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
9825 | W: http://www.st.com/spear |
9826 | S: Maintained | |
5df33a62 | 9827 | F: drivers/clk/spear/ |
fc0c195a | 9828 | |
e2d1d6c0 | 9829 | SPI SUBSYSTEM |
b02e48f2 | 9830 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 9831 | L: linux-spi@vger.kernel.org |
e7e4e13c | 9832 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 9833 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 9834 | S: Maintained |
679655da JP |
9835 | F: Documentation/spi/ |
9836 | F: drivers/spi/ | |
9837 | F: include/linux/spi/ | |
c117ab84 | 9838 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 9839 | |
2752e401 | 9840 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 9841 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
9842 | L: netdev@vger.kernel.org |
9843 | S: Supported | |
679655da | 9844 | F: Documentation/networking/spider_net.txt |
8df158ac | 9845 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 9846 | |
e2d1d6c0 | 9847 | SPU FILE SYSTEM |
8b58be88 | 9848 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 9849 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
9850 | W: http://www.ibm.com/developerworks/power/cell/ |
9851 | S: Supported | |
679655da JP |
9852 | F: Documentation/filesystems/spufs.txt |
9853 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 9854 | |
fc555841 | 9855 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 9856 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
9857 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
9858 | W: http://squashfs.org.uk | |
9859 | S: Maintained | |
679655da JP |
9860 | F: Documentation/filesystems/squashfs.txt |
9861 | F: fs/squashfs/ | |
fc555841 | 9862 | |
1da177e4 | 9863 | SRM (Alpha) environment access |
8b58be88 | 9864 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 9865 | S: Maintained |
679655da | 9866 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 9867 | |
26e9a397 | 9868 | STABLE BRANCH |
879a5a00 | 9869 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 9870 | L: stable@vger.kernel.org |
879a5a00 | 9871 | S: Supported |
7b175c46 | 9872 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 9873 | |
26e9a397 | 9874 | STAGING SUBSYSTEM |
879a5a00 | 9875 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 9876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 9877 | L: devel@driverdev.osuosl.org |
879a5a00 | 9878 | S: Supported |
679655da | 9879 | F: drivers/staging/ |
dbc6c2cc | 9880 | |
ebd3d010 JP |
9881 | STAGING - COMEDI |
9882 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 9883 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
9884 | S: Odd Fixes |
9885 | F: drivers/staging/comedi/ | |
9886 | ||
a0138163 JP |
9887 | STAGING - FLARION FT1000 DRIVERS |
9888 | M: Marek Belisko <marek.belisko@gmail.com> | |
9889 | S: Odd Fixes | |
9890 | F: drivers/staging/ft1000/ | |
9891 | ||
6c1bb424 | 9892 | STAGING - INDUSTRIAL IO |
030a13d7 | 9893 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 9894 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
9895 | S: Odd Fixes |
9896 | F: drivers/staging/iio/ | |
9897 | ||
a0138163 JP |
9898 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
9899 | M: Jarod Wilson <jarod@wilsonet.com> | |
9900 | W: http://www.lirc.org/ | |
9901 | S: Odd Fixes | |
b2b0186d | 9902 | F: drivers/staging/media/lirc/ |
a0138163 | 9903 | |
f5e5de1e OD |
9904 | STAGING - LUSTRE PARALLEL FILESYSTEM |
9905 | M: Oleg Drokin <oleg.drokin@intel.com> | |
9906 | M: Andreas Dilger <andreas.dilger@intel.com> | |
9907 | L: HPDD-discuss@lists.01.org (moderated for non-subscribers) | |
9908 | W: http://lustre.opensfs.org/ | |
9909 | S: Maintained | |
9910 | F: drivers/staging/lustre | |
9911 | ||
7c6b6c71 | 9912 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 9913 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
9914 | M: Marc Dietrich <marvin24@gmx.de> |
9915 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 9916 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
9917 | S: Maintained |
9918 | F: drivers/staging/nvec/ | |
9919 | ||
a0138163 | 9920 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
9921 | M: Jens Frederich <jfrederich@gmail.com> |
9922 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
9923 | M: Jon Nettleton <jon.nettleton@gmail.com> |
9924 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 9925 | S: Maintained |
a0138163 JP |
9926 | F: drivers/staging/olpc_dcon/ |
9927 | ||
9928 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER | |
29e7017b JP |
9929 | M: Willy Tarreau <willy@meta-x.org> |
9930 | S: Odd Fixes | |
9931 | F: drivers/staging/panel/ | |
9932 | ||
a0138163 JP |
9933 | STAGING - REALTEK RTL8712U DRIVERS |
9934 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
9935 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
9936 | S: Odd Fixes | |
9937 | F: drivers/staging/rtl8712/ | |
9938 | ||
7591ba8b JS |
9939 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
9940 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
9941 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
9942 | L: linux-wireless@vger.kernel.org | |
9943 | S: Maintained | |
9944 | F: drivers/staging/rtl8723au/ | |
9945 | ||
980ac4d7 SM |
9946 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
9947 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
9948 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
9949 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
9950 | L: linux-fbdev@vger.kernel.org | |
9951 | S: Maintained | |
9952 | F: drivers/staging/sm750fb/ | |
9953 | ||
510fa408 JP |
9954 | STAGING - SLICOSS |
9955 | M: Lior Dotan <liodot@gmail.com> | |
9956 | M: Christopher Harrer <charrer@alacritech.com> | |
9957 | S: Odd Fixes | |
9958 | F: drivers/staging/slicoss/ | |
9959 | ||
a0138163 JP |
9960 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
9961 | M: William Hubbs <w.d.hubbs@gmail.com> | |
9962 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 9963 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 9964 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 9965 | L: speakup@linux-speakup.org |
a0138163 JP |
9966 | W: http://www.linux-speakup.org/ |
9967 | S: Odd Fixes | |
9968 | F: drivers/staging/speakup/ | |
9969 | ||
b3e871ce JP |
9970 | STAGING - VIA VT665X DRIVERS |
9971 | M: Forest Bond <forest@alittletooquiet.net> | |
9972 | S: Odd Fixes | |
9973 | F: drivers/staging/vt665?/ | |
9974 | ||
a30baec1 JK |
9975 | STAGING - WILC1000 WIFI DRIVER |
9976 | M: Johnny Kim <johnny.kim@atmel.com> | |
9977 | M: Rachel Kim <rachel.kim@atmel.com> | |
9978 | M: Dean Lee <dean.lee@atmel.com> | |
9979 | M: Chris Park <chris.park@atmel.com> | |
9980 | L: linux-wireless@vger.kernel.org | |
9981 | S: Supported | |
9982 | F: drivers/staging/wilc1000/ | |
9983 | ||
709bcb07 | 9984 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 9985 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
9986 | S: Odd Fixes |
9987 | F: drivers/staging/xgifb/ | |
9988 | ||
77241056 MM |
9989 | HFI1 DRIVER |
9990 | M: Mike Marciniszyn <infinipath@intel.com> | |
9991 | L: linux-rdma@vger.kernel.org | |
9992 | S: Supported | |
9993 | F: drivers/staging/rdma/hfi1 | |
9994 | ||
1da177e4 | 9995 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 9996 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 9997 | S: Odd Fixes |
9bba23b0 | 9998 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 9999 | |
e2d1d6c0 | 10000 | SUN3/3X |
8b58be88 | 10001 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
10002 | W: http://sammy.net/sun3/ |
10003 | S: Maintained | |
679655da JP |
10004 | F: arch/m68k/kernel/*sun3* |
10005 | F: arch/m68k/sun3*/ | |
10006 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 10007 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 10008 | |
af6a5af8 HG |
10009 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
10010 | M: Hans de Goede <hdegoede@redhat.com> | |
10011 | L: linux-input@vger.kernel.org | |
10012 | S: Maintained | |
10013 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
10014 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
10015 | ||
2bc9ff01 DK |
10016 | SUNDANCE NETWORK DRIVER |
10017 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
10018 | L: netdev@vger.kernel.org | |
10019 | S: Maintained | |
10020 | F: drivers/net/ethernet/dlink/sundance.c | |
10021 | ||
2cbb12a4 | 10022 | SUPERH |
2cbb12a4 | 10023 | L: linux-sh@vger.kernel.org |
8a6e2535 | 10024 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 10025 | S: Orphan |
066069e1 | 10026 | F: Documentation/sh/ |
679655da | 10027 | F: arch/sh/ |
066069e1 | 10028 | F: drivers/sh/ |
1da177e4 | 10029 | |
4480f15b | 10030 | SUSPEND TO RAM |
7fb06082 | 10031 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
10032 | M: Len Brown <len.brown@intel.com> |
10033 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 10034 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 10035 | S: Supported |
679655da JP |
10036 | F: Documentation/power/ |
10037 | F: arch/x86/kernel/acpi/ | |
10038 | F: drivers/base/power/ | |
10039 | F: kernel/power/ | |
10040 | F: include/linux/suspend.h | |
10041 | F: include/linux/freezer.h | |
10042 | F: include/linux/pm.h | |
1da177e4 LT |
10043 | |
10044 | SVGA HANDLING | |
8b58be88 | 10045 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
10046 | L: linux-video@atrey.karlin.mff.cuni.cz |
10047 | S: Maintained | |
679655da JP |
10048 | F: Documentation/svga.txt |
10049 | F: arch/x86/boot/video* | |
1da177e4 | 10050 | |
6e28b761 KRW |
10051 | SWIOTLB SUBSYSTEM |
10052 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
10053 | L: linux-kernel@vger.kernel.org | |
10054 | S: Supported | |
10055 | F: lib/swiotlb.c | |
10056 | F: arch/*/kernel/pci-swiotlb.c | |
10057 | F: include/linux/swiotlb.h | |
10058 | ||
007f790c JP |
10059 | SWITCHDEV |
10060 | M: Jiri Pirko <jiri@resnulli.us> | |
10061 | L: netdev@vger.kernel.org | |
10062 | S: Supported | |
10063 | F: net/switchdev/ | |
10064 | F: include/net/switchdev.h | |
10065 | ||
db8e35d5 VG |
10066 | SYNOPSYS ARC ARCHITECTURE |
10067 | M: Vineet Gupta <vgupta@synopsys.com> | |
db8e35d5 VG |
10068 | S: Supported |
10069 | F: arch/arc/ | |
9b28829d | 10070 | F: Documentation/devicetree/bindings/arc/* |
c6a0fe4a | 10071 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 10072 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 10073 | |
556cc1c5 AB |
10074 | SYNOPSYS ARC SDP platform support |
10075 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
10076 | S: Supported | |
10077 | F: arch/arc/plat-axs10x | |
10078 | F: arch/arc/boot/dts/ax* | |
10079 | F: Documentation/devicetree/bindings/arc/axs10* | |
10080 | ||
6c284c9a LJ |
10081 | SYSTEM CONFIGURATION (SYSCON) |
10082 | M: Lee Jones <lee.jones@linaro.org> | |
10083 | M: Arnd Bergmann <arnd@arndb.de> | |
10084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
10085 | S: Supported | |
10086 | F: drivers/mfd/syscon.c | |
10087 | ||
1da177e4 | 10088 | SYSV FILESYSTEM |
8b58be88 | 10089 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 10090 | S: Maintained |
679655da JP |
10091 | F: Documentation/filesystems/sysv-fs.txt |
10092 | F: fs/sysv/ | |
10093 | F: include/linux/sysv_fs.h | |
1da177e4 | 10094 | |
86cfa7fc | 10095 | TARGET SUBSYSTEM |
9c3646d1 | 10096 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 10097 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 10098 | L: target-devel@vger.kernel.org |
86cfa7fc | 10099 | W: http://www.linux-iscsi.org |
cf015e9f | 10100 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 10101 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
10102 | S: Supported |
10103 | F: drivers/target/ | |
10104 | F: include/target/ | |
10105 | F: Documentation/target/ | |
10106 | ||
4e68852d | 10107 | TASKSTATS STATISTICS INTERFACE |
185e595f | 10108 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 10109 | S: Maintained |
679655da JP |
10110 | F: Documentation/accounting/taskstats* |
10111 | F: include/linux/taskstats* | |
10112 | F: kernel/taskstats.c | |
4e68852d | 10113 | |
781b456a | 10114 | TC CLASSIFIER |
f935f3f8 | 10115 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
10116 | L: netdev@vger.kernel.org |
10117 | S: Maintained | |
679655da | 10118 | F: include/net/pkt_cls.h |
c117ab84 | 10119 | F: include/uapi/linux/pkt_cls.h |
679655da | 10120 | F: net/sched/ |
781b456a | 10121 | |
5067f08a | 10122 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
10123 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
10124 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
10125 | W: http://tcp-lp-mod.sourceforge.net/ |
10126 | S: Maintained | |
679655da | 10127 | F: net/ipv4/tcp_lp.c |
5067f08a | 10128 | |
91952bc0 AP |
10129 | TDA10071 MEDIA DRIVER |
10130 | M: Antti Palosaari <crope@iki.fi> | |
10131 | L: linux-media@vger.kernel.org | |
10132 | W: http://linuxtv.org/ | |
10133 | W: http://palosaari.fi/linux/ | |
10134 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10135 | T: git git://linuxtv.org/anttip/media_tree.git | |
10136 | S: Maintained | |
10137 | F: drivers/media/dvb-frontends/tda10071* | |
10138 | ||
10139 | TDA18212 MEDIA DRIVER | |
10140 | M: Antti Palosaari <crope@iki.fi> | |
10141 | L: linux-media@vger.kernel.org | |
10142 | W: http://linuxtv.org/ | |
10143 | W: http://palosaari.fi/linux/ | |
10144 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10145 | T: git git://linuxtv.org/anttip/media_tree.git | |
10146 | S: Maintained | |
10147 | F: drivers/media/tuners/tda18212* | |
10148 | ||
10149 | TDA18218 MEDIA DRIVER | |
10150 | M: Antti Palosaari <crope@iki.fi> | |
10151 | L: linux-media@vger.kernel.org | |
10152 | W: http://linuxtv.org/ | |
10153 | W: http://palosaari.fi/linux/ | |
10154 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10155 | T: git git://linuxtv.org/anttip/media_tree.git | |
10156 | S: Maintained | |
10157 | F: drivers/media/tuners/tda18218* | |
10158 | ||
3b2f6aba MK |
10159 | TDA18271 MEDIA DRIVER |
10160 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10161 | L: linux-media@vger.kernel.org | |
10162 | W: http://linuxtv.org/ | |
10163 | W: http://github.com/mkrufky | |
10164 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10165 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10166 | S: Maintained | |
10167 | F: drivers/media/tuners/tda18271* | |
10168 | ||
e48307a9 MK |
10169 | TDA827x MEDIA DRIVER |
10170 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10171 | L: linux-media@vger.kernel.org | |
10172 | W: http://linuxtv.org/ | |
10173 | W: http://github.com/mkrufky | |
10174 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10175 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10176 | S: Maintained | |
10177 | F: drivers/media/tuners/tda8290.* | |
10178 | ||
66cf9212 MK |
10179 | TDA8290 MEDIA DRIVER |
10180 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10181 | L: linux-media@vger.kernel.org | |
10182 | W: http://linuxtv.org/ | |
10183 | W: http://github.com/mkrufky | |
10184 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10185 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10186 | S: Maintained | |
10187 | F: drivers/media/tuners/tda8290.* | |
10188 | ||
4b9fba30 HV |
10189 | TDA9840 MEDIA DRIVER |
10190 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10191 | L: linux-media@vger.kernel.org | |
10192 | T: git git://linuxtv.org/media_tree.git | |
10193 | W: http://linuxtv.org | |
10194 | S: Maintained | |
10195 | F: drivers/media/i2c/tda9840* | |
10196 | ||
2cb654fd | 10197 | TEA5761 TUNER DRIVER |
009a5410 | 10198 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd MCC |
10199 | L: linux-media@vger.kernel.org |
10200 | W: http://linuxtv.org | |
10201 | T: git git://linuxtv.org/media_tree.git | |
10202 | S: Odd fixes | |
10203 | F: drivers/media/tuners/tea5761.* | |
10204 | ||
10205 | TEA5767 TUNER DRIVER | |
009a5410 | 10206 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd MCC |
10207 | L: linux-media@vger.kernel.org |
10208 | W: http://linuxtv.org | |
10209 | T: git git://linuxtv.org/media_tree.git | |
10210 | S: Maintained | |
10211 | F: drivers/media/tuners/tea5767.* | |
10212 | ||
4b9fba30 HV |
10213 | TEA6415C MEDIA DRIVER |
10214 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10215 | L: linux-media@vger.kernel.org | |
10216 | T: git git://linuxtv.org/media_tree.git | |
10217 | W: http://linuxtv.org | |
10218 | S: Maintained | |
10219 | F: drivers/media/i2c/tea6415c* | |
10220 | ||
10221 | TEA6420 MEDIA DRIVER | |
10222 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10223 | L: linux-media@vger.kernel.org | |
10224 | T: git git://linuxtv.org/media_tree.git | |
10225 | W: http://linuxtv.org | |
10226 | S: Maintained | |
10227 | F: drivers/media/i2c/tea6420* | |
10228 | ||
3d249d4c | 10229 | TEAM DRIVER |
dca9ab92 | 10230 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
10231 | L: netdev@vger.kernel.org |
10232 | S: Supported | |
10233 | F: drivers/net/team/ | |
10234 | F: include/linux/if_team.h | |
c117ab84 | 10235 | F: include/uapi/linux/if_team.h |
3d249d4c | 10236 | |
7d029125 | 10237 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 10238 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
10239 | S: Maintained |
10240 | F: arch/x86/platform/ts5500/ | |
10241 | ||
40ad4a30 SY |
10242 | TECHNOTREND USB IR RECEIVER |
10243 | M: Sean Young <sean@mess.org> | |
10244 | L: linux-media@vger.kernel.org | |
10245 | S: Maintained | |
10246 | F: drivers/media/rc/ttusbir.c | |
10247 | ||
adabdb0c | 10248 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 10249 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 10250 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 10251 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 10252 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 10253 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 10254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 10255 | S: Supported |
bbbe96ed | 10256 | N: [^a-z]tegra |
84b9414b | 10257 | |
adabdb0c SW |
10258 | TEGRA CLOCK DRIVER |
10259 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
10260 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
10261 | S: Supported | |
10262 | F: drivers/clk/tegra/ | |
10263 | ||
10264 | TEGRA DMA DRIVER | |
10265 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10266 | S: Supported | |
10267 | F: drivers/dma/tegra20-apb-dma.c | |
10268 | ||
adabdb0c SW |
10269 | TEGRA I2C DRIVER |
10270 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10271 | S: Supported | |
10272 | F: drivers/i2c/busses/i2c-tegra.c | |
10273 | ||
10274 | TEGRA IOMMU DRIVERS | |
10275 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
10276 | S: Supported | |
10277 | F: drivers/iommu/tegra* | |
10278 | ||
10279 | TEGRA KBC DRIVER | |
10280 | M: Rakesh Iyer <riyer@nvidia.com> | |
10281 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10282 | S: Supported | |
10283 | F: drivers/input/keyboard/tegra-kbc.c | |
10284 | ||
adabdb0c SW |
10285 | TEGRA PWM DRIVER |
10286 | M: Thierry Reding <thierry.reding@gmail.com> | |
10287 | S: Supported | |
10288 | F: drivers/pwm/pwm-tegra.c | |
10289 | ||
10290 | TEGRA SERIAL DRIVER | |
10291 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10292 | S: Supported | |
10293 | F: drivers/tty/serial/serial-tegra.c | |
10294 | ||
10295 | TEGRA SPI DRIVER | |
10296 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10297 | S: Supported | |
10298 | F: drivers/spi/spi-tegra* | |
10299 | ||
1a348ccc | 10300 | TEHUTI ETHERNET DRIVER |
8b58be88 | 10301 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
10302 | L: netdev@vger.kernel.org |
10303 | S: Supported | |
ef7f5429 | 10304 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 10305 | |
4e68852d | 10306 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 10307 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 10308 | S: Supported |
679655da | 10309 | F: drivers/char/tlclk.c |
4e68852d | 10310 | |
4480f15b | 10311 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 10312 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
10313 | M: Max Filippov <jcmvbkbc@gmail.com> |
10314 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 10315 | S: Maintained |
679655da | 10316 | F: arch/xtensa/ |
3dc99857 | 10317 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 10318 | |
5313ba66 HV |
10319 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
10320 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10321 | L: linux-media@vger.kernel.org | |
10322 | T: git git://linuxtv.org/media_tree.git | |
10323 | W: http://linuxtv.org | |
10324 | S: Maintained | |
10325 | F: drivers/media/radio/radio-raremono.c | |
10326 | ||
d3fb6955 | 10327 | THERMAL |
b75f0050 | 10328 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 10329 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
10330 | L: linux-pm@vger.kernel.org |
10331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
10332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
10333 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
10334 | S: Supported | |
10335 | F: drivers/thermal/ | |
10336 | F: include/linux/thermal.h | |
af6c9f16 | 10337 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
10338 | F: include/linux/cpu_cooling.h |
10339 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 10340 | |
30ba2fbd VD |
10341 | THINGM BLINK(1) USB RGB LED DRIVER |
10342 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
10343 | S: Maintained | |
10344 | F: drivers/hid/hid-thingm.c | |
10345 | ||
4e68852d | 10346 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 10347 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 10348 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 10349 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
10350 | W: http://ibm-acpi.sourceforge.net |
10351 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 10352 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 10353 | S: Maintained |
679655da | 10354 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 10355 | |
1b46f2a2 | 10356 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 10357 | M: Eduardo Valentin <edubezval@gmail.com> |
1b46f2a2 | 10358 | L: linux-pm@vger.kernel.org |
531ff13e | 10359 | L: linux-omap@vger.kernel.org |
5a723e81 | 10360 | S: Maintained |
794b2e25 | 10361 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 10362 | |
0c7665c3 MF |
10363 | TI CDCE706 CLOCK DRIVER |
10364 | M: Max Filippov <jcmvbkbc@gmail.com> | |
10365 | S: Maintained | |
10366 | F: drivers/clk/clk-cdce706.c | |
10367 | ||
49b6a5e3 TK |
10368 | TI CLOCK DRIVER |
10369 | M: Tero Kristo <t-kristo@ti.com> | |
10370 | L: linux-omap@vger.kernel.org | |
10371 | S: Maintained | |
10372 | F: drivers/clk/ti/ | |
10373 | F: include/linux/clk/ti.h | |
10374 | ||
4020f2d7 | 10375 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 10376 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 10377 | S: Maintained |
679655da JP |
10378 | F: drivers/misc/tifm* |
10379 | F: drivers/mmc/host/tifm_sd.c | |
10380 | F: include/linux/tifm.h | |
4020f2d7 | 10381 | |
e0c52404 | 10382 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 10383 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
10384 | L: linux-kernel@vger.kernel.org |
10385 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10386 | S: Maintained | |
10387 | F: drivers/soc/ti/* | |
10388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
10389 | ||
10390 | ||
152ad442 SR |
10391 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
10392 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 10393 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
10394 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10395 | S: Maintained | |
10396 | F: sound/soc/codecs/lm49453* | |
d392dead | 10397 | F: sound/soc/codecs/isabelle* |
152ad442 | 10398 | |
0edd807d KM |
10399 | TI LP855x BACKLIGHT DRIVER |
10400 | M: Milo Kim <milo.kim@ti.com> | |
10401 | S: Maintained | |
10402 | F: Documentation/backlight/lp855x-driver.txt | |
10403 | F: drivers/video/backlight/lp855x_bl.c | |
10404 | F: include/linux/platform_data/lp855x.h | |
10405 | ||
faf13f6d KM |
10406 | TI LP8727 CHARGER DRIVER |
10407 | M: Milo Kim <milo.kim@ti.com> | |
10408 | S: Maintained | |
10409 | F: drivers/power/lp8727_charger.c | |
10410 | F: include/linux/platform_data/lp8727.h | |
10411 | ||
22f1229f KM |
10412 | TI LP8788 MFD DRIVER |
10413 | M: Milo Kim <milo.kim@ti.com> | |
10414 | S: Maintained | |
10415 | F: drivers/iio/adc/lp8788_adc.c | |
10416 | F: drivers/leds/leds-lp8788.c | |
10417 | F: drivers/mfd/lp8788*.c | |
10418 | F: drivers/power/lp8788-charger.c | |
10419 | F: drivers/regulator/lp8788-*.c | |
10420 | F: include/linux/mfd/lp8788*.h | |
10421 | ||
84640e27 KM |
10422 | TI NETCP ETHERNET DRIVER |
10423 | M: Wingman Kwok <w-kwok2@ti.com> | |
10424 | M: Murali Karicheri <m-karicheri2@ti.com> | |
10425 | L: netdev@vger.kernel.org | |
10426 | S: Maintained | |
10427 | F: drivers/net/ethernet/ti/netcp* | |
10428 | ||
217e0ca9 KC |
10429 | TI TAS571X FAMILY ASoC CODEC DRIVER |
10430 | M: Kevin Cernekee <cernekee@chromium.org> | |
10431 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10432 | S: Odd Fixes | |
10433 | F: sound/soc/codecs/tas571x* | |
10434 | ||
dd5e8e6b | 10435 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 10436 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
10437 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10438 | S: Maintained | |
10439 | F: sound/soc/codecs/twl4030* | |
10440 | ||
90921014 | 10441 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
10442 | L: linux-wireless@vger.kernel.org |
10443 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
10444 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
10445 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 10446 | S: Orphan |
90921014 LC |
10447 | F: drivers/net/wireless/ti/ |
10448 | F: include/linux/wl12xx.h | |
10449 | ||
e86eaa3a | 10450 | TIPC NETWORK LAYER |
8b58be88 | 10451 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 10452 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
10453 | L: netdev@vger.kernel.org (core kernel code) |
10454 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 10455 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 10456 | S: Maintained |
c117ab84 | 10457 | F: include/uapi/linux/tipc*.h |
679655da | 10458 | F: net/tipc/ |
e86eaa3a | 10459 | |
867e359b | 10460 | TILE ARCHITECTURE |
c47b15c4 | 10461 | M: Chris Metcalf <cmetcalf@ezchip.com> |
740e1433 | 10462 | W: http://www.ezchip.com/scm/ |
867e359b CM |
10463 | S: Supported |
10464 | F: arch/tile/ | |
6b940606 | 10465 | F: drivers/char/tile-srom.c |
5c770755 | 10466 | F: drivers/edac/tile_edac.c |
6b940606 CM |
10467 | F: drivers/net/ethernet/tile/ |
10468 | F: drivers/rtc/rtc-tile.c | |
10469 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 10470 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
10471 | F: drivers/usb/host/*-tilegx.c |
10472 | F: include/linux/usb/tilegx.h | |
867e359b | 10473 | |
1da177e4 | 10474 | TLAN NETWORK DRIVER |
8b58be88 | 10475 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 10476 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
10477 | W: http://sourceforge.net/projects/tlan/ |
10478 | S: Maintained | |
679655da | 10479 | F: Documentation/networking/tlan.txt |
b544dbac | 10480 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 10481 | |
d74db3b2 | 10482 | TOMOYO SECURITY MODULE |
8b58be88 JP |
10483 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
10484 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
10485 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
10486 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
10487 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
10488 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
10489 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 10490 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 10491 | S: Maintained |
679655da | 10492 | F: security/tomoyo/ |
d74db3b2 | 10493 | |
9caeb532 | 10494 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 10495 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 10496 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
10497 | S: Maintained |
10498 | F: drivers/platform/x86/topstar-laptop.c | |
10499 | ||
1da177e4 | 10500 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 10501 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 10502 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 10503 | S: Maintained |
679655da | 10504 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 10505 | |
0a63ca11 AA |
10506 | TOSHIBA BLUETOOTH DRIVER |
10507 | M: Azael Avalos <coproscefalo@gmail.com> | |
10508 | L: platform-driver-x86@vger.kernel.org | |
10509 | S: Maintained | |
10510 | F: drivers/platform/x86/toshiba_bluetooth.c | |
10511 | ||
10512 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
10513 | M: Azael Avalos <coproscefalo@gmail.com> | |
10514 | L: platform-driver-x86@vger.kernel.org | |
10515 | S: Maintained | |
10516 | F: drivers/platform/x86/toshiba_haps.c | |
10517 | ||
1da177e4 | 10518 | TOSHIBA SMM DRIVER |
8b58be88 | 10519 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
10520 | W: http://www.buzzard.org.uk/toshiba/ |
10521 | S: Maintained | |
679655da JP |
10522 | F: drivers/char/toshiba.c |
10523 | F: include/linux/toshiba.h | |
c117ab84 | 10524 | F: include/uapi/linux/toshiba.h |
1da177e4 | 10525 | |
d32d9864 MR |
10526 | TOSHIBA TC358743 DRIVER |
10527 | M: Mats Randgaard <matrandg@cisco.com> | |
10528 | L: linux-media@vger.kernel.org | |
10529 | S: Maintained | |
10530 | F: drivers/media/i2c/tc358743* | |
10531 | F: include/media/tc358743.h | |
10532 | ||
d719f900 | 10533 | TMIO MMC DRIVER |
c4b13fb0 | 10534 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 10535 | L: linux-mmc@vger.kernel.org |
d719f900 | 10536 | S: Maintained |
d1057c40 GL |
10537 | F: drivers/mmc/host/tmio_mmc* |
10538 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
10539 | F: include/linux/mmc/tmio.h | |
10540 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 10541 | |
917cc4e6 GR |
10542 | TMP401 HARDWARE MONITOR DRIVER |
10543 | M: Guenter Roeck <linux@roeck-us.net> | |
10544 | L: lm-sensors@lm-sensors.org | |
10545 | S: Maintained | |
10546 | F: Documentation/hwmon/tmp401 | |
10547 | F: drivers/hwmon/tmp401.c | |
10548 | ||
98f32602 | 10549 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 10550 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
10551 | L: linux-mm@kvack.org |
10552 | S: Maintained | |
10553 | F: include/linux/shmem_fs.h | |
10554 | F: mm/shmem.c | |
10555 | ||
45f95b53 | 10556 | TM6000 VIDEO4LINUX DRIVER |
009a5410 | 10557 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
45f95b53 MCC |
10558 | L: linux-media@vger.kernel.org |
10559 | W: http://linuxtv.org | |
10560 | T: git git://linuxtv.org/media_tree.git | |
10561 | S: Odd fixes | |
10562 | F: drivers/media/usb/tm6000/ | |
10563 | ||
c65fde19 HV |
10564 | TW68 VIDEO4LINUX DRIVER |
10565 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10566 | L: linux-media@vger.kernel.org | |
10567 | T: git git://linuxtv.org/media_tree.git | |
10568 | W: http://linuxtv.org | |
10569 | S: Odd Fixes | |
10570 | F: drivers/media/pci/tw68/ | |
10571 | ||
4e68852d | 10572 | TPM DEVICE DRIVER |
901486b8 | 10573 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 10574 | M: Marcel Selhorst <tpmdd@selhorst.net> |
ce93b4b0 | 10575 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 10576 | W: http://tpmdd.sourceforge.net |
63a10dfd | 10577 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
f78c81b4 PH |
10578 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
10579 | T: https://github.com/PeterHuewe/linux-tpmdd | |
4e68852d | 10580 | S: Maintained |
679655da | 10581 | F: drivers/char/tpm/ |
4e68852d | 10582 | |
1a0f1b27 AL |
10583 | TPM IBM_VTPM DEVICE DRIVER |
10584 | M: Ashley Lai <ashleydlai@gmail.com> | |
10585 | W: http://tpmdd.sourceforge.net | |
10586 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
10587 | S: Maintained | |
10588 | F: drivers/char/tpm/tpm_ibmvtpm* | |
10589 | ||
d6f005a1 JP |
10590 | TRACING |
10591 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 10592 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 10593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
10594 | S: Maintained |
10595 | F: Documentation/trace/ftrace.txt | |
10596 | F: arch/*/*/*/ftrace.h | |
10597 | F: arch/*/kernel/ftrace.c | |
10598 | F: include/*/ftrace.h | |
10599 | F: include/linux/trace*.h | |
10600 | F: include/trace/ | |
10601 | F: kernel/trace/ | |
6e68e6c5 | 10602 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 10603 | |
1da177e4 | 10604 | TRIVIAL PATCHES |
8b58be88 | 10605 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 10606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 10607 | S: Maintained |
86ef925f | 10608 | K: ^Subject:.*(?i)trivial |
1da177e4 | 10609 | |
4e68852d | 10610 | TTY LAYER |
879a5a00 | 10611 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 10612 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 10613 | S: Supported |
08deed1e | 10614 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 10615 | F: Documentation/serial/ |
8dd5d2f1 | 10616 | F: drivers/tty/ |
df621252 | 10617 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
10618 | F: include/linux/serial_core.h |
10619 | F: include/linux/serial.h | |
10620 | F: include/linux/tty.h | |
c117ab84 CEB |
10621 | F: include/uapi/linux/serial_core.h |
10622 | F: include/uapi/linux/serial.h | |
10623 | F: include/uapi/linux/tty.h | |
4e68852d | 10624 | |
91952bc0 AP |
10625 | TUA9001 MEDIA DRIVER |
10626 | M: Antti Palosaari <crope@iki.fi> | |
10627 | L: linux-media@vger.kernel.org | |
10628 | W: http://linuxtv.org/ | |
10629 | W: http://palosaari.fi/linux/ | |
10630 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10631 | T: git git://linuxtv.org/anttip/media_tree.git | |
10632 | S: Maintained | |
10633 | F: drivers/media/tuners/tua9001* | |
10634 | ||
740db6d7 | 10635 | TULIP NETWORK DRIVERS |
8b58be88 | 10636 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
10637 | L: netdev@vger.kernel.org |
10638 | S: Maintained | |
0f04e2aa | 10639 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
10640 | |
10641 | TUN/TAP driver | |
ba57b6f2 | 10642 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
10643 | W: http://vtun.sourceforge.net/tun |
10644 | S: Maintained | |
679655da JP |
10645 | F: Documentation/networking/tuntap.txt |
10646 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 10647 | |
b454cc66 | 10648 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 10649 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
10650 | M: Ralf Baechle <ralf@linux-mips.org> |
10651 | L: linux-mips@linux-mips.org | |
10652 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 10653 | S: Maintained |
679655da JP |
10654 | F: drivers/tc/ |
10655 | F: include/linux/tc.h | |
b454cc66 | 10656 | |
1da177e4 | 10657 | U14-34F SCSI DRIVER |
8b58be88 | 10658 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
10659 | L: linux-scsi@vger.kernel.org |
10660 | S: Maintained | |
679655da | 10661 | F: drivers/scsi/u14-34f.c |
1da177e4 | 10662 | |
e2d1d6c0 | 10663 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 10664 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 10665 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 10666 | L: linux-mtd@lists.infradead.org |
e2966cbe | 10667 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
10668 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
10669 | S: Maintained | |
679655da JP |
10670 | F: Documentation/filesystems/ubifs.txt |
10671 | F: fs/ubifs/ | |
e2d1d6c0 | 10672 | |
e1632fa2 | 10673 | UCLINUX (M68KNOMMU AND COLDFIRE) |
8b58be88 | 10674 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 | 10675 | W: http://www.uclinux.org/ |
e1632fa2 | 10676 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 10677 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 10678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 10679 | S: Maintained |
e1632fa2 GU |
10680 | F: arch/m68k/coldfire/ |
10681 | F: arch/m68k/68*/ | |
61bc02bb JP |
10682 | F: arch/m68k/*/*_no.* |
10683 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 10684 | |
1da177e4 | 10685 | UDF FILESYSTEM |
d8130624 | 10686 | M: Jan Kara <jack@suse.com> |
1da177e4 | 10687 | S: Maintained |
679655da JP |
10688 | F: Documentation/filesystems/udf.txt |
10689 | F: fs/udf/ | |
1da177e4 | 10690 | |
cc2020e6 | 10691 | UFS FILESYSTEM |
8b58be88 | 10692 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 10693 | S: Maintained |
679655da JP |
10694 | F: Documentation/filesystems/ufs.txt |
10695 | F: fs/ufs/ | |
cc2020e6 | 10696 | |
0a09d3ab DH |
10697 | UHID USERSPACE HID IO DRIVER: |
10698 | M: David Herrmann <dh.herrmann@googlemail.com> | |
10699 | L: linux-input@vger.kernel.org | |
10700 | S: Maintained | |
10701 | F: drivers/hid/uhid.c | |
c117ab84 | 10702 | F: include/uapi/linux/uhid.h |
0a09d3ab | 10703 | |
18332a80 | 10704 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 10705 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 10706 | S: Orphan |
355ffe69 | 10707 | F: drivers/uwb/ |
679655da JP |
10708 | F: include/linux/uwb.h |
10709 | F: include/linux/uwb/ | |
18332a80 | 10710 | |
b31d8273 G |
10711 | UNICORE32 ARCHITECTURE: |
10712 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
10713 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
10714 | S: Maintained | |
ceebf4d5 | 10715 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
10716 | F: arch/unicore32/ |
10717 | ||
d8379ab1 TF |
10718 | UNIFDEF |
10719 | M: Tony Finch <dot@dotat.at> | |
10720 | W: http://dotat.at/prog/unifdef | |
10721 | S: Maintained | |
10722 | F: scripts/unifdef.c | |
10723 | ||
1da177e4 | 10724 | UNIFORM CDROM DRIVER |
8b58be88 | 10725 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10726 | W: http://www.kernel.dk |
10727 | S: Maintained | |
679655da JP |
10728 | F: Documentation/cdrom/ |
10729 | F: drivers/cdrom/cdrom.c | |
10730 | F: include/linux/cdrom.h | |
c117ab84 | 10731 | F: include/uapi/linux/cdrom.h |
1da177e4 | 10732 | |
56df0122 | 10733 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
10734 | M: Benjamin Romer <benjamin.romer@unisys.com> |
10735 | M: David Kershner <david.kershner@unisys.com> | |
10736 | L: sparmaintainer@unisys.com (Unisys internal) | |
10737 | S: Supported | |
10738 | F: drivers/staging/unisys/ | |
56df0122 | 10739 | |
9941fa6e VH |
10740 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
10741 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
10742 | L: linux-scsi@vger.kernel.org |
10743 | S: Supported | |
10744 | F: Documentation/scsi/ufs.txt | |
10745 | F: drivers/scsi/ufs/ | |
10746 | ||
e2d1d6c0 | 10747 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 10748 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 10749 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
10750 | W: http://www.linux-mtd.infradead.org/ |
10751 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 10752 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 10753 | S: Supported |
80811493 | 10754 | F: drivers/mtd/ubi/ |
679655da | 10755 | F: include/linux/mtd/ubi.h |
c117ab84 | 10756 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 10757 | |
1da177e4 | 10758 | USB ACM DRIVER |
61eee9a7 | 10759 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 10760 | L: linux-usb@vger.kernel.org |
1da177e4 | 10761 | S: Maintained |
679655da JP |
10762 | F: Documentation/usb/acm.txt |
10763 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 10764 | |
b7d572e1 PF |
10765 | USB AR5523 WIRELESS DRIVER |
10766 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
10767 | L: linux-wireless@vger.kernel.org | |
10768 | S: Maintained | |
10769 | F: drivers/net/wireless/ath/ar5523/ | |
10770 | ||
115bb1ff | 10771 | USB ATTACHED SCSI |
f50a4968 | 10772 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 10773 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
10774 | L: linux-usb@vger.kernel.org |
10775 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 10776 | S: Maintained |
115bb1ff MW |
10777 | F: drivers/usb/storage/uas.c |
10778 | ||
1da177e4 | 10779 | USB CDC ETHERNET DRIVER |
61eee9a7 | 10780 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 10781 | L: linux-usb@vger.kernel.org |
1da177e4 | 10782 | S: Maintained |
679655da | 10783 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 10784 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 10785 | |
66e3e591 KP |
10786 | USB CHAOSKEY DRIVER |
10787 | M: Keith Packard <keithp@keithp.com> | |
10788 | L: linux-usb@vger.kernel.org | |
10789 | S: Maintained | |
10790 | F: drivers/usb/misc/chaoskey.c | |
10791 | ||
b02b371e | 10792 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 10793 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
10794 | L: linux-usb@vger.kernel.org |
10795 | S: Maintained | |
679655da | 10796 | F: drivers/usb/c67x00/ |
b02b371e | 10797 | |
d0374f4f | 10798 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 10799 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 10800 | L: netdev@vger.kernel.org |
d0374f4f PK |
10801 | W: http://www.linux-usb.org/usbnet |
10802 | S: Maintained | |
679655da | 10803 | F: drivers/net/usb/dm9601.c |
d0374f4f | 10804 | |
cc2020e6 | 10805 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 10806 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
10807 | L: rio500-users@lists.sourceforge.net |
10808 | W: http://rio500.sourceforge.net | |
10809 | S: Maintained | |
679655da | 10810 | F: drivers/usb/misc/rio500* |
cc2020e6 | 10811 | |
1da177e4 | 10812 | USB EHCI DRIVER |
578333ab | 10813 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 10814 | L: linux-usb@vger.kernel.org |
578333ab | 10815 | S: Maintained |
679655da JP |
10816 | F: Documentation/usb/ehci.txt |
10817 | F: drivers/usb/host/ehci* | |
1da177e4 | 10818 | |
69ae9e3e | 10819 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 10820 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 10821 | L: linux-usb@vger.kernel.org |
69ae9e3e | 10822 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
10823 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
10824 | S: Maintained | |
679655da JP |
10825 | F: drivers/usb/gadget/ |
10826 | F: include/linux/usb/gadget* | |
69ae9e3e | 10827 | |
2dea64b4 | 10828 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 10829 | M: Jiri Kosina <jikos@kernel.org> |
795fb7e7 | 10830 | L: linux-usb@vger.kernel.org |
54e5881d | 10831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 10832 | S: Maintained |
c2f01971 | 10833 | F: Documentation/hid/hiddev.txt |
679655da | 10834 | F: drivers/hid/usbhid/ |
1da177e4 | 10835 | |
959eea21 | 10836 | USB ISP116X DRIVER |
8b58be88 | 10837 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 10838 | L: linux-usb@vger.kernel.org |
959eea21 | 10839 | S: Maintained |
679655da JP |
10840 | F: drivers/usb/host/isp116x* |
10841 | F: include/linux/usb/isp116x.h | |
959eea21 | 10842 | |
1da177e4 | 10843 | USB MASS STORAGE DRIVER |
8b58be88 | 10844 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 10845 | L: linux-usb@vger.kernel.org |
8836aeb8 | 10846 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
10847 | S: Maintained |
10848 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 10849 | F: drivers/usb/storage/ |
1da177e4 | 10850 | |
af39917d CL |
10851 | USB MIDI DRIVER |
10852 | M: Clemens Ladisch <clemens@ladisch.de> | |
10853 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10854 | T: git git://git.alsa-project.org/alsa-kernel.git | |
10855 | S: Maintained | |
10856 | F: sound/usb/midi.* | |
10857 | ||
444ce9d4 JP |
10858 | USB NETWORKING DRIVERS |
10859 | L: linux-usb@vger.kernel.org | |
10860 | S: Odd Fixes | |
10861 | F: drivers/net/usb/ | |
10862 | ||
1da177e4 | 10863 | USB OHCI DRIVER |
578333ab | 10864 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 10865 | L: linux-usb@vger.kernel.org |
578333ab | 10866 | S: Maintained |
679655da JP |
10867 | F: Documentation/usb/ohci.txt |
10868 | F: drivers/usb/host/ohci* | |
1da177e4 | 10869 | |
963ffa3e PC |
10870 | USB OTG FSM (Finite State Machine) |
10871 | M: Peter Chen <Peter.Chen@freescale.com> | |
8373856d | 10872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
10873 | L: linux-usb@vger.kernel.org |
10874 | S: Maintained | |
10875 | F: drivers/usb/common/usb-otg-fsm.c | |
10876 | ||
563da3a9 VM |
10877 | USB OVER IP DRIVER |
10878 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
10879 | M: Shuah Khan <shuah.kh@samsung.com> | |
10880 | L: linux-usb@vger.kernel.org | |
10881 | S: Maintained | |
10882 | F: drivers/usb/usbip/ | |
10883 | F: tools/usb/usbip/ | |
10884 | ||
1da177e4 | 10885 | USB PEGASUS DRIVER |
a16b945c | 10886 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 10887 | L: linux-usb@vger.kernel.org |
043600a6 | 10888 | L: netdev@vger.kernel.org |
052e3128 PM |
10889 | T: git git://github.com/petkan/pegasus.git |
10890 | W: https://github.com/petkan/pegasus | |
1da177e4 | 10891 | S: Maintained |
679655da | 10892 | F: drivers/net/usb/pegasus.* |
1da177e4 | 10893 | |
d3ad558f FB |
10894 | USB PHY LAYER |
10895 | M: Felipe Balbi <balbi@ti.com> | |
10896 | L: linux-usb@vger.kernel.org | |
10897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
10898 | S: Maintained | |
10899 | F: drivers/usb/phy/ | |
d3ad558f | 10900 | |
73e4fb3f | 10901 | USB PRINTER DRIVER (usblp) |
8b58be88 | 10902 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 10903 | L: linux-usb@vger.kernel.org |
73e4fb3f | 10904 | S: Supported |
679655da | 10905 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
10906 | |
10907 | USB RTL8150 DRIVER | |
a16b945c | 10908 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 10909 | L: linux-usb@vger.kernel.org |
043600a6 | 10910 | L: netdev@vger.kernel.org |
052e3128 PM |
10911 | T: git git://github.com/petkan/rtl8150.git |
10912 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 10913 | S: Maintained |
679655da | 10914 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 10915 | |
f896b796 | 10916 | USB SERIAL SUBSYSTEM |
66085694 | 10917 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 10918 | L: linux-usb@vger.kernel.org |
4e68852d | 10919 | S: Maintained |
679655da | 10920 | F: Documentation/usb/usb-serial.txt |
f896b796 | 10921 | F: drivers/usb/serial/ |
679655da | 10922 | F: include/linux/usb/serial.h |
1da177e4 | 10923 | |
b3f0db1c SG |
10924 | USB SMSC75XX ETHERNET DRIVER |
10925 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
10926 | L: netdev@vger.kernel.org | |
10927 | S: Maintained | |
10928 | F: drivers/net/usb/smsc75xx.* | |
10929 | ||
2f7ca802 | 10930 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 10931 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 10932 | L: netdev@vger.kernel.org |
90b24cfb | 10933 | S: Maintained |
679655da | 10934 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 10935 | |
1da177e4 | 10936 | USB SUBSYSTEM |
879a5a00 | 10937 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 10938 | L: linux-usb@vger.kernel.org |
1da177e4 | 10939 | W: http://www.linux-usb.org |
08deed1e | 10940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 10941 | S: Supported |
679655da | 10942 | F: Documentation/usb/ |
679655da JP |
10943 | F: drivers/usb/ |
10944 | F: include/linux/usb.h | |
10945 | F: include/linux/usb/ | |
1da177e4 LT |
10946 | |
10947 | USB UHCI DRIVER | |
8b58be88 | 10948 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 10949 | L: linux-usb@vger.kernel.org |
1da177e4 | 10950 | S: Maintained |
679655da | 10951 | F: drivers/usb/host/uhci* |
1da177e4 | 10952 | |
69ae9e3e | 10953 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 10954 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 10955 | L: netdev@vger.kernel.org |
69ae9e3e | 10956 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 10957 | S: Maintained |
679655da JP |
10958 | F: drivers/net/usb/usbnet.c |
10959 | F: include/linux/usb/usbnet.h | |
1da177e4 | 10960 | |
c0efd232 | 10961 | USB VIDEO CLASS |
c53ac071 | 10962 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 10963 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 10964 | L: linux-media@vger.kernel.org |
275ffde4 | 10965 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 10966 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 10967 | S: Maintained |
0c0d06ca | 10968 | F: drivers/media/usb/uvc/ |
6c0f0359 | 10969 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 10970 | |
b60b9c45 HV |
10971 | USB VISION DRIVER |
10972 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10973 | L: linux-media@vger.kernel.org | |
10974 | T: git git://linuxtv.org/media_tree.git | |
10975 | W: http://linuxtv.org | |
10976 | S: Odd Fixes | |
10977 | F: drivers/media/usb/usbvision/ | |
10978 | ||
8282da47 LP |
10979 | USB WEBCAM GADGET |
10980 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
10981 | L: linux-usb@vger.kernel.org | |
10982 | S: Maintained | |
3a83c16e | 10983 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 10984 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 10985 | |
bf164cc0 | 10986 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 10987 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
10988 | L: linux-wireless@vger.kernel.org |
10989 | S: Maintained | |
679655da | 10990 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 10991 | |
eb6bab13 | 10992 | USB XHCI DRIVER |
03d85053 | 10993 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
10994 | L: linux-usb@vger.kernel.org |
10995 | S: Supported | |
36d0344c SS |
10996 | F: drivers/usb/host/xhci* |
10997 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 10998 | |
1da177e4 | 10999 | USB ZD1201 DRIVER |
4086b9ca | 11000 | L: linux-wireless@vger.kernel.org |
1da177e4 | 11001 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 11002 | S: Orphan |
679655da | 11003 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 11004 | |
b7eee616 | 11005 | USB ZR364XX DRIVER |
8b58be88 | 11006 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 11007 | L: linux-usb@vger.kernel.org |
661263b5 | 11008 | L: linux-media@vger.kernel.org |
275ffde4 | 11009 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
11010 | W: http://royale.zerezo.com/zr364xx/ |
11011 | S: Maintained | |
679655da | 11012 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 11013 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 11014 | |
289fcff4 HK |
11015 | ULPI BUS |
11016 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
11017 | L: linux-usb@vger.kernel.org | |
11018 | S: Maintained | |
11019 | F: drivers/usb/common/ulpi.c | |
11020 | F: include/linux/ulpi/ | |
11021 | ||
e7839f25 | 11022 | USER-MODE LINUX (UML) |
8b58be88 | 11023 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 11024 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
11025 | L: user-mode-linux-devel@lists.sourceforge.net |
11026 | L: user-mode-linux-user@lists.sourceforge.net | |
11027 | W: http://user-mode-linux.sourceforge.net | |
11028 | S: Maintained | |
61516587 | 11029 | F: Documentation/virtual/uml/ |
679655da | 11030 | F: arch/um/ |
b070989a | 11031 | F: arch/x86/um/ |
679655da JP |
11032 | F: fs/hostfs/ |
11033 | F: fs/hppfs/ | |
b7eee616 | 11034 | |
e5f114e9 | 11035 | USERSPACE I/O (UIO) |
6a534c9d | 11036 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 11037 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 11038 | S: Maintained |
3d3fecbd | 11039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
11040 | F: Documentation/DocBook/uio-howto.tmpl |
11041 | F: drivers/uio/ | |
11042 | F: include/linux/uio*.h | |
e5f114e9 | 11043 | |
256cccbe | 11044 | UTIL-LINUX PACKAGE |
8b58be88 | 11045 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
11046 | L: util-linux@vger.kernel.org |
11047 | W: http://en.wikipedia.org/wiki/Util-linux | |
11048 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
11049 | S: Maintained |
11050 | ||
c1fd1c07 | 11051 | UVESAFB DRIVER |
8b58be88 | 11052 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 11053 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
11054 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
11055 | S: Maintained | |
679655da | 11056 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 11057 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 11058 | |
4480f15b | 11059 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 11060 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 11061 | S: Maintained |
679655da JP |
11062 | F: Documentation/filesystems/vfat.txt |
11063 | F: fs/fat/ | |
1da177e4 | 11064 | |
cba3345c AW |
11065 | VFIO DRIVER |
11066 | M: Alex Williamson <alex.williamson@redhat.com> | |
11067 | L: kvm@vger.kernel.org | |
11068 | S: Maintained | |
11069 | F: Documentation/vfio.txt | |
11070 | F: drivers/vfio/ | |
11071 | F: include/linux/vfio.h | |
c117ab84 | 11072 | F: include/uapi/linux/vfio.h |
cba3345c | 11073 | |
a714ea5f AW |
11074 | VFIO PLATFORM DRIVER |
11075 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
11076 | L: kvm@vger.kernel.org | |
11077 | S: Maintained | |
11078 | F: drivers/vfio/platform/ | |
11079 | ||
9e6f3438 PO |
11080 | VIDEOBUF2 FRAMEWORK |
11081 | M: Pawel Osciak <pawel@osciak.com> | |
11082 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 11083 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
11084 | L: linux-media@vger.kernel.org |
11085 | S: Maintained | |
90d72ac6 | 11086 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
11087 | F: include/media/videobuf2-* |
11088 | ||
9a82446b AS |
11089 | VIRTIO CONSOLE DRIVER |
11090 | M: Amit Shah <amit.shah@redhat.com> | |
11091 | L: virtualization@lists.linux-foundation.org | |
11092 | S: Maintained | |
11093 | F: drivers/char/virtio_console.c | |
11094 | F: include/linux/virtio_console.h | |
c117ab84 | 11095 | F: include/uapi/linux/virtio_console.h |
9a82446b | 11096 | |
2426ec8f | 11097 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
11098 | M: "Michael S. Tsirkin" <mst@redhat.com> |
11099 | L: virtualization@lists.linux-foundation.org | |
11100 | S: Maintained | |
11101 | F: drivers/virtio/ | |
c893c8d7 | 11102 | F: tools/virtio/ |
2426ec8f MT |
11103 | F: drivers/net/virtio_net.c |
11104 | F: drivers/block/virtio_blk.c | |
11105 | F: include/linux/virtio_*.h | |
916cdabc | 11106 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 11107 | |
f2dbda3b CH |
11108 | VIRTIO DRIVERS FOR S390 |
11109 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
11110 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
11111 | L: linux-s390@vger.kernel.org | |
11112 | L: virtualization@lists.linux-foundation.org | |
11113 | L: kvm@vger.kernel.org | |
11114 | S: Supported | |
1b568d93 | 11115 | F: drivers/s390/virtio/ |
f2dbda3b | 11116 | |
4ad6ee91 GH |
11117 | VIRTIO GPU DRIVER |
11118 | M: David Airlie <airlied@linux.ie> | |
11119 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11120 | L: dri-devel@lists.freedesktop.org | |
11121 | L: virtualization@lists.linux-foundation.org | |
11122 | S: Maintained | |
11123 | F: drivers/gpu/drm/virtio/ | |
11124 | F: include/uapi/linux/virtio_gpu.h | |
11125 | ||
3a4d5c94 MT |
11126 | VIRTIO HOST (VHOST) |
11127 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
11128 | L: kvm@vger.kernel.org | |
c996d8b9 | 11129 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
11130 | L: netdev@vger.kernel.org |
11131 | S: Maintained | |
11132 | F: drivers/vhost/ | |
c117ab84 | 11133 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 11134 | |
271c8651 GH |
11135 | VIRTIO INPUT DRIVER |
11136 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11137 | S: Maintained | |
11138 | F: drivers/virtio/virtio_input.c | |
11139 | F: include/uapi/linux/virtio_input.h | |
11140 | ||
1da177e4 | 11141 | VIA RHINE NETWORK DRIVER |
210347e1 | 11142 | S: Orphan |
f2148a47 | 11143 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 11144 | |
f0bf7f61 | 11145 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 11146 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 11147 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
11148 | S: Maintained |
11149 | F: drivers/mmc/host/via-sdmmc.c | |
11150 | ||
69e4a7c2 | 11151 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 11152 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 11153 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 11154 | S: Maintained |
c7babebd FTS |
11155 | F: include/linux/via-core.h |
11156 | F: include/linux/via-gpio.h | |
11157 | F: include/linux/via_i2c.h | |
8a61f013 | 11158 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 11159 | |
01f20734 | 11160 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 11161 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
11162 | L: netdev@vger.kernel.org |
11163 | S: Maintained | |
f2148a47 | 11164 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 11165 | |
77911fd2 | 11166 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
11167 | M: Hans Verkuil <hverkuil@xs4all.nl> |
11168 | L: linux-media@vger.kernel.org | |
11169 | T: git git://linuxtv.org/media_tree.git | |
11170 | W: http://linuxtv.org | |
11171 | S: Maintained | |
77911fd2 | 11172 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 11173 | |
be7f8273 | 11174 | VLAN (802.1Q) |
8b58be88 | 11175 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
11176 | L: netdev@vger.kernel.org |
11177 | S: Maintained | |
679655da JP |
11178 | F: drivers/net/macvlan.c |
11179 | F: include/linux/if_*vlan.h | |
11180 | F: net/8021q/ | |
be7f8273 | 11181 | |
55e331cf | 11182 | VLYNQ BUS |
8b58be88 | 11183 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 11184 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
11185 | S: Maintained |
11186 | F: drivers/vlynq/vlynq.c | |
11187 | F: include/linux/vlynq.h | |
11188 | ||
390beae4 MW |
11189 | VME SUBSYSTEM |
11190 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 11191 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
11192 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
11193 | L: devel@driverdev.osuosl.org | |
11194 | S: Maintained | |
11195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
11196 | F: Documentation/vme_api.txt | |
11197 | F: drivers/staging/vme/ | |
11198 | F: drivers/vme/ | |
11199 | F: include/linux/vme* | |
11200 | ||
4488e09b AK |
11201 | VMWARE HYPERVISOR INTERFACE |
11202 | M: Alok Kataria <akataria@vmware.com> | |
11203 | L: virtualization@lists.linux-foundation.org | |
11204 | S: Supported | |
11205 | F: arch/x86/kernel/cpu/vmware.c | |
11206 | ||
73b35d07 DT |
11207 | VMWARE BALLOON DRIVER |
11208 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
11209 | M: Philip Moltmann <moltmann@vmware.com> | |
11210 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11211 | L: linux-kernel@vger.kernel.org | |
11212 | S: Maintained | |
11213 | F: drivers/misc/vmw_balloon.c | |
11214 | ||
8b8be51b TH |
11215 | VMWARE VMMOUSE SUBDRIVER |
11216 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
11217 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11218 | L: linux-input@vger.kernel.org | |
11219 | S: Maintained | |
11220 | F: drivers/input/mouse/vmmouse.c | |
11221 | F: drivers/input/mouse/vmmouse.h | |
11222 | ||
d1a890fa | 11223 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 11224 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
11225 | M: "VMware, Inc." <pv-drivers@vmware.com> |
11226 | L: netdev@vger.kernel.org | |
11227 | S: Maintained | |
11228 | F: drivers/net/vmxnet3/ | |
d1a890fa | 11229 | |
851b1642 | 11230 | VMware PVSCSI driver |
f2d7e40e | 11231 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
11232 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
11233 | L: linux-scsi@vger.kernel.org | |
11234 | S: Maintained | |
11235 | F: drivers/scsi/vmw_pvscsi.c | |
11236 | F: drivers/scsi/vmw_pvscsi.h | |
11237 | ||
e53e86c7 | 11238 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 11239 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11240 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 11241 | L: linux-kernel@vger.kernel.org |
e53e86c7 | 11242 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 11243 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 11244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 11245 | S: Supported |
679655da JP |
11246 | F: drivers/regulator/ |
11247 | F: include/linux/regulator/ | |
e53e86c7 | 11248 | |
081958eb DA |
11249 | VRF |
11250 | M: David Ahern <dsa@cumulusnetworks.com> | |
11251 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
11252 | L: netdev@vger.kernel.org | |
11253 | S: Maintained | |
11254 | F: drivers/net/vrf.c | |
11255 | F: include/net/vrf.h | |
11256 | ||
ab41319e | 11257 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 11258 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
11259 | L: lm-sensors@lm-sensors.org |
11260 | S: Maintained | |
679655da JP |
11261 | F: Documentation/hwmon/vt1211 |
11262 | F: drivers/hwmon/vt1211.c | |
ab41319e | 11263 | |
1de9e371 | 11264 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 11265 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
11266 | L: lm-sensors@lm-sensors.org |
11267 | S: Maintained | |
679655da | 11268 | F: drivers/hwmon/vt8231.c |
1de9e371 | 11269 | |
88095e7b TO |
11270 | VUB300 USB to SDIO/SD/MMC bridge chip |
11271 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
11272 | L: linux-mmc@vger.kernel.org | |
11273 | L: linux-usb@vger.kernel.org | |
11274 | S: Supported | |
11275 | F: drivers/mmc/host/vub300.c | |
11276 | ||
1da177e4 | 11277 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 11278 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 11279 | S: Maintained |
679655da JP |
11280 | F: Documentation/w1/ |
11281 | F: drivers/w1/ | |
1da177e4 | 11282 | |
13927079 | 11283 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 11284 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 11285 | L: lm-sensors@lm-sensors.org |
25845c22 | 11286 | S: Maintained |
679655da JP |
11287 | F: Documentation/hwmon/w83791d |
11288 | F: drivers/hwmon/w83791d.c | |
13927079 | 11289 | |
61db011d | 11290 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 11291 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
11292 | L: lm-sensors@lm-sensors.org |
11293 | S: Maintained | |
679655da JP |
11294 | F: Documentation/hwmon/w83793 |
11295 | F: drivers/hwmon/w83793.c | |
61db011d | 11296 | |
e3760b43 | 11297 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 11298 | M: Jean Delvare <jdelvare@suse.com> |
e3760b43 JD |
11299 | L: lm-sensors@lm-sensors.org |
11300 | S: Maintained | |
11301 | F: drivers/hwmon/w83795.c | |
11302 | ||
1da177e4 | 11303 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 11304 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 11305 | S: Maintained |
679655da | 11306 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 11307 | |
b4e05923 HG |
11308 | WACOM PROTOCOL 4 SERIAL TABLETS |
11309 | M: Julian Squires <julian@cipht.net> | |
11310 | M: Hans de Goede <hdegoede@redhat.com> | |
11311 | L: linux-input@vger.kernel.org | |
11312 | S: Maintained | |
11313 | F: drivers/input/tablet/wacom_serial4.c | |
11314 | ||
3527761c | 11315 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 11316 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
11317 | L: linux-watchdog@vger.kernel.org |
11318 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 11319 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 11320 | S: Maintained |
679655da JP |
11321 | F: Documentation/watchdog/ |
11322 | F: drivers/watchdog/ | |
11323 | F: include/linux/watchdog.h | |
c117ab84 | 11324 | F: include/uapi/linux/watchdog.h |
3527761c | 11325 | |
1da177e4 | 11326 | WD7000 SCSI DRIVER |
8b58be88 | 11327 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
11328 | L: linux-scsi@vger.kernel.org |
11329 | S: Maintained | |
679655da | 11330 | F: drivers/scsi/wd7000.c |
1da177e4 | 11331 | |
b22e00f3 DH |
11332 | WIIMOTE HID DRIVER |
11333 | M: David Herrmann <dh.herrmann@googlemail.com> | |
11334 | L: linux-input@vger.kernel.org | |
11335 | S: Maintained | |
11336 | F: drivers/hid/hid-wiimote* | |
11337 | ||
e258b80e | 11338 | WINBOND CIR DRIVER |
364e9e18 | 11339 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 11340 | S: Maintained |
116ab806 | 11341 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 11342 | |
8a70da82 | 11343 | WIMAX STACK |
8b58be88 | 11344 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 11345 | M: linux-wimax@intel.com |
49e7d9df | 11346 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
11347 | S: Supported |
11348 | W: http://linuxwimax.org | |
315987dc | 11349 | F: Documentation/wimax/README.wimax |
315987dc JP |
11350 | F: include/linux/wimax/debug.h |
11351 | F: include/net/wimax.h | |
c117ab84 | 11352 | F: include/uapi/linux/wimax.h |
315987dc | 11353 | F: net/wimax/ |
8a70da82 | 11354 | |
5fc14680 | 11355 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 11356 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 11357 | S: Maintained |
679655da | 11358 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 11359 | |
1da177e4 | 11360 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 11361 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 11362 | L: linux-wireless@vger.kernel.org |
926554c4 | 11363 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 11364 | S: Maintained |
679655da | 11365 | F: drivers/net/wireless/wl3501* |
1da177e4 | 11366 | |
febf1dff | 11367 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 11368 | M: Mark Brown <broonie@kernel.org> |
8b58be88 | 11369 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
febf1dff MB |
11370 | L: linux-input@vger.kernel.org |
11371 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
11372 | W: http://opensource.wolfsonmicro.com/node/7 | |
11373 | S: Supported | |
679655da JP |
11374 | F: drivers/input/touchscreen/*wm97* |
11375 | F: include/linux/wm97xx.h | |
febf1dff | 11376 | |
055bcbcb | 11377 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 11378 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 11379 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 11380 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 11381 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 11382 | S: Supported |
3768f0b1 | 11383 | F: Documentation/hwmon/wm83?? |
af1c5386 | 11384 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 11385 | F: drivers/clk/clk-wm83*.c |
9c309598 | 11386 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 11387 | F: drivers/leds/leds-wm83*.c |
25b273ba | 11388 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 11389 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 11390 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
11391 | F: drivers/input/misc/wm831x-on.c |
11392 | F: drivers/input/touchscreen/wm831x-ts.c | |
11393 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
11394 | F: drivers/mfd/arizona* |
11395 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
11396 | F: drivers/power/wm83*.c |
11397 | F: drivers/rtc/rtc-wm83*.c | |
11398 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 11399 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 11400 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 11401 | F: include/linux/mfd/arizona/ |
3860e6c4 | 11402 | F: include/linux/mfd/wm831x/ |
b75ea16a | 11403 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 11404 | F: include/linux/mfd/wm8400* |
59ec6da2 | 11405 | F: include/linux/wm97xx.h |
055bcbcb | 11406 | F: include/sound/wm????.h |
9c309598 | 11407 | F: sound/soc/codecs/arizona.? |
055bcbcb | 11408 | F: sound/soc/codecs/wm* |
b75ea16a | 11409 | |
3e6cd7a4 TH |
11410 | WORKQUEUE |
11411 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 11412 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
11413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
11414 | S: Maintained | |
11415 | F: include/linux/workqueue.h | |
11416 | F: kernel/workqueue.c | |
11417 | F: Documentation/workqueue.txt | |
11418 | ||
1da177e4 | 11419 | X.25 NETWORK LAYER |
8bf28059 | 11420 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 11421 | L: linux-x25@vger.kernel.org |
8bf28059 | 11422 | S: Odd Fixes |
679655da JP |
11423 | F: Documentation/networking/x25* |
11424 | F: include/net/x25* | |
11425 | F: net/x25/ | |
1da177e4 | 11426 | |
e2d1d6c0 | 11427 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
11428 | M: Thomas Gleixner <tglx@linutronix.de> |
11429 | M: Ingo Molnar <mingo@redhat.com> | |
11430 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 11431 | M: x86@kernel.org |
981c3a4f | 11432 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 11434 | S: Maintained |
679655da JP |
11435 | F: Documentation/x86/ |
11436 | F: arch/x86/ | |
e2d1d6c0 | 11437 | |
d0944853 | 11438 | X86 PLATFORM DRIVERS |
e181ba15 | 11439 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 11440 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 11441 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 11442 | S: Maintained |
14430813 | 11443 | F: drivers/platform/x86/ |
d0944853 | 11444 | |
c1f5c54b IM |
11445 | X86 MCE INFRASTRUCTURE |
11446 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 11447 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
11448 | L: linux-edac@vger.kernel.org |
11449 | S: Maintained | |
11450 | F: arch/x86/kernel/cpu/mcheck/* | |
11451 | ||
f0905c5a AL |
11452 | X86 VDSO |
11453 | M: Andy Lutomirski <luto@amacapital.net> | |
11454 | L: linux-kernel@vger.kernel.org | |
11455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
11456 | S: Maintained | |
d603c8e1 | 11457 | F: arch/x86/entry/vdso/ |
f0905c5a | 11458 | |
d6fad502 | 11459 | XC2028/3028 TUNER DRIVER |
009a5410 | 11460 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d6fad502 MCC |
11461 | L: linux-media@vger.kernel.org |
11462 | W: http://linuxtv.org | |
11463 | T: git git://linuxtv.org/media_tree.git | |
11464 | S: Maintained | |
11465 | F: drivers/media/tuners/tuner-xc2028.* | |
11466 | ||
c4468085 | 11467 | XEN HYPERVISOR INTERFACE |
c4468085 | 11468 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
11469 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
11470 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 11471 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 11472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
11473 | S: Supported |
11474 | F: arch/x86/xen/ | |
11475 | F: drivers/*/xen-*front.c | |
11476 | F: drivers/xen/ | |
11477 | F: arch/x86/include/asm/xen/ | |
11478 | F: include/xen/ | |
c117ab84 | 11479 | F: include/uapi/xen/ |
c4468085 | 11480 | |
77bfb479 SS |
11481 | XEN HYPERVISOR ARM |
11482 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 11483 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
11484 | S: Supported |
11485 | F: arch/arm/xen/ | |
11486 | F: arch/arm/include/asm/xen/ | |
11487 | ||
b475e83f SS |
11488 | XEN HYPERVISOR ARM64 |
11489 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 11490 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
11491 | S: Supported |
11492 | F: arch/arm64/xen/ | |
11493 | F: arch/arm64/include/asm/xen/ | |
11494 | ||
9b57e1a7 IC |
11495 | XEN NETWORK BACKEND DRIVER |
11496 | M: Ian Campbell <ian.campbell@citrix.com> | |
8386040b | 11497 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 11498 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
11499 | L: netdev@vger.kernel.org |
11500 | S: Supported | |
11501 | F: drivers/net/xen-netback/* | |
11502 | ||
c5f8e29d KRW |
11503 | XEN PCI SUBSYSTEM |
11504 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 11505 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
11506 | S: Supported |
11507 | F: arch/x86/pci/*xen* | |
11508 | F: drivers/pci/*xen* | |
11509 | ||
a2c5ae65 KRW |
11510 | XEN BLOCK SUBSYSTEM |
11511 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 11512 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
11513 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
11514 | S: Supported | |
11515 | F: drivers/block/xen-blkback/* | |
11516 | F: drivers/block/xen* | |
11517 | ||
15d03609 JG |
11518 | XEN PVSCSI DRIVERS |
11519 | M: Juergen Gross <jgross@suse.com> | |
11520 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
11521 | L: linux-scsi@vger.kernel.org | |
11522 | S: Supported | |
11523 | F: drivers/scsi/xen-scsifront.c | |
11524 | F: drivers/xen/xen-scsiback.c | |
11525 | F: include/xen/interface/io/vscsiif.h | |
11526 | ||
c5f8e29d KRW |
11527 | XEN SWIOTLB SUBSYSTEM |
11528 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 11529 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
11530 | S: Supported |
11531 | F: arch/x86/xen/*swiotlb* | |
11532 | F: drivers/xen/*swiotlb* | |
11533 | ||
1da177e4 LT |
11534 | XFS FILESYSTEM |
11535 | P: Silicon Graphics Inc | |
809625ca | 11536 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 11537 | M: xfs@oss.sgi.com |
d7ede1aa | 11538 | L: xfs@oss.sgi.com |
1da177e4 | 11539 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 11540 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 11541 | S: Supported |
679655da JP |
11542 | F: Documentation/filesystems/xfs.txt |
11543 | F: fs/xfs/ | |
1da177e4 | 11544 | |
8a3b7a25 | 11545 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
11546 | M: Anirudha Sarangi <anirudh@xilinx.com> |
11547 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 11548 | S: Maintained |
11549 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
11550 | ||
238b8721 | 11551 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 11552 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
11553 | L: linux-serial@vger.kernel.org |
11554 | S: Maintained | |
df621252 | 11555 | F: drivers/tty/serial/uartlite.c |
238b8721 | 11556 | |
df330515 LP |
11557 | XILINX VIDEO IP CORES |
11558 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
11559 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
11560 | L: linux-media@vger.kernel.org | |
11561 | T: git git://linuxtv.org/media_tree.git | |
11562 | S: Supported | |
11563 | F: Documentation/devicetree/bindings/media/xilinx/ | |
11564 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 11565 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 11566 | |
74316949 EB |
11567 | XILLYBUS DRIVER |
11568 | M: Eli Billauer <eli.billauer@gmail.com> | |
11569 | L: linux-kernel@vger.kernel.org | |
11570 | S: Supported | |
11571 | F: drivers/char/xillybus/ | |
11572 | ||
f620e4b8 MF |
11573 | XTENSA XTFPGA PLATFORM SUPPORT |
11574 | M: Max Filippov <jcmvbkbc@gmail.com> | |
11575 | L: linux-xtensa@linux-xtensa.org | |
11576 | S: Maintained | |
11577 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 11578 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 11579 | |
1da177e4 | 11580 | YAM DRIVER FOR AX.25 |
8b58be88 | 11581 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
11582 | L: linux-hams@vger.kernel.org |
11583 | S: Maintained | |
679655da JP |
11584 | F: drivers/net/hamradio/yam* |
11585 | F: include/linux/yam.h | |
1da177e4 | 11586 | |
af64a5eb | 11587 | YEALINK PHONE DRIVER |
8b58be88 | 11588 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
11589 | L: usbb2k-api-dev@nongnu.org |
11590 | S: Maintained | |
679655da JP |
11591 | F: Documentation/input/yealink.txt |
11592 | F: drivers/input/misc/yealink.* | |
af64a5eb | 11593 | |
1da177e4 | 11594 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 11595 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
11596 | W: http://yaina.de/jreuter/ |
11597 | W: http://www.qsl.net/dl1bke/ | |
11598 | L: linux-hams@vger.kernel.org | |
11599 | S: Maintained | |
679655da JP |
11600 | F: Documentation/networking/z8530drv.txt |
11601 | F: drivers/net/hamradio/*scc.c | |
11602 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 11603 | |
0cf31ec1 | 11604 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 11605 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
11606 | L: linux-mm@kvack.org |
11607 | S: Maintained | |
11608 | F: mm/zbud.c | |
11609 | F: include/linux/zbud.h | |
11610 | ||
7c0c3afb | 11611 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
11612 | M: Daniel Drake <dsd@gentoo.org> |
11613 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 11614 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 11615 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
11616 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
11617 | S: Maintained | |
679655da | 11618 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 11619 | |
20263029 DS |
11620 | ZPOOL COMPRESSED PAGE STORAGE API |
11621 | M: Dan Streetman <ddstreet@ieee.org> | |
11622 | L: linux-mm@kvack.org | |
11623 | S: Maintained | |
11624 | F: mm/zpool.c | |
11625 | F: include/linux/zpool.h | |
11626 | ||
1da177e4 | 11627 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 11628 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 11629 | L: linux-media@vger.kernel.org |
1da177e4 | 11630 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 11631 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 11632 | S: Odd Fixes |
90d72ac6 | 11633 | F: drivers/media/pci/zoran/ |
1da177e4 | 11634 | |
6920f2cc MK |
11635 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
11636 | M: Minchan Kim <minchan@kernel.org> | |
11637 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 11638 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
11639 | L: linux-kernel@vger.kernel.org |
11640 | S: Maintained | |
11641 | F: drivers/block/zram/ | |
11642 | F: Documentation/blockdev/zram.txt | |
11643 | ||
8b4a4080 | 11644 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 11645 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 11646 | S: Maintained |
df621252 | 11647 | F: drivers/tty/serial/zs.* |
8b4a4080 | 11648 | |
eae70d06 MK |
11649 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
11650 | M: Minchan Kim <minchan@kernel.org> | |
11651 | M: Nitin Gupta <ngupta@vflare.org> | |
11652 | L: linux-mm@kvack.org | |
11653 | S: Maintained | |
11654 | F: mm/zsmalloc.c | |
11655 | F: include/linux/zsmalloc.h | |
d02be50d | 11656 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 11657 | |
0cf31ec1 | 11658 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 11659 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
11660 | L: linux-mm@kvack.org |
11661 | S: Maintained | |
11662 | F: mm/zswap.c | |
11663 | ||
1da177e4 | 11664 | THE REST |
8b58be88 | 11665 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 11666 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 11667 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 11668 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 11669 | S: Buried alive in reporters |
34d03cc1 JP |
11670 | F: * |
11671 | F: */ |