]>
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 | |
e2558989 WBG |
243 | ACCES 104-IDIO-16 GPIO DRIVER |
244 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
245 | L: linux-gpio@vger.kernel.org | |
246 | S: Maintained | |
247 | F: drivers/gpio/gpio-104-idio-16.c | |
248 | ||
1da177e4 | 249 | ACENIC DRIVER |
8b58be88 | 250 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
251 | L: linux-acenic@sunsite.dk |
252 | S: Maintained | |
531c4f89 | 253 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 254 | |
e86435eb | 255 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 256 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 257 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
258 | W: http://piie.net/?section=acerhdf |
259 | S: Maintained | |
260 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 261 | |
745a5d21 | 262 | ACER WMI LAPTOP EXTRAS |
182ae55c | 263 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 264 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 265 | S: Maintained |
679655da | 266 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 267 | |
1da177e4 | 268 | ACPI |
9c3646d1 | 269 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 270 | M: Len Brown <lenb@kernel.org> |
6968e50c | 271 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
272 | W: https://01.org/linux-acpi |
273 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 275 | S: Supported |
679655da JP |
276 | F: drivers/acpi/ |
277 | F: drivers/pnp/pnpacpi/ | |
278 | F: include/linux/acpi.h | |
43368e74 | 279 | F: include/acpi/ |
3a75ef0c | 280 | F: Documentation/acpi/ |
89ca78a0 | 281 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
282 | F: drivers/pci/*acpi* |
283 | F: drivers/pci/*/*acpi* | |
284 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 285 | F: tools/power/acpi/ |
8b59a454 | 286 | |
3774929d RW |
287 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
288 | M: Robert Moore <robert.moore@intel.com> | |
289 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 290 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
291 | L: linux-acpi@vger.kernel.org |
292 | L: devel@acpica.org | |
293 | W: https://acpica.org/ | |
294 | W: https://github.com/acpica/acpica/ | |
295 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
296 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
297 | S: Supported | |
298 | F: drivers/acpi/acpica/ | |
299 | F: include/acpi/ | |
2754c447 | 300 | F: tools/power/acpi/ |
3774929d | 301 | |
8b59a454 | 302 | ACPI FAN DRIVER |
8b58be88 | 303 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 304 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 305 | W: https://01.org/linux-acpi |
8b59a454 | 306 | S: Supported |
679655da | 307 | F: drivers/acpi/fan.c |
1da177e4 | 308 | |
8b59a454 | 309 | ACPI THERMAL DRIVER |
8b58be88 | 310 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 311 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 312 | W: https://01.org/linux-acpi |
8b59a454 | 313 | S: Supported |
679655da | 314 | F: drivers/acpi/*thermal* |
998be20f | 315 | |
359acec8 | 316 | ACPI VIDEO DRIVER |
8b58be88 | 317 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 318 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 319 | W: https://01.org/linux-acpi |
8b59a454 | 320 | S: Supported |
679655da | 321 | F: drivers/acpi/video.c |
998be20f | 322 | |
bff431e4 | 323 | ACPI WMI DRIVER |
d0944853 | 324 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 325 | S: Orphan |
679655da | 326 | F: drivers/platform/x86/wmi.c |
bff431e4 | 327 | |
2f39d519 | 328 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 329 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
330 | W: http://wiki.parisc-linux.org/AD1889 |
331 | L: linux-parisc@vger.kernel.org | |
332 | S: Maintained | |
679655da | 333 | F: sound/pci/ad1889.* |
2f39d519 | 334 | |
527a1a83 MH |
335 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
336 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 337 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 338 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
339 | S: Supported |
340 | F: drivers/misc/ad525x_dpot.c | |
341 | ||
342 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
343 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 344 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 345 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
346 | S: Supported |
347 | F: drivers/regulator/ad5398.c | |
348 | ||
349 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
350 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 351 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 352 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
353 | S: Supported |
354 | F: drivers/input/misc/ad714x.c | |
355 | ||
356 | AD7877 TOUCHSCREEN DRIVER | |
357 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 358 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 359 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
360 | S: Supported |
361 | F: drivers/input/touchscreen/ad7877.c | |
362 | ||
363 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
364 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 365 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 366 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
367 | S: Supported |
368 | F: drivers/input/touchscreen/ad7879.c | |
369 | ||
1330b0dc | 370 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 371 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
372 | S: Maintained |
373 | ||
1da177e4 | 374 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 375 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 376 | L: lm-sensors@lm-sensors.org |
1da177e4 | 377 | S: Maintained |
679655da JP |
378 | F: Documentation/hwmon/adm1025 |
379 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 380 | |
cae2caae | 381 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 382 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
383 | L: lm-sensors@lm-sensors.org |
384 | S: Maintained | |
679655da | 385 | F: drivers/hwmon/adm1029.c |
cae2caae | 386 | |
cc0b88cf | 387 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 388 | L: linux-wireless@vger.kernel.org |
491b26b4 | 389 | W: http://wireless.kernel.org/ |
e71bcbd0 | 390 | S: Orphan |
679655da | 391 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 392 | |
e8e31622 SA |
393 | ADP1653 FLASH CONTROLLER DRIVER |
394 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
395 | L: linux-media@vger.kernel.org | |
396 | S: Maintained | |
397 | F: drivers/media/i2c/adp1653.c | |
398 | F: include/media/adp1653.h | |
399 | ||
527a1a83 MH |
400 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
401 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 402 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 403 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
404 | S: Supported |
405 | F: drivers/mfd/adp5520.c | |
406 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 407 | F: drivers/leds/leds-adp5520.c |
77278d50 | 408 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
409 | F: drivers/input/keyboard/adp5520-keys.c |
410 | ||
411 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
412 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 413 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 414 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
415 | S: Supported |
416 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 417 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
418 | |
419 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
420 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 421 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 422 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
423 | S: Supported |
424 | F: drivers/video/backlight/adp8860_bl.c | |
425 | ||
8c22a8f5 DE |
426 | ADS1015 HARDWARE MONITOR DRIVER |
427 | M: Dirk Eibach <eibach@gdsys.de> | |
428 | L: lm-sensors@lm-sensors.org | |
429 | S: Maintained | |
430 | F: Documentation/hwmon/ads1015 | |
431 | F: drivers/hwmon/ads1015.c | |
432 | F: include/linux/i2c/ads1015.h | |
433 | ||
1da177e4 | 434 | ADT746X FAN DRIVER |
8b58be88 | 435 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 436 | S: Maintained |
679655da | 437 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 438 | |
b058b859 | 439 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 440 | M: Jean Delvare <jdelvare@suse.com> |
b058b859 JD |
441 | L: lm-sensors@lm-sensors.org |
442 | S: Maintained | |
443 | F: Documentation/hwmon/adt7475 | |
444 | F: drivers/hwmon/adt7475.c | |
445 | ||
527a1a83 MH |
446 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
447 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 448 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 449 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
450 | S: Supported |
451 | F: drivers/input/misc/adxl34x.c | |
452 | ||
8c6af9e1 | 453 | ADVANSYS SCSI DRIVER |
8b58be88 | 454 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 455 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
456 | L: linux-scsi@vger.kernel.org |
457 | S: Maintained | |
679655da JP |
458 | F: Documentation/scsi/advansys.txt |
459 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 460 | |
1da177e4 | 461 | AEDSP16 DRIVER |
8b58be88 | 462 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 463 | S: Maintained |
679655da | 464 | F: sound/oss/aedsp16.c |
1da177e4 | 465 | |
91952bc0 AP |
466 | AF9013 MEDIA DRIVER |
467 | M: Antti Palosaari <crope@iki.fi> | |
468 | L: linux-media@vger.kernel.org | |
469 | W: http://linuxtv.org/ | |
470 | W: http://palosaari.fi/linux/ | |
471 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
472 | T: git git://linuxtv.org/anttip/media_tree.git | |
473 | S: Maintained | |
474 | F: drivers/media/dvb-frontends/af9013* | |
475 | ||
476 | AF9033 MEDIA DRIVER | |
477 | M: Antti Palosaari <crope@iki.fi> | |
478 | L: linux-media@vger.kernel.org | |
479 | W: http://linuxtv.org/ | |
480 | W: http://palosaari.fi/linux/ | |
481 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
482 | T: git git://linuxtv.org/anttip/media_tree.git | |
483 | S: Maintained | |
484 | F: drivers/media/dvb-frontends/af9033* | |
485 | ||
1da177e4 | 486 | AFFS FILE SYSTEM |
6cf515e1 GU |
487 | L: linux-fsdevel@vger.kernel.org |
488 | S: Orphan | |
679655da JP |
489 | F: Documentation/filesystems/affs.txt |
490 | F: fs/affs/ | |
1da177e4 | 491 | |
e2d1d6c0 | 492 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 493 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
494 | L: linux-afs@lists.infradead.org |
495 | S: Supported | |
679655da JP |
496 | F: fs/afs/ |
497 | F: include/net/af_rxrpc.h | |
498 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 499 | |
1da177e4 | 500 | AGPGART DRIVER |
8b58be88 | 501 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 502 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 503 | S: Maintained |
679655da JP |
504 | F: drivers/char/agp/ |
505 | F: include/linux/agp* | |
c117ab84 | 506 | F: include/uapi/linux/agp* |
1da177e4 LT |
507 | |
508 | AHA152X SCSI DRIVER | |
8b58be88 | 509 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
510 | L: linux-scsi@vger.kernel.org |
511 | S: Maintained | |
679655da JP |
512 | F: drivers/scsi/aha152x* |
513 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 514 | |
64624d4f | 515 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 516 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 517 | L: linux-scsi@vger.kernel.org |
1da177e4 | 518 | S: Maintained |
679655da | 519 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 520 | |
450500ad HV |
521 | AIMSLAB FM RADIO RECEIVER DRIVER |
522 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
523 | L: linux-media@vger.kernel.org | |
524 | T: git git://linuxtv.org/media_tree.git | |
525 | W: http://linuxtv.org | |
526 | S: Maintained | |
527 | F: drivers/media/radio/radio-aimslab* | |
528 | ||
e2d1d6c0 | 529 | AIO |
8b58be88 | 530 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
531 | L: linux-aio@kvack.org |
532 | S: Supported | |
679655da JP |
533 | F: fs/aio.c |
534 | F: include/linux/*aio*.h | |
e2d1d6c0 | 535 | |
469d4ec8 AP |
536 | AIRSPY MEDIA DRIVER |
537 | M: Antti Palosaari <crope@iki.fi> | |
538 | L: linux-media@vger.kernel.org | |
539 | W: http://linuxtv.org/ | |
540 | W: http://palosaari.fi/linux/ | |
541 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
542 | T: git git://linuxtv.org/anttip/media_tree.git | |
543 | S: Maintained | |
544 | F: drivers/media/usb/airspy/ | |
545 | ||
1da177e4 | 546 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 547 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 548 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
549 | W: http://www.linux-usb.org/SpeedTouch/ |
550 | S: Maintained | |
679655da JP |
551 | F: drivers/usb/atm/speedtch.c |
552 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 553 | |
272f133a | 554 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 555 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 556 | S: Maintained |
679655da | 557 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 558 | |
4a4e5787 | 559 | ALI1563 I2C DRIVER |
8b58be88 | 560 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 561 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 562 | S: Maintained |
679655da JP |
563 | F: Documentation/i2c/busses/i2c-ali1563 |
564 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 565 | |
bc368798 LC |
566 | ALLWINNER SECURITY SYSTEM |
567 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
568 | L: linux-crypto@vger.kernel.org | |
569 | S: Maintained | |
570 | F: drivers/crypto/sunxi-ss/ | |
571 | ||
1da177e4 | 572 | ALPHA PORT |
8b58be88 | 573 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 574 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 575 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 576 | S: Odd Fixes |
a9406699 | 577 | L: linux-alpha@vger.kernel.org |
679655da | 578 | F: arch/alpha/ |
1da177e4 | 579 | |
f62092f6 LFT |
580 | ALTERA MAILBOX DRIVER |
581 | M: Ley Foon Tan <lftan@altera.com> | |
582 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
583 | S: Maintained | |
584 | F: drivers/mailbox/mailbox-altera.c | |
585 | ||
c5abbba9 THL |
586 | ALTERA PIO DRIVER |
587 | M: Tien Hock Loh <thloh@altera.com> | |
588 | L: linux-gpio@vger.kernel.org | |
589 | S: Maintained | |
590 | F: drivers/gpio/gpio-altera.c | |
591 | ||
16b8b922 | 592 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 593 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
594 | L: netdev@vger.kernel.org |
595 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
596 | S: Maintained | |
597 | F: drivers/net/ethernet/altera/ | |
598 | ||
adf9251f TK |
599 | ALTERA UART/JTAG UART SERIAL DRIVERS |
600 | M: Tobias Klauser <tklauser@distanz.ch> | |
601 | L: linux-serial@vger.kernel.org | |
61bd0943 | 602 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
603 | S: Maintained |
604 | F: drivers/tty/serial/altera_uart.c | |
605 | F: drivers/tty/serial/altera_jtaguart.c | |
606 | F: include/linux/altera_uart.h | |
607 | F: include/linux/altera_jtaguart.h | |
608 | ||
f4875e12 TL |
609 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
610 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
611 | L: linux-crypto@vger.kernel.org | |
612 | S: Supported | |
613 | F: drivers/crypto/ccp/ | |
614 | F: include/linux/ccp.h | |
615 | ||
512d1027 | 616 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 617 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
618 | L: lm-sensors@lm-sensors.org |
619 | S: Maintained | |
620 | F: Documentation/hwmon/fam15h_power | |
621 | F: drivers/hwmon/fam15h_power.c | |
622 | ||
167a675a | 623 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 624 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 625 | S: Orphan |
faf2e1db | 626 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 627 | |
f90b8116 | 628 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 629 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 630 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
631 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
632 | S: Supported | |
679655da JP |
633 | F: drivers/char/hw_random/geode-rng.c |
634 | F: drivers/crypto/geode* | |
8a61f013 | 635 | F: drivers/video/fbdev/geode/ |
679655da | 636 | F: arch/x86/include/asm/geode.h |
f90b8116 | 637 | |
919ee7dd | 638 | AMD IOMMU (AMD-VI) |
e4110568 | 639 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 640 | L: iommu@lists.linux-foundation.org |
525b233c | 641 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 642 | S: Maintained |
b2c16391 JP |
643 | F: drivers/iommu/amd_iommu*.[ch] |
644 | F: include/linux/amd-iommu.h | |
919ee7dd | 645 | |
16423d67 | 646 | AMD KFD |
1241e0b4 | 647 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
648 | L: dri-devel@lists.freedesktop.org |
649 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
650 | S: Supported | |
130e0371 OG |
651 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
652 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 653 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 654 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 655 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
656 | F: drivers/gpu/drm/amd/include/cik_structs.h |
657 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 658 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
659 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
660 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
661 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 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 | |
21c75328 DD |
792 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
793 | M: Duc Dang <dhdang@apm.com> | |
794 | S: Supported | |
795 | F: arch/arm64/boot/dts/apm/ | |
796 | ||
24299502 IS |
797 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
798 | M: Iyappan Subramanian <isubramanian@apm.com> | |
799 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
800 | S: Supported |
801 | F: drivers/net/ethernet/apm/xgene/ | |
802 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
803 | ||
62a37dc7 LP |
804 | APTINA CAMERA SENSOR PLL |
805 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
806 | L: linux-media@vger.kernel.org | |
807 | S: Maintained | |
808 | F: drivers/media/i2c/aptina-pll.* | |
809 | ||
1154ea7d | 810 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 811 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 812 | S: Maintained |
8a61f013 JH |
813 | F: drivers/video/fbdev/arcfb.c |
814 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 815 | |
c38f6ac7 MG |
816 | ARCNET NETWORK LAYER |
817 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
818 | L: netdev@vger.kernel.org | |
819 | S: Maintained | |
820 | F: drivers/net/arcnet/ | |
821 | F: include/uapi/linux/if_arcnet.h | |
822 | ||
1da177e4 | 823 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 824 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 825 | S: Maintained |
679655da JP |
826 | F: arch/arm/lib/floppydma.S |
827 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 828 | |
6f96521f WD |
829 | ARM PMU PROFILING AND DEBUGGING |
830 | M: Will Deacon <will.deacon@arm.com> | |
70e238df | 831 | R: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 832 | S: Maintained |
dd06a84b | 833 | F: arch/arm*/kernel/perf_* |
6f96521f | 834 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
835 | F: arch/arm*/kernel/hw_breakpoint.c |
836 | F: arch/arm*/include/asm/hw_breakpoint.h | |
837 | F: arch/arm*/include/asm/perf_event.h | |
fa8ad788 MR |
838 | F: drivers/perf/arm_pmu.c |
839 | F: include/linux/perf/arm_pmu.h | |
6f96521f | 840 | |
d4275354 | 841 | ARM PORT |
8b58be88 | 842 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 843 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
844 | W: http://www.arm.linux.org.uk/ |
845 | S: Maintained | |
846 | F: arch/arm/ | |
847 | ||
d323c243 SB |
848 | ARM SUB-ARCHITECTURES |
849 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 850 | S: Maintained |
d323c243 SB |
851 | F: arch/arm/mach-*/ |
852 | F: arch/arm/plat-*/ | |
853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
854 | ||
cefbf4ea RK |
855 | ARM PRIMECELL AACI PL041 DRIVER |
856 | M: Russell King <linux@arm.linux.org.uk> | |
857 | S: Maintained | |
858 | F: sound/arm/aaci.* | |
859 | ||
860 | ARM PRIMECELL CLCD PL110 DRIVER | |
861 | M: Russell King <linux@arm.linux.org.uk> | |
862 | S: Maintained | |
8a61f013 | 863 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
864 | |
865 | ARM PRIMECELL KMI PL050 DRIVER | |
866 | M: Russell King <linux@arm.linux.org.uk> | |
867 | S: Maintained | |
868 | F: drivers/input/serio/ambakmi.* | |
869 | F: include/linux/amba/kmi.h | |
870 | ||
2761f5c2 | 871 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
872 | M: Russell King <linux@arm.linux.org.uk> |
873 | S: Maintained | |
679655da | 874 | F: drivers/mmc/host/mmci.* |
2f748aaa | 875 | F: include/linux/amba/mmci.h |
2761f5c2 | 876 | |
1b4304e5 RK |
877 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
878 | M: Russell King <linux@arm.linux.org.uk> | |
879 | S: Maintained | |
880 | F: drivers/tty/serial/amba-pl01*.c | |
881 | F: include/linux/amba/serial.h | |
2761f5c2 | 882 | |
cefbf4ea RK |
883 | ARM PRIMECELL BUS SUPPORT |
884 | M: Russell King <linux@arm.linux.org.uk> | |
885 | S: Maintained | |
886 | F: drivers/amba/ | |
887 | F: include/linux/amba/bus.h | |
888 | ||
2b7a52a4 | 889 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 890 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 891 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
892 | S: Maintained |
893 | ||
9c784f95 | 894 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 895 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 896 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
897 | S: Maintained |
898 | ||
2b7a52a4 | 899 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 900 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 901 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
902 | S: Maintained |
903 | ||
5c6dcd7f | 904 | ARM/Allwinner sunXi SoC support |
1b106699 | 905 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 906 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
907 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
908 | S: Maintained | |
5c6dcd7f | 909 | N: sun[x456789]i |
60b0f380 MR |
910 | |
911 | ARM/Allwinner SoC Clock Support | |
912 | M: Emilio LĂ³pez <emilio@elopez.com.ar> | |
913 | S: Maintained | |
914 | F: drivers/clk/sunxi/ | |
1b106699 | 915 | |
7c1e3876 CC |
916 | ARM/Amlogic MesonX SoC support |
917 | M: Carlo Caione <carlo@caione.org> | |
918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
919 | S: Maintained | |
12ddbadf | 920 | F: drivers/media/rc/meson-ir.c |
7c1e3876 CC |
921 | N: meson[x68] |
922 | ||
eff506fa TZ |
923 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
924 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
925 | S: Maintained | |
926 | F: arch/arm/mach-alpine/ | |
927 | ||
8dca5ce8 | 928 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 929 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 930 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 931 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 932 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 NF |
933 | W: http://www.linux4sam.org |
934 | S: Supported | |
935 | F: arch/arm/mach-at91/ | |
f0a0a58e | 936 | F: include/soc/at91/ |
70e389cc MB |
937 | F: arch/arm/boot/dts/at91*.dts |
938 | F: arch/arm/boot/dts/at91*.dtsi | |
939 | F: arch/arm/boot/dts/sama*.dts | |
940 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 941 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 942 | |
6e05dd4e BB |
943 | ARM/ATMEL AT91 Clock Support |
944 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
945 | S: Maintained | |
946 | F: drivers/clk/at91 | |
947 | ||
986cf2e9 | 948 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 949 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
950 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
951 | S: Maintained | |
952 | F: arch/arm/mach-highbank/ | |
953 | ||
d94f944e | 954 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 955 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
956 | S: Maintained |
957 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 958 | |
4863dea3 SG |
959 | ARM/CAVIUM THUNDER NETWORK DRIVER |
960 | M: Sunil Goutham <sgoutham@cavium.com> | |
961 | M: Robert Richter <rric@kernel.org> | |
962 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
963 | S: Supported | |
322e5cc5 | 964 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 965 | |
386ab516 AS |
966 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
967 | M: Alexander Shiyan <shc_work@mail.ru> | |
968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
969 | S: Odd Fixes | |
b8ba3874 | 970 | N: clps711x |
386ab516 | 971 | |
2b7a52a4 | 972 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 973 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 974 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 975 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 976 | S: Maintained |
d19d3667 HS |
977 | F: arch/arm/mach-ep93xx/ |
978 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
979 | |
980 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 981 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
983 | S: Maintained |
984 | ||
d4275354 | 985 | ARM/CLKDEV SUPPORT |
8b58be88 | 986 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 987 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 988 | S: Maintained |
d4275354 | 989 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 990 | F: drivers/clk/clkdev.c |
d4275354 | 991 | |
d48134e7 | 992 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 993 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 994 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
995 | S: Maintained |
996 | ||
94150095 HF |
997 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
998 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
999 | S: Maintained | |
1000 | F: arch/arm/mach-ep93xx/micro9.c | |
1001 | ||
a06ae860 PP |
1002 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1003 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1004 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1005 | S: Maintained | |
01081f5a | 1006 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1007 | F: Documentation/trace/coresight.txt |
1008 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1009 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
a06ae860 | 1010 | |
1da177e4 | 1011 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1012 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1013 | S: Maintained |
1014 | ||
881a95f9 | 1015 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1016 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1017 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1018 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1019 | S: Maintained |
f49afbb5 | 1020 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1021 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1022 | |
a990cbd8 | 1023 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1024 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1025 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
1027 | S: Maintained |
1028 | F: arch/arm/mach-prima2/ | |
4a9c44f1 | 1029 | F: drivers/clk/sirf/ |
05f30e8d | 1030 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1031 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1032 | N: [^a-z]sirf |
a990cbd8 | 1033 | |
c9d862c4 BS |
1034 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1035 | M: Baruch Siach <baruch@tkos.co.il> | |
1036 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1037 | S: Maintained | |
cde137aa | 1038 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1039 | N: digicolor |
1040 | ||
d4275354 | 1041 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 1042 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1043 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1044 | W: http://www.arm.linux.org.uk/ |
1045 | S: Maintained | |
1046 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1047 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1048 | |
4721f3ce UKK |
1049 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1050 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1051 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1052 | S: Maintained | |
1053 | N: efm32 | |
1054 | ||
a9da4f7e | 1055 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1056 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1057 | M: Stefan Schmidt <stefan@openezx.org> | |
1058 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1059 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1060 | W: http://www.openezx.org/ |
1061 | S: Maintained | |
cafc2265 SS |
1062 | T: topgit git://git.openezx.org/openezx.git |
1063 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1064 | |
6a915af9 | 1065 | ARM/FARADAY FA526 PORT |
162500b3 | 1066 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1068 | S: Maintained |
1fa7e547 | 1069 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1070 | F: arch/arm/mm/*-fa* |
6a915af9 | 1071 | |
d4275354 | 1072 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 1073 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1074 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1075 | W: http://www.arm.linux.org.uk/ |
1076 | S: Maintained | |
1077 | F: arch/arm/include/asm/hardware/dec21285.h | |
1078 | F: arch/arm/mach-footbridge/ | |
1079 | ||
86183a5f | 1080 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1081 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1082 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 1083 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1084 | S: Maintained |
f1c12837 | 1085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1086 | F: arch/arm/mach-imx/ |
ce515a6b | 1087 | F: arch/arm/mach-mxs/ |
2a82f95c | 1088 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1089 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1090 | F: drivers/clk/imx/ |
1091 | F: include/soc/imx/ | |
86183a5f | 1092 | |
142109d2 | 1093 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1094 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1095 | M: Sascha Hauer <kernel@pengutronix.de> |
1096 | R: Stefan Agner <stefan@agner.ch> | |
1097 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1098 | S: Maintained | |
1099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1100 | F: arch/arm/mach-imx/*vf610* | |
1101 | F: arch/arm/boot/dts/vf* | |
1102 | ||
2b7a52a4 | 1103 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1104 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1105 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1106 | S: Maintained |
1107 | ||
90b8fc34 | 1108 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1109 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1110 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1111 | S: Maintained |
1112 | ||
ef47d5f0 | 1113 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1114 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1115 | M: Paul Parsons <lost.distance@yahoo.com> |
1116 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1117 | S: Maintained |
1118 | F: arch/arm/mach-pxa/hx4700.c | |
1119 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1120 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1121 | |
4dfad069 WX |
1122 | ARM/HISILICON SOC SUPPORT |
1123 | M: Wei Xu <xuwei5@hisilicon.com> | |
1124 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1125 | W: http://www.hisilicon.com | |
1126 | S: Supported | |
1127 | T: git git://github.com/hisilicon/linux-hisi.git | |
1128 | F: arch/arm/mach-hisi/ | |
1129 | ||
21f37bc3 | 1130 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1131 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1132 | W: www.jlime.com |
1133 | S: Maintained | |
084bad91 KE |
1134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1135 | F: arch/arm/mach-sa1100/jornada720.c | |
1136 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1137 | |
5e767ab9 JMC |
1138 | ARM/IGEP MACHINE SUPPORT |
1139 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1140 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1141 | L: linux-omap@vger.kernel.org | |
1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1143 | S: Maintained | |
06ff74fd | 1144 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1145 | |
403d2971 MV |
1146 | ARM/INCOME PXA270 SUPPORT |
1147 | M: Marek Vasut <marek.vasut@gmail.com> | |
1148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1149 | S: Maintained | |
ec154082 | 1150 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1151 | |
2b7a52a4 | 1152 | ARM/INTEL IOP32X ARM ARCHITECTURE |
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 |
e2bdb176 DW |
1156 | |
1157 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1158 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1159 | S: Orphan |
2b7a52a4 LB |
1160 | |
1161 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1162 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1163 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1164 | S: Maintained |
2b7a52a4 LB |
1165 | |
1166 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1167 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1168 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1169 | S: Maintained |
2b7a52a4 | 1170 | |
2b7a52a4 | 1171 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1172 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1173 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1174 | S: Maintained |
1175 | ||
dfdd8cc9 KH |
1176 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1177 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1178 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1179 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1180 | S: Maintained |
1181 | F: arch/arm/mach-ixp4xx/ | |
1182 | ||
838553c5 | 1183 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1184 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1185 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1186 | S: Maintained | |
1187 | F: arch/arm/mach-pxa/stargate2.c | |
1188 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1189 | ||
2b7a52a4 | 1190 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1191 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1192 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1193 | S: Maintained |
2b7a52a4 LB |
1194 | |
1195 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1196 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1197 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1198 | S: Maintained |
1199 | ||
1154f858 | 1200 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1201 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1202 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1203 | S: Maintained | |
1204 | F: arch/arm/mach-keystone/ | |
317929cd | 1205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1206 | |
bc6aa566 | 1207 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1208 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1209 | L: linux-kernel@vger.kernel.org |
1210 | S: Maintained | |
1211 | F: drivers/clk/keystone/ | |
1212 | ||
1213 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1214 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1215 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1216 | L: linux-kernel@vger.kernel.org | |
1217 | S: Maintained | |
1218 | F: drivers/clocksource/timer-keystone.c | |
1219 | ||
1220 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1221 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1222 | L: linux-kernel@vger.kernel.org |
1223 | S: Maintained | |
1224 | F: drivers/power/reset/keystone-reset.c | |
1225 | ||
1226 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1227 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1228 | L: linux-kernel@vger.kernel.org |
1229 | S: Maintained | |
1230 | F: drivers/memory/*emif* | |
1231 | ||
2b7a52a4 | 1232 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1233 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1234 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1235 | S: Maintained |
1236 | ||
3143875f JE |
1237 | ARM/LPC18XX ARCHITECTURE |
1238 | M: Joachim Eastwood <manabian@gmail.com> | |
1239 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1240 | S: Maintained | |
19c1c32c JE |
1241 | F: arch/arm/boot/dts/lpc43* |
1242 | F: drivers/clk/nxp/clk-lpc18xx* | |
1243 | F: drivers/clocksource/time-lpc32xx.c | |
1244 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1245 | F: drivers/memory/pl172.c | |
1246 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1247 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1248 | N: lpc18xx |
1249 | ||
3b886171 | 1250 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1251 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1252 | S: Maintained |
1253 | ||
31c17ac9 | 1254 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support |
75f41273 TP |
1255 | M: Jason Cooper <jason@lakedaemon.net> |
1256 | M: Andrew Lunn <andrew@lunn.ch> | |
1257 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1258 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1260 | S: Maintained | |
1261 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1262 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1263 | F: arch/arm/boot/dts/armada* |
1264 | F: arch/arm/boot/dts/kirkwood* | |
1265 | ||
75f41273 | 1266 | |
40f4978b SH |
1267 | ARM/Marvell Berlin SoC support |
1268 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1269 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1270 | S: Maintained | |
1271 | F: arch/arm/mach-berlin/ | |
31c17ac9 GC |
1272 | F: arch/arm/boot/dts/berlin* |
1273 | ||
40f4978b | 1274 | |
4cfab57e | 1275 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1276 | M: Jason Cooper <jason@lakedaemon.net> |
1277 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1278 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1279 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1280 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1281 | S: Maintained |
1282 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1283 | F: arch/arm/mach-mv78xx0/ |
1284 | F: arch/arm/mach-orion5x/ | |
1285 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1286 | F: arch/arm/boot/dts/dove* |
1287 | F: arch/arm/boot/dts/orion5x* | |
1288 | ||
3b886171 | 1289 | |
d69ac131 AC |
1290 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1291 | M: Alexander Clouter <alex@digriz.org.uk> | |
1292 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1293 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1294 | S: Maintained | |
1295 | F: arch/arm/mach-orion5x/ts78xx-* | |
1296 | ||
607b8fc9 EH |
1297 | ARM/Mediatek RTC DRIVER |
1298 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1299 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1300 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1301 | S: Maintained | |
1302 | F: drivers/rtc/rtc-mt6397.c | |
1303 | ||
e54951c8 MB |
1304 | ARM/Mediatek SoC support |
1305 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1306 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1307 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1308 | S: Maintained |
1309 | F: arch/arm/boot/dts/mt6* | |
1310 | F: arch/arm/boot/dts/mt8* | |
1311 | F: arch/arm/mach-mediatek/ | |
1312 | N: mtk | |
1313 | K: mediatek | |
1314 | ||
0f8669e3 CY |
1315 | ARM/Mediatek USB3 PHY DRIVER |
1316 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1317 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1318 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1319 | S: Maintained | |
1320 | F: drivers/phy/phy-mt65xx-usb3.c | |
1321 | ||
adcb079f AB |
1322 | ARM/MICREL KS8695 ARCHITECTURE |
1323 | M: Greg Ungerer <gerg@uclinux.org> | |
1324 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1325 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1326 | S: Odd Fixes |
1327 | ||
d78ff0a5 | 1328 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1329 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1330 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1331 | F: arch/arm/mach-pxa/mioa701.c |
1332 | S: Maintained | |
1333 | ||
9624dfe6 | 1334 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1335 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1336 | S: Maintained |
1337 | ||
e0ee9851 | 1338 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1339 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1340 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1341 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1342 | S: Maintained | |
1343 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1344 | F: drivers/pinctrl/nomadik/ |
87572880 | 1345 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1347 | |
9d76295a | 1348 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1349 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1350 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1351 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1352 | S: Supported | |
1353 | ||
8459c159 | 1354 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1355 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1356 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1357 | S: Maintained |
1358 | ||
5d783a2d | 1359 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1360 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1361 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1362 | W: http://hackndev.com |
1363 | S: Maintained | |
933d35f0 JP |
1364 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1365 | F: arch/arm/mach-pxa/palmtx.c | |
1366 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1367 | F: arch/arm/mach-pxa/palmt5.c | |
1368 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1369 | F: arch/arm/mach-pxa/palmld.c | |
1370 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1371 | F: arch/arm/mach-pxa/palmte2.c | |
1372 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1373 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1374 | |
b57fe924 | 1375 | ARM/PALM TREO SUPPORT |
d8130624 | 1376 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1377 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1378 | W: http://hackndev.com |
1379 | S: Maintained | |
b57fe924 JP |
1380 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1381 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1382 | |
c49e1e63 | 1383 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1384 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1385 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1386 | W: http://hackndev.com |
1387 | S: Maintained | |
933d35f0 JP |
1388 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1389 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1390 | |
1da177e4 | 1391 | ARM/PLEB SUPPORT |
8b58be88 | 1392 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1393 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1394 | S: Maintained | |
1395 | ||
1396 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1397 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1398 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1399 | W: http://www.arm.linux.org.uk/ |
1400 | S: Maintained | |
1401 | ||
8fc1b0f8 KG |
1402 | ARM/QUALCOMM SUPPORT |
1403 | M: Kumar Gala <galak@codeaurora.org> | |
f5d3af9d | 1404 | M: Andy Gross <agross@codeaurora.org> |
8fc1b0f8 KG |
1405 | M: David Brown <davidb@codeaurora.org> |
1406 | L: linux-arm-msm@vger.kernel.org | |
f5d3af9d | 1407 | L: linux-soc@vger.kernel.org |
8fc1b0f8 KG |
1408 | S: Maintained |
1409 | F: arch/arm/mach-qcom/ | |
f5d3af9d | 1410 | F: drivers/soc/qcom/ |
c0c89faf SB |
1411 | F: drivers/tty/serial/msm_serial.h |
1412 | F: drivers/tty/serial/msm_serial.c | |
1413 | F: drivers/*/pm8???-* | |
1414 | F: drivers/mfd/ssbi.c | |
916f743d | 1415 | F: drivers/firmware/qcom_scm.c |
8fc1b0f8 KG |
1416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
1417 | ||
2b7a52a4 | 1418 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1419 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1420 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1421 | S: Maintained |
1422 | ||
d4275354 | 1423 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1424 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1425 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1426 | W: http://www.arm.linux.org.uk/ |
1427 | S: Maintained | |
d4275354 RK |
1428 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1429 | F: arch/arm/include/asm/hardware/ioc.h | |
1430 | F: arch/arm/include/asm/hardware/iomd.h | |
1431 | F: arch/arm/include/asm/hardware/memc.h | |
1432 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1433 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1434 | F: drivers/net/ethernet/i825xx/ether1* |
1435 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1436 | F: drivers/scsi/arm/ |
1437 | ||
08ddbb0a HS |
1438 | ARM/Rockchip SoC support |
1439 | M: Heiko Stuebner <heiko@sntech.de> | |
1440 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1441 | L: linux-rockchip@lists.infradead.org |
08ddbb0a | 1442 | S: Maintained |
541555e9 | 1443 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1444 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1445 | F: drivers/clk/rockchip/ |
1446 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1447 | F: drivers/*/*rockchip* |
541555e9 HS |
1448 | F: drivers/*/*/*rockchip* |
1449 | F: sound/soc/rockchip/ | |
b4331b43 | 1450 | N: rockchip |
08ddbb0a | 1451 | |
5bfb937c KK |
1452 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1453 | M: Kukjin Kim <kgene@kernel.org> | |
e8f98457 | 1454 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
efc03ecb | 1455 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1456 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1457 | S: Maintained |
6f0589c8 MB |
1458 | F: arch/arm/boot/dts/s3c* |
1459 | F: arch/arm/boot/dts/exynos* | |
d97236e6 | 1460 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1461 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1462 | F: arch/arm/mach-s3c24*/ |
1463 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1464 | F: arch/arm/mach-s5p*/ |
1465 | F: arch/arm/mach-exynos*/ | |
eb2ffcaf BD |
1466 | F: drivers/*/*s3c2410* |
1467 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1468 | F: drivers/spi/spi-s3c* |
1469 | F: sound/soc/samsung/* | |
d6b9aea6 KK |
1470 | F: Documentation/arm/Samsung/ |
1471 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1472 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1473 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1474 | N: exynos |
f556cb07 | 1475 | |
10ffa964 KP |
1476 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1477 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1478 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1479 | S: Maintained | |
004bbd3c | 1480 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1481 | |
3ce4ccb6 KD |
1482 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1483 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1484 | M: Kamil Debski <k.debski@samsung.com> | |
1485 | L: linux-arm-kernel@lists.infradead.org | |
1486 | L: linux-media@vger.kernel.org | |
1487 | S: Maintained | |
1488 | F: drivers/media/platform/s5p-g2d/ | |
1489 | ||
e6a476fd MS |
1490 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1491 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1492 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1493 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1494 | L: linux-arm-kernel@lists.infradead.org |
1495 | L: linux-media@vger.kernel.org | |
1496 | S: Maintained | |
934455d7 | 1497 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1498 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1499 | |
1500 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1501 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1502 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1503 | L: linux-arm-kernel@lists.infradead.org | |
1504 | L: linux-media@vger.kernel.org | |
1505 | S: Maintained | |
90d72ac6 | 1506 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1507 | |
7d9f9bf4 AP |
1508 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1509 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1510 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1511 | L: linux-arm-kernel@lists.infradead.org | |
1512 | L: linux-media@vger.kernel.org | |
1513 | S: Maintained | |
1514 | F: drivers/media/platform/s5p-jpeg/ | |
1515 | ||
d48d38e8 | 1516 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1517 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1518 | M: Magnus Damm <magnus.damm@gmail.com> |
1519 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1520 | W: http://oss.renesas.com |
bbff48f5 | 1521 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1523 | S: Supported |
0b514fdb SH |
1524 | F: arch/arm/boot/dts/emev2* |
1525 | F: arch/arm/boot/dts/r7s* | |
1526 | F: arch/arm/boot/dts/r8a* | |
1527 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1528 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1529 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 PM |
1530 | F: arch/arm/mach-shmobile/ |
1531 | F: drivers/sh/ | |
1532 | ||
66314223 | 1533 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1534 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1535 | S: Maintained |
1536 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1537 | F: arch/arm/boot/dts/socfpga* |
1538 | F: arch/arm/configs/socfpga_defconfig | |
ba2b7d0a | 1539 | W: http://www.rocketboards.org |
efadb751 | 1540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1541 | |
1542 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1543 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1544 | S: Maintained |
1545 | F: drivers/clk/socfpga/ | |
1546 | ||
71bcada8 TT |
1547 | ARM/SOCFPGA EDAC SUPPORT |
1548 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1549 | S: Maintained | |
1550 | F: drivers/edac/altera_edac. | |
1551 | ||
65ebcc11 | 1552 | ARM/STI ARCHITECTURE |
a92177ea SK |
1553 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1554 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1555 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1556 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1557 | L: kernel@stlinux.com | |
1558 | W: http://www.stlinux.com | |
1559 | S: Maintained | |
1560 | F: arch/arm/mach-sti/ | |
a92177ea | 1561 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1562 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1563 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1564 | F: drivers/clocksource/clksrc_st_lpc.c |
a92177ea | 1565 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1566 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1567 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1568 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1569 | F: drivers/phy/phy-miphy28lp.c |
1570 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1571 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1572 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a GKH |
1573 | F: drivers/pinctrl/pinctrl-st.c |
1574 | F: drivers/reset/sti/ | |
db4112e6 | 1575 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1576 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1577 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1578 | F: drivers/usb/host/ehci-st.c |
1579 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1580 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1581 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1582 | |
ee6e7879 MC |
1583 | ARM/STM32 ARCHITECTURE |
1584 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
1585 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1586 | S: Maintained | |
1587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1588 | N: stm32 | |
1589 | F: drivers/clocksource/armv7m_systick.c | |
1590 | ||
2b7a52a4 | 1591 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1592 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1593 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1594 | S: Maintained |
1595 | ||
1bbd7089 | 1596 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1597 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1598 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1599 | S: Maintained | |
1600 | ||
2b7a52a4 | 1601 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1602 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1603 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1604 | S: Maintained |
1605 | ||
98ad6e3b | 1606 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1607 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1608 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1609 | W: http://www.mcuos.com |
1610 | S: Maintained | |
4e89e8f6 | 1611 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1612 | F: drivers/input/keyboard/w90p910_keypad.c |
1613 | F: drivers/input/touchscreen/w90p910_ts.c | |
1614 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1615 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1616 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1617 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1618 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1619 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1620 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1621 | |
54274d71 | 1622 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1623 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1624 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1625 | S: Supported | |
1626 | F: arch/arm/mach-u300/ | |
9affbd24 | 1627 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1628 | F: drivers/i2c/busses/i2c-stu300.c |
1629 | F: drivers/rtc/rtc-coh901331.c | |
1630 | F: drivers/watchdog/coh901327_wdt.c | |
1631 | F: drivers/dma/coh901318* | |
87572880 LW |
1632 | F: drivers/mfd/ab3100* |
1633 | F: drivers/rtc/rtc-ab3100.c | |
1634 | F: drivers/rtc/rtc-coh901331.c | |
1635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1636 | |
3d00d04f MY |
1637 | ARM/UNIPHIER ARCHITECTURE |
1638 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1639 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1640 | S: Maintained | |
a3ff83d2 | 1641 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1642 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1643 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1644 | F: arch/arm/mm/cache-uniphier.c |
dd6fd4a3 | 1645 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 MY |
1646 | F: drivers/pinctrl/uniphier/ |
1647 | F: drivers/tty/serial/8250/8250_uniphier.c | |
3d00d04f MY |
1648 | N: uniphier |
1649 | ||
87572880 | 1650 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1651 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1652 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1653 | S: Maintained | |
1654 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1655 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1656 | F: drivers/dma/ste_dma40* |
e4651a9f | 1657 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1658 | F: drivers/mfd/abx500* |
1659 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1660 | F: drivers/mfd/dbx500* |
1661 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1662 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1663 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1664 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1665 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1666 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1667 | |
e93fde28 UH |
1668 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1669 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1670 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1671 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1672 | S: Maintained | |
1673 | F: drivers/clk/ux500/ | |
1674 | F: include/linux/platform_data/clk-ux500.h | |
1675 | ||
740d93b1 PM |
1676 | ARM/VERSATILE EXPRESS PLATFORM |
1677 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1678 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1679 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1680 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1681 | S: Maintained | |
1682 | F: arch/arm/boot/dts/vexpress* | |
9ccd6080 | 1683 | F: arch/arm64/boot/dts/arm/vexpress* |
740d93b1 PM |
1684 | F: arch/arm/mach-vexpress/ |
1685 | F: */*/vexpress* | |
7e8f403f | 1686 | F: */*/*/vexpress* |
740d93b1 PM |
1687 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1688 | F: drivers/clocksource/versatile.c | |
1689 | ||
d4275354 | 1690 | ARM/VFP SUPPORT |
8b58be88 | 1691 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1692 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1693 | W: http://www.arm.linux.org.uk/ |
1694 | S: Maintained | |
1695 | F: arch/arm/vfp/ | |
1696 | ||
e66b6d8e MV |
1697 | ARM/VOIPAC PXA270 SUPPORT |
1698 | M: Marek Vasut <marek.vasut@gmail.com> | |
1699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1700 | S: Maintained | |
1701 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1702 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1703 | |
04529fe2 TP |
1704 | ARM/VT8500 ARM ARCHITECTURE |
1705 | M: Tony Prisk <linux@prisktech.co.nz> | |
1706 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1707 | S: Maintained | |
1708 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1709 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1710 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1711 | F: drivers/mmc/host/wmt-sdmmc.c |
1712 | F: drivers/pwm/pwm-vt8500.c | |
1713 | F: drivers/rtc/rtc-vt8500.c | |
1714 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1715 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1716 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1717 | F: drivers/video/fbdev/vt8500lcdfb.* |
1718 | F: drivers/video/fbdev/wm8505fb* | |
1719 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1720 | |
e66b6d8e MV |
1721 | ARM/ZIPIT Z2 SUPPORT |
1722 | M: Marek Vasut <marek.vasut@gmail.com> | |
1723 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1724 | S: Maintained | |
1725 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1726 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1727 | |
5ecc4b53 JN |
1728 | ARM/ZTE ARCHITECTURE |
1729 | M: Jun Nie <jun.nie@linaro.org> | |
1730 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1731 | S: Maintained | |
1732 | F: arch/arm/mach-zx/ | |
1733 | F: drivers/clk/zte/ | |
1734 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1735 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1736 | ||
51f29d44 MS |
1737 | ARM/ZYNQ ARCHITECTURE |
1738 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1739 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1740 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1741 | W: http://wiki.xilinx.com | |
d6448b76 | 1742 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1743 | S: Supported |
1744 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1745 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1746 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1747 | N: zynq |
1748 | N: xilinx | |
1749 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1750 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1751 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1752 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1753 | |
48ec83bc | 1754 | ARM SMMU DRIVERS |
b8f9879e WD |
1755 | M: Will Deacon <will.deacon@arm.com> |
1756 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1757 | S: Maintained | |
1758 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1759 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1760 | F: drivers/iommu/io-pgtable-arm.c |
b8f9879e | 1761 | |
38074229 CM |
1762 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1763 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1764 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1765 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1766 | S: Maintained | |
1767 | F: arch/arm64/ | |
d19766ec | 1768 | F: Documentation/arm64/ |
38074229 | 1769 | |
9d7005f9 LP |
1770 | AS3645A LED FLASH CONTROLLER DRIVER |
1771 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1772 | L: linux-media@vger.kernel.org | |
1773 | T: git git://linuxtv.org/media_tree.git | |
1774 | S: Maintained | |
1775 | F: drivers/media/i2c/as3645a.c | |
1776 | F: include/media/as3645a.h | |
1777 | ||
d58de038 GJ |
1778 | ASC7621 HARDWARE MONITOR DRIVER |
1779 | M: George Joseph <george.joseph@fairview5.com> | |
1780 | L: lm-sensors@lm-sensors.org | |
1781 | S: Maintained | |
1782 | F: Documentation/hwmon/asc7621 | |
1783 | F: drivers/hwmon/asc7621.c | |
1784 | ||
b229ece9 | 1785 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1786 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1787 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1788 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1789 | W: http://acpi4asus.sf.net |
85091b71 | 1790 | S: Maintained |
b229ece9 CC |
1791 | F: drivers/platform/x86/asus*.c |
1792 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1793 | |
953a6479 | 1794 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 1795 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1796 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 1797 | S: Odd fixes |
679655da JP |
1798 | F: Documentation/crypto/async-tx-api.txt |
1799 | F: crypto/async_tx/ | |
1800 | F: drivers/dma/ | |
1801 | F: include/linux/dmaengine.h | |
1802 | F: include/linux/async_tx.h | |
b3e5f263 | 1803 | |
a1867d36 | 1804 | AT24 EEPROM DRIVER |
14d77c4d | 1805 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1806 | L: linux-i2c@vger.kernel.org |
1807 | S: Maintained | |
1808 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1809 | F: include/linux/platform_data/at24.h |
a1867d36 | 1810 | |
e7839f25 | 1811 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
1812 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
1813 | W: http://www.openaoe.org/ | |
1da177e4 | 1814 | S: Supported |
679655da JP |
1815 | F: Documentation/aoe/ |
1816 | F: drivers/block/aoe/ | |
1da177e4 | 1817 | |
aad7a211 AB |
1818 | ATHEROS 71XX/9XXX GPIO DRIVER |
1819 | M: Alban Bedel <albeu@free.fr> | |
1820 | W: https://github.com/AlbanBedel/linux | |
1821 | T: git git://github.com/AlbanBedel/linux | |
1822 | S: Maintained | |
1823 | F: drivers/gpio/gpio-ath79.c | |
1824 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
1825 | ||
9a10a870 | 1826 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1827 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1828 | L: linux-wireless@vger.kernel.org |
1829 | S: Supported | |
1830 | F: drivers/net/wireless/ath/* | |
1831 | ||
fa1c114f | 1832 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1833 | M: Jiri Slaby <jirislaby@gmail.com> |
1834 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1835 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 1836 | L: linux-wireless@vger.kernel.org |
72c706b7 | 1837 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1838 | S: Maintained |
fa451753 | 1839 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1840 | |
12e62d6f KV |
1841 | ATHEROS ATH6KL WIRELESS DRIVER |
1842 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1843 | L: linux-wireless@vger.kernel.org | |
1844 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1845 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1846 | S: Supported |
1847 | F: drivers/net/wireless/ath/ath6kl/ | |
1848 | ||
2be7d22f VK |
1849 | WILOCITY WIL6210 WIRELESS DRIVER |
1850 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1851 | L: linux-wireless@vger.kernel.org | |
1852 | L: wil6210@qca.qualcomm.com | |
1853 | S: Supported | |
1854 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1855 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 1856 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 1857 | |
1d7e1e6b CL |
1858 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1859 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1860 | L: linux-wireless@vger.kernel.org | |
1861 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1862 | S: Maintained | |
1863 | F: drivers/net/wireless/ath/carl9170/ | |
1864 | ||
2c2a6172 LT |
1865 | ATK0110 HWMON DRIVER |
1866 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1867 | L: lm-sensors@lm-sensors.org | |
1868 | S: Maintained | |
1869 | F: drivers/hwmon/asus_atk0110.c | |
1870 | ||
6f69a6d7 | 1871 | ATI_REMOTE2 DRIVER |
8b58be88 | 1872 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1873 | S: Maintained |
679655da | 1874 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1875 | |
7ae115b4 | 1876 | ATLX ETHERNET DRIVERS |
8b58be88 | 1877 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1878 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1879 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1880 | W: http://sourceforge.net/projects/atl1 |
1881 | W: http://atl1.sourceforge.net | |
1882 | S: Maintained | |
2b133ad6 | 1883 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1884 | |
1da177e4 | 1885 | ATM |
366c1bd1 | 1886 | M: Chas Williams <3chas3@gmail.com> |
476604de | 1887 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1888 | L: netdev@vger.kernel.org |
1da177e4 LT |
1889 | W: http://linux-atm.sourceforge.net |
1890 | S: Maintained | |
679655da JP |
1891 | F: drivers/atm/ |
1892 | F: include/linux/atm* | |
c117ab84 | 1893 | F: include/uapi/linux/atm* |
1da177e4 | 1894 | |
04ac2f46 | 1895 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1896 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1897 | S: Maintained |
1898 | F: drivers/mmc/host/atmel-mci.c | |
1899 | F: drivers/mmc/host/atmel-mci-regs.h | |
1900 | ||
a1cfac48 | 1901 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1902 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1903 | S: Supported |
df621252 | 1904 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1905 | |
dfae90ed | 1906 | ATMEL Audio ALSA driver |
3a82002c | 1907 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
1908 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
1909 | S: Supported | |
1910 | F: sound/soc/atmel | |
1911 | ||
b414dc16 NF |
1912 | ATMEL DMA DRIVER |
1913 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1914 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1915 | S: Supported | |
1916 | F: drivers/dma/at_hdmac.c | |
1917 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1918 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1919 | |
6bd0f436 LD |
1920 | ATMEL XDMA DRIVER |
1921 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1922 | L: linux-arm-kernel@lists.infradead.org | |
1923 | L: dmaengine@vger.kernel.org | |
1924 | S: Supported | |
1925 | F: drivers/dma/at_xdmac.c | |
1926 | ||
888f2804 LD |
1927 | ATMEL I2C DRIVER |
1928 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1929 | L: linux-i2c@vger.kernel.org | |
1930 | S: Supported | |
1931 | F: drivers/i2c/busses/i2c-at91.c | |
1932 | ||
15515545 JW |
1933 | ATMEL ISI DRIVER |
1934 | M: Josh Wu <josh.wu@atmel.com> | |
1935 | L: linux-media@vger.kernel.org | |
1936 | S: Supported | |
f2294c2d | 1937 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1938 | F: include/media/atmel-isi.h |
1939 | ||
8f4c79ce | 1940 | ATMEL LCDFB DRIVER |
8b58be88 | 1941 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1942 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1943 | S: Maintained |
8a61f013 | 1944 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1945 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1946 | |
89e5785f | 1947 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1948 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1949 | S: Supported |
9f2f381f | 1950 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1951 | |
5cbac98a JW |
1952 | ATMEL NAND DRIVER |
1953 | M: Josh Wu <josh.wu@atmel.com> | |
1954 | L: linux-mtd@lists.infradead.org | |
1955 | S: Supported | |
1956 | F: drivers/mtd/nand/atmel_nand* | |
1957 | ||
05c441ef | 1958 | ATMEL SDMMC DRIVER |
1959 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1960 | L: linux-mmc@vger.kernel.org | |
1961 | S: Supported | |
1962 | F: drivers/mmc/host/sdhci-of-at91.c | |
1963 | ||
754ce4f2 | 1964 | ATMEL SPI DRIVER |
a02875a6 | 1965 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1966 | S: Supported |
9df92e6c | 1967 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1968 | |
0ef09015 | 1969 | ATMEL SSC DRIVER |
03515f32 | 1970 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
1971 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1972 | S: Supported | |
1973 | F: drivers/misc/atmel-ssc.c | |
1974 | F: include/linux/atmel-ssc.h | |
1975 | ||
e9cb1c5a NF |
1976 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1977 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1978 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1979 | S: Supported | |
1980 | F: drivers/misc/atmel_tclib.c | |
1981 | F: drivers/clocksource/tcb_clksrc.c | |
1982 | ||
914a3f3b | 1983 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1984 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1985 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1986 | S: Supported |
faf2e1db | 1987 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 1988 | |
1da177e4 | 1989 | ATMEL WIRELESS DRIVER |
8b58be88 | 1990 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1991 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1992 | W: http://www.thekelleys.org.uk/atmel |
1993 | W: http://atmelwlandriver.sourceforge.net/ | |
1994 | S: Maintained | |
679655da | 1995 | F: drivers/net/wireless/atmel* |
1da177e4 | 1996 | |
a14c0f8f ND |
1997 | ATMEL MAXTOUCH DRIVER |
1998 | M: Nick Dyer <nick.dyer@itdev.co.uk> | |
1999 | T: git git://github.com/atmel-maxtouch/linux.git | |
2000 | S: Supported | |
2001 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
2002 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2003 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2004 | ||
26780d9e | 2005 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2006 | M: Bradley Grove <linuxdrivers@attotech.com> |
2007 | L: linux-scsi@vger.kernel.org | |
2008 | W: http://www.attotech.com | |
2009 | S: Supported | |
2010 | F: drivers/scsi/esas2r | |
26780d9e | 2011 | |
bc6e17b8 SS |
2012 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2013 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2014 | L: linux-wpan@vger.kernel.org | |
2015 | S: Maintained | |
2016 | F: drivers/net/ieee802154/atusb.c | |
2017 | F: drivers/net/ieee802154/atusb.h | |
2018 | F: drivers/net/ieee802154/at86rf230.h | |
2019 | ||
a92b7b80 | 2020 | AUDIT SUBSYSTEM |
915f389d | 2021 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2022 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2023 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2024 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2025 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2026 | S: Maintained |
679655da | 2027 | F: include/linux/audit.h |
c117ab84 | 2028 | F: include/uapi/linux/audit.h |
679655da | 2029 | F: kernel/audit* |
a92b7b80 | 2030 | |
70e84049 | 2031 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2032 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2033 | W: http://miguelojeda.es/auxdisplay.htm |
2034 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2035 | S: Maintained |
679655da JP |
2036 | F: drivers/auxdisplay/ |
2037 | F: include/linux/cfag12864b.h | |
70e84049 | 2038 | |
5f97f7f9 | 2039 | AVR32 ARCHITECTURE |
e336f61f HCE |
2040 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2041 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2042 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2043 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2044 | W: http://avrfreaks.net/ |
e336f61f | 2045 | S: Maintained |
679655da | 2046 | F: arch/avr32/ |
5f97f7f9 HS |
2047 | |
2048 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2049 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2050 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2051 | S: Maintained | |
679655da | 2052 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2053 | |
1da177e4 | 2054 | AX.25 NETWORK LAYER |
8b58be88 | 2055 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2056 | L: linux-hams@vger.kernel.org |
d34cb28a | 2057 | W: http://www.linux-ax25.org/ |
1da177e4 | 2058 | S: Maintained |
c117ab84 | 2059 | F: include/uapi/linux/ax25.h |
679655da JP |
2060 | F: include/net/ax25.h |
2061 | F: net/ax25/ | |
1da177e4 | 2062 | |
d5269395 | 2063 | AZ6007 DVB DRIVER |
009a5410 | 2064 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d5269395 MCC |
2065 | L: linux-media@vger.kernel.org |
2066 | W: http://linuxtv.org | |
2067 | T: git git://linuxtv.org/media_tree.git | |
2068 | S: Maintained | |
2069 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2070 | ||
6777376e HV |
2071 | AZTECH FM RADIO RECEIVER DRIVER |
2072 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2073 | L: linux-media@vger.kernel.org | |
2074 | T: git git://linuxtv.org/media_tree.git | |
2075 | W: http://linuxtv.org | |
2076 | S: Maintained | |
2077 | F: drivers/media/radio/radio-aztech* | |
2078 | ||
e2d1d6c0 | 2079 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2080 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2081 | L: b43-dev@lists.infradead.org |
491b26b4 | 2082 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2083 | S: Odd Fixes |
679655da | 2084 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
2085 | |
2086 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2087 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2088 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2089 | L: b43-dev@lists.infradead.org |
491b26b4 | 2090 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2091 | S: Maintained |
679655da | 2092 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 2093 | |
300abeb5 | 2094 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2095 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2096 | M: Lee Jones <lee.jones@linaro.org> |
300abeb5 | 2097 | S: Maintained |
679655da JP |
2098 | F: drivers/video/backlight/ |
2099 | F: include/linux/backlight.h | |
300abeb5 | 2100 | |
c6c8fea2 | 2101 | BATMAN ADVANCED |
207df49e | 2102 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2103 | M: Simon Wunderlich <sw@simonwunderlich.de> |
207df49e | 2104 | M: Antonio Quartulli <antonio@meshcoding.com> |
c6c8fea2 SE |
2105 | L: b.a.t.m.a.n@lists.open-mesh.org |
2106 | W: http://www.open-mesh.org/ | |
2107 | S: Maintained | |
2108 | F: net/batman-adv/ | |
2109 | ||
e2d1d6c0 | 2110 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2111 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2112 | L: linux-hams@vger.kernel.org |
2113 | W: http://www.baycom.org/~tom/ham/ham.html | |
2114 | S: Maintained | |
679655da | 2115 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2116 | |
cafe5635 | 2117 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2118 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2119 | L: linux-bcache@vger.kernel.org |
2120 | W: http://bcache.evilpiepirate.org | |
d1aa1ab3 | 2121 | S: Maintained |
cafe5635 KO |
2122 | F: drivers/md/bcache/ |
2123 | ||
04bd844a HV |
2124 | BDISP ST MEDIA DRIVER |
2125 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2126 | L: linux-media@vger.kernel.org | |
2127 | T: git git://linuxtv.org/media_tree.git | |
2128 | W: http://linuxtv.org | |
2129 | S: Supported | |
2130 | F: drivers/media/platform/sti/bdisp | |
2131 | ||
e2d1d6c0 | 2132 | BEFS FILE SYSTEM |
55817d3d | 2133 | S: Orphan |
679655da JP |
2134 | F: Documentation/filesystems/befs.txt |
2135 | F: fs/befs/ | |
e2d1d6c0 | 2136 | |
564ee360 | 2137 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2138 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2139 | L: netdev@vger.kernel.org | |
2140 | S: Maintained | |
2141 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2142 | |
e2d1d6c0 | 2143 | BFS FILE SYSTEM |
8b58be88 | 2144 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2145 | S: Maintained |
679655da JP |
2146 | F: Documentation/filesystems/bfs.txt |
2147 | F: fs/bfs/ | |
c117ab84 | 2148 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2149 | |
1394f032 | 2150 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2151 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2152 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2153 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2154 | W: http://blackfin.uclinux.org |
2155 | S: Supported | |
679655da | 2156 | F: arch/blackfin/ |
566da5b2 | 2157 | |
e190d6b1 | 2158 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2159 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2160 | W: http://blackfin.uclinux.org |
2161 | S: Supported | |
7b35f033 | 2162 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2163 | |
566da5b2 | 2164 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2165 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2166 | W: http://blackfin.uclinux.org |
2167 | S: Supported | |
679655da | 2168 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2169 | |
936ed49a | 2170 | BLACKFIN SDH DRIVER |
109ec8c3 | 2171 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2172 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2173 | W: http://blackfin.uclinux.org |
2174 | S: Supported | |
2175 | F: drivers/mmc/host/bfin_sdh.c | |
2176 | ||
1394f032 | 2177 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2178 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2179 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2180 | W: http://blackfin.uclinux.org |
2181 | S: Supported | |
8460241e | 2182 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2183 | |
1e6d320f | 2184 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2185 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2186 | W: http://blackfin.uclinux.org |
2187 | S: Supported | |
679655da | 2188 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2189 | |
d24ecfcc | 2190 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2191 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2192 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2193 | W: http://blackfin.uclinux.org/ |
2194 | S: Supported | |
679655da | 2195 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2196 | |
1e204377 SJ |
2197 | BLACKFIN MEDIA DRIVER |
2198 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2199 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2200 | W: http://blackfin.uclinux.org/ |
2201 | S: Supported | |
2202 | F: drivers/media/platform/blackfin/ | |
2203 | F: drivers/media/i2c/adv7183* | |
2204 | F: drivers/media/i2c/vs6624* | |
2205 | ||
b54cf35a JSM |
2206 | BLINKM RGB LED DRIVER |
2207 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2208 | S: Maintained | |
2209 | F: drivers/leds/leds-blinkm.c | |
2210 | ||
1da177e4 | 2211 | BLOCK LAYER |
8b58be88 | 2212 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2213 | L: linux-block@vger.kernel.org |
08deed1e | 2214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2215 | S: Maintained |
679655da | 2216 | F: block/ |
ae11f7ef | 2217 | F: kernel/trace/blktrace.c |
1da177e4 | 2218 | |
2b54aaef | 2219 | BLOCK2MTD DRIVER |
8b58be88 | 2220 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2221 | L: linux-mtd@lists.infradead.org |
2222 | S: Maintained | |
679655da | 2223 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2224 | |
63fbd24e | 2225 | BLUETOOTH DRIVERS |
8b58be88 | 2226 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2227 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2228 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2229 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2230 | W: http://www.bluez.org/ |
22e7a424 MH |
2231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2233 | S: Maintained |
679655da | 2234 | F: drivers/bluetooth/ |
1da177e4 | 2235 | |
63fbd24e | 2236 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2237 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2238 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2239 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2240 | L: linux-bluetooth@vger.kernel.org |
2241 | W: http://www.bluez.org/ | |
22e7a424 MH |
2242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2244 | S: Maintained |
679655da JP |
2245 | F: net/bluetooth/ |
2246 | F: include/net/bluetooth/ | |
1da177e4 LT |
2247 | |
2248 | BONDING DRIVER | |
79b30750 | 2249 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2250 | M: Veaceslav Falico <vfalico@gmail.com> |
31639b94 | 2251 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
a6c36ee6 | 2252 | L: netdev@vger.kernel.org |
ce00f85c JC |
2253 | W: http://sourceforge.net/projects/bonding/ |
2254 | S: Supported | |
679655da | 2255 | F: drivers/net/bonding/ |
c117ab84 | 2256 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2257 | |
b5f4df34 AS |
2258 | BPF (Safe dynamic programs and tools) |
2259 | M: Alexei Starovoitov <ast@kernel.org> | |
2260 | L: netdev@vger.kernel.org | |
2261 | L: linux-kernel@vger.kernel.org | |
2262 | S: Supported | |
2263 | F: kernel/bpf/ | |
2264 | ||
39105890 | 2265 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2266 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
2267 | L: netdev@vger.kernel.org |
2268 | S: Supported | |
adfc5217 | 2269 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2270 | |
32ec90d5 FF |
2271 | BROADCOM GENET ETHERNET DRIVER |
2272 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2273 | L: netdev@vger.kernel.org | |
2274 | S: Supported | |
2275 | F: drivers/net/ethernet/broadcom/genet/ | |
2276 | ||
948c51e6 | 2277 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2278 | M: Sony Chacko <sony.chacko@qlogic.com> |
2279 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2280 | L: netdev@vger.kernel.org |
2281 | S: Supported | |
adfc5217 JK |
2282 | F: drivers/net/ethernet/broadcom/bnx2.* |
2283 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2284 | |
4d9d2cb0 | 2285 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2286 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2287 | L: netdev@vger.kernel.org |
2288 | S: Supported | |
adfc5217 | 2289 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2290 | |
90f4c594 | 2291 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2292 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2293 | M: Ray Jui <rjui@broadcom.com> |
2294 | M: Scott Branden <sbranden@broadcom.com> | |
497a045d | 2295 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2296 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2297 | S: Maintained |
2298 | F: arch/arm/mach-bcm/ | |
2299 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2300 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
2301 | F: arch/arm/boot/dts/bcm281* |
2302 | F: arch/arm/configs/bcm_defconfig | |
e4ef47f2 | 2303 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2304 | F: drivers/clocksource/bcm_kona_timer.c |
2305 | ||
9209bec4 | 2306 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2307 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2308 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2309 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2310 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2311 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2312 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2313 | S: Maintained |
9209bec4 | 2314 | N: bcm2835 |
f680f25c | 2315 | |
a2f6734c KC |
2316 | BROADCOM BCM33XX MIPS ARCHITECTURE |
2317 | M: Kevin Cernekee <cernekee@gmail.com> | |
2318 | L: linux-mips@linux-mips.org | |
2319 | S: Maintained | |
2320 | F: arch/mips/bcm3384/* | |
2321 | F: arch/mips/include/asm/mach-bcm3384/* | |
2322 | F: arch/mips/kernel/*bmips* | |
2323 | ||
5564f092 RM |
2324 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2325 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2326 | M: Rafał Miłecki <zajec5@gmail.com> | |
2327 | L: linux-mips@linux-mips.org | |
2328 | S: Maintained | |
2329 | F: arch/mips/bcm47xx/* | |
2330 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2331 | ||
9209bec4 | 2332 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe HM |
2333 | M: Hauke Mehrtens <hauke@hauke-m.de> |
2334 | L: linux-arm-kernel@lists.infradead.org | |
2335 | S: Maintained | |
2336 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2337 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2338 | F: arch/arm/boot/dts/bcm470* | |
2339 | ||
e076e962 FF |
2340 | BROADCOM BCM63XX ARM ARCHITECTURE |
2341 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2342 | L: linux-arm-kernel@lists.infradead.org | |
eb6725d0 | 2343 | T: git git://github.com/broadcom/arm-bcm63xx.git |
e076e962 FF |
2344 | S: Maintained |
2345 | F: arch/arm/mach-bcm/bcm63xx.c | |
2346 | F: arch/arm/include/debug/bcm63xx.S | |
2347 | ||
7110e227 KC |
2348 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2349 | M: Kevin Cernekee <cernekee@gmail.com> | |
2350 | L: linux-usb@vger.kernel.org | |
2351 | S: Maintained | |
2352 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2353 | ||
2df94fd6 | 2354 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2355 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2356 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2357 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2df94fd6 | 2358 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2359 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2360 | S: Maintained |
2361 | F: arch/arm/mach-bcm/*brcmstb* | |
2362 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2363 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2364 | N: brcmstb |
2df94fd6 | 2365 | |
70371cef KC |
2366 | BROADCOM BMIPS MIPS ARCHITECTURE |
2367 | M: Kevin Cernekee <cernekee@gmail.com> | |
2368 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2369 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2370 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2371 | S: Maintained |
2372 | F: arch/mips/bmips/* | |
2373 | F: arch/mips/include/asm/mach-bmips/* | |
2374 | F: arch/mips/kernel/*bmips* | |
338808de | 2375 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
70371cef KC |
2376 | F: drivers/irqchip/irq-bcm7* |
2377 | F: drivers/irqchip/irq-brcmstb* | |
2378 | ||
948c51e6 | 2379 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2380 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2381 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2382 | L: netdev@vger.kernel.org |
2383 | S: Supported | |
adfc5217 | 2384 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2385 | |
a9533e7e HP |
2386 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2387 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 2388 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 2389 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 2390 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 2391 | L: linux-wireless@vger.kernel.org |
5615171c | 2392 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 2393 | S: Supported |
f62ebdd5 | 2394 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 2395 | |
9958d6f9 | 2396 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2397 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2398 | L: linux-scsi@vger.kernel.org |
2399 | S: Supported | |
2400 | F: drivers/scsi/bnx2fc/ | |
2401 | ||
6a6b5ad0 | 2402 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2403 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2404 | L: linux-scsi@vger.kernel.org |
2405 | S: Supported | |
2406 | F: drivers/scsi/bnx2i/ | |
2407 | ||
63f37ddf | 2408 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2409 | M: Ray Jui <rjui@broadcom.com> |
2410 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2411 | M: Jon Mason <jonmason@broadcom.com> |
36c0237f SB |
2412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2413 | L: bcm-kernel-feedback-list@broadcom.com | |
eb6725d0 | 2414 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2415 | S: Maintained |
2416 | N: iproc | |
2417 | N: cygnus | |
63f37ddf | 2418 | N: nsp |
36c0237f SB |
2419 | N: bcm9113* |
2420 | N: bcm9583* | |
63f37ddf JM |
2421 | N: bcm9585* |
2422 | N: bcm9586* | |
2423 | N: bcm988312 | |
36c0237f | 2424 | N: bcm113* |
63f37ddf JM |
2425 | N: bcm583* |
2426 | N: bcm585* | |
2427 | N: bcm586* | |
2428 | N: bcm88312 | |
36c0237f | 2429 | |
3b0213d5 GF |
2430 | BROADCOM BRCMSTB GPIO DRIVER |
2431 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
2432 | L: bcm-kernel-feedback-list@broadcom.com> | |
2433 | S: Supported | |
2434 | F: drivers/gpio/gpio-brcmstb.c | |
2435 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2436 | ||
7b7f588b | 2437 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2438 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2439 | L: bcm-kernel-feedback-list@broadcom.com |
2440 | S: Supported | |
2441 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2442 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2443 | |
f6e734a8 RM |
2444 | BROADCOM NVRAM DRIVER |
2445 | M: Rafał Miłecki <zajec5@gmail.com> | |
2446 | L: linux-mips@linux-mips.org | |
2447 | S: Maintained | |
2448 | F: drivers/firmware/broadcom/* | |
2449 | ||
02787daa BN |
2450 | BROADCOM STB NAND FLASH DRIVER |
2451 | M: Brian Norris <computersforpeace@gmail.com> | |
2452 | L: linux-mtd@lists.infradead.org | |
2453 | S: Maintained | |
2454 | F: drivers/mtd/nand/brcmnand/ | |
2455 | ||
c9678d86 RM |
2456 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2457 | M: Rafał Miłecki <zajec5@gmail.com> | |
2458 | L: linux-wireless@vger.kernel.org | |
2459 | S: Maintained | |
2460 | F: drivers/bcma/ | |
2461 | F: include/linux/bcma/ | |
2462 | ||
b8302205 FF |
2463 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2464 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2465 | L: netdev@vger.kernel.org | |
2466 | S: Supported | |
2467 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2468 | ||
7725ccfd | 2469 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2470 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2471 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2472 | L: linux-scsi@vger.kernel.org |
2473 | S: Supported | |
2474 | F: drivers/scsi/bfa/ | |
7725ccfd | 2475 | |
8b230ed8 | 2476 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2477 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2478 | L: netdev@vger.kernel.org |
2479 | S: Supported | |
f844a0ea | 2480 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2481 | |
5cdf7f76 | 2482 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2483 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2484 | L: linux-scsi@vger.kernel.org |
2485 | S: Supported | |
679655da JP |
2486 | F: block/bsg.c |
2487 | F: include/linux/bsg.h | |
c117ab84 | 2488 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2489 | |
af39917d CL |
2490 | BT87X AUDIO DRIVER |
2491 | M: Clemens Ladisch <clemens@ladisch.de> | |
2492 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2493 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2494 | S: Maintained | |
2495 | F: Documentation/sound/alsa/Bt87x.txt | |
2496 | F: sound/pci/bt87x.c | |
2497 | ||
ff1d5c2f | 2498 | BT8XXGPIO DRIVER |
eb032b98 | 2499 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2500 | W: http://bu3sch.de/btgpio.php |
2501 | S: Maintained | |
72dbb705 | 2502 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2503 | |
eb1eb04f | 2504 | BTRFS FILE SYSTEM |
c0778e25 CM |
2505 | M: Chris Mason <clm@fb.com> |
2506 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2507 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2508 | L: linux-btrfs@vger.kernel.org |
2509 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2510 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2511 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2512 | S: Maintained |
679655da JP |
2513 | F: Documentation/filesystems/btrfs.txt |
2514 | F: fs/btrfs/ | |
eb1eb04f | 2515 | |
1da177e4 | 2516 | BTTV VIDEO4LINUX DRIVER |
009a5410 | 2517 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
661263b5 | 2518 | L: linux-media@vger.kernel.org |
96b6aba0 | 2519 | W: http://linuxtv.org |
275ffde4 | 2520 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2521 | S: Odd fixes |
679655da | 2522 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2523 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2524 | |
1f34923c KA |
2525 | BUSLOGIC SCSI DRIVER |
2526 | M: Khalid Aziz <khalid@gonehiking.org> | |
2527 | L: linux-scsi@vger.kernel.org | |
2528 | S: Maintained | |
2529 | F: drivers/scsi/BusLogic.* | |
2530 | F: drivers/scsi/FlashPoint.* | |
2531 | ||
af39917d CL |
2532 | C-MEDIA CMI8788 DRIVER |
2533 | M: Clemens Ladisch <clemens@ladisch.de> | |
2534 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2535 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2536 | S: Maintained | |
2537 | F: sound/pci/oxygen/ | |
2538 | ||
2141355f MS |
2539 | C6X ARCHITECTURE |
2540 | M: Mark Salter <msalter@redhat.com> | |
2541 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2542 | L: linux-c6x-dev@linux-c6x.org | |
2543 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2544 | S: Maintained | |
2545 | F: arch/c6x/ | |
2546 | ||
a5432f5a | 2547 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2548 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
2549 | L: linux-cachefs@redhat.com |
2550 | S: Supported | |
2551 | F: Documentation/filesystems/caching/cachefiles.txt | |
2552 | F: fs/cachefiles/ | |
2553 | ||
c815ca39 HV |
2554 | CADET FM/AM RADIO RECEIVER DRIVER |
2555 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2556 | L: linux-media@vger.kernel.org | |
2557 | T: git git://linuxtv.org/media_tree.git | |
2558 | W: http://linuxtv.org | |
2559 | S: Maintained | |
2560 | F: drivers/media/radio/radio-cadet* | |
2561 | ||
77d5140f | 2562 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2563 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2564 | L: linux-media@vger.kernel.org |
275ffde4 | 2565 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2566 | S: Maintained |
679655da | 2567 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2568 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2569 | |
201b6bab | 2570 | CAIF NETWORK LAYER |
5c574f50 | 2571 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2572 | L: netdev@vger.kernel.org |
2573 | S: Supported | |
2574 | F: Documentation/networking/caif/ | |
2575 | F: drivers/net/caif/ | |
c117ab84 | 2576 | F: include/uapi/linux/caif/ |
201b6bab JP |
2577 | F: include/net/caif/ |
2578 | F: net/caif/ | |
2579 | ||
77dac90f | 2580 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2581 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2582 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2583 | L: discuss@x86-64.org |
2584 | S: Maintained | |
679655da JP |
2585 | F: arch/x86/kernel/pci-calgary_64.c |
2586 | F: arch/x86/kernel/tce_64.c | |
2587 | F: arch/x86/include/asm/calgary.h | |
2588 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2589 | |
e2d1d6c0 | 2590 | CAN NETWORK LAYER |
8d15d386 | 2591 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2592 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2593 | L: linux-can@vger.kernel.org |
84b0d715 | 2594 | W: https://github.com/linux-can |
870482a4 MKB |
2595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2597 | S: Maintained |
f35f6c8f | 2598 | F: Documentation/networking/can.txt |
8d15d386 | 2599 | F: net/can/ |
8d15d386 | 2600 | F: include/linux/can/core.h |
c117ab84 CEB |
2601 | F: include/uapi/linux/can.h |
2602 | F: include/uapi/linux/can/bcm.h | |
2603 | F: include/uapi/linux/can/raw.h | |
2604 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2605 | |
4261a204 | 2606 | CAN NETWORK DRIVERS |
8b58be88 | 2607 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2608 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2609 | L: linux-can@vger.kernel.org |
84b0d715 | 2610 | W: https://github.com/linux-can |
870482a4 MKB |
2611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2613 | S: Maintained |
8d15d386 OH |
2614 | F: drivers/net/can/ |
2615 | F: include/linux/can/dev.h | |
8d15d386 | 2616 | F: include/linux/can/platform/ |
c117ab84 CEB |
2617 | F: include/uapi/linux/can/error.h |
2618 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2619 | |
95d16c72 JM |
2620 | CAPABILITIES |
2621 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2622 | L: linux-security-module@vger.kernel.org | |
6305902c | 2623 | S: Supported |
95d16c72 | 2624 | F: include/linux/capability.h |
c117ab84 | 2625 | F: include/uapi/linux/capability.h |
6305902c | 2626 | F: security/commoncap.c |
38a94118 | 2627 | F: kernel/capability.c |
95d16c72 | 2628 | |
b84894c7 KT |
2629 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2630 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2631 | S: Maintained | |
2632 | F: drivers/iio/light/cm* | |
2633 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2634 | ||
f21fb3ed RV |
2635 | CAVIUM LIQUIDIO NETWORK DRIVER |
2636 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2637 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2638 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2639 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2640 | L: netdev@vger.kernel.org | |
2641 | W: http://www.cavium.com | |
2642 | S: Supported | |
f21fb3ed RV |
2643 | F: drivers/net/ethernet/cavium/liquidio/ |
2644 | ||
ef0bbac3 VB |
2645 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2646 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2647 | L: linux-wpan@vger.kernel.org | |
2648 | S: Maintained | |
2649 | F: drivers/net/ieee802154/cc2520.c | |
2650 | F: include/linux/spi/cc2520.h | |
2651 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2652 | ||
b8154542 | 2653 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2654 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2655 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2656 | W: http://www.ibm.com/developerworks/power/cell/ |
2657 | S: Supported | |
679655da | 2658 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2659 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2660 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2661 | F: arch/powerpc/oprofile/*cell* |
2662 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2663 | |
398ecff5 SW |
2664 | CEPH COMMON CODE (LIBCEPH) |
2665 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2666 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2667 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2668 | L: ceph-devel@vger.kernel.org |
09d90327 | 2669 | W: http://ceph.com/ |
fb99f881 | 2670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2671 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2672 | S: Supported |
14430813 JP |
2673 | F: net/ceph/ |
2674 | F: include/linux/ceph/ | |
2675 | F: include/linux/crush/ | |
9030aaf9 | 2676 | |
398ecff5 SW |
2677 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2678 | M: "Yan, Zheng" <zyan@redhat.com> | |
2679 | M: Sage Weil <sage@redhat.com> | |
2680 | M: Ilya Dryomov <idryomov@gmail.com> | |
2681 | L: ceph-devel@vger.kernel.org | |
2682 | W: http://ceph.com/ | |
2683 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 2684 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
2685 | S: Supported |
2686 | F: Documentation/filesystems/ceph.txt | |
2687 | F: fs/ceph/ | |
2688 | ||
cfc411e7 DH |
2689 | CERTIFICATE HANDLING: |
2690 | M: David Howells <dhowells@redhat.com> | |
2691 | M: David Woodhouse <dwmw2@infradead.org> | |
2692 | L: keyrings@linux-nfs.org | |
2693 | S: Maintained | |
2694 | F: Documentation/module-signing.txt | |
2695 | F: certs/ | |
2696 | F: scripts/extract-cert.c | |
2697 | ||
18332a80 | 2698 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2699 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2700 | S: Orphan |
679655da JP |
2701 | F: Documentation/usb/WUSB-Design-overview.txt |
2702 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2703 | F: drivers/usb/host/hwa-hc.c |
2704 | F: drivers/usb/host/whci/ | |
679655da JP |
2705 | F: drivers/usb/wusbcore/ |
2706 | F: include/linux/usb/wusb* | |
18332a80 | 2707 | |
70e84049 | 2708 | CFAG12864B LCD DRIVER |
8b58be88 | 2709 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2710 | W: http://miguelojeda.es/auxdisplay.htm |
2711 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2712 | S: Maintained |
679655da JP |
2713 | F: drivers/auxdisplay/cfag12864b.c |
2714 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2715 | |
2716 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2717 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2718 | W: http://miguelojeda.es/auxdisplay.htm |
2719 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2720 | S: Maintained |
679655da JP |
2721 | F: drivers/auxdisplay/cfag12864bfb.c |
2722 | F: include/linux/cfag12864b.h | |
70e84049 | 2723 | |
704232c2 | 2724 | CFG80211 and NL80211 |
8b58be88 | 2725 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2726 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2727 | W: http://wireless.kernel.org/ |
2728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2729 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2730 | S: Maintained |
c117ab84 | 2731 | F: include/uapi/linux/nl80211.h |
679655da JP |
2732 | F: include/net/cfg80211.h |
2733 | F: net/wireless/* | |
2734 | X: net/wireless/wext* | |
704232c2 | 2735 | |
46e64261 GKH |
2736 | CHAR and MISC DRIVERS |
2737 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2738 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2739 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2740 | S: Supported |
46e64261 GKH |
2741 | F: drivers/char/* |
2742 | F: drivers/misc/* | |
471322a8 | 2743 | F: include/linux/miscdevice.h |
46e64261 | 2744 | |
0a920b5b | 2745 | CHECKPATCH |
8b58be88 | 2746 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2747 | M: Joe Perches <joe@perches.com> |
2748 | S: Maintained | |
679655da | 2749 | F: scripts/checkpatch.pl |
0a920b5b | 2750 | |
f8407f26 HW |
2751 | CHINESE DOCUMENTATION |
2752 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2753 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2754 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2755 | S: Maintained | |
2756 | F: Documentation/zh_CN/ | |
2757 | ||
2721ea2c | 2758 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2759 | M: Peter Chen <Peter.Chen@freescale.com> |
8373856d | 2760 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
2761 | L: linux-usb@vger.kernel.org |
2762 | S: Maintained | |
2763 | F: drivers/usb/chipidea/ | |
2764 | ||
a93ad65d HG |
2765 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
2766 | M: Hans de Goede <hdegoede@redhat.com> | |
2767 | L: linux-input@vger.kernel.org | |
2768 | S: Maintained | |
2769 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
2770 | F: drivers/input/touchscreen/chipone_icn8318.c | |
2771 | ||
ab043105 OJ |
2772 | CHROME HARDWARE PLATFORM SUPPORT |
2773 | M: Olof Johansson <olof@lixom.net> | |
2774 | S: Maintained | |
2775 | F: drivers/platform/chrome/ | |
2776 | ||
641cb85e | 2777 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2778 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2779 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 2780 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 2781 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 2782 | S: Supported |
a6a5580c | 2783 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2784 | |
e3cf00d0 | 2785 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
2786 | M: Christian Benvenuti <benve@cisco.com> |
2787 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 2788 | S: Supported |
35ef4a9e | 2789 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 2790 | |
2b7a52a4 | 2791 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2792 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2793 | L: netdev@vger.kernel.org |
2794 | S: Maintained | |
57d0b7a0 | 2795 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2796 | |
3d4cfdc9 MB |
2797 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2798 | M: Brian Austin <brian.austin@cirrus.com> | |
2799 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2800 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2801 | S: Maintained | |
2802 | F: sound/soc/codecs/cs* | |
2803 | ||
94574d9a KRW |
2804 | CLEANCACHE API |
2805 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2806 | L: linux-kernel@vger.kernel.org | |
2807 | S: Maintained | |
2808 | F: mm/cleancache.c | |
2809 | F: include/linux/cleancache.h | |
2810 | ||
d4275354 | 2811 | CLK API |
8b58be88 | 2812 | M: Russell King <linux@arm.linux.org.uk> |
aa571b14 | 2813 | L: linux-clk@vger.kernel.org |
37417046 | 2814 | S: Maintained |
d4275354 RK |
2815 | F: include/linux/clk.h |
2816 | ||
9222d247 JS |
2817 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2818 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2819 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2820 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2822 | S: Supported | |
2823 | F: drivers/clocksource | |
2824 | ||
5df6d737 | 2825 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2826 | M: Hiral Patel <hiralpat@cisco.com> |
2827 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2828 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2829 | L: linux-scsi@vger.kernel.org |
2830 | S: Supported | |
2a99921a | 2831 | F: drivers/scsi/fnic/ |
5df6d737 | 2832 | |
c8806b6c NM |
2833 | CISCO SCSI HBA DRIVER |
2834 | M: Narsimhulu Musini <nmusini@cisco.com> | |
2835 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
2836 | L: linux-scsi@vger.kernel.org | |
2837 | S: Supported | |
2838 | F: drivers/scsi/snic/ | |
2839 | ||
529aa8cb TLSC |
2840 | CMPC ACPI DRIVER |
2841 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2842 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2843 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2844 | S: Supported |
2845 | F: drivers/platform/x86/classmate-laptop.c | |
2846 | ||
85756a06 HV |
2847 | COBALT MEDIA DRIVER |
2848 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2849 | L: linux-media@vger.kernel.org | |
2850 | T: git git://linuxtv.org/media_tree.git | |
2851 | W: http://linuxtv.org | |
2852 | S: Supported | |
2853 | F: drivers/media/pci/cobalt/ | |
2854 | ||
74425eee | 2855 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2856 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2857 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2858 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 2859 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 2860 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2862 | W: http://coccinelle.lip6.fr/ |
2863 | S: Supported | |
4b92b2aa | 2864 | F: Documentation/coccinelle.txt |
74425eee NP |
2865 | F: scripts/coccinelle/ |
2866 | F: scripts/coccicheck | |
2867 | ||
1da177e4 | 2868 | CODA FILE SYSTEM |
8b58be88 | 2869 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2870 | M: coda@cs.cmu.edu |
2871 | L: codalist@coda.cs.cmu.edu | |
2872 | W: http://www.coda.cs.cmu.edu/ | |
2873 | S: Maintained | |
679655da JP |
2874 | F: Documentation/filesystems/coda.txt |
2875 | F: fs/coda/ | |
2876 | F: include/linux/coda*.h | |
c117ab84 | 2877 | F: include/uapi/linux/coda*.h |
1da177e4 | 2878 | |
0b14261e PZ |
2879 | CODA V4L2 MEM2MEM DRIVER |
2880 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
2881 | L: linux-media@vger.kernel.org | |
2882 | S: Maintained | |
2883 | F: Documentation/devicetree/bindings/media/coda.txt | |
2884 | F: drivers/media/platform/coda/ | |
2885 | ||
7704addb | 2886 | COMMON CLK FRAMEWORK |
a85fa007 | 2887 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 2888 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 2889 | L: linux-clk@vger.kernel.org |
baeb0d9b | 2890 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 2891 | S: Maintained |
60bea3b5 SW |
2892 | F: drivers/clk/ |
2893 | X: drivers/clk/clkdev.c | |
7704addb | 2894 | F: include/linux/clk-pr* |
60bea3b5 | 2895 | F: include/linux/clk/ |
7704addb | 2896 | |
e2d1d6c0 | 2897 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2898 | M: Steve French <sfrench@samba.org> |
51223df6 | 2899 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2900 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2901 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 2902 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 2903 | S: Supported |
ec421a71 | 2904 | F: Documentation/filesystems/cifs/ |
679655da | 2905 | F: fs/cifs/ |
e2d1d6c0 | 2906 | |
1da177e4 | 2907 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2908 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2909 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2910 | S: Maintained |
679655da | 2911 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2912 | |
2913 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2914 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2915 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2916 | S: Maintained |
679655da | 2917 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2918 | |
2919 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2920 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2921 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2922 | S: Maintained |
679655da | 2923 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2924 | |
5411552c | 2925 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2926 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2927 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2928 | S: Maintained |
679655da | 2929 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2930 | |
949be0f7 | 2931 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2932 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2933 | L: accessrunner-general@lists.sourceforge.net |
2934 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2935 | S: Maintained |
679655da | 2936 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2937 | |
e2d1d6c0 | 2938 | CONFIGFS |
d6351db2 JB |
2939 | M: Joel Becker <jlbec@evilplan.org> |
2940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2941 | S: Supported |
679655da JP |
2942 | F: fs/configfs/ |
2943 | F: include/linux/configfs.h | |
e2d1d6c0 | 2944 | |
acb9c1b2 | 2945 | CONNECTOR |
8b58be88 | 2946 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2947 | L: netdev@vger.kernel.org |
2948 | S: Maintained | |
2949 | F: drivers/connector/ | |
2950 | ||
a3e3354d | 2951 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2952 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2953 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 2954 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 2955 | L: cgroups@vger.kernel.org |
860ca0e6 | 2956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2957 | S: Maintained |
a3e3354d | 2958 | F: Documentation/cgroups/ |
679655da JP |
2959 | F: include/linux/cgroup* |
2960 | F: kernel/cgroup* | |
a3e3354d TH |
2961 | |
2962 | CONTROL GROUP - CPUSET | |
2963 | M: Li Zefan <lizefan@huawei.com> | |
2964 | L: cgroups@vger.kernel.org | |
2965 | W: http://www.bullopensource.org/cpuset/ | |
2966 | W: http://oss.sgi.com/projects/cpusets/ | |
2967 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2968 | S: Maintained | |
2969 | F: Documentation/cgroups/cpusets.txt | |
2970 | F: include/linux/cpuset.h | |
2971 | F: kernel/cpuset.c | |
2972 | ||
2973 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2974 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 2975 | M: Michal Hocko <mhocko@kernel.org> |
a3e3354d TH |
2976 | L: cgroups@vger.kernel.org |
2977 | L: linux-mm@kvack.org | |
2978 | S: Maintained | |
2979 | F: mm/memcontrol.c | |
5d1ea48b | 2980 | F: mm/swap_cgroup.c |
fb3a0fb6 | 2981 | |
bebe4678 | 2982 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2983 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2984 | L: lm-sensors@lm-sensors.org |
2985 | S: Maintained | |
679655da JP |
2986 | F: Documentation/hwmon/coretemp |
2987 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2988 | |
1da177e4 | 2989 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2990 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2991 | W: http://www.fi.muni.cz/~kas/cosa/ |
2992 | S: Maintained | |
679655da | 2993 | F: drivers/net/wan/cosa* |
1da177e4 | 2994 | |
4371ee35 | 2995 | CPMAC ETHERNET DRIVER |
8b58be88 | 2996 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2997 | L: netdev@vger.kernel.org |
2998 | S: Maintained | |
b544dbac | 2999 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3000 | |
1da177e4 | 3001 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3002 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3003 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3004 | L: linux-pm@vger.kernel.org |
1da177e4 | 3005 | S: Maintained |
27209d91 VK |
3006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3007 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
3008 | F: drivers/cpufreq/ |
3009 | F: include/linux/cpufreq.h | |
1da177e4 | 3010 | |
8a67f0ef VK |
3011 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3012 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3013 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3014 | L: linux-pm@vger.kernel.org |
3015 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3016 | S: Maintained | |
3017 | F: drivers/cpufreq/arm_big_little.h | |
3018 | F: drivers/cpufreq/arm_big_little.c | |
3019 | F: drivers/cpufreq/arm_big_little_dt.c | |
3020 | ||
14d2c34c | 3021 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3022 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3023 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3024 | L: linux-pm@vger.kernel.org | |
3025 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3027 | S: Maintained |
3028 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3029 | |
0c570c18 BZ |
3030 | CPUIDLE DRIVER - ARM EXYNOS |
3031 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3032 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3033 | M: Kukjin Kim <kgene@kernel.org> | |
3034 | L: linux-pm@vger.kernel.org | |
3035 | L: linux-samsung-soc@vger.kernel.org | |
3036 | S: Supported | |
3037 | F: drivers/cpuidle/cpuidle-exynos.c | |
3038 | F: arch/arm/mach-exynos/pm.c | |
3039 | ||
a8e39c35 | 3040 | CPUIDLE DRIVERS |
9c3646d1 | 3041 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3042 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3043 | L: linux-pm@vger.kernel.org | |
3044 | S: Maintained | |
cea8321c | 3045 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
3046 | F: drivers/cpuidle/* |
3047 | F: include/linux/cpuidle.h | |
3048 | ||
1da177e4 | 3049 | CPUID/MSR DRIVER |
8b58be88 | 3050 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3051 | S: Maintained |
679655da JP |
3052 | F: arch/x86/kernel/cpuid.c |
3053 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3054 | |
7fe2f639 | 3055 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3056 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3057 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3058 | S: Maintained |
14430813 | 3059 | F: tools/power/cpupower/ |
7fe2f639 | 3060 | |
1da177e4 | 3061 | CRAMFS FILESYSTEM |
ce00f85c | 3062 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3063 | S: Orphan / Obsolete |
679655da JP |
3064 | F: Documentation/filesystems/cramfs.txt |
3065 | F: fs/cramfs/ | |
1da177e4 LT |
3066 | |
3067 | CRIS PORT | |
8b58be88 JP |
3068 | M: Mikael Starvik <starvik@axis.com> |
3069 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3070 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
3071 | W: http://developer.axis.com |
3072 | S: Maintained | |
679655da | 3073 | F: arch/cris/ |
df621252 | 3074 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3075 | |
3076 | CRYPTO API | |
8b58be88 JP |
3077 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3078 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3079 | L: linux-crypto@vger.kernel.org |
54e5881d | 3080 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3081 | S: Maintained |
679655da | 3082 | F: Documentation/crypto/ |
2ca87a17 | 3083 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3084 | F: arch/*/crypto/ |
3085 | F: crypto/ | |
3086 | F: drivers/crypto/ | |
3087 | F: include/crypto/ | |
1da177e4 | 3088 | |
5b07bd57 | 3089 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3090 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3091 | L: linux-crypto@vger.kernel.org |
3092 | S: Maintained | |
51a2228a JP |
3093 | F: crypto/ansi_cprng.c |
3094 | F: crypto/rng.c | |
5b07bd57 | 3095 | |
9b4ffa48 | 3096 | CS5535 Audio ALSA driver |
8b58be88 | 3097 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3098 | S: Maintained |
679655da | 3099 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3100 | |
a910e4a9 | 3101 | CW1200 WLAN driver |
b75f0050 JP |
3102 | M: Solomon Peachy <pizza@shaftnet.org> |
3103 | S: Maintained | |
3104 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 3105 | |
6d8425b1 | 3106 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3107 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3108 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3109 | L: linux-media@vger.kernel.org |
275ffde4 | 3110 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 3111 | W: http://linuxtv.org |
30e10993 | 3112 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3113 | S: Maintained |
679655da | 3114 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 3115 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3116 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3117 | |
3f101d91 HV |
3118 | CX2341X MPEG ENCODER HELPER MODULE |
3119 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3120 | L: linux-media@vger.kernel.org | |
3121 | T: git git://linuxtv.org/media_tree.git | |
3122 | W: http://linuxtv.org | |
3123 | S: Maintained | |
c368360b | 3124 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3125 | F: include/media/cx2341x* |
3126 | ||
b8fe6e2c PB |
3127 | CX24120 MEDIA DRIVER |
3128 | M: Jemma Denson <jdenson@gmail.com> | |
3129 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3130 | L: linux-media@vger.kernel.org | |
3131 | W: http://linuxtv.org/ | |
3132 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3133 | S: Maintained | |
3134 | F: drivers/media/dvb-frontends/cx24120* | |
3135 | ||
20357578 | 3136 | CX88 VIDEO4LINUX DRIVER |
009a5410 | 3137 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
20357578 MCC |
3138 | L: linux-media@vger.kernel.org |
3139 | W: http://linuxtv.org | |
3140 | T: git git://linuxtv.org/media_tree.git | |
3141 | S: Odd fixes | |
3142 | F: Documentation/video4linux/cx88/ | |
3143 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 3144 | |
91952bc0 AP |
3145 | CXD2820R MEDIA DRIVER |
3146 | M: Antti Palosaari <crope@iki.fi> | |
3147 | L: linux-media@vger.kernel.org | |
3148 | W: http://linuxtv.org/ | |
3149 | W: http://palosaari.fi/linux/ | |
3150 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3151 | T: git git://linuxtv.org/anttip/media_tree.git | |
3152 | S: Maintained | |
3153 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3154 | |
e5ec3789 | 3155 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3156 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3157 | L: netdev@vger.kernel.org |
3158 | W: http://www.chelsio.com | |
3159 | S: Supported | |
f7917c00 | 3160 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3161 | |
d8ae3c33 | 3162 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3163 | M: Karen Xie <kxie@chelsio.com> |
3164 | L: linux-scsi@vger.kernel.org | |
3165 | W: http://www.chelsio.com | |
3166 | S: Supported | |
3167 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3168 | |
e5ec3789 | 3169 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3170 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3171 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3172 | W: http://www.openfabrics.org |
3173 | S: Supported | |
679655da | 3174 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 3175 | |
be4c9bad | 3176 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3177 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3178 | L: netdev@vger.kernel.org |
3179 | W: http://www.chelsio.com | |
3180 | S: Supported | |
f7917c00 | 3181 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3182 | |
d8ae3c33 | 3183 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3184 | M: Karen Xie <kxie@chelsio.com> |
3185 | L: linux-scsi@vger.kernel.org | |
3186 | W: http://www.chelsio.com | |
3187 | S: Supported | |
3188 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3189 | |
be4c9bad RD |
3190 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3191 | M: Steve Wise <swise@chelsio.com> | |
3192 | L: linux-rdma@vger.kernel.org | |
3193 | W: http://www.openfabrics.org | |
3194 | S: Supported | |
3195 | F: drivers/infiniband/hw/cxgb4/ | |
3196 | ||
5c20a5c7 CL |
3197 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3198 | M: Casey Leedom <leedom@chelsio.com> | |
3199 | L: netdev@vger.kernel.org | |
3200 | W: http://www.chelsio.com | |
3201 | S: Supported | |
f7917c00 | 3202 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3203 | |
a9282d01 IM |
3204 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3205 | M: Ian Munsie <imunsie@au1.ibm.com> | |
3206 | M: Michael Neuling <mikey@neuling.org> | |
3207 | L: linuxppc-dev@lists.ozlabs.org | |
3208 | S: Supported | |
3209 | F: drivers/misc/cxl/ | |
ec249dd8 | 3210 | F: include/misc/cxl* |
a9282d01 IM |
3211 | F: include/uapi/misc/cxl.h |
3212 | F: Documentation/powerpc/cxl.txt | |
3213 | F: Documentation/powerpc/cxl.txt | |
3214 | F: Documentation/ABI/testing/sysfs-class-cxl | |
3215 | ||
11f43ae7 MO |
3216 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3217 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3218 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
3219 | L: linux-scsi@vger.kernel.org | |
3220 | S: Supported | |
3221 | F: drivers/scsi/cxlflash/ | |
3222 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3223 | F: Documentation/powerpc/cxlflash.txt | |
3224 | ||
b52b97a3 GC |
3225 | STMMAC ETHERNET DRIVER |
3226 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
3227 | L: netdev@vger.kernel.org | |
3228 | W: http://www.stlinux.com | |
3229 | S: Supported | |
7ac6653a | 3230 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3231 | |
1da177e4 | 3232 | CYBERPRO FB DRIVER |
8b58be88 | 3233 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 3234 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
3235 | W: http://www.arm.linux.org.uk/ |
3236 | S: Maintained | |
8a61f013 | 3237 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3238 | |
1da177e4 | 3239 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3240 | W: http://www.cyclades.com/ |
d459883e | 3241 | S: Orphan |
c897401b | 3242 | F: drivers/tty/cyclades.c |
679655da | 3243 | F: include/linux/cyclades.h |
c117ab84 | 3244 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3245 | |
3246 | CYCLADES PC300 DRIVER | |
1da177e4 | 3247 | W: http://www.cyclades.com/ |
d459883e | 3248 | S: Orphan |
679655da | 3249 | F: drivers/net/wan/pc300* |
1da177e4 | 3250 | |
402f6ae4 AP |
3251 | CYPRESS_FIRMWARE MEDIA DRIVER |
3252 | M: Antti Palosaari <crope@iki.fi> | |
3253 | L: linux-media@vger.kernel.org | |
3254 | W: http://linuxtv.org/ | |
3255 | W: http://palosaari.fi/linux/ | |
3256 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3257 | T: git git://linuxtv.org/anttip/media_tree.git | |
3258 | S: Maintained | |
3259 | F: drivers/media/common/cypress_firmware* | |
3260 | ||
e3ae3525 | 3261 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3262 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3263 | L: linux-input@vger.kernel.org |
be9a6f40 | 3264 | S: Supported |
6305902c JP |
3265 | F: drivers/input/touchscreen/cyttsp* |
3266 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3267 | |
aaaf5fbf JK |
3268 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3269 | M: Joshua Kinard <kumba@gentoo.org> | |
3270 | S: Maintained | |
3271 | F: drivers/rtc/rtc-ds1685.c | |
3272 | F: include/linux/rtc/ds1685.h | |
3273 | ||
1da177e4 | 3274 | DAMA SLAVE for AX.25 |
8b58be88 | 3275 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3276 | W: http://yaina.de/jreuter/ |
3277 | W: http://www.qsl.net/dl1bke/ | |
3278 | L: linux-hams@vger.kernel.org | |
3279 | S: Maintained | |
679655da JP |
3280 | F: net/ax25/af_ax25.c |
3281 | F: net/ax25/ax25_dev.c | |
3282 | F: net/ax25/ax25_ds_* | |
3283 | F: net/ax25/ax25_in.c | |
3284 | F: net/ax25/ax25_out.c | |
3285 | F: net/ax25/ax25_timer.c | |
3286 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3287 | |
e2d1d6c0 | 3288 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3289 | L: netdev@vger.kernel.org |
5ff77428 | 3290 | S: Orphan |
679655da | 3291 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3292 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3293 | |
3294 | DC390/AM53C974 SCSI driver | |
d8130624 | 3295 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3296 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3297 | S: Maintained |
71bd849d | 3298 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3299 | |
1da177e4 | 3300 | DC395x SCSI driver |
61eee9a7 | 3301 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3302 | M: Ali Akcaagac <aliakc@web.de> |
3303 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3304 | L: dc395x@twibble.org |
cf015e9f JP |
3305 | W: http://twibble.org/dist/dc395x/ |
3306 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3307 | S: Maintained |
679655da JP |
3308 | F: Documentation/scsi/dc395x.txt |
3309 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3310 | |
eb8edb08 | 3311 | DCCP PROTOCOL |
a89d030e | 3312 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3313 | L: dccp@vger.kernel.org |
c996d8b9 | 3314 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3315 | S: Maintained |
679655da | 3316 | F: include/linux/dccp.h |
c117ab84 | 3317 | F: include/uapi/linux/dccp.h |
679655da JP |
3318 | F: include/linux/tfrc.h |
3319 | F: net/dccp/ | |
eb8edb08 | 3320 | |
1da177e4 | 3321 | DECnet NETWORK LAYER |
1da177e4 LT |
3322 | W: http://linux-decnet.sourceforge.net |
3323 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3324 | S: Orphan |
679655da JP |
3325 | F: Documentation/networking/decnet.txt |
3326 | F: net/decnet/ | |
1da177e4 | 3327 | |
ebff05b9 MR |
3328 | DECSTATION PLATFORM SUPPORT |
3329 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3330 | L: linux-mips@linux-mips.org | |
3331 | W: http://www.linux-mips.org/wiki/DECstation | |
3332 | S: Maintained | |
3333 | F: arch/mips/dec/ | |
3334 | F: arch/mips/include/asm/dec/ | |
3335 | F: arch/mips/include/asm/mach-dec/ | |
3336 | ||
1da177e4 | 3337 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3338 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3339 | S: Maintained |
33f810b2 | 3340 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3341 | |
ad8f07cc | 3342 | DELL LAPTOP DRIVER |
8b58be88 | 3343 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3344 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
d0944853 | 3345 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3346 | S: Maintained |
679655da | 3347 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3348 | |
817a5cdb PR |
3349 | DELL LAPTOP RBTN DRIVER |
3350 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3351 | S: Maintained | |
3352 | F: drivers/platform/x86/dell-rbtn.* | |
3353 | ||
cdbff611 PR |
3354 | DELL LAPTOP FREEFALL DRIVER |
3355 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3356 | S: Maintained | |
3357 | F: drivers/platform/x86/dell-smo8800.c | |
3358 | ||
1da177e4 | 3359 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3360 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
ef3522f7 | 3361 | S: Maintained |
a5afba16 | 3362 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3363 | F: include/uapi/linux/i8k.h |
1da177e4 | 3364 | |
90563ec4 | 3365 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3366 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3367 | S: Maintained |
679655da JP |
3368 | F: Documentation/dcdbas.txt |
3369 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3370 | |
0b3f6109 | 3371 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3372 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3373 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
0b3f6109 | 3374 | S: Maintained |
36b3a96f | 3375 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3376 | |
5efc75e3 | 3377 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3378 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3379 | L: linux-usb@vger.kernel.org |
18f340f9 | 3380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3381 | S: Maintained |
197ba5f4 | 3382 | F: drivers/usb/dwc2/ |
5efc75e3 | 3383 | |
94ab23dd FB |
3384 | DESIGNWARE USB3 DRD IP DRIVER |
3385 | M: Felipe Balbi <balbi@ti.com> | |
3386 | L: linux-usb@vger.kernel.org | |
3387 | L: linux-omap@vger.kernel.org | |
3388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
3389 | S: Maintained | |
3390 | F: drivers/usb/dwc3/ | |
3391 | ||
833c9545 JB |
3392 | DEVICE COREDUMP (DEV_COREDUMP) |
3393 | M: Johannes Berg <johannes@sipsolutions.net> | |
3394 | L: linux-kernel@vger.kernel.org | |
3395 | S: Maintained | |
3396 | F: drivers/base/devcoredump.c | |
3397 | F: include/linux/devcoredump.h | |
3398 | ||
89d07767 KP |
3399 | DEVICE FREQUENCY (DEVFREQ) |
3400 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3401 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3402 | L: linux-pm@vger.kernel.org |
89d07767 KP |
3403 | S: Maintained |
3404 | F: drivers/devfreq/ | |
3405 | ||
1da177e4 | 3406 | DEVICE NUMBER REGISTRY |
8b58be88 | 3407 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3408 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3409 | S: Maintained |
3410 | ||
e2d1d6c0 | 3411 | DEVICE-MAPPER (LVM) |
854ecaad | 3412 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3413 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3414 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3415 | L: dm-devel@redhat.com |
3416 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3417 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3419 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3420 | S: Maintained |
679655da JP |
3421 | F: Documentation/device-mapper/ |
3422 | F: drivers/md/dm* | |
854ecaad | 3423 | F: drivers/md/persistent-data/ |
679655da JP |
3424 | F: include/linux/device-mapper.h |
3425 | F: include/linux/dm-*.h | |
8504eed3 | 3426 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3427 | |
c0d995aa OST |
3428 | DIALOG SEMICONDUCTOR DRIVERS |
3429 | M: Support Opensource <support.opensource@diasemi.com> | |
3430 | W: http://www.dialog-semiconductor.com/products | |
3431 | S: Supported | |
3432 | F: Documentation/hwmon/da90?? | |
7c933772 | 3433 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3434 | F: drivers/gpio/gpio-da90??.c |
3435 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3436 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3437 | F: drivers/input/misc/da90??_onkey.c |
3438 | F: drivers/input/touchscreen/da9052_tsi.c | |
3439 | F: drivers/leds/leds-da90??.c | |
3440 | F: drivers/mfd/da903x.c | |
3441 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3442 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3443 | F: drivers/power/da9052-battery.c |
7be72c2c | 3444 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3445 | F: drivers/regulator/da903x.c |
3446 | F: drivers/regulator/da9???-regulator.[ch] | |
3447 | F: drivers/rtc/rtc-da90??.c | |
3448 | F: drivers/video/backlight/da90??_bl.c | |
3449 | F: drivers/watchdog/da90??_wdt.c | |
3450 | F: include/linux/mfd/da903x.h | |
3451 | F: include/linux/mfd/da9052/ | |
3452 | F: include/linux/mfd/da9055/ | |
3453 | F: include/linux/mfd/da9063/ | |
7be72c2c | 3454 | F: include/linux/mfd/da9150/ |
c0d995aa OST |
3455 | F: include/sound/da[79]*.h |
3456 | F: sound/soc/codecs/da[79]*.[ch] | |
3457 | ||
599aa697 LL |
3458 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3459 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3460 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3461 | L: driverdev-devel@linuxdriverproject.org |
3462 | S: Maintained | |
3463 | F: drivers/staging/dgnc/ | |
3464 | ||
3465 | DIGI EPCA PCI PRODUCTS | |
3466 | M: Lidza Louina <lidza.louina@gmail.com> | |
6d825f79 | 3467 | M: Daeseok Youn <daeseok.youn@gmail.com> |
599aa697 LL |
3468 | L: driverdev-devel@linuxdriverproject.org |
3469 | S: Maintained | |
3470 | F: drivers/staging/dgap/ | |
3471 | ||
335d7c58 | 3472 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3473 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3474 | L: linux-i2c@vger.kernel.org |
3475 | S: Maintained | |
3476 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3477 | ||
d475c634 MW |
3478 | DIRECT ACCESS (DAX) |
3479 | M: Matthew Wilcox <willy@linux.intel.com> | |
3480 | L: linux-fsdevel@vger.kernel.org | |
3481 | S: Supported | |
3482 | F: fs/dax.c | |
3483 | ||
e7839f25 | 3484 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3485 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3486 | S: Maintained |
679655da JP |
3487 | F: Documentation/filesystems/dnotify.txt |
3488 | F: fs/notify/dnotify/ | |
3489 | F: include/linux/dnotify.h | |
1da177e4 LT |
3490 | |
3491 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3492 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3493 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3494 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3495 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3496 | S: Maintained | |
3497 | ||
4480f15b | 3498 | DISKQUOTA |
d8130624 | 3499 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3500 | S: Maintained |
679655da JP |
3501 | F: Documentation/filesystems/quota.txt |
3502 | F: fs/quota/ | |
3503 | F: include/linux/quota*.h | |
c117ab84 | 3504 | F: include/uapi/linux/quota*.h |
1da177e4 | 3505 | |
702686ad BT |
3506 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3507 | M: Bernie Thompson <bernie@plugable.com> | |
3508 | L: linux-fbdev@vger.kernel.org | |
3509 | S: Maintained | |
3510 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3511 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3512 | F: include/video/udlfb.h |
3513 | F: Documentation/fb/udlfb.txt | |
3514 | ||
e7839f25 | 3515 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3516 | M: Christine Caulfield <ccaulfie@redhat.com> |
3517 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3518 | L: cluster-devel@redhat.com |
5be7b50f | 3519 | W: http://sources.redhat.com/cluster/ |
54e5881d | 3520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 3521 | S: Supported |
679655da | 3522 | F: fs/dlm/ |
5be7b50f | 3523 | |
53b6b3e0 SS |
3524 | DMA BUFFER SHARING FRAMEWORK |
3525 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3526 | S: Maintained | |
3527 | L: linux-media@vger.kernel.org | |
3528 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3529 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3530 | F: drivers/dma-buf/ |
e46d12c6 JP |
3531 | F: include/linux/dma-buf* |
3532 | F: include/linux/reservation.h | |
3533 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3534 | F: Documentation/dma-buf-sharing.txt |
3535 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3536 | ||
b3e5f263 | 3537 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3538 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3539 | L: dmaengine@vger.kernel.org |
3540 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3541 | S: Maintained |
679655da | 3542 | F: drivers/dma/ |
0ce3c066 | 3543 | F: include/linux/dmaengine.h |
979a281e VK |
3544 | F: Documentation/dmaengine/ |
3545 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3546 | |
b825037d | 3547 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3548 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
3549 | L: lm-sensors@lm-sensors.org |
3550 | S: Maintained | |
679655da JP |
3551 | F: Documentation/hwmon/dme1737 |
3552 | F: drivers/hwmon/dme1737.c | |
b825037d | 3553 | |
1f31e1b1 | 3554 | DMI/SMBIOS SUPPORT |
d8130624 | 3555 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3556 | S: Maintained |
d4aeef93 | 3557 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3558 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3559 | F: drivers/firmware/dmi-id.c |
3560 | F: drivers/firmware/dmi_scan.c | |
3561 | F: include/linux/dmi.h | |
3562 | ||
7d2c86b5 | 3563 | DOCUMENTATION |
ad3118b9 | 3564 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3565 | L: linux-doc@vger.kernel.org |
3566 | S: Maintained | |
679655da | 3567 | F: Documentation/ |
42f41ecf JC |
3568 | F: scripts/docproc.c |
3569 | F: scripts/kernel-doc* | |
97be078b RD |
3570 | X: Documentation/ABI/ |
3571 | X: Documentation/devicetree/ | |
933a46b8 JC |
3572 | X: Documentation/acpi |
3573 | X: Documentation/power | |
3574 | X: Documentation/spi | |
6c121170 | 3575 | X: Documentation/DocBook/media |
c51edfb1 | 3576 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 3577 | |
1da177e4 | 3578 | DOUBLETALK DRIVER |
8b58be88 | 3579 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3580 | L: blinux-list@redhat.com |
3581 | S: Maintained | |
679655da JP |
3582 | F: drivers/char/dtlk.c |
3583 | F: include/linux/dtlk.h | |
1da177e4 | 3584 | |
e2d1d6c0 | 3585 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3586 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3587 | L: linux-scsi@vger.kernel.org |
3588 | W: http://www.adaptec.com/ | |
3589 | S: Maintained | |
679655da JP |
3590 | F: drivers/scsi/dpt* |
3591 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3592 | |
b411b363 | 3593 | DRBD DRIVER |
28b8e8d4 JP |
3594 | P: Philipp Reisner |
3595 | P: Lars Ellenberg | |
3596 | M: drbd-dev@lists.linbit.com | |
3597 | L: drbd-user@lists.linbit.com | |
3598 | W: http://www.drbd.org | |
3599 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
3600 | T: git git://git.drbd.org/drbd-8.3.git | |
3601 | S: Supported | |
3602 | F: drivers/block/drbd/ | |
3603 | F: lib/lru_cache.c | |
3604 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3605 | |
dc7dfcd8 | 3606 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3607 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3609 | S: Supported |
679655da | 3610 | F: Documentation/kobject.txt |
7cfc51b9 | 3611 | F: drivers/base/ |
87544653 | 3612 | F: fs/debugfs/ |
dc7dfcd8 WS |
3613 | F: fs/kernfs/ |
3614 | F: fs/sysfs/ | |
87544653 | 3615 | F: include/linux/debugfs.h |
dc7dfcd8 | 3616 | F: include/linux/kobj* |
679655da | 3617 | F: lib/kobj* |
1da177e4 LT |
3618 | |
3619 | DRM DRIVERS | |
8b58be88 | 3620 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3621 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3622 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3623 | S: Maintained |
679655da | 3624 | F: drivers/gpu/drm/ |
433e3b34 | 3625 | F: drivers/gpu/vga/ |
850e9411 | 3626 | F: include/drm/ |
c117ab84 | 3627 | F: include/uapi/drm/ |
1da177e4 | 3628 | |
566f5939 AD |
3629 | RADEON DRM DRIVERS |
3630 | M: Alex Deucher <alexander.deucher@amd.com> | |
3631 | M: Christian König <christian.koenig@amd.com> | |
3632 | L: dri-devel@lists.freedesktop.org | |
3633 | T: git git://people.freedesktop.org/~agd5f/linux | |
3634 | S: Supported | |
3635 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3636 | F: include/uapi/drm/radeon* |
3637 | ||
03e255b9 TR |
3638 | DRM PANEL DRIVERS |
3639 | M: Thierry Reding <thierry.reding@gmail.com> | |
3640 | L: dri-devel@lists.freedesktop.org | |
3641 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3642 | S: Maintained | |
3643 | F: drivers/gpu/drm/drm_panel.c | |
3644 | F: drivers/gpu/drm/panel/ | |
3645 | F: include/drm/drm_panel.h | |
2d799dde | 3646 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 3647 | |
8daf7473 | 3648 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 3649 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 3650 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3651 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3652 | L: dri-devel@lists.freedesktop.org |
7564fde3 | 3653 | W: https://01.org/linuxgraphics/ |
47f95647 | 3654 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3655 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3656 | S: Supported |
14430813 | 3657 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3658 | F: include/drm/i915* |
c117ab84 | 3659 | F: include/uapi/drm/i915* |
8daf7473 | 3660 | |
99763bb8 BB |
3661 | DRM DRIVERS FOR ATMEL HLCDC |
3662 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
3663 | L: dri-devel@lists.freedesktop.org | |
3664 | S: Supported | |
3665 | F: drivers/gpu/drm/atmel-hlcdc/ | |
3666 | F: Documentation/devicetree/bindings/drm/atmel/ | |
3667 | ||
398a6d4a KP |
3668 | DRM DRIVERS FOR EXYNOS |
3669 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
3670 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3671 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
3672 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 3673 | L: dri-devel@lists.freedesktop.org |
25a58030 | 3674 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3675 | S: Supported |
14430813 | 3676 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3677 | F: include/drm/exynos* |
c117ab84 | 3678 | F: include/uapi/drm/exynos* |
398a6d4a | 3679 | |
b55a1b9c JW |
3680 | DRM DRIVERS FOR FREESCALE DCU |
3681 | M: Jianwei Wang <jianwei.wang.chn@gmail.com> | |
3682 | M: Alison Wang <alison.wang@freescale.com> | |
3683 | L: dri-devel@lists.freedesktop.org | |
3684 | S: Supported | |
3685 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde RH |
3686 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
3687 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt | |
b55a1b9c | 3688 | |
0a3d775f PZ |
3689 | DRM DRIVERS FOR FREESCALE IMX |
3690 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3691 | L: dri-devel@lists.freedesktop.org | |
3692 | S: Maintained | |
3693 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 3694 | F: drivers/gpu/ipu-v3/ |
2d799dde | 3695 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 3696 | |
ba2199a6 PJ |
3697 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
3698 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
3699 | L: dri-devel@lists.freedesktop.org | |
3700 | T: git git://github.com/patjak/drm-gma500 | |
3701 | S: Maintained | |
3702 | F: drivers/gpu/drm/gma500 | |
3703 | F: include/drm/gma500* | |
3704 | ||
bd3b49f2 | 3705 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3706 | M: Thierry Reding <thierry.reding@gmail.com> |
3707 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
3708 | L: dri-devel@lists.freedesktop.org |
3709 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 3710 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3711 | S: Supported |
dee8268f | 3712 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3713 | F: drivers/gpu/host1x/ |
e1e90644 | 3714 | F: include/linux/host1x.h |
a5ad7a63 | 3715 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 3716 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 3717 | |
a284e9d1 LP |
3718 | DRM DRIVERS FOR RENESAS |
3719 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
3720 | L: dri-devel@lists.freedesktop.org | |
3721 | L: linux-sh@vger.kernel.org | |
3722 | T: git git://people.freedesktop.org/~airlied/linux | |
3723 | S: Supported | |
3724 | F: drivers/gpu/drm/rcar-du/ | |
3725 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 LP |
3726 | F: include/linux/platform_data/shmob_drm.h |
3727 | ||
625e0346 HS |
3728 | DRM DRIVERS FOR ROCKCHIP |
3729 | M: Mark Yao <mark.yao@rock-chips.com> | |
3730 | L: dri-devel@lists.freedesktop.org | |
3731 | S: Maintained | |
3732 | F: drivers/gpu/drm/rockchip/ | |
2d799dde | 3733 | F: Documentation/devicetree/bindings/display/rockchip* |
625e0346 | 3734 | |
7f11c476 BG |
3735 | DRM DRIVERS FOR STI |
3736 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
3737 | M: Vincent Abriou <vincent.abriou@st.com> | |
3738 | L: dri-devel@lists.freedesktop.org | |
3739 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
3740 | S: Maintained | |
3741 | F: drivers/gpu/drm/sti | |
2d799dde | 3742 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 3743 | |
598df1ac AK |
3744 | DSBR100 USB FM RADIO DRIVER |
3745 | M: Alexey Klimov <klimov.linux@gmail.com> | |
3746 | L: linux-media@vger.kernel.org | |
3747 | T: git git://linuxtv.org/media_tree.git | |
3748 | S: Maintained | |
3749 | F: drivers/media/radio/dsbr100.c | |
3750 | ||
1da177e4 | 3751 | DSCC4 DRIVER |
8b58be88 | 3752 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 3753 | L: netdev@vger.kernel.org |
1da177e4 | 3754 | S: Maintained |
679655da | 3755 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3756 | |
cc11b140 HV |
3757 | DT3155 MEDIA DRIVER |
3758 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3759 | L: linux-media@vger.kernel.org | |
3760 | T: git git://linuxtv.org/media_tree.git | |
3761 | W: http://linuxtv.org | |
3762 | S: Odd Fixes | |
3763 | F: drivers/media/pci/dt3155/ | |
3764 | ||
91952bc0 AP |
3765 | DVB_USB_AF9015 MEDIA DRIVER |
3766 | M: Antti Palosaari <crope@iki.fi> | |
3767 | L: linux-media@vger.kernel.org | |
3768 | W: http://linuxtv.org/ | |
3769 | W: http://palosaari.fi/linux/ | |
3770 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3771 | T: git git://linuxtv.org/anttip/media_tree.git | |
3772 | S: Maintained | |
3773 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3774 | ||
3775 | DVB_USB_AF9035 MEDIA DRIVER | |
3776 | M: Antti Palosaari <crope@iki.fi> | |
3777 | L: linux-media@vger.kernel.org | |
3778 | W: http://linuxtv.org/ | |
3779 | W: http://palosaari.fi/linux/ | |
3780 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3781 | T: git git://linuxtv.org/anttip/media_tree.git | |
3782 | S: Maintained | |
3783 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3784 | ||
3785 | DVB_USB_ANYSEE MEDIA DRIVER | |
3786 | M: Antti Palosaari <crope@iki.fi> | |
3787 | L: linux-media@vger.kernel.org | |
3788 | W: http://linuxtv.org/ | |
3789 | W: http://palosaari.fi/linux/ | |
3790 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3791 | T: git git://linuxtv.org/anttip/media_tree.git | |
3792 | S: Maintained | |
3793 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3794 | ||
3795 | DVB_USB_AU6610 MEDIA DRIVER | |
3796 | M: Antti Palosaari <crope@iki.fi> | |
3797 | L: linux-media@vger.kernel.org | |
3798 | W: http://linuxtv.org/ | |
3799 | W: http://palosaari.fi/linux/ | |
3800 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3801 | T: git git://linuxtv.org/anttip/media_tree.git | |
3802 | S: Maintained | |
3803 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3804 | ||
3805 | DVB_USB_CE6230 MEDIA DRIVER | |
3806 | M: Antti Palosaari <crope@iki.fi> | |
3807 | L: linux-media@vger.kernel.org | |
3808 | W: http://linuxtv.org/ | |
3809 | W: http://palosaari.fi/linux/ | |
3810 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3811 | T: git git://linuxtv.org/anttip/media_tree.git | |
3812 | S: Maintained | |
3813 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3814 | ||
d099dea2 MK |
3815 | DVB_USB_CXUSB MEDIA DRIVER |
3816 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3817 | L: linux-media@vger.kernel.org | |
3818 | W: http://linuxtv.org/ | |
3819 | W: http://github.com/mkrufky | |
3820 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3821 | T: git git://linuxtv.org/media_tree.git | |
3822 | S: Maintained | |
9819da66 | 3823 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3824 | |
91952bc0 | 3825 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3826 | M: Antti Palosaari <crope@iki.fi> |
3827 | L: linux-media@vger.kernel.org | |
3828 | W: http://linuxtv.org/ | |
3829 | W: http://palosaari.fi/linux/ | |
3830 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3831 | T: git git://linuxtv.org/anttip/media_tree.git | |
3832 | S: Maintained | |
91952bc0 | 3833 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3834 | |
5560983b | 3835 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3836 | M: Antti Palosaari <crope@iki.fi> |
3837 | L: linux-media@vger.kernel.org | |
3838 | W: http://linuxtv.org/ | |
91952bc0 AP |
3839 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3840 | T: git git://linuxtv.org/anttip/media_tree.git | |
3841 | S: Maintained | |
5560983b | 3842 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3843 | |
8856f5f2 MK |
3844 | DVB_USB_MXL111SF MEDIA DRIVER |
3845 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3846 | L: linux-media@vger.kernel.org | |
3847 | W: http://linuxtv.org/ | |
3848 | W: http://github.com/mkrufky | |
3849 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3850 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3851 | S: Maintained | |
3852 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3853 | ||
91952bc0 AP |
3854 | DVB_USB_RTL28XXU MEDIA DRIVER |
3855 | M: Antti Palosaari <crope@iki.fi> | |
3856 | L: linux-media@vger.kernel.org | |
3857 | W: http://linuxtv.org/ | |
3858 | W: http://palosaari.fi/linux/ | |
3859 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3860 | T: git git://linuxtv.org/anttip/media_tree.git | |
3861 | S: Maintained | |
3862 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3863 | ||
3864 | DVB_USB_V2 MEDIA DRIVER | |
3865 | M: Antti Palosaari <crope@iki.fi> | |
3866 | L: linux-media@vger.kernel.org | |
3867 | W: http://linuxtv.org/ | |
3868 | W: http://palosaari.fi/linux/ | |
3869 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3870 | T: git git://linuxtv.org/anttip/media_tree.git | |
3871 | S: Maintained | |
3872 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3873 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3874 | ||
ac0ac38f | 3875 | DYNAMIC DEBUG |
5c4a97d1 | 3876 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3877 | S: Maintained |
3878 | F: lib/dynamic_debug.c | |
3879 | F: include/linux/dynamic_debug.h | |
3880 | ||
789c7048 | 3881 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3882 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3883 | S: Maintained |
df621252 | 3884 | F: drivers/tty/serial/dz.* |
789c7048 | 3885 | |
f17effbe MF |
3886 | E3X0 POWER BUTTON DRIVER |
3887 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
3888 | L: usrp-users@lists.ettus.com | |
3889 | W: http://www.ettus.com | |
3890 | S: Supported | |
3891 | F: drivers/input/misc/e3x0-button.c | |
3892 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
3893 | ||
91952bc0 AP |
3894 | E4000 MEDIA DRIVER |
3895 | M: Antti Palosaari <crope@iki.fi> | |
3896 | L: linux-media@vger.kernel.org | |
3897 | W: http://linuxtv.org/ | |
3898 | W: http://palosaari.fi/linux/ | |
3899 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3900 | T: git git://linuxtv.org/anttip/media_tree.git | |
3901 | S: Maintained | |
3902 | F: drivers/media/tuners/e4000* | |
3903 | ||
1da177e4 | 3904 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3905 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3906 | L: linux-scsi@vger.kernel.org |
3907 | S: Maintained | |
679655da | 3908 | F: drivers/scsi/eata.c |
1da177e4 | 3909 | |
91952bc0 AP |
3910 | EC100 MEDIA DRIVER |
3911 | M: Antti Palosaari <crope@iki.fi> | |
3912 | L: linux-media@vger.kernel.org | |
3913 | W: http://linuxtv.org/ | |
3914 | W: http://palosaari.fi/linux/ | |
3915 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3916 | T: git git://linuxtv.org/anttip/media_tree.git | |
3917 | S: Maintained | |
3918 | F: drivers/media/dvb-frontends/ec100* | |
3919 | ||
237fead6 | 3920 | ECRYPT FILE SYSTEM |
0de9adf2 | 3921 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3922 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3923 | W: http://ecryptfs.org |
6dc7516e | 3924 | W: https://launchpad.net/ecryptfs |
237fead6 | 3925 | S: Supported |
679655da JP |
3926 | F: Documentation/filesystems/ecryptfs.txt |
3927 | F: fs/ecryptfs/ | |
237fead6 | 3928 | |
da9bb1d2 | 3929 | EDAC-CORE |
8b58be88 | 3930 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e | 3931 | M: Borislav Petkov <bp@alien8.de> |
009a5410 | 3932 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
91445c72 | 3933 | L: linux-edac@vger.kernel.org |
0e438e3f | 3934 | W: bluesmoke.sourceforge.net |
7a859516 BP |
3935 | T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next |
3936 | T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next | |
8c2a6a40 | 3937 | S: Supported |
679655da | 3938 | F: Documentation/edac.txt |
91445c72 | 3939 | F: drivers/edac/ |
679655da | 3940 | F: include/linux/edac.h |
0e438e3f | 3941 | |
c476c23b | 3942 | EDAC-AMD64 |
8b58be88 | 3943 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3944 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3945 | L: linux-edac@vger.kernel.org |
c476c23b | 3946 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3947 | S: Maintained |
c476c23b BP |
3948 | F: drivers/edac/amd64_edac* |
3949 | ||
836dae5d RR |
3950 | EDAC-CALXEDA |
3951 | M: Doug Thompson <dougthompson@xmission.com> | |
3952 | M: Robert Richter <rric@kernel.org> | |
3953 | L: linux-edac@vger.kernel.org | |
3954 | W: bluesmoke.sourceforge.net | |
3955 | S: Maintained | |
3956 | F: drivers/edac/highbank* | |
3957 | ||
f65aad41 RB |
3958 | EDAC-CAVIUM |
3959 | M: Ralf Baechle <ralf@linux-mips.org> | |
3960 | M: David Daney <david.daney@cavium.com> | |
3961 | L: linux-edac@vger.kernel.org | |
3962 | L: linux-mips@linux-mips.org | |
3963 | W: bluesmoke.sourceforge.net | |
3964 | S: Supported | |
3965 | F: drivers/edac/octeon_edac* | |
3966 | ||
0e438e3f | 3967 | EDAC-E752X |
8b58be88 JP |
3968 | M: Mark Gross <mark.gross@intel.com> |
3969 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3970 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3971 | W: bluesmoke.sourceforge.net |
3972 | S: Maintained | |
679655da | 3973 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3974 | |
3975 | EDAC-E7XXX | |
8b58be88 | 3976 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3977 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3978 | W: bluesmoke.sourceforge.net |
3979 | S: Maintained | |
679655da | 3980 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3981 | |
77c5f5d2 | 3982 | EDAC-GHES |
009a5410 | 3983 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
77c5f5d2 MCC |
3984 | L: linux-edac@vger.kernel.org |
3985 | W: bluesmoke.sourceforge.net | |
3986 | S: Maintained | |
2caa67a6 | 3987 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3988 | |
6bc78404 | 3989 | EDAC-I82443BXGX |
8b58be88 | 3990 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3991 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3992 | W: bluesmoke.sourceforge.net |
3993 | S: Maintained | |
679655da | 3994 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3995 | |
3996 | EDAC-I3000 | |
8b58be88 | 3997 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3998 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3999 | W: bluesmoke.sourceforge.net |
4000 | S: Maintained | |
679655da | 4001 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4002 | |
4003 | EDAC-I5000 | |
8b58be88 | 4004 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4005 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
4006 | W: bluesmoke.sourceforge.net |
4007 | S: Maintained | |
679655da | 4008 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4009 | |
44c12cb2 | 4010 | EDAC-I5400 |
009a5410 | 4011 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 | 4012 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
4013 | W: bluesmoke.sourceforge.net |
4014 | S: Maintained | |
679655da | 4015 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4016 | |
3c9c92b6 | 4017 | EDAC-I7300 |
009a5410 | 4018 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
3c9c92b6 MCC |
4019 | L: linux-edac@vger.kernel.org |
4020 | W: bluesmoke.sourceforge.net | |
4021 | S: Maintained | |
4022 | F: drivers/edac/i7300_edac.c | |
4023 | ||
67c89316 | 4024 | EDAC-I7CORE |
009a5410 | 4025 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 MCC |
4026 | L: linux-edac@vger.kernel.org |
4027 | W: bluesmoke.sourceforge.net | |
4028 | S: Maintained | |
70aff0ce | 4029 | F: drivers/edac/i7core_edac.c |
67c89316 | 4030 | |
ba9a5918 | 4031 | EDAC-I82975X |
8b58be88 | 4032 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4033 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4034 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
4035 | W: bluesmoke.sourceforge.net |
4036 | S: Maintained | |
679655da | 4037 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4038 | |
791b4706 JB |
4039 | EDAC-IE31200 |
4040 | M: Jason Baron <jbaron@akamai.com> | |
4041 | L: linux-edac@vger.kernel.org | |
4042 | W: bluesmoke.sourceforge.net | |
4043 | S: Maintained | |
4044 | F: drivers/edac/ie31200_edac.c | |
4045 | ||
ccdfb979 | 4046 | EDAC-MPC85XX |
30c7469b | 4047 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 JT |
4048 | L: linux-edac@vger.kernel.org |
4049 | W: bluesmoke.sourceforge.net | |
4050 | S: Maintained | |
4051 | F: drivers/edac/mpc85xx_edac.[ch] | |
4052 | ||
ba9a5918 | 4053 | EDAC-PASEMI |
8b58be88 | 4054 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4055 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
4056 | W: bluesmoke.sourceforge.net |
4057 | S: Maintained | |
679655da | 4058 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4059 | |
0e438e3f | 4060 | EDAC-R82600 |
8b58be88 | 4061 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4062 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
4063 | W: bluesmoke.sourceforge.net |
4064 | S: Maintained | |
679655da | 4065 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4066 | |
4d096ca7 | 4067 | EDAC-SBRIDGE |
009a5410 | 4068 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
4d096ca7 MCC |
4069 | L: linux-edac@vger.kernel.org |
4070 | W: bluesmoke.sourceforge.net | |
4071 | S: Maintained | |
4072 | F: drivers/edac/sb_edac.c | |
4073 | ||
995e1de4 LH |
4074 | EDAC-XGENE |
4075 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4076 | M: Loc Ho <lho@apm.com> | |
4077 | S: Supported | |
4078 | F: drivers/edac/xgene_edac.c | |
4079 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4080 | ||
af39917d CL |
4081 | EDIROL UA-101/UA-1000 DRIVER |
4082 | M: Clemens Ladisch <clemens@ladisch.de> | |
4083 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4084 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4085 | S: Maintained | |
4086 | F: sound/usb/misc/ua101.c | |
4087 | ||
1f7df953 | 4088 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4089 | M: Matt Fleming <matt@codeblueprint.co.uk> |
1f7df953 | 4090 | L: linux-efi@vger.kernel.org |
78bef24e | 4091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 4092 | S: Maintained |
fb2efb5c | 4093 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4094 | F: arch/ia64/kernel/efi.c |
4095 | F: arch/x86/boot/compressed/eboot.[ch] | |
4096 | F: arch/x86/include/asm/efi.h | |
4097 | F: arch/x86/platform/efi/* | |
a9499fa7 | 4098 | F: drivers/firmware/efi/* |
1f7df953 MF |
4099 | F: include/linux/efi*.h |
4100 | ||
d68772b7 MF |
4101 | EFI VARIABLE FILESYSTEM |
4102 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4103 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4104 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4106 | L: linux-efi@vger.kernel.org | |
4107 | S: Maintained | |
4108 | F: fs/efivarfs/ | |
4109 | ||
85a00d9b PJ |
4110 | EFIFB FRAMEBUFFER DRIVER |
4111 | L: linux-fbdev@vger.kernel.org | |
4112 | M: Peter Jones <pjones@redhat.com> | |
4113 | S: Maintained | |
8a61f013 | 4114 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4115 | |
0bee8d28 JT |
4116 | EFS FILESYSTEM |
4117 | W: http://aeschi.ch.eu.org/efs/ | |
4118 | S: Orphan | |
679655da | 4119 | F: fs/efs/ |
0bee8d28 | 4120 | |
4480f15b | 4121 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
4122 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
4123 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 4124 | L: linux-rdma@vger.kernel.org |
fab97220 | 4125 | S: Supported |
679655da | 4126 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 4127 | |
aa8a9e25 | 4128 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 4129 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
4130 | L: netdev@vger.kernel.org |
4131 | S: Maintained | |
9aa32835 | 4132 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4133 | |
f0319efe | 4134 | EM28XX VIDEO4LINUX DRIVER |
009a5410 | 4135 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
f0319efe MCC |
4136 | L: linux-media@vger.kernel.org |
4137 | W: http://linuxtv.org | |
4138 | T: git git://linuxtv.org/media_tree.git | |
4139 | S: Maintained | |
4140 | F: drivers/media/usb/em28xx/ | |
4141 | ||
3e3a7d66 | 4142 | EMBEDDED LINUX |
8b58be88 JP |
4143 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4144 | M: Matt Mackall <mpm@selenic.com> | |
4145 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4146 | L: linux-embedded@vger.kernel.org |
4147 | S: Maintained | |
4148 | ||
32505876 JS |
4149 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4150 | M: James Smart <james.smart@avagotech.com> | |
4151 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4152 | L: linux-scsi@vger.kernel.org |
32505876 | 4153 | W: http://www.avagotech.com |
ce00f85c | 4154 | S: Supported |
679655da | 4155 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4156 | |
5f5bac82 | 4157 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4158 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4159 | S: Maintained |
4160 | F: drivers/misc/cb710/ | |
4161 | F: drivers/mmc/host/cb710-mmc.* | |
4162 | F: include/linux/cb710.h | |
4163 | ||
931e39a1 ML |
4164 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4165 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4166 | S: Maintained | |
2a837449 | 4167 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4168 | |
ec207dcc GS |
4169 | ENHANCED ERROR HANDLING (EEH) |
4170 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
4171 | L: linuxppc-dev@lists.ozlabs.org | |
4172 | S: Supported | |
4173 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
4174 | F: arch/powerpc/kernel/eeh*.c | |
4175 | ||
d5ca9006 | 4176 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4177 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4178 | S: Maintained |
084bad91 | 4179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4180 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4181 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4182 | |
38df6492 ME |
4183 | ET131X NETWORK DRIVER |
4184 | M: Mark Einon <mark.einon@gmail.com> | |
4185 | S: Odd Fixes | |
4186 | F: drivers/net/ethernet/agere/ | |
4187 | ||
1da177e4 | 4188 | ETHERNET BRIDGE |
adbbf69d | 4189 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 4190 | L: bridge@lists.linux-foundation.org |
4c325313 | 4191 | L: netdev@vger.kernel.org |
c996d8b9 | 4192 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4193 | S: Maintained |
679655da JP |
4194 | F: include/linux/netfilter_bridge/ |
4195 | F: net/bridge/ | |
1da177e4 | 4196 | |
22f08ad9 FF |
4197 | ETHERNET PHY LIBRARY |
4198 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4199 | L: netdev@vger.kernel.org | |
4200 | S: Maintained | |
4201 | F: include/linux/phy.h | |
4202 | F: include/linux/phy_fixed.h | |
4203 | F: drivers/net/phy/ | |
4204 | F: Documentation/networking/phy.txt | |
4205 | F: drivers/of/of_mdio.c | |
4206 | F: drivers/of/of_net.c | |
4207 | ||
1da177e4 | 4208 | EXT2 FILE SYSTEM |
d8130624 | 4209 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4210 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4211 | S: Maintained |
679655da JP |
4212 | F: Documentation/filesystems/ext2.txt |
4213 | F: fs/ext2/ | |
4214 | F: include/linux/ext2* | |
1da177e4 | 4215 | |
72be2ccf | 4216 | EXT4 FILE SYSTEM |
8b58be88 | 4217 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4218 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4219 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4220 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4221 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 4222 | S: Maintained |
679655da JP |
4223 | F: Documentation/filesystems/ext4.txt |
4224 | F: fs/ext4/ | |
1da177e4 | 4225 | |
c5532b09 | 4226 | Extended Verification Module (EVM) |
74dd744f MZ |
4227 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4228 | L: linux-ima-devel@lists.sourceforge.net | |
4229 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4230 | S: Supported |
4231 | F: security/integrity/evm/ | |
4232 | ||
df6b3cfe MH |
4233 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4234 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4235 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4236 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4238 | S: Maintained |
4239 | F: drivers/extcon/ | |
cd2c3e7f CC |
4240 | F: include/linux/extcon/ |
4241 | F: include/linux/extcon.h | |
df6b3cfe | 4242 | F: Documentation/extcon/ |
cd2c3e7f | 4243 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4244 | |
e2a75c44 | 4245 | EXYNOS DP DRIVER |
b7701755 | 4246 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4247 | L: dri-devel@lists.freedesktop.org |
4248 | S: Maintained | |
4249 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4250 | ||
33ad3912 DL |
4251 | EXYNOS MIPI DISPLAY DRIVERS |
4252 | M: Inki Dae <inki.dae@samsung.com> | |
4253 | M: Donghwa Lee <dh09.lee@samsung.com> | |
4254 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4255 | L: linux-fbdev@vger.kernel.org | |
4256 | S: Maintained | |
8a61f013 | 4257 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
4258 | F: include/video/exynos_mipi* |
4259 | ||
e53004e2 | 4260 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4261 | M: Jean Delvare <jdelvare@suse.com> |
e53004e2 JD |
4262 | L: lm-sensors@lm-sensors.org |
4263 | S: Maintained | |
679655da JP |
4264 | F: Documentation/hwmon/f71805f |
4265 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4266 | |
eea977ed MB |
4267 | FC0011 TUNER DRIVER |
4268 | M: Michael Buesch <m@bues.ch> | |
4269 | L: linux-media@vger.kernel.org | |
4270 | S: Maintained | |
ccae7af2 MCC |
4271 | F: drivers/media/tuners/fc0011.h |
4272 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4273 | |
91952bc0 AP |
4274 | FC2580 MEDIA DRIVER |
4275 | M: Antti Palosaari <crope@iki.fi> | |
4276 | L: linux-media@vger.kernel.org | |
4277 | W: http://linuxtv.org/ | |
4278 | W: http://palosaari.fi/linux/ | |
4279 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4280 | T: git git://linuxtv.org/anttip/media_tree.git | |
4281 | S: Maintained | |
4282 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4283 | |
88b2dbdb EP |
4284 | FANOTIFY |
4285 | M: Eric Paris <eparis@redhat.com> | |
4286 | S: Maintained | |
4287 | F: fs/notify/fanotify/ | |
4288 | F: include/linux/fanotify.h | |
c117ab84 | 4289 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4290 | |
1da177e4 | 4291 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4292 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4293 | W: http://www.farsite.co.uk/ |
4294 | S: Supported | |
679655da | 4295 | F: drivers/net/wan/farsync.* |
1da177e4 | 4296 | |
c5408b88 | 4297 | FAULT INJECTION SUPPORT |
8b58be88 | 4298 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4299 | S: Supported |
679655da JP |
4300 | F: Documentation/fault-injection/ |
4301 | F: lib/fault-inject.c | |
c5408b88 | 4302 | |
053e514f NT |
4303 | FBTFT Framebuffer drivers |
4304 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4305 | M: Noralf Trønnes <noralf@tronnes.org> | |
4306 | S: Maintained | |
4307 | F: drivers/staging/fbtft/ | |
4308 | ||
cae727db | 4309 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3bd746cf | 4310 | M: Vasu Dev <vasu.dev@intel.com> |
f4aaea6d | 4311 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4312 | W: www.Open-FCoE.org |
4313 | S: Supported | |
4314 | F: drivers/scsi/libfc/ | |
4315 | F: drivers/scsi/fcoe/ | |
4316 | F: include/scsi/fc/ | |
4317 | F: include/scsi/libfc.h | |
4318 | F: include/scsi/libfcoe.h | |
c117ab84 | 4319 | F: include/uapi/scsi/fc/ |
cae727db | 4320 | |
e2d1d6c0 | 4321 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4322 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4323 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4324 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4325 | S: Maintained |
679655da JP |
4326 | F: include/linux/fcntl.h |
4327 | F: include/linux/fs.h | |
c117ab84 CEB |
4328 | F: include/uapi/linux/fcntl.h |
4329 | F: include/uapi/linux/fs.h | |
679655da JP |
4330 | F: fs/fcntl.c |
4331 | F: fs/locks.c | |
1da177e4 | 4332 | |
e2d1d6c0 | 4333 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4334 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4335 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4336 | S: Maintained |
679655da | 4337 | F: fs/* |
173acc7c | 4338 | |
b26e0ed4 | 4339 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4340 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
4341 | L: lm-sensors@lm-sensors.org |
4342 | S: Maintained | |
d5ca6918 JP |
4343 | F: drivers/hwmon/f75375s.c |
4344 | F: include/linux/f75375s.h | |
b26e0ed4 | 4345 | |
a331b0c3 CL |
4346 | FIREWIRE AUDIO DRIVERS |
4347 | M: Clemens Ladisch <clemens@ladisch.de> | |
4348 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4349 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4350 | S: Maintained | |
4351 | F: sound/firewire/ | |
4352 | ||
eb86ec51 SR |
4353 | FIREWIRE MEDIA DRIVERS (firedtv) |
4354 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4355 | L: linux-media@vger.kernel.org | |
4356 | L: linux1394-devel@lists.sourceforge.net | |
4357 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4358 | S: Maintained | |
4359 | F: drivers/media/firewire/ | |
4360 | ||
a511ce33 CB |
4361 | FIREWIRE SBP-2 TARGET |
4362 | M: Chris Boot <bootc@bootc.net> | |
4363 | L: linux-scsi@vger.kernel.org | |
4364 | L: target-devel@vger.kernel.org | |
4365 | L: linux1394-devel@lists.sourceforge.net | |
4366 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4367 | S: Maintained | |
4368 | F: drivers/target/sbp/ | |
4369 | ||
7d2c86b5 | 4370 | FIREWIRE SUBSYSTEM |
8b58be88 | 4371 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4372 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4373 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4375 | S: Maintained |
679655da | 4376 | F: drivers/firewire/ |
8f06ce3b SR |
4377 | F: include/linux/firewire.h |
4378 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4379 | F: tools/firewire/ |
e2d1d6c0 RD |
4380 | |
4381 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
4382 | M: Ming Lei <ming.lei@canonical.com> |
4383 | L: linux-kernel@vger.kernel.org | |
4384 | S: Maintained | |
679655da JP |
4385 | F: Documentation/firmware_class/ |
4386 | F: drivers/base/firmware*.c | |
4387 | F: include/linux/firmware.h | |
e2d1d6c0 | 4388 | |
f730e3dc | 4389 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4390 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4391 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4392 | S: Maintained | |
4393 | F: drivers/block/rsxx/ | |
4394 | ||
8206f664 | 4395 | FLOPPY DRIVER |
e5f6450c | 4396 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4398 | S: Odd fixes | |
4399 | F: drivers/block/floppy.c | |
4400 | ||
9c9f32ed AR |
4401 | FMC SUBSYSTEM |
4402 | M: Alessandro Rubini <rubini@gnudd.com> | |
4403 | W: http://www.ohwr.org/projects/fmc-bus | |
4404 | S: Supported | |
4405 | F: drivers/fmc/ | |
4406 | F: include/linux/fmc*.h | |
4407 | F: include/linux/ipmi-fru.h | |
4408 | K: fmc_d.*register | |
4409 | ||
3c0ed7d5 AT |
4410 | FPGA MANAGER FRAMEWORK |
4411 | M: Alan Tull <atull@opensource.altera.com> | |
4412 | S: Maintained | |
4413 | F: drivers/fpga/ | |
4414 | F: include/linux/fpga/fpga-mgr.h | |
4415 | W: http://www.rocketboards.org | |
4416 | ||
e2d1d6c0 | 4417 | FPU EMULATOR |
8b58be88 | 4418 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4419 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4420 | S: Maintained |
679655da | 4421 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4422 | |
4423 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4424 | L: netdev@vger.kernel.org |
c173bfac | 4425 | S: Orphan |
679655da JP |
4426 | F: drivers/net/wan/dlci.c |
4427 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4428 | |
4429 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4430 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
4431 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 4432 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 4433 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4434 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4436 | S: Maintained |
679655da | 4437 | F: Documentation/fb/ |
b22fe37b PM |
4438 | F: drivers/video/ |
4439 | F: include/video/ | |
679655da | 4440 | F: include/linux/fb.h |
c117ab84 CEB |
4441 | F: include/uapi/video/ |
4442 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4443 | |
a57c188e | 4444 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4445 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4446 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4447 | S: Maintained |
8a61f013 | 4448 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4449 | |
e2d1d6c0 | 4450 | FREESCALE DMA DRIVER |
8b58be88 JP |
4451 | M: Li Yang <leoli@freescale.com> |
4452 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4453 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4454 | S: Maintained |
679655da | 4455 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
4456 | |
4457 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 4458 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4459 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4460 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4461 | S: Maintained |
679655da | 4462 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4463 | |
60e8c5ab | 4464 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4465 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 4466 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 4467 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 4468 | S: Maintained |
bad985a1 | 4469 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4470 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4471 | |
4d8e2cef HX |
4472 | FREESCALE QUAD SPI DRIVER |
4473 | M: Han Xu <han.xu@freescale.com> | |
4474 | L: linux-mtd@lists.infradead.org | |
4475 | S: Maintained | |
4476 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4477 | ||
4689a6b1 | 4478 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4479 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
4480 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 4481 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
4482 | L: netdev@vger.kernel.org |
4483 | S: Maintained | |
ec21e2ec | 4484 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4485 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4486 | |
d9e9d82c | 4487 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4488 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4489 | S: Orphan |
679655da JP |
4490 | F: arch/powerpc/sysdev/qe_lib/ |
4491 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 4492 | |
b55ef929 | 4493 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4494 | M: Li Yang <leoli@freescale.com> |
6372594a | 4495 | L: linux-usb@vger.kernel.org |
a4724ed6 | 4496 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 4497 | S: Maintained |
faf2e1db | 4498 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4499 | |
beaf53bf | 4500 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 4501 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 4502 | L: netdev@vger.kernel.org |
a4724ed6 | 4503 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 4504 | S: Maintained |
ec21e2ec | 4505 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 4506 | |
abb1ed7b CM |
4507 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
4508 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
4509 | L: netdev@vger.kernel.org | |
4510 | S: Maintained | |
4511 | F: drivers/net/ethernet/freescale/gianfar* | |
4512 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
4513 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
4514 | ||
d9e9d82c | 4515 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 4516 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 4517 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4518 | S: Maintained |
df621252 | 4519 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
4520 | |
4521 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 4522 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 4523 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 4524 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
93711660 | 4525 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 4526 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4527 | S: Maintained |
69aefcea | 4528 | F: sound/soc/fsl/fsl* |
dc85950a | 4529 | F: sound/soc/fsl/imx* |
69aefcea | 4530 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 4531 | |
31c88965 | 4532 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 4533 | M: "J. German Rivera" <German.Rivera@freescale.com> |
31c88965 GR |
4534 | L: linux-kernel@vger.kernel.org |
4535 | S: Maintained | |
4536 | F: drivers/staging/fsl-mc/ | |
4537 | ||
1da177e4 | 4538 | FREEVXFS FILESYSTEM |
8b58be88 | 4539 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
4540 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
4541 | S: Maintained | |
679655da | 4542 | F: fs/freevxfs/ |
1da177e4 | 4543 | |
71038f52 | 4544 | FREEZER |
49db1903 | 4545 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4546 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4547 | L: linux-pm@vger.kernel.org |
71038f52 | 4548 | S: Supported |
679655da JP |
4549 | F: Documentation/power/freezing-of-tasks.txt |
4550 | F: include/linux/freezer.h | |
4551 | F: kernel/freezer.c | |
71038f52 | 4552 | |
839a1f79 KRW |
4553 | FRONTSWAP API |
4554 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
4555 | L: linux-kernel@vger.kernel.org | |
4556 | S: Maintained | |
4557 | F: mm/frontswap.c | |
4558 | F: include/linux/frontswap.h | |
4559 | ||
a5432f5a | 4560 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 4561 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
4562 | L: linux-cachefs@redhat.com |
4563 | S: Supported | |
4564 | F: Documentation/filesystems/caching/ | |
4565 | F: fs/fscache/ | |
4566 | F: include/linux/fscache*.h | |
4567 | ||
f58ad8f5 | 4568 | F2FS FILE SYSTEM |
9b29d481 | 4569 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 4570 | M: Changman Lee <cm224.lee@samsung.com> |
7b2a246b | 4571 | R: Chao Yu <chao2.yu@samsung.com> |
f58ad8f5 JK |
4572 | L: linux-f2fs-devel@lists.sourceforge.net |
4573 | W: http://en.wikipedia.org/wiki/F2FS | |
4574 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
4575 | S: Maintained | |
4576 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 4577 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
4578 | F: fs/f2fs/ |
4579 | F: include/linux/f2fs_fs.h | |
62d43eeb | 4580 | F: include/trace/events/f2fs.h |
f58ad8f5 | 4581 | |
5ab7ffea | 4582 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 4583 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 4584 | S: Maintained |
679655da | 4585 | F: arch/frv/ |
1da177e4 | 4586 | |
20b93734 | 4587 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 4588 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 4589 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 4590 | S: Maintained |
679655da | 4591 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 4592 | |
4da621b6 HK |
4593 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
4594 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4595 | M: Heungjun Kim <riverful.kim@samsung.com> | |
4596 | L: linux-media@vger.kernel.org | |
4597 | S: Maintained | |
90d72ac6 | 4598 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
4599 | F: include/media/m5mols.h |
4600 | ||
2d24c490 RG |
4601 | FUJITSU TABLET EXTRAS |
4602 | M: Robert Gerlach <khnz@gmx.de> | |
4603 | L: platform-driver-x86@vger.kernel.org | |
4604 | S: Maintained | |
4605 | F: drivers/platform/x86/fujitsu-tablet.c | |
4606 | ||
04578f17 | 4607 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 4608 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
4609 | L: fuse-devel@lists.sourceforge.net |
4610 | W: http://fuse.sourceforge.net/ | |
0a30f612 | 4611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 4612 | S: Maintained |
679655da | 4613 | F: fs/fuse/ |
c117ab84 | 4614 | F: include/uapi/linux/fuse.h |
0a30f612 | 4615 | F: Documentation/filesystems/fuse.txt |
04578f17 | 4616 | |
1da177e4 | 4617 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 4618 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 4619 | L: linux-scsi@vger.kernel.org |
baaea1dc | 4620 | S: Odd Fixes (e.g., new signatures) |
679655da | 4621 | F: drivers/scsi/fdomain.* |
1da177e4 | 4622 | |
d8e2162c PO |
4623 | GCOV BASED KERNEL PROFILING |
4624 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
4625 | S: Maintained | |
4626 | F: kernel/gcov/ | |
4627 | F: Documentation/gcov.txt | |
4628 | ||
1da177e4 | 4629 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 4630 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
4631 | L: linux-scsi@vger.kernel.org |
4632 | W: http://www.icp-vortex.com/ | |
4633 | S: Supported | |
679655da | 4634 | F: drivers/scsi/gdt* |
1da177e4 | 4635 | |
158daf16 JK |
4636 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
4637 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
4638 | S: Supported | |
4639 | F: scripts/gdb/ | |
4640 | ||
3169a1c7 HV |
4641 | GEMTEK FM RADIO RECEIVER DRIVER |
4642 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4643 | L: linux-media@vger.kernel.org | |
4644 | T: git git://linuxtv.org/media_tree.git | |
4645 | W: http://linuxtv.org | |
4646 | S: Maintained | |
4647 | F: drivers/media/radio/radio-gemtek* | |
4648 | ||
1c23af90 | 4649 | GENERIC GPIO I2C DRIVER |
880b0e26 | 4650 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 4651 | S: Supported |
679655da JP |
4652 | F: drivers/i2c/busses/i2c-gpio.c |
4653 | F: include/linux/i2c-gpio.h | |
1c23af90 | 4654 | |
92ed1a76 PK |
4655 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
4656 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
4657 | L: linux-i2c@vger.kernel.org | |
4658 | S: Supported | |
e7065e20 JD |
4659 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
4660 | F: include/linux/i2c-mux-gpio.h | |
4661 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 4662 | |
9251ce95 | 4663 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 4664 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
4665 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
4666 | S: Maintained | |
679655da JP |
4667 | F: drivers/net/wan/c101.c |
4668 | F: drivers/net/wan/hd6457* | |
4669 | F: drivers/net/wan/hdlc* | |
4670 | F: drivers/net/wan/n2.c | |
4671 | F: drivers/net/wan/pc300too.c | |
4672 | F: drivers/net/wan/pci200syn.c | |
4673 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4674 | |
1527aab6 | 4675 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4676 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
4677 | L: linux-arch@vger.kernel.org |
4678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4679 | S: Maintained | |
14430813 JP |
4680 | F: include/asm-generic/ |
4681 | F: include/uapi/asm-generic/ | |
1527aab6 | 4682 | |
ff764963 KVA |
4683 | GENERIC PHY FRAMEWORK |
4684 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
4685 | L: linux-kernel@vger.kernel.org | |
4686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4687 | S: Supported | |
4688 | F: drivers/phy/ | |
4689 | F: include/linux/phy/ | |
4690 | ||
eea97aed KH |
4691 | GENERIC PM DOMAINS |
4692 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
4693 | M: Kevin Hilman <khilman@kernel.org> | |
4694 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
4695 | L: linux-pm@vger.kernel.org | |
4696 | S: Supported | |
4697 | F: drivers/base/power/domain*.c | |
4698 | F: include/linux/pm_domain.h | |
4699 | ||
ccb86a69 | 4700 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4701 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 4702 | L: kvm@vger.kernel.org |
ccb86a69 MT |
4703 | S: Supported |
4704 | F: drivers/uio/uio_pci_generic.c | |
4705 | ||
f8f1ec73 JP |
4706 | GET_MAINTAINER SCRIPT |
4707 | M: Joe Perches <joe@perches.com> | |
4708 | S: Maintained | |
4709 | F: scripts/get_maintainer.pl | |
4710 | ||
5be7b50f | 4711 | GFS2 FILE SYSTEM |
8b58be88 | 4712 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 4713 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 4714 | L: cluster-devel@redhat.com |
5be7b50f | 4715 | W: http://sources.redhat.com/cluster/ |
28666d6d | 4716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 4717 | S: Supported |
679655da JP |
4718 | F: Documentation/filesystems/gfs2*.txt |
4719 | F: fs/gfs2/ | |
c117ab84 | 4720 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4721 | |
0a34eb8f | 4722 | GIGASET ISDN DRIVERS |
6b096fde | 4723 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
4724 | L: gigaset307x-common@lists.sourceforge.net |
4725 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 4726 | S: Odd Fixes |
679655da JP |
4727 | F: Documentation/isdn/README.gigaset |
4728 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4729 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4730 | |
7eea35fe JP |
4731 | GO7007 MPEG CODEC |
4732 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
4733 | L: linux-media@vger.kernel.org | |
4734 | S: Maintained | |
4735 | F: drivers/media/usb/go7007/ | |
4736 | ||
ca96ea86 BN |
4737 | GOODIX TOUCHSCREEN |
4738 | M: Bastien Nocera <hadess@hadess.net> | |
4739 | L: linux-input@vger.kernel.org | |
4740 | S: Maintained | |
4741 | F: drivers/input/touchscreen/goodix.c | |
4742 | ||
a0dc00b4 | 4743 | GPIO SUBSYSTEM |
e4651a9f | 4744 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 4745 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 4746 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
4747 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4748 | S: Maintained | |
4749 | F: Documentation/gpio/ | |
a0dc00b4 | 4750 | F: drivers/gpio/ |
bdc6e95e AC |
4751 | F: include/linux/gpio/ |
4752 | F: include/linux/gpio.h | |
9b692346 | 4753 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4754 | |
71a6d0af HW |
4755 | GRE DEMULTIPLEXER DRIVER |
4756 | M: Dmitry Kozlov <xeb@mail.ru> | |
4757 | L: netdev@vger.kernel.org | |
4758 | S: Maintained | |
11c26770 JP |
4759 | F: net/ipv4/gre_demux.c |
4760 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4761 | F: include/net/gre.h |
4762 | ||
d4c41139 KG |
4763 | GRETH 10/100/1G Ethernet MAC device driver |
4764 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
4765 | L: netdev@vger.kernel.org | |
4766 | S: Maintained | |
a31a96ad | 4767 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4768 | |
e8deeae2 | 4769 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4770 | M: Frank Zago <frank@zago.net> |
661263b5 | 4771 | L: linux-media@vger.kernel.org |
275ffde4 | 4772 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4773 | S: Maintained |
0c0d06ca | 4774 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4775 | |
4b3fa3c4 OL |
4776 | GSPCA GL860 SUBDRIVER |
4777 | M: Olivier Lorin <o.lorin@laposte.net> | |
4778 | L: linux-media@vger.kernel.org | |
275ffde4 | 4779 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4780 | S: Maintained |
0c0d06ca | 4781 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4782 | |
e8deeae2 | 4783 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4784 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 4785 | L: linux-media@vger.kernel.org |
275ffde4 | 4786 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4787 | S: Maintained |
0c0d06ca | 4788 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4789 | |
4790 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4791 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4792 | L: linux-media@vger.kernel.org |
275ffde4 | 4793 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4794 | S: Maintained |
0c0d06ca | 4795 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4796 | |
261982f1 | 4797 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4798 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 4799 | L: linux-media@vger.kernel.org |
275ffde4 | 4800 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4801 | S: Maintained |
0c0d06ca | 4802 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4803 | |
e8deeae2 | 4804 | GSPCA T613 SUBDRIVER |
8b58be88 | 4805 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 4806 | L: linux-media@vger.kernel.org |
275ffde4 | 4807 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4808 | S: Maintained |
0c0d06ca | 4809 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4810 | |
4811 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4812 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4813 | L: linux-media@vger.kernel.org |
275ffde4 | 4814 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4815 | S: Maintained |
0c0d06ca | 4816 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4817 | |
584ec979 | 4818 | GUID PARTITION TABLE (GPT) |
4f973c63 | 4819 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
4820 | L: linux-efi@vger.kernel.org |
4821 | S: Maintained | |
4822 | F: block/partitions/efi.* | |
4823 | ||
aa3c598b | 4824 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 4825 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 4826 | L: linux-media@vger.kernel.org |
275ffde4 | 4827 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4828 | S: Maintained |
4829 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4830 | |
4e456b86 YS |
4831 | H8/300 ARCHITECTURE |
4832 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 4833 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
4834 | W: http://uclinux-h8.sourceforge.jp |
4835 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
4836 | S: Maintained | |
4837 | F: arch/h8300/ | |
4838 | F: drivers/clocksource/h8300_*.c | |
4839 | F: drivers/clk/h8300/ | |
4840 | F: drivers/irqchip/irq-renesas-h8*.c | |
4841 | ||
71a6d0af HW |
4842 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4843 | M: Frank Seidel <frank@f-seidel.de> | |
4844 | L: platform-driver-x86@vger.kernel.org | |
4845 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4846 | S: Maintained | |
4847 | F: drivers/platform/x86/hdaps.c | |
4848 | ||
48fc9e26 HV |
4849 | HDPVR USB VIDEO ENCODER DRIVER |
4850 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4851 | L: linux-media@vger.kernel.org | |
4852 | T: git git://linuxtv.org/media_tree.git | |
4853 | W: http://linuxtv.org | |
4854 | S: Odd Fixes | |
14430813 | 4855 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4856 | |
71a6d0af | 4857 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4858 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4859 | L: linux-mm@kvack.org |
71a6d0af HW |
4860 | S: Maintained |
4861 | F: mm/memory-failure.c | |
4862 | F: mm/hwpoison-inject.c | |
4863 | ||
4864 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4865 | L: linuxppc-dev@lists.ozlabs.org | |
4866 | S: Odd Fixes | |
4867 | F: drivers/tty/hvc/ | |
4868 | ||
e5ab1477 AP |
4869 | HACKRF MEDIA DRIVER |
4870 | M: Antti Palosaari <crope@iki.fi> | |
4871 | L: linux-media@vger.kernel.org | |
4872 | W: http://linuxtv.org/ | |
4873 | W: http://palosaari.fi/linux/ | |
4874 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4875 | T: git git://linuxtv.org/anttip/media_tree.git | |
4876 | S: Maintained | |
4877 | F: drivers/media/usb/hackrf/ | |
4878 | ||
5b543965 | 4879 | HARDWARE MONITORING |
d8130624 | 4880 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 4881 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4882 | L: lm-sensors@lm-sensors.org |
595142e0 | 4883 | W: http://www.lm-sensors.org/ |
a94ef4ed | 4884 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 4885 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4886 | S: Maintained |
047f4ec2 | 4887 | F: Documentation/hwmon/ |
679655da | 4888 | F: drivers/hwmon/ |
047f4ec2 | 4889 | F: include/linux/hwmon*.h |
5b543965 | 4890 | |
844dd05f | 4891 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4892 | M: Matt Mackall <mpm@selenic.com> |
4893 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 4894 | L: linux-crypto@vger.kernel.org |
c0d0787b | 4895 | S: Odd fixes |
679655da JP |
4896 | F: Documentation/hw_random.txt |
4897 | F: drivers/char/hw_random/ | |
4898 | F: include/linux/hw_random.h | |
844dd05f | 4899 | |
8b37fcfc OBC |
4900 | HARDWARE SPINLOCK CORE |
4901 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4902 | S: Maintained | |
4903 | F: Documentation/hwspinlock.txt | |
4904 | F: drivers/hwspinlock/hwspinlock_* | |
4905 | F: include/linux/hwspinlock.h | |
4906 | ||
1da177e4 | 4907 | HARMONY SOUND DRIVER |
ac6aecbf | 4908 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4909 | S: Maintained |
679655da | 4910 | F: sound/parisc/harmony.* |
1da177e4 | 4911 | |
91952bc0 AP |
4912 | HD29L2 MEDIA DRIVER |
4913 | M: Antti Palosaari <crope@iki.fi> | |
4914 | L: linux-media@vger.kernel.org | |
4915 | W: http://linuxtv.org/ | |
4916 | W: http://palosaari.fi/linux/ | |
4917 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4918 | T: git git://linuxtv.org/anttip/media_tree.git | |
4919 | S: Maintained | |
4920 | F: drivers/media/dvb-frontends/hd29l2* | |
4921 | ||
e2d1d6c0 | 4922 | HEWLETT-PACKARD SMART2 RAID DRIVER |
e2d1d6c0 | 4923 | L: iss_storagedev@hp.com |
af9f1b3c | 4924 | S: Orphan |
679655da JP |
4925 | F: Documentation/blockdev/cpqarray.txt |
4926 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4927 | |
9257aa49 | 4928 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
693373db | 4929 | M: Don Brace <don.brace@pmcs.com> |
9257aa49 | 4930 | L: iss_storagedev@hp.com |
693373db DB |
4931 | L: storagedev@pmcs.com |
4932 | L: linux-scsi@vger.kernel.org | |
9257aa49 SC |
4933 | S: Supported |
4934 | F: Documentation/scsi/hpsa.txt | |
4935 | F: drivers/scsi/hpsa*.[ch] | |
4936 | F: include/linux/cciss*.h | |
c117ab84 | 4937 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4938 | |
e2d1d6c0 | 4939 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
693373db | 4940 | M: Don Brace <don.brace@pmcs.com> |
e2d1d6c0 | 4941 | L: iss_storagedev@hp.com |
693373db DB |
4942 | L: storagedev@pmcs.com |
4943 | L: linux-scsi@vger.kernel.org | |
e2d1d6c0 | 4944 | S: Supported |
679655da JP |
4945 | F: Documentation/blockdev/cciss.txt |
4946 | F: drivers/block/cciss* | |
4947 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4948 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4949 | |
1da177e4 | 4950 | HFS FILESYSTEM |
6cf515e1 GU |
4951 | L: linux-fsdevel@vger.kernel.org |
4952 | S: Orphan | |
679655da JP |
4953 | F: Documentation/filesystems/hfs.txt |
4954 | F: fs/hfs/ | |
1da177e4 | 4955 | |
ef575f47 GU |
4956 | HFSPLUS FILESYSTEM |
4957 | L: linux-fsdevel@vger.kernel.org | |
4958 | S: Orphan | |
4959 | F: Documentation/filesystems/hfsplus.txt | |
4960 | F: fs/hfsplus/ | |
4961 | ||
1da177e4 | 4962 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4963 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
4964 | L: linux-nvidia@lists.surfsouth.com |
4965 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4966 | S: Maintained | |
8a61f013 | 4967 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 4968 | |
4480f15b | 4969 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4970 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4971 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4972 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 4973 | S: Supported |
679655da JP |
4974 | F: arch/x86/power/ |
4975 | F: drivers/base/power/ | |
4976 | F: kernel/power/ | |
4977 | F: include/linux/suspend.h | |
4978 | F: include/linux/freezer.h | |
4979 | F: include/linux/pm.h | |
679655da | 4980 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4981 | |
4ef4caad | 4982 | HID CORE LAYER |
e5f6450c | 4983 | M: Jiri Kosina <jikos@kernel.org> |
eb76c5c0 | 4984 | L: linux-input@vger.kernel.org |
54e5881d | 4985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4986 | S: Maintained |
679655da JP |
4987 | F: drivers/hid/ |
4988 | F: include/linux/hid* | |
c117ab84 | 4989 | F: include/uapi/linux/hid* |
4ef4caad | 4990 | |
30ee72f0 | 4991 | HID SENSOR HUB DRIVERS |
e5f6450c | 4992 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
4993 | M: Jonathan Cameron <jic23@kernel.org> |
4994 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
4995 | L: linux-input@vger.kernel.org | |
4996 | L: linux-iio@vger.kernel.org | |
4997 | S: Maintained | |
4998 | F: Documentation/hid/hid-sensor* | |
4999 | F: drivers/hid/hid-sensor-* | |
5000 | F: drivers/iio/*/hid-* | |
5001 | F: include/linux/hid-sensor-* | |
5002 | ||
38bed542 | 5003 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5004 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5005 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5007 | S: Maintained |
679655da | 5008 | F: Documentation/timers/ |
5cee9645 | 5009 | F: kernel/time/hrtimer.c |
88606e80 TG |
5010 | F: kernel/time/clockevents.c |
5011 | F: kernel/time/tick*.* | |
5012 | F: kernel/time/timer_*.c | |
05ed8490 | 5013 | F: include/linux/clockchips.h |
679655da | 5014 | F: include/linux/hrtimer.h |
38bed542 | 5015 | |
1da177e4 | 5016 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5017 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5018 | S: Orphan |
679655da JP |
5019 | F: drivers/net/hamradio/dmascc.c |
5020 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5021 | |
ede1e6f8 | 5022 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5023 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5024 | W: http://www.highpoint-tech.com |
5025 | S: Supported | |
679655da JP |
5026 | F: Documentation/scsi/hptiop.txt |
5027 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5028 | |
1da177e4 | 5029 | HIPPI |
8b58be88 | 5030 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5031 | L: linux-hippi@sunsite.dk |
5032 | S: Maintained | |
679655da | 5033 | F: include/linux/hippidevice.h |
c117ab84 | 5034 | F: include/uapi/linux/if_hippi.h |
679655da | 5035 | F: net/802/hippi.c |
ff5a3b50 | 5036 | F: drivers/net/hippi/ |
1da177e4 | 5037 | |
ff1d2767 | 5038 | HOST AP DRIVER |
8b58be88 | 5039 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 5040 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 5041 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
5042 | W: http://hostap.epitest.fi/ |
5043 | S: Maintained | |
679655da | 5044 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 5045 | |
dd8cd779 | 5046 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5047 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5048 | S: Orphan |
679655da | 5049 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5050 | |
e2d1d6c0 | 5051 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5052 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5053 | S: Maintained |
7e25d724 | 5054 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5055 | |
7d2c86b5 | 5056 | HPET: High Precision Event Timers driver |
8b58be88 | 5057 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5058 | S: Maintained |
679655da JP |
5059 | F: Documentation/timers/hpet.txt |
5060 | F: drivers/char/hpet.c | |
5061 | F: include/linux/hpet.h | |
c117ab84 | 5062 | F: include/uapi/linux/hpet.h |
b9b0332f | 5063 | |
e07b5d79 | 5064 | HPET: x86 |
9e06f631 | 5065 | S: Orphan |
679655da JP |
5066 | F: arch/x86/kernel/hpet.c |
5067 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5068 | |
1da177e4 | 5069 | HPFS FILESYSTEM |
8b58be88 | 5070 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5071 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5072 | S: Maintained | |
679655da | 5073 | F: fs/hpfs/ |
1da177e4 | 5074 | |
3441cded | 5075 | HSI SUBSYSTEM |
56459ea9 SR |
5076 | M: Sebastian Reichel <sre@kernel.org> |
5077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5078 | S: Maintained |
5079 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 5080 | F: Documentation/hsi.txt |
3441cded SR |
5081 | F: drivers/hsi/ |
5082 | F: include/linux/hsi/ | |
5083 | F: include/uapi/linux/hsi/ | |
5084 | ||
7d2c86b5 | 5085 | HSO 3G MODEM DRIVER |
8b58be88 | 5086 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5087 | W: http://www.pharscape.org |
5088 | S: Maintained | |
679655da | 5089 | F: drivers/net/usb/hso.c |
11cd29b0 | 5090 | |
19990e29 AB |
5091 | HSR NETWORK PROTOCOL |
5092 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5093 | L: netdev@vger.kernel.org | |
5094 | S: Maintained | |
5095 | F: net/hsr/ | |
5096 | ||
5a18c343 | 5097 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5098 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5099 | L: linux-input@vger.kernel.org |
5100 | S: Maintained | |
679655da | 5101 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5102 | |
1da177e4 | 5103 | HUGETLB FILESYSTEM |
6d49e352 | 5104 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5105 | S: Maintained |
679655da | 5106 | F: fs/hugetlbfs/ |
1da177e4 | 5107 | |
05183189 | 5108 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5109 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5110 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5111 | L: devel@linuxdriverproject.org | |
5112 | S: Maintained | |
a4162747 HZ |
5113 | F: arch/x86/include/asm/mshyperv.h |
5114 | F: arch/x86/include/uapi/asm/hyperv.h | |
5115 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5116 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5117 | F: drivers/hv/ |
f92ca80b | 5118 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 5119 | F: drivers/net/hyperv/ |
a4162747 | 5120 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5121 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5122 | F: include/linux/hyperv.h |
5123 | F: tools/hv/ | |
54bf725e | 5124 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5125 | |
d85c8a6a | 5126 | I2C OVER PARALLEL PORT |
d8130624 | 5127 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5128 | L: linux-i2c@vger.kernel.org |
5129 | S: Maintained | |
5130 | F: Documentation/i2c/busses/i2c-parport | |
5131 | F: Documentation/i2c/busses/i2c-parport-light | |
5132 | F: drivers/i2c/busses/i2c-parport.c | |
5133 | F: drivers/i2c/busses/i2c-parport-light.c | |
5134 | ||
5135 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5136 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5137 | L: linux-i2c@vger.kernel.org |
5138 | S: Maintained | |
5139 | F: Documentation/i2c/busses/i2c-ali1535 | |
5140 | F: Documentation/i2c/busses/i2c-ali1563 | |
5141 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5142 | F: Documentation/i2c/busses/i2c-amd756 | |
5143 | F: Documentation/i2c/busses/i2c-amd8111 | |
5144 | F: Documentation/i2c/busses/i2c-i801 | |
5145 | F: Documentation/i2c/busses/i2c-nforce2 | |
5146 | F: Documentation/i2c/busses/i2c-piix4 | |
5147 | F: Documentation/i2c/busses/i2c-sis5595 | |
5148 | F: Documentation/i2c/busses/i2c-sis630 | |
5149 | F: Documentation/i2c/busses/i2c-sis96x | |
5150 | F: Documentation/i2c/busses/i2c-via | |
5151 | F: Documentation/i2c/busses/i2c-viapro | |
5152 | F: drivers/i2c/busses/i2c-ali1535.c | |
5153 | F: drivers/i2c/busses/i2c-ali1563.c | |
5154 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5155 | F: drivers/i2c/busses/i2c-amd756.c | |
5156 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5157 | F: drivers/i2c/busses/i2c-amd8111.c | |
5158 | F: drivers/i2c/busses/i2c-i801.c | |
5159 | F: drivers/i2c/busses/i2c-isch.c | |
5160 | F: drivers/i2c/busses/i2c-nforce2.c | |
5161 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5162 | F: drivers/i2c/busses/i2c-piix4.c | |
5163 | F: drivers/i2c/busses/i2c-sis5595.c | |
5164 | F: drivers/i2c/busses/i2c-sis630.c | |
5165 | F: drivers/i2c/busses/i2c-sis96x.c | |
5166 | F: drivers/i2c/busses/i2c-via.c | |
5167 | F: drivers/i2c/busses/i2c-viapro.c | |
5168 | ||
cb7f07a4 NH |
5169 | I2C/SMBUS ISMT DRIVER |
5170 | M: Seth Heasley <seth.heasley@intel.com> | |
5171 | M: Neil Horman <nhorman@tuxdriver.com> | |
5172 | L: linux-i2c@vger.kernel.org | |
5173 | F: drivers/i2c/busses/i2c-ismt.c | |
5174 | F: Documentation/i2c/busses/i2c-ismt | |
5175 | ||
6ea884db | 5176 | I2C/SMBUS STUB DRIVER |
d8130624 | 5177 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5178 | L: linux-i2c@vger.kernel.org |
6ea884db | 5179 | S: Maintained |
8547a5bc | 5180 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5181 | |
5b543965 | 5182 | I2C SUBSYSTEM |
14d77c4d | 5183 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5184 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5185 | W: https://i2c.wiki.kernel.org/ |
5186 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5188 | S: Maintained |
40ed1b4c | 5189 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5190 | F: Documentation/i2c/ |
5191 | F: drivers/i2c/ | |
630bc46e | 5192 | F: drivers/i2c/*/ |
679655da | 5193 | F: include/linux/i2c.h |
03b70d62 | 5194 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5195 | F: include/uapi/linux/i2c.h |
5196 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5197 | |
4560d677 WS |
5198 | I2C ACPI SUPPORT |
5199 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5200 | L: linux-i2c@vger.kernel.org | |
5201 | L: linux-acpi@vger.kernel.org | |
5202 | S: Maintained | |
4560d677 | 5203 | |
d85c8a6a | 5204 | I2C-TAOS-EVM DRIVER |
d8130624 | 5205 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5206 | L: linux-i2c@vger.kernel.org |
5207 | S: Maintained | |
5208 | F: Documentation/i2c/busses/i2c-taos-evm | |
5209 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5210 | ||
e8c76eed | 5211 | I2C-TINY-USB DRIVER |
8b58be88 | 5212 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5213 | L: linux-i2c@vger.kernel.org |
932d1872 | 5214 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5215 | S: Maintained |
679655da | 5216 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5217 | |
1da177e4 | 5218 | i386 BOOT CODE |
8b58be88 | 5219 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5220 | S: Maintained |
679655da | 5221 | F: arch/x86/boot/ |
1da177e4 LT |
5222 | |
5223 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5224 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5226 | S: Maintained |
5227 | ||
1da177e4 | 5228 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5229 | M: Tony Luck <tony.luck@intel.com> |
5230 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5231 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5233 | S: Maintained |
679655da | 5234 | F: arch/ia64/ |
1da177e4 | 5235 | |
4cd38750 LDSB |
5236 | IBM Power VMX Cryptographic instructions |
5237 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5238 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5239 | L: linux-crypto@vger.kernel.org |
5240 | S: Supported | |
5241 | F: drivers/crypto/vmx/Makefile | |
5242 | F: drivers/crypto/vmx/Kconfig | |
5243 | F: drivers/crypto/vmx/vmx.c | |
5244 | F: drivers/crypto/vmx/aes* | |
5245 | F: drivers/crypto/vmx/ghash* | |
5246 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5247 | ||
956c203c | 5248 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5249 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5250 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5251 | L: linux-crypto@vger.kernel.org |
5252 | S: Supported | |
28bceeaa DS |
5253 | F: drivers/crypto/nx/Makefile |
5254 | F: drivers/crypto/nx/Kconfig | |
5255 | F: drivers/crypto/nx/nx-aes* | |
5256 | F: drivers/crypto/nx/nx-sha* | |
5257 | F: drivers/crypto/nx/nx.* | |
5258 | F: drivers/crypto/nx/nx_csbcpb.h | |
5259 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5260 | |
0e16aafb | 5261 | IBM Power 842 compression accelerator |
41656aa7 | 5262 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5263 | S: Supported |
28bceeaa DS |
5264 | F: drivers/crypto/nx/Makefile |
5265 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5266 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5267 | F: include/linux/sw842.h |
2062c5b6 | 5268 | F: crypto/842.c |
2da572c9 | 5269 | F: lib/842/ |
0e16aafb | 5270 | |
1da177e4 | 5271 | IBM Power Linux RAID adapter |
8b58be88 | 5272 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 5273 | S: Supported |
679655da | 5274 | F: drivers/scsi/ipr.* |
1da177e4 | 5275 | |
9d348af4 | 5276 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 5277 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
5278 | L: netdev@vger.kernel.org |
5279 | S: Supported | |
9aa32835 | 5280 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 5281 | |
e6babec6 | 5282 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 5283 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
5284 | L: linux-scsi@vger.kernel.org |
5285 | S: Supported | |
e6babec6 NF |
5286 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
5287 | F: drivers/scsi/ibmvscsi/viosrp.h | |
5288 | ||
5289 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 5290 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
5291 | L: linux-scsi@vger.kernel.org |
5292 | S: Supported | |
5293 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 5294 | |
1da177e4 | 5295 | IBM ServeRAID RAID DRIVER |
f9213e78 | 5296 | S: Orphan |
679655da | 5297 | F: drivers/scsi/ips.* |
1da177e4 | 5298 | |
6ed9f9c4 PT |
5299 | ICH LPC AND GPIO DRIVER |
5300 | M: Peter Tyser <ptyser@xes-inc.com> | |
5301 | S: Maintained | |
5302 | F: drivers/mfd/lpc_ich.c | |
5303 | F: drivers/gpio/gpio-ich.c | |
5304 | ||
1e7106fc | 5305 | IDE SUBSYSTEM |
8b58be88 | 5306 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 5307 | L: linux-ide@vger.kernel.org |
8a6e2535 | 5308 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 5309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 5310 | S: Maintained |
679655da JP |
5311 | F: Documentation/ide/ |
5312 | F: drivers/ide/ | |
5313 | F: include/linux/ide.h | |
1da177e4 | 5314 | |
6cb8c13d IP |
5315 | IDEAPAD LAPTOP EXTRAS DRIVER |
5316 | M: Ike Panhc <ike.pan@canonical.com> | |
5317 | L: platform-driver-x86@vger.kernel.org | |
5318 | W: http://launchpad.net/ideapad-laptop | |
5319 | S: Maintained | |
5320 | F: drivers/platform/x86/ideapad-laptop.c | |
5321 | ||
1ea4c161 AM |
5322 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
5323 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
5324 | L: linux-input@vger.kernel.org | |
5325 | W: https://github.com/o2genum/ideapad-slidebar | |
5326 | S: Maintained | |
5327 | F: drivers/input/misc/ideapad_slidebar.c | |
5328 | ||
0f861e8c | 5329 | IDE/ATAPI DRIVERS |
487ba8e8 | 5330 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 5331 | L: linux-ide@vger.kernel.org |
c404c199 | 5332 | S: Maintained |
679655da JP |
5333 | F: Documentation/cdrom/ide-cd |
5334 | F: drivers/ide/ide-cd* | |
1da177e4 | 5335 | |
27471fdb | 5336 | IDLE-I7300 |
8b58be88 | 5337 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 5338 | L: linux-pm@vger.kernel.org |
27471fdb | 5339 | S: Supported |
679655da | 5340 | F: drivers/idle/i7300_idle.c |
27471fdb | 5341 | |
02cf2286 | 5342 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 5343 | M: Alexander Aring <alex.aring@gmail.com> |
ebef9c12 VB |
5344 | L: linux-wpan@vger.kernel.org |
5345 | W: https://github.com/linux-wpan | |
5346 | T: git git://github.com/linux-wpan/linux-wpan-next.git | |
02cf2286 SL |
5347 | S: Maintained |
5348 | F: net/ieee802154/ | |
68653359 | 5349 | F: net/mac802154/ |
251741b1 | 5350 | F: drivers/net/ieee802154/ |
580947d3 AA |
5351 | F: include/linux/nl802154.h |
5352 | F: include/linux/ieee802154.h | |
5353 | F: include/net/nl802154.h | |
5354 | F: include/net/mac802154.h | |
5355 | F: include/net/af_ieee802154.h | |
5356 | F: include/net/cfg802154.h | |
5357 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 5358 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 5359 | |
b1c97193 SY |
5360 | IGORPLUG-USB IR RECEIVER |
5361 | M: Sean Young <sean@mess.org> | |
5362 | L: linux-media@vger.kernel.org | |
5363 | S: Maintained | |
5364 | F: drivers/media/rc/igorplugusb.c | |
5365 | ||
40ad4a30 SY |
5366 | IGUANAWORKS USB IR TRANSCEIVER |
5367 | M: Sean Young <sean@mess.org> | |
5368 | L: linux-media@vger.kernel.org | |
5369 | S: Maintained | |
5370 | F: drivers/media/rc/iguanair.c | |
5371 | ||
9545f86e | 5372 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 5373 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
5374 | R: Hartmut Knaack <knaack.h@gmx.de> |
5375 | R: Lars-Peter Clausen <lars@metafoo.de> | |
5376 | R: Peter Meerwald <pmeerw@pmeerw.net> | |
9545f86e AP |
5377 | L: linux-iio@vger.kernel.org |
5378 | S: Maintained | |
03e7c251 | 5379 | F: drivers/iio/ |
9545f86e | 5380 | F: drivers/staging/iio/ |
8fe671fc | 5381 | F: include/linux/iio/ |
817020cf | 5382 | F: tools/iio/ |
9545f86e | 5383 | |
65519263 SG |
5384 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5385 | M: Matthieu Castet <castet.matthieu@free.fr> | |
5386 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
5387 | S: Maintained | |
5388 | F: drivers/usb/atm/ueagle-atm.c | |
5389 | ||
e89ab51f GR |
5390 | INA209 HARDWARE MONITOR DRIVER |
5391 | M: Guenter Roeck <linux@roeck-us.net> | |
5392 | L: lm-sensors@lm-sensors.org | |
5393 | S: Maintained | |
5394 | F: Documentation/hwmon/ina209 | |
5395 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5396 | F: drivers/hwmon/ina209.c | |
5397 | ||
5398 | INA2XX HARDWARE MONITOR DRIVER | |
5399 | M: Guenter Roeck <linux@roeck-us.net> | |
5400 | L: lm-sensors@lm-sensors.org | |
5401 | S: Maintained | |
5402 | F: Documentation/hwmon/ina2xx | |
5403 | F: drivers/hwmon/ina2xx.c | |
5404 | F: include/linux/platform_data/ina2xx.h | |
5405 | ||
14dc124f SIG |
5406 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5407 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
5408 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
5409 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5410 | L: industrypack-devel@lists.sourceforge.net | |
5411 | W: http://industrypack.sourceforge.net | |
5412 | S: Maintained | |
5413 | F: drivers/ipack/ | |
5414 | ||
8adc53fd ZLK |
5415 | INGENIC JZ4780 DMA Driver |
5416 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
5417 | S: Maintained | |
5418 | F: drivers/dma/dma-jz4780.c | |
5419 | ||
aa7168f4 | 5420 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 5421 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 5422 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
5423 | L: linux-ima-devel@lists.sourceforge.net |
5424 | L: linux-ima-user@lists.sourceforge.net | |
5425 | L: linux-security-module@vger.kernel.org | |
aa7168f4 | 5426 | S: Supported |
679655da | 5427 | F: security/integrity/ima/ |
aa7168f4 | 5428 | |
9a4ea5a9 JH |
5429 | IMGTEC IR DECODER DRIVER |
5430 | M: James Hogan <james.hogan@imgtec.com> | |
5431 | S: Maintained | |
5432 | F: drivers/media/rc/img-ir/ | |
5433 | ||
1da177e4 | 5434 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 5435 | L: linux-fbdev@vger.kernel.org |
843393d3 | 5436 | S: Orphan |
8a61f013 | 5437 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
5438 | |
5439 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 5440 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
5441 | M: Sean Hefty <sean.hefty@intel.com> |
5442 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 5443 | L: linux-rdma@vger.kernel.org |
605841f5 | 5444 | W: http://www.openfabrics.org/ |
8a6e2535 | 5445 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 5446 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 5447 | S: Supported |
679655da JP |
5448 | F: Documentation/infiniband/ |
5449 | F: drivers/infiniband/ | |
2dfcad3a | 5450 | F: drivers/staging/rdma/ |
c117ab84 | 5451 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
5452 | F: include/uapi/rdma/ |
5453 | F: include/rdma/ | |
1da177e4 | 5454 | |
c9f04f58 | 5455 | INOTIFY |
8b58be88 JP |
5456 | M: John McCutchan <john@johnmccutchan.com> |
5457 | M: Robert Love <rlove@rlove.org> | |
5458 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 5459 | S: Maintained |
679655da JP |
5460 | F: Documentation/filesystems/inotify.txt |
5461 | F: fs/notify/inotify/ | |
5462 | F: include/linux/inotify.h | |
c117ab84 | 5463 | F: include/uapi/linux/inotify.h |
c9f04f58 | 5464 | |
e2d1d6c0 | 5465 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 5466 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 5467 | L: linux-input@vger.kernel.org |
8a6e2535 | 5468 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 5469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 5470 | S: Maintained |
679655da | 5471 | F: drivers/input/ |
f4eea7e2 | 5472 | F: include/linux/input.h |
c117ab84 | 5473 | F: include/uapi/linux/input.h |
f4eea7e2 | 5474 | F: include/linux/input/ |
e2d1d6c0 | 5475 | |
3267a87f | 5476 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 5477 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 5478 | L: linux-input@vger.kernel.org |
75dd112a | 5479 | S: Odd fixes |
3267a87f | 5480 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 5481 | F: drivers/input/input-mt.c |
3267a87f HR |
5482 | K: \b(ABS|SYN)_MT_ |
5483 | ||
97fa99a3 JY |
5484 | INTEL ASoC BDW/HSW DRIVERS |
5485 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 5486 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 5487 | S: Supported |
e8e1225d JP |
5488 | F: sound/soc/intel/common/sst-dsp* |
5489 | F: sound/soc/intel/common/sst-firmware.c | |
5490 | F: sound/soc/intel/boards/broadwell.c | |
5491 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 5492 | |
4ac13e17 DJ |
5493 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
5494 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 5495 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 5496 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
5497 | T: git git://git.code.sf.net/p/intel-sas/isci |
5498 | S: Supported | |
4ac13e17 | 5499 | F: drivers/scsi/isci/ |
4ac13e17 | 5500 | |
26717172 LB |
5501 | INTEL IDLE DRIVER |
5502 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 5503 | L: linux-pm@vger.kernel.org |
08deed1e | 5504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
5505 | S: Supported |
5506 | F: drivers/idle/intel_idle.c | |
5507 | ||
7c1ac18d | 5508 | INTEL PSTATE DRIVER |
58ac1f62 SP |
5509 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
5510 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
5511 | L: linux-pm@vger.kernel.org |
5512 | S: Supported | |
5513 | F: drivers/cpufreq/intel_pstate.c | |
5514 | ||
9eb8ef74 | 5515 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 5516 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 5517 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5518 | S: Maintained |
679655da | 5519 | F: Documentation/fb/intelfb.txt |
8a61f013 | 5520 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 5521 | |
1da177e4 | 5522 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 5523 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 5524 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5525 | S: Maintained |
8a61f013 | 5526 | F: drivers/video/fbdev/i810/ |
1da177e4 | 5527 | |
f4a9bc4c | 5528 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 5529 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 5530 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 5531 | W: https://01.org/linux-acpi |
f4a9bc4c | 5532 | S: Supported |
679655da | 5533 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 5534 | |
248a9dc3 | 5535 | INTEL I/OAT DMA DRIVER |
18ebd564 | 5536 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 5537 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
5538 | L: dmaengine@vger.kernel.org |
5539 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
5540 | S: Supported | |
679655da | 5541 | F: drivers/dma/ioat* |
248a9dc3 | 5542 | |
6c8909b4 | 5543 | INTEL IOMMU (VT-d) |
8b58be88 | 5544 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 5545 | L: iommu@lists.linux-foundation.org |
54e5881d | 5546 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 5547 | S: Supported |
3fb39615 | 5548 | F: drivers/iommu/intel-iommu.c |
679655da | 5549 | F: include/linux/intel-iommu.h |
6c8909b4 | 5550 | |
b3e5f263 | 5551 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 5552 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 5553 | S: Odd fixes |
679655da | 5554 | F: drivers/dma/iop-adma.c |
b3e5f263 | 5555 | |
9251ce95 | 5556 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 5557 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 5558 | S: Maintained |
679655da JP |
5559 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
5560 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
5561 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
5562 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 5563 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 5564 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 5565 | |
844dd05f | 5566 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 5567 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 5568 | S: Maintained |
679655da | 5569 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 5570 | |
2f302324 | 5571 | INTEL ETHERNET DRIVERS |
8b58be88 | 5572 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
2f302324 JK |
5573 | R: Jesse Brandeburg <jesse.brandeburg@intel.com> |
5574 | R: Shannon Nelson <shannon.nelson@intel.com> | |
5575 | R: Carolyn Wyborny <carolyn.wyborny@intel.com> | |
5576 | R: Don Skidmore <donald.c.skidmore@intel.com> | |
5577 | R: Matthew Vick <matthew.vick@intel.com> | |
5578 | R: John Ronciak <john.ronciak@intel.com> | |
5579 | R: Mitch Williams <mitch.a.williams@intel.com> | |
5580 | L: intel-wired-lan@lists.osuosl.org | |
f6fde11a | 5581 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 5582 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
5583 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
5584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
5585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 5586 | S: Supported |
0d164401 JK |
5587 | F: Documentation/networking/e100.txt |
5588 | F: Documentation/networking/e1000.txt | |
5589 | F: Documentation/networking/e1000e.txt | |
5590 | F: Documentation/networking/igb.txt | |
5591 | F: Documentation/networking/igbvf.txt | |
5592 | F: Documentation/networking/ixgb.txt | |
5593 | F: Documentation/networking/ixgbe.txt | |
5594 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 5595 | F: Documentation/networking/i40e.txt |
105bf2fe | 5596 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 5597 | F: drivers/net/ethernet/intel/ |
bc90d291 | 5598 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 5599 | |
0963d59b LW |
5600 | INTEL-MID GPIO DRIVER |
5601 | M: David Cohen <david.a.cohen@linux.intel.com> | |
5602 | L: linux-gpio@vger.kernel.org | |
5603 | S: Maintained | |
5604 | F: drivers/gpio/gpio-intel-mid.c | |
5605 | ||
ca907a90 SY |
5606 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
5607 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 5608 | L: linux-wireless@vger.kernel.org |
ca907a90 | 5609 | S: Maintained |
679655da | 5610 | F: Documentation/networking/README.ipw2100 |
679655da | 5611 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 5612 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 5613 | |
5760b0a5 AS |
5614 | INTEL(R) TRACE HUB |
5615 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
5616 | S: Supported | |
5617 | F: Documentation/trace/intel_th.txt | |
5618 | F: drivers/hwtracing/intel_th/ | |
5619 | ||
4bd96a7a | 5620 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
5621 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
5622 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
5623 | M: Shane Wang <shane.wang@intel.com> |
5624 | L: tboot-devel@lists.sourceforge.net | |
5625 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 5626 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
5627 | S: Supported |
5628 | F: Documentation/intel_txt.txt | |
5629 | F: include/linux/tboot.h | |
5630 | F: arch/x86/kernel/tboot.c | |
5631 | ||
8a70da82 | 5632 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 5633 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 5634 | M: linux-wimax@intel.com |
49e7d9df | 5635 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
5636 | S: Supported |
5637 | W: http://linuxwimax.org | |
679655da JP |
5638 | F: Documentation/wimax/README.i2400m |
5639 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 5640 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 5641 | |
1c0ce89c SG |
5642 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
5643 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 5644 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 5645 | S: Supported |
efa3144e WYG |
5646 | F: drivers/net/wireless/iwlegacy/ |
5647 | ||
b481de9c | 5648 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 5649 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 5650 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
7b9aebf0 | 5651 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 5652 | L: linux-wireless@vger.kernel.org |
b481de9c | 5653 | W: http://intellinuxwireless.org |
b62ff718 | 5654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 5655 | S: Supported |
679655da | 5656 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 5657 | |
de8fe023 TW |
5658 | INTEL MANAGEMENT ENGINE (mei) |
5659 | M: Tomas Winkler <tomas.winkler@intel.com> | |
5660 | L: linux-kernel@vger.kernel.org | |
5661 | S: Supported | |
c117ab84 | 5662 | F: include/uapi/linux/mei.h |
5069288b | 5663 | F: include/linux/mei_cl_bus.h |
de8fe023 | 5664 | F: drivers/misc/mei/* |
e07950a1 | 5665 | F: Documentation/misc-devices/mei/* |
de8fe023 | 5666 | |
50ceb98b SD |
5667 | INTEL MIC DRIVERS (mic) |
5668 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
5669 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
5670 | S: Supported | |
5671 | W: https://github.com/sudeepdutt/mic | |
5672 | W: http://software.intel.com/en-us/mic-developer | |
5673 | F: include/linux/mic_bus.h | |
5674 | F: include/linux/scif.h | |
5675 | F: include/uapi/linux/mic_common.h | |
5676 | F: include/uapi/linux/mic_ioctl.h | |
5677 | F include/uapi/linux/scif_ioctl.h | |
5678 | F: drivers/misc/mic/ | |
5679 | F: drivers/dma/mic_x100_dma.c | |
5680 | F: drivers/dma/mic_x100_dma.h | |
5681 | F Documentation/mic/ | |
5682 | ||
0a8b8353 | 5683 | INTEL PMC IPC DRIVER |
5684 | M: Zha Qipeng<qipeng.zha@intel.com> | |
5685 | L: platform-driver-x86@vger.kernel.org | |
5686 | S: Maintained | |
5687 | F: drivers/platform/x86/intel_pmc_ipc.c | |
5688 | F: arch/x86/include/asm/intel_pmc_ipc.h | |
5689 | ||
cb109a0e | 5690 | IOC3 ETHERNET DRIVER |
8b58be88 | 5691 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
5692 | L: linux-mips@linux-mips.org |
5693 | S: Maintained | |
8862bf1e | 5694 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 5695 | |
cb109a0e | 5696 | IOC3 SERIAL DRIVER |
8b58be88 | 5697 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 5698 | L: linux-serial@vger.kernel.org |
cb109a0e | 5699 | S: Maintained |
df621252 | 5700 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 5701 | |
0b6e8569 SW |
5702 | IOMMU DRIVERS |
5703 | M: Joerg Roedel <joro@8bytes.org> | |
5704 | L: iommu@lists.linux-foundation.org | |
5705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
5706 | S: Maintained | |
5707 | F: drivers/iommu/ | |
5708 | ||
4480f15b | 5709 | IP MASQUERADING |
8b58be88 | 5710 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 5711 | S: Maintained |
679655da | 5712 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 5713 | |
1202d6ff | 5714 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
5715 | M: Francois Romieu <romieu@fr.zoreil.com> |
5716 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
5717 | L: netdev@vger.kernel.org |
5718 | S: Maintained | |
7443713a | 5719 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 5720 | |
4480f15b | 5721 | IPATH DRIVER |
8473c603 | 5722 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 5723 | L: linux-rdma@vger.kernel.org |
52a09a04 | 5724 | S: Maintained |
6f9b3890 | 5725 | F: drivers/staging/rdma/ipath/ |
77d8798b | 5726 | |
4409ebe9 | 5727 | IPMI SUBSYSTEM |
8b58be88 | 5728 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 5729 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
5730 | W: http://openipmi.sourceforge.net/ |
5731 | S: Supported | |
679655da JP |
5732 | F: Documentation/IPMI.txt |
5733 | F: drivers/char/ipmi/ | |
5734 | F: include/linux/ipmi* | |
c117ab84 | 5735 | F: include/uapi/linux/ipmi* |
4409ebe9 | 5736 | |
2d800897 KW |
5737 | QCOM AUDIO (ASoC) DRIVERS |
5738 | M: Patrick Lai <plai@codeaurora.org> | |
5739 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
5740 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5741 | S: Supported | |
5742 | F: sound/soc/qcom/ | |
5743 | ||
e2d1d6c0 | 5744 | IPS SCSI RAID DRIVER |
8b58be88 | 5745 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
5746 | L: linux-scsi@vger.kernel.org |
5747 | W: http://www.adaptec.com/ | |
5748 | S: Maintained | |
679655da | 5749 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
5750 | |
5751 | IPVS | |
8b58be88 JP |
5752 | M: Wensong Zhang <wensong@linux-vs.org> |
5753 | M: Simon Horman <horms@verge.net.au> | |
5754 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 5755 | L: netdev@vger.kernel.org |
e2d1d6c0 | 5756 | L: lvs-devel@vger.kernel.org |
1da177e4 | 5757 | S: Maintained |
679655da | 5758 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 5759 | F: include/net/ip_vs.h |
c117ab84 | 5760 | F: include/uapi/linux/ip_vs.h |
679655da | 5761 | F: net/netfilter/ipvs/ |
1da177e4 | 5762 | |
e7839f25 | 5763 | IPWIRELESS DRIVER |
e5f6450c | 5764 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 5765 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 5766 | S: Odd Fixes |
282361a0 | 5767 | F: drivers/tty/ipwireless/ |
099dc4fb | 5768 | |
e2d1d6c0 | 5769 | IPX NETWORK LAYER |
8b58be88 | 5770 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
5771 | L: netdev@vger.kernel.org |
5772 | S: Maintained | |
679655da | 5773 | F: include/net/ipx.h |
c117ab84 | 5774 | F: include/uapi/linux/ipx.h |
679655da | 5775 | F: net/ipx/ |
e2d1d6c0 | 5776 | |
1da177e4 | 5777 | IRDA SUBSYSTEM |
8b58be88 | 5778 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 5779 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 5780 | L: netdev@vger.kernel.org |
1da177e4 | 5781 | W: http://irda.sourceforge.net/ |
f353976d | 5782 | S: Maintained |
e0057975 | 5783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
5784 | F: Documentation/networking/irda.txt |
5785 | F: drivers/net/irda/ | |
5786 | F: include/net/irda/ | |
5787 | F: net/irda/ | |
1da177e4 | 5788 | |
a800c7cc TG |
5789 | IRQ SUBSYSTEM |
5790 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 5791 | L: linux-kernel@vger.kernel.org |
a800c7cc | 5792 | S: Maintained |
75fc2d37 | 5793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 5794 | F: kernel/irq/ |
2ed9fd28 JC |
5795 | |
5796 | IRQCHIP DRIVERS | |
5797 | M: Thomas Gleixner <tglx@linutronix.de> | |
5798 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 5799 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
5800 | L: linux-kernel@vger.kernel.org |
5801 | S: Maintained | |
5802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5803 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 5804 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 5805 | F: drivers/irqchip/ |
a800c7cc | 5806 | |
7ab3a837 | 5807 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c TG |
5808 | M: Jiang Liu <jiang.liu@linux.intel.com> |
5809 | M: Marc Zyngier <marc.zyngier@arm.com> | |
7ab3a837 | 5810 | S: Maintained |
b09dec2c | 5811 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
5812 | F: Documentation/IRQ-domain.txt |
5813 | F: include/linux/irqdomain.h | |
5814 | F: kernel/irq/irqdomain.c | |
b09dec2c | 5815 | F: kernel/irq/msi.c |
7ab3a837 | 5816 | |
e2d1d6c0 | 5817 | ISAPNP |
8b58be88 | 5818 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5819 | S: Maintained |
679655da JP |
5820 | F: Documentation/isapnp.txt |
5821 | F: drivers/pnp/isapnp/ | |
5822 | F: include/linux/isapnp.h | |
e2d1d6c0 | 5823 | |
d39b8420 HV |
5824 | ISA RADIO MODULE |
5825 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5826 | L: linux-media@vger.kernel.org | |
5827 | T: git git://linuxtv.org/media_tree.git | |
5828 | W: http://linuxtv.org | |
5829 | S: Maintained | |
5830 | F: drivers/media/radio/radio-isa* | |
5831 | ||
71a6d0af HW |
5832 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5833 | M: Peter Jones <pjones@redhat.com> | |
5834 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
5835 | S: Maintained | |
5836 | F: drivers/firmware/iscsi_ibft* | |
5837 | ||
14816b1e | 5838 | ISCSI |
8b58be88 | 5839 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
5840 | L: open-iscsi@googlegroups.com |
5841 | W: www.open-iscsi.org | |
54e5881d | 5842 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5843 | S: Maintained |
679655da JP |
5844 | F: drivers/scsi/*iscsi* |
5845 | F: include/scsi/*iscsi* | |
14816b1e | 5846 | |
1e65eb42 OG |
5847 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5848 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
b261aeaf | 5849 | M: Sagi Grimberg <sagig@mellanox.com> |
1e65eb42 OG |
5850 | M: Roi Dayan <roid@mellanox.com> |
5851 | L: linux-rdma@vger.kernel.org | |
5852 | S: Supported | |
5853 | W: http://www.openfabrics.org | |
5854 | W: www.open-iscsi.org | |
5855 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5856 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5857 | |
2b70e5fd SG |
5858 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
5859 | M: Sagi Grimberg <sagig@mellanox.com> | |
5860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master | |
5861 | L: linux-rdma@vger.kernel.org | |
5862 | L: target-devel@vger.kernel.org | |
5863 | S: Supported | |
5864 | W: http://www.linux-iscsi.org | |
5865 | F: drivers/infiniband/ulp/isert | |
5866 | ||
1da177e4 | 5867 | ISDN SUBSYSTEM |
8b58be88 | 5868 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 5869 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 5870 | L: netdev@vger.kernel.org |
1da177e4 | 5871 | W: http://www.isdn4linux.de |
54e5881d | 5872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5873 | S: Maintained |
679655da JP |
5874 | F: Documentation/isdn/ |
5875 | F: drivers/isdn/ | |
5876 | F: include/linux/isdn.h | |
5877 | F: include/linux/isdn/ | |
c117ab84 CEB |
5878 | F: include/uapi/linux/isdn.h |
5879 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5880 | |
5881 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5882 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 5883 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
5884 | W: http://www.melware.de |
5885 | S: Maintained | |
679655da | 5886 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5887 | |
d624870f | 5888 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 5889 | M: Jean Delvare <jdelvare@suse.com> |
d624870f JD |
5890 | L: lm-sensors@lm-sensors.org |
5891 | S: Maintained | |
5892 | F: Documentation/hwmon/it87 | |
5893 | F: drivers/hwmon/it87.c | |
5894 | ||
d7104bff AP |
5895 | IT913X MEDIA DRIVER |
5896 | M: Antti Palosaari <crope@iki.fi> | |
5897 | L: linux-media@vger.kernel.org | |
5898 | W: http://linuxtv.org/ | |
5899 | W: http://palosaari.fi/linux/ | |
5900 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5901 | T: git git://linuxtv.org/anttip/media_tree.git | |
5902 | S: Maintained | |
249c697e | 5903 | F: drivers/media/tuners/it913x* |
d7104bff | 5904 | |
91821ff3 | 5905 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 5906 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 5907 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 5908 | L: linux-media@vger.kernel.org |
275ffde4 | 5909 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
5910 | W: http://www.ivtvdriver.org |
5911 | S: Maintained | |
679655da | 5912 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 5913 | F: drivers/media/pci/ivtv/ |
c117ab84 | 5914 | F: include/uapi/linux/ivtv* |
91821ff3 | 5915 | |
68620bdd MP |
5916 | IX2505V MEDIA DRIVER |
5917 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5918 | L: linux-media@vger.kernel.org | |
5919 | W: http://linuxtv.org/ | |
5920 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5921 | S: Maintained | |
5922 | F: drivers/media/dvb-frontends/ix2505v* | |
5923 | ||
4453d736 GR |
5924 | JC42.4 TEMPERATURE SENSOR DRIVER |
5925 | M: Guenter Roeck <linux@roeck-us.net> | |
5926 | L: lm-sensors@lm-sensors.org | |
5927 | S: Maintained | |
5928 | F: drivers/hwmon/jc42.c | |
5929 | F: Documentation/hwmon/jc42 | |
5930 | ||
e2d1d6c0 | 5931 | JFS FILESYSTEM |
3256f80f | 5932 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
5933 | L: jfs-discussion@lists.sourceforge.net |
5934 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5936 | S: Maintained |
679655da JP |
5937 | F: Documentation/filesystems/jfs.txt |
5938 | F: fs/jfs/ | |
e2d1d6c0 | 5939 | |
95252236 | 5940 | JME NETWORK DRIVER |
8b58be88 | 5941 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
5942 | L: netdev@vger.kernel.org |
5943 | S: Maintained | |
63d24a0e | 5944 | F: drivers/net/ethernet/jme.* |
95252236 | 5945 | |
1da177e4 | 5946 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5947 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
5948 | L: linux-mtd@lists.infradead.org |
5949 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5950 | S: Maintained |
679655da | 5951 | F: fs/jffs2/ |
c117ab84 | 5952 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5953 | |
d183e11a TT |
5954 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
5955 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 5956 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
5957 | L: linux-ext4@vger.kernel.org |
5958 | S: Maintained | |
5959 | F: fs/jbd2/ | |
5960 | F: include/linux/jbd2.h | |
ae0718f8 | 5961 | |
207dab5f MU |
5962 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
5963 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
5964 | L: linux-media@vger.kernel.org | |
5965 | S: Maintained | |
5966 | F: drivers/media/platform/rcar_jpu.c | |
5967 | ||
fd8b6cb4 | 5968 | JSM Neo PCI based serial card |
9d141cb9 | 5969 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
5970 | L: linux-serial@vger.kernel.org |
5971 | S: Maintained | |
df621252 | 5972 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5973 | |
af39917d CL |
5974 | K10TEMP HARDWARE MONITORING DRIVER |
5975 | M: Clemens Ladisch <clemens@ladisch.de> | |
5976 | L: lm-sensors@lm-sensors.org | |
5977 | S: Maintained | |
5978 | F: Documentation/hwmon/k10temp | |
5979 | F: drivers/hwmon/k10temp.c | |
5980 | ||
4660cb35 | 5981 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5982 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 5983 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 5984 | S: Maintained |
679655da JP |
5985 | F: Documentation/hwmon/k8temp |
5986 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5987 | |
1da177e4 | 5988 | KCONFIG |
5eb1f99e | 5989 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 5990 | L: linux-kbuild@vger.kernel.org |
cea8321c | 5991 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5992 | S: Maintained |
679655da JP |
5993 | F: Documentation/kbuild/kconfig-language.txt |
5994 | F: scripts/kconfig/ | |
1da177e4 | 5995 | |
ea6c2089 | 5996 | KDUMP |
8b58be88 JP |
5997 | M: Vivek Goyal <vgoyal@redhat.com> |
5998 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 5999 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6000 | W: http://lse.sourceforge.net/kdump/ |
6001 | S: Maintained | |
80811493 | 6002 | F: Documentation/kdump/ |
ea6c2089 | 6003 | |
f41bf02f HV |
6004 | KEENE FM RADIO TRANSMITTER DRIVER |
6005 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6006 | L: linux-media@vger.kernel.org | |
6007 | T: git git://linuxtv.org/media_tree.git | |
6008 | W: http://linuxtv.org | |
6009 | S: Maintained | |
6010 | F: drivers/media/radio/radio-keene* | |
6011 | ||
1da177e4 | 6012 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6013 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6014 | L: autofs@vger.kernel.org |
1da177e4 | 6015 | S: Maintained |
679655da | 6016 | F: fs/autofs4/ |
1da177e4 | 6017 | |
70fb7ba6 | 6018 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6019 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6022 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6023 | S: Maintained |
679655da JP |
6024 | F: Documentation/kbuild/ |
6025 | F: Makefile | |
6026 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6027 | F: scripts/basic/ |
6028 | F: scripts/mk* | |
6029 | F: scripts/package/ | |
1da177e4 LT |
6030 | |
6031 | KERNEL JANITORS | |
c3000e03 | 6032 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6033 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6034 | S: Odd Fixes |
1da177e4 | 6035 | |
e8b43555 | 6036 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6037 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6038 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6039 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6040 | W: http://nfs.sourceforge.net/ |
98fac23f | 6041 | S: Supported |
679655da | 6042 | F: fs/nfsd/ |
c117ab84 | 6043 | F: include/uapi/linux/nfsd/ |
679655da JP |
6044 | F: fs/lockd/ |
6045 | F: fs/nfs_common/ | |
6046 | F: net/sunrpc/ | |
6047 | F: include/linux/lockd/ | |
6048 | F: include/linux/sunrpc/ | |
c117ab84 | 6049 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 6050 | |
13b122b3 SK |
6051 | KERNEL SELFTEST FRAMEWORK |
6052 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
6053 | L: linux-api@vger.kernel.org | |
6054 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest | |
6055 | S: Maintained | |
6056 | F: tools/testing/selftests | |
6057 | ||
426d62e2 | 6058 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 6059 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 6060 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 6061 | L: kvm@vger.kernel.org |
e3e58478 | 6062 | W: http://www.linux-kvm.org |
a94b40a6 | 6063 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 6064 | S: Supported |
c93a64fe PB |
6065 | F: Documentation/*/kvm*.txt |
6066 | F: Documentation/virtual/kvm/ | |
679655da | 6067 | F: arch/*/kvm/ |
1662e862 CB |
6068 | F: arch/x86/kernel/kvm.c |
6069 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
6070 | F: arch/*/include/asm/kvm* |
6071 | F: include/linux/kvm* | |
c117ab84 | 6072 | F: include/uapi/linux/kvm* |
679655da | 6073 | F: virt/kvm/ |
426d62e2 | 6074 | |
ad8003d3 | 6075 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 6076 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 6077 | L: kvm@vger.kernel.org |
038161de | 6078 | W: http://www.linux-kvm.org/ |
7de609c8 | 6079 | S: Maintained |
679655da | 6080 | F: arch/x86/include/asm/svm.h |
679655da | 6081 | F: arch/x86/kvm/svm.c |
426d62e2 | 6082 | |
513014b7 | 6083 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 6084 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 6085 | L: kvm-ppc@vger.kernel.org |
038161de | 6086 | W: http://www.linux-kvm.org/ |
6a7f972d | 6087 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 6088 | S: Supported |
679655da JP |
6089 | F: arch/powerpc/include/asm/kvm* |
6090 | F: arch/powerpc/kvm/ | |
513014b7 | 6091 | |
85f8fffe | 6092 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 6093 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 6094 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
6095 | L: linux-s390@vger.kernel.org |
6096 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
6097 | S: Supported | |
679655da JP |
6098 | F: Documentation/s390/kvm.txt |
6099 | F: arch/s390/include/asm/kvm* | |
80811493 | 6100 | F: arch/s390/kvm/ |
85f8fffe | 6101 | |
a749474d | 6102 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 6103 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
6104 | M: Marc Zyngier <marc.zyngier@arm.com> |
6105 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
6106 | L: kvmarm@lists.cs.columbia.edu |
6107 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 6108 | S: Supported |
a749474d CD |
6109 | F: arch/arm/include/uapi/asm/kvm* |
6110 | F: arch/arm/include/asm/kvm* | |
6111 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
6112 | F: virt/kvm/arm/ |
6113 | F: include/kvm/arm_* | |
a749474d | 6114 | |
6394a3ec | 6115 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 6116 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
6117 | M: Marc Zyngier <marc.zyngier@arm.com> |
6118 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6119 | L: kvmarm@lists.cs.columbia.edu | |
6120 | S: Maintained | |
6121 | F: arch/arm64/include/uapi/asm/kvm* | |
6122 | F: arch/arm64/include/asm/kvm* | |
6123 | F: arch/arm64/kvm/ | |
6124 | ||
dc009d92 | 6125 | KEXEC |
8b58be88 | 6126 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6127 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6128 | L: kexec@lists.infradead.org |
dc009d92 | 6129 | S: Maintained |
679655da | 6130 | F: include/linux/kexec.h |
c117ab84 | 6131 | F: include/uapi/linux/kexec.h |
679655da | 6132 | F: kernel/kexec.c |
dc009d92 | 6133 | |
e971461f DH |
6134 | KEYS/KEYRINGS: |
6135 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6136 | L: keyrings@vger.kernel.org |
e971461f | 6137 | S: Maintained |
d410fa4e | 6138 | F: Documentation/security/keys.txt |
e971461f DH |
6139 | F: include/linux/key.h |
6140 | F: include/linux/key-type.h | |
6141 | F: include/keys/ | |
6142 | F: security/keys/ | |
6143 | ||
7f3c68be | 6144 | KEYS-TRUSTED |
74dd744f MZ |
6145 | M: David Safford <safford@us.ibm.com> |
6146 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6147 | L: linux-security-module@vger.kernel.org |
aa62efff | 6148 | L: keyrings@vger.kernel.org |
7f3c68be | 6149 | S: Supported |
d410fa4e | 6150 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6151 | F: include/keys/trusted-type.h |
6152 | F: security/keys/trusted.c | |
6153 | F: security/keys/trusted.h | |
6154 | ||
6155 | KEYS-ENCRYPTED | |
74dd744f MZ |
6156 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6157 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6158 | L: linux-security-module@vger.kernel.org |
aa62efff | 6159 | L: keyrings@vger.kernel.org |
7f3c68be | 6160 | S: Supported |
d410fa4e | 6161 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6162 | F: include/keys/encrypted-type.h |
19c90aa6 | 6163 | F: security/keys/encrypted-keys/ |
7f3c68be | 6164 | |
5b778dad | 6165 | KGDB / KDB /debug_core |
8b58be88 | 6166 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6167 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
6168 | L: kgdb-bugreport@lists.sourceforge.net |
6169 | S: Maintained | |
679655da JP |
6170 | F: Documentation/DocBook/kgdb.tmpl |
6171 | F: drivers/misc/kgdbts.c | |
df621252 | 6172 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 6173 | F: include/linux/kdb.h |
679655da | 6174 | F: include/linux/kgdb.h |
4063eb5f | 6175 | F: kernel/debug/ |
e3e2aaf7 | 6176 | |
456db8cc | 6177 | KMEMCHECK |
8b58be88 | 6178 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 6179 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 6180 | S: Maintained |
410d7a97 JP |
6181 | F: Documentation/kmemcheck.txt |
6182 | F: arch/x86/include/asm/kmemcheck.h | |
6183 | F: arch/x86/mm/kmemcheck/ | |
6184 | F: include/linux/kmemcheck.h | |
6185 | F: mm/kmemcheck.c | |
b9ce08c0 | 6186 | |
c3bb4d24 | 6187 | KMEMLEAK |
8b58be88 | 6188 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
6189 | S: Maintained |
6190 | F: Documentation/kmemleak.txt | |
6191 | F: include/linux/kmemleak.h | |
6192 | F: mm/kmemleak.c | |
6193 | F: mm/kmemleak-test.c | |
6194 | ||
89559a61 | 6195 | KPROBES |
8b58be88 JP |
6196 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
6197 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
6198 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 6199 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 6200 | S: Maintained |
679655da JP |
6201 | F: Documentation/kprobes.txt |
6202 | F: include/linux/kprobes.h | |
6203 | F: kernel/kprobes.c | |
89559a61 | 6204 | |
70e84049 | 6205 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 6206 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
6207 | W: http://miguelojeda.es/auxdisplay.htm |
6208 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 6209 | S: Maintained |
679655da JP |
6210 | F: Documentation/auxdisplay/ks0108 |
6211 | F: drivers/auxdisplay/ks0108.c | |
6212 | F: include/linux/ks0108.h | |
70e84049 | 6213 | |
1b69c6d0 DA |
6214 | L3MDEV |
6215 | M: David Ahern <dsa@cumulusnetworks.com> | |
6216 | L: netdev@vger.kernel.org | |
6217 | S: Maintained | |
6218 | F: net/l3mdev | |
6219 | F: include/net/l3mdev.h | |
6220 | ||
1da177e4 | 6221 | LAPB module |
1da177e4 | 6222 | L: linux-x25@vger.kernel.org |
bf9915cc | 6223 | S: Orphan |
679655da JP |
6224 | F: Documentation/networking/lapb-module.txt |
6225 | F: include/*/lapb.h | |
6226 | F: net/lapb/ | |
1da177e4 LT |
6227 | |
6228 | LASI 53c700 driver for PARISC | |
8b58be88 | 6229 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6230 | L: linux-scsi@vger.kernel.org |
6231 | S: Maintained | |
679655da JP |
6232 | F: Documentation/scsi/53c700.txt |
6233 | F: drivers/scsi/53c700* | |
1da177e4 | 6234 | |
263de9b5 | 6235 | LED SUBSYSTEM |
8b58be88 | 6236 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 6237 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 6238 | L: linux-leds@vger.kernel.org |
b8926ba0 | 6239 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 6240 | S: Maintained |
679655da JP |
6241 | F: drivers/leds/ |
6242 | F: include/linux/leds.h | |
263de9b5 | 6243 | |
b0461a44 | 6244 | LEGACY EEPROM DRIVER |
d8130624 | 6245 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
6246 | S: Maintained |
6247 | F: Documentation/misc-devices/eeprom | |
6248 | F: drivers/misc/eeprom/eeprom.c | |
6249 | ||
1da177e4 | 6250 | LEGO USB Tower driver |
8b58be88 | 6251 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
6252 | L: legousb-devel@lists.sourceforge.net |
6253 | W: http://legousb.sourceforge.net/ | |
6254 | S: Maintained | |
679655da | 6255 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 6256 | |
055616a8 MK |
6257 | LG2160 MEDIA DRIVER |
6258 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6259 | L: linux-media@vger.kernel.org | |
6260 | W: http://linuxtv.org/ | |
6261 | W: http://github.com/mkrufky | |
6262 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6263 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6264 | S: Maintained | |
6265 | F: drivers/media/dvb-frontends/lg2160.* | |
6266 | ||
6f0e7725 MK |
6267 | LGDT3305 MEDIA DRIVER |
6268 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6269 | L: linux-media@vger.kernel.org | |
6270 | W: http://linuxtv.org/ | |
6271 | W: http://github.com/mkrufky | |
6272 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6273 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6274 | S: Maintained | |
6275 | F: drivers/media/dvb-frontends/lgdt3305.* | |
6276 | ||
568a17ff | 6277 | LGUEST |
8b58be88 | 6278 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 6279 | L: lguest@lists.ozlabs.org |
568a17ff | 6280 | W: http://lguest.ozlabs.org/ |
72e91863 | 6281 | S: Odd Fixes |
070f420b | 6282 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
6283 | F: arch/x86/lguest/ |
6284 | F: drivers/lguest/ | |
6285 | F: include/linux/lguest*.h | |
070f420b | 6286 | F: tools/lguest/ |
568a17ff | 6287 | |
32ac7cb2 TH |
6288 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
6289 | M: Tejun Heo <tj@kernel.org> | |
6290 | L: linux-ide@vger.kernel.org | |
6291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6292 | S: Maintained | |
6293 | F: drivers/ata/ | |
6294 | F: include/linux/ata.h | |
6295 | F: include/linux/libata.h | |
6296 | ||
6297 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 6298 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
6299 | L: linux-ide@vger.kernel.org |
6300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6301 | S: Maintained | |
6302 | F: include/linux/pata_arasan_cf_data.h | |
6303 | F: drivers/ata/pata_arasan_cf.c | |
6304 | ||
c7fa056c BZ |
6305 | LIBATA PATA DRIVERS |
6306 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
6307 | M: Tejun Heo <tj@kernel.org> | |
6308 | L: linux-ide@vger.kernel.org | |
6309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6310 | S: Maintained | |
6311 | F: drivers/ata/pata_*.c | |
6312 | F: drivers/ata/ata_generic.c | |
6313 | ||
32ac7cb2 TH |
6314 | LIBATA SATA AHCI PLATFORM devices support |
6315 | M: Hans de Goede <hdegoede@redhat.com> | |
6316 | M: Tejun Heo <tj@kernel.org> | |
6317 | L: linux-ide@vger.kernel.org | |
6318 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6319 | S: Maintained | |
6320 | F: drivers/ata/ahci_platform.c | |
6321 | F: drivers/ata/libahci_platform.c | |
6322 | F: include/linux/ahci_platform.h | |
6323 | ||
6324 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
6325 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
6326 | L: linux-ide@vger.kernel.org | |
6327 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6328 | S: Maintained | |
6329 | F: drivers/ata/sata_promise.* | |
6330 | ||
1acd437c SL |
6331 | LIBLOCKDEP |
6332 | M: Sasha Levin <sasha.levin@oracle.com> | |
6333 | S: Maintained | |
6334 | F: tools/lib/lockdep/ | |
6335 | ||
bc30196f DW |
6336 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
6337 | M: Dan Williams <dan.j.williams@intel.com> | |
6338 | L: linux-nvdimm@lists.01.org | |
6339 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6340 | S: Supported | |
6341 | F: drivers/nvdimm/* | |
6342 | F: include/linux/nd.h | |
6343 | F: include/linux/libnvdimm.h | |
6344 | F: include/uapi/linux/ndctl.h | |
6345 | ||
6346 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
6347 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6348 | L: linux-nvdimm@lists.01.org | |
6349 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6350 | S: Supported | |
6351 | F: drivers/nvdimm/blk.c | |
6352 | F: drivers/nvdimm/region_devs.c | |
6353 | F: drivers/acpi/nfit* | |
6354 | ||
6355 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
6356 | M: Vishal Verma <vishal.l.verma@intel.com> | |
6357 | L: linux-nvdimm@lists.01.org | |
6358 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6359 | S: Supported | |
6360 | F: drivers/nvdimm/btt* | |
6361 | ||
6362 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
6363 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6364 | L: linux-nvdimm@lists.01.org | |
6365 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6366 | S: Supported | |
6367 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 6368 | F: include/linux/pmem.h |
40603526 | 6369 | F: arch/*/include/asm/pmem.h |
bc30196f | 6370 | |
cd9e9808 MB |
6371 | LIGHTNVM PLATFORM SUPPORT |
6372 | M: Matias Bjorling <mb@lightnvm.io> | |
6373 | W: http://github/OpenChannelSSD | |
6374 | S: Maintained | |
6375 | F: drivers/lightnvm/ | |
6376 | F: include/linux/lightnvm.h | |
6377 | F: include/uapi/linux/lightnvm.h | |
6378 | ||
1da177e4 | 6379 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 6380 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
6381 | W: http://www.ibm.com/linux/ltc/projects/ppc |
6382 | S: Supported | |
11c34c7d | 6383 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 6384 | |
852bb9f5 | 6385 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
6386 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
6387 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 6388 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 6389 | W: http://www.penguinppc.org/ |
a4724ed6 | 6390 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 6391 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 6392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 6393 | S: Supported |
11c34c7d JP |
6394 | F: Documentation/powerpc/ |
6395 | F: arch/powerpc/ | |
1da177e4 LT |
6396 | |
6397 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 6398 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 6399 | W: http://www.penguinppc.org/ |
a4724ed6 | 6400 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6401 | S: Maintained |
11c34c7d JP |
6402 | F: arch/powerpc/platforms/powermac/ |
6403 | F: drivers/macintosh/ | |
1da177e4 | 6404 | |
77a76369 | 6405 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 6406 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 6407 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 6408 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 6409 | S: Maintained |
11c34c7d JP |
6410 | F: arch/powerpc/platforms/512x/ |
6411 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
6412 | |
6413 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 6414 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 6415 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 6416 | W: http://www.penguinppc.org/ |
a4724ed6 | 6417 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6418 | S: Maintained |
11c34c7d JP |
6419 | F: arch/powerpc/platforms/40x/ |
6420 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 6421 | |
260c02a9 | 6422 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 6423 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 6424 | S: Orphan |
11c34c7d JP |
6425 | F: arch/powerpc/*/*virtex* |
6426 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 6427 | |
e93adf1e | 6428 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 6429 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 6430 | W: http://www.penguinppc.org/ |
a4724ed6 | 6431 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 6432 | S: Maintained |
a2b1f7c8 | 6433 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 6434 | |
1da177e4 | 6435 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
a1e0fb42 | 6436 | M: Scott Wood <scottwood@freescale.com> |
8b58be88 | 6437 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 6438 | W: http://www.penguinppc.org/ |
a4724ed6 | 6439 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 6440 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 6441 | S: Maintained |
11c34c7d | 6442 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 6443 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 6444 | |
ab06ff3a | 6445 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 6446 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 6447 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 6448 | S: Maintained |
11c34c7d JP |
6449 | F: arch/powerpc/platforms/pasemi/ |
6450 | F: drivers/*/*pasemi* | |
6451 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 6452 | |
1da177e4 | 6453 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 6454 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 6455 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
6456 | S: Supported |
6457 | ||
a23ce6da HW |
6458 | LIS3LV02D ACCELEROMETER DRIVER |
6459 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
6460 | S: Maintained | |
ff606677 JD |
6461 | F: Documentation/misc-devices/lis3lv02d |
6462 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 6463 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 6464 | |
b700e7f0 SJ |
6465 | LIVE PATCHING |
6466 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
6467 | M: Seth Jennings <sjenning@redhat.com> | |
e5f6450c | 6468 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6469 | M: Vojtech Pavlik <vojtech@suse.com> |
b700e7f0 SJ |
6470 | S: Maintained |
6471 | F: kernel/livepatch/ | |
6472 | F: include/linux/livepatch.h | |
6473 | F: arch/x86/include/asm/livepatch.h | |
6474 | F: arch/x86/kernel/livepatch.c | |
6475 | F: Documentation/ABI/testing/sysfs-kernel-livepatch | |
13d1cf7e | 6476 | F: samples/livepatch/ |
b700e7f0 | 6477 | L: live-patching@vger.kernel.org |
74d50da3 | 6478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 6479 | |
e2d1d6c0 | 6480 | LLC (802.2) |
8b58be88 | 6481 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 6482 | S: Maintained |
679655da | 6483 | F: include/linux/llc.h |
c117ab84 | 6484 | F: include/uapi/linux/llc.h |
679655da JP |
6485 | F: include/net/llc* |
6486 | F: net/llc/ | |
e2d1d6c0 | 6487 | |
4e233cbe AD |
6488 | LM73 HARDWARE MONITOR DRIVER |
6489 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
6490 | L: lm-sensors@lm-sensors.org | |
6491 | S: Maintained | |
6492 | F: drivers/hwmon/lm73.c | |
6493 | ||
156e2d1a | 6494 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 6495 | M: Jean Delvare <jdelvare@suse.com> |
156e2d1a JD |
6496 | L: lm-sensors@lm-sensors.org |
6497 | S: Maintained | |
6498 | F: Documentation/hwmon/lm78 | |
6499 | F: drivers/hwmon/lm78.c | |
6500 | ||
1da177e4 | 6501 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 6502 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6503 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6504 | S: Maintained |
679655da JP |
6505 | F: Documentation/hwmon/lm83 |
6506 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
6507 | |
6508 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 6509 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6510 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6511 | S: Maintained |
679655da | 6512 | F: Documentation/hwmon/lm90 |
aae7bce4 | 6513 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 6514 | F: drivers/hwmon/lm90.c |
1da177e4 | 6515 | |
917cc4e6 GR |
6516 | LM95234 HARDWARE MONITOR DRIVER |
6517 | M: Guenter Roeck <linux@roeck-us.net> | |
6518 | L: lm-sensors@lm-sensors.org | |
6519 | S: Maintained | |
6520 | F: Documentation/hwmon/lm95234 | |
6521 | F: drivers/hwmon/lm95234.c | |
6522 | ||
68620bdd MP |
6523 | LME2510 MEDIA DRIVER |
6524 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6525 | L: linux-media@vger.kernel.org | |
6526 | W: http://linuxtv.org/ | |
6527 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6528 | S: Maintained | |
6529 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
6530 | ||
512e67f9 | 6531 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
6532 | M: Peter Zijlstra <peterz@infradead.org> |
6533 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 6534 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 6536 | S: Maintained |
214e0aed DB |
6537 | F: Documentation/locking/lockdep*.txt |
6538 | F: Documentation/locking/lockstat.txt | |
679655da | 6539 | F: include/linux/lockdep.h |
7486d6da | 6540 | F: kernel/locking/ |
512e67f9 | 6541 | |
dde33348 | 6542 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 6543 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
6544 | L: linux-ntfs-dev@lists.sourceforge.net |
6545 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 6546 | S: Maintained |
679655da | 6547 | F: Documentation/ldm.txt |
20d16fef | 6548 | F: block/partitions/ldm.* |
1da177e4 | 6549 | |
ef6ada3d JE |
6550 | LogFS |
6551 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 6552 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
6553 | L: logfs@logfs.org |
6554 | W: logfs.org | |
6555 | S: Maintained | |
6556 | F: fs/logfs/ | |
6557 | ||
b62d7946 RS |
6558 | LPC32XX MACHINE SUPPORT |
6559 | M: Roland Stigge <stigge@antcom.de> | |
6560 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6561 | S: Maintained | |
6562 | F: arch/arm/mach-lpc32xx/ | |
6563 | ||
c87e34ef | 6564 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
6565 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
6566 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> | |
6567 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> | |
6568 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> | |
6569 | L: MPT-FusionLinux.pdl@avagotech.com | |
c87e34ef MED |
6570 | L: linux-scsi@vger.kernel.org |
6571 | W: http://www.lsilogic.com/support | |
6572 | S: Supported | |
679655da | 6573 | F: drivers/message/fusion/ |
500c152a | 6574 | F: drivers/scsi/mpt2sas/ |
6575 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 6576 | |
1da177e4 | 6577 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 6578 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
6579 | L: linux-scsi@vger.kernel.org |
6580 | S: Maintained | |
679655da | 6581 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 6582 | |
e5f5c99a GR |
6583 | LTC4261 HARDWARE MONITOR DRIVER |
6584 | M: Guenter Roeck <linux@roeck-us.net> | |
6585 | L: lm-sensors@lm-sensors.org | |
6586 | S: Maintained | |
6587 | F: Documentation/hwmon/ltc4261 | |
6588 | F: drivers/hwmon/ltc4261.c | |
6589 | ||
81365c31 | 6590 | LTP (Linux Test Project) |
28b8e8d4 | 6591 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 6592 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 6593 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
6594 | M: Jan Stancek <jstancek@redhat.com> |
6595 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
6596 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 6597 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 6598 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 6599 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
6600 | S: Maintained |
6601 | ||
c12a54b3 | 6602 | M32R ARCHITECTURE |
c12a54b3 | 6603 | W: http://www.linux-m32r.org/ |
b4174867 | 6604 | S: Orphan |
679655da | 6605 | F: arch/m32r/ |
c12a54b3 | 6606 | |
1da177e4 | 6607 | M68K ARCHITECTURE |
8b58be88 | 6608 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
6609 | L: linux-m68k@lists.linux-m68k.org |
6610 | W: http://www.linux-m68k.org/ | |
54e5881d | 6611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 6612 | S: Maintained |
679655da | 6613 | F: arch/m68k/ |
9db35182 | 6614 | F: drivers/zorro/ |
1da177e4 LT |
6615 | |
6616 | M68K ON APPLE MACINTOSH | |
8b58be88 | 6617 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 6618 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 6619 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 6620 | S: Maintained |
9db35182 | 6621 | F: arch/m68k/mac/ |
1da177e4 LT |
6622 | |
6623 | M68K ON HP9000/300 | |
8b58be88 | 6624 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
6625 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
6626 | S: Maintained | |
679655da | 6627 | F: arch/m68k/hp300/ |
1da177e4 | 6628 | |
74425546 AP |
6629 | M88DS3103 MEDIA DRIVER |
6630 | M: Antti Palosaari <crope@iki.fi> | |
6631 | L: linux-media@vger.kernel.org | |
6632 | W: http://linuxtv.org/ | |
6633 | W: http://palosaari.fi/linux/ | |
6634 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6635 | T: git git://linuxtv.org/anttip/media_tree.git | |
6636 | S: Maintained | |
6637 | F: drivers/media/dvb-frontends/m88ds3103* | |
6638 | ||
68620bdd MP |
6639 | M88RS2000 MEDIA DRIVER |
6640 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6641 | L: linux-media@vger.kernel.org | |
6642 | W: http://linuxtv.org/ | |
6643 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6644 | S: Maintained | |
6645 | F: drivers/media/dvb-frontends/m88rs2000* | |
6646 | ||
07a092fa | 6647 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
6648 | M: Alexey Klimov <klimov.linux@gmail.com> |
6649 | L: linux-media@vger.kernel.org | |
6650 | T: git git://linuxtv.org/media_tree.git | |
6651 | S: Maintained | |
6652 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 6653 | |
64a327a7 | 6654 | MAC80211 |
8b58be88 | 6655 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 6656 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6657 | W: http://wireless.kernel.org/ |
ce466579 JB |
6658 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
6659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 6660 | S: Maintained |
679655da JP |
6661 | F: Documentation/networking/mac80211-injection.txt |
6662 | F: include/net/mac80211.h | |
6663 | F: net/mac80211/ | |
64a327a7 | 6664 | |
b863ceb7 | 6665 | MACVLAN DRIVER |
8b58be88 | 6666 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
6667 | L: netdev@vger.kernel.org |
6668 | S: Maintained | |
679655da JP |
6669 | F: drivers/net/macvlan.c |
6670 | F: include/linux/if_macvlan.h | |
b863ceb7 | 6671 | |
2b6d83e2 JB |
6672 | MAILBOX API |
6673 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
6674 | L: linux-kernel@vger.kernel.org | |
6675 | S: Maintained | |
6676 | F: drivers/mailbox/ | |
6677 | F: include/linux/mailbox_client.h | |
6678 | F: include/linux/mailbox_controller.h | |
6679 | ||
faf1668c | 6680 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 6681 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 6682 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 6683 | L: linux-man@vger.kernel.org |
1b53dc74 | 6684 | S: Maintained |
faf1668c | 6685 | |
8427defd RK |
6686 | MARVELL ARMADA DRM SUPPORT |
6687 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6688 | S: Maintained | |
6689 | F: drivers/gpu/drm/armada/ | |
6690 | ||
3ad50cca GR |
6691 | MARVELL 88E6352 DSA support |
6692 | M: Guenter Roeck <linux@roeck-us.net> | |
6693 | S: Maintained | |
6694 | F: drivers/net/dsa/mv88e6352.c | |
6695 | ||
c4d007bc TP |
6696 | MARVELL CRYPTO DRIVER |
6697 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
6698 | M: Arnaud Ebalard <arno@natisbad.org> | |
6699 | F: drivers/crypto/marvell/ | |
6700 | S: Maintained | |
6701 | L: linux-crypto@vger.kernel.org | |
6702 | ||
44c14c1d | 6703 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
6704 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 6705 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 6706 | L: netdev@vger.kernel.org |
6707 | S: Maintained | |
6708 | F: drivers/net/ethernet/marvell/sk* | |
6709 | ||
74cda169 | 6710 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 6711 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 6712 | S: Orphan |
679655da | 6713 | F: drivers/net/wireless/libertas/ |
74cda169 | 6714 | |
b60d6975 | 6715 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 6716 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 6717 | L: netdev@vger.kernel.org |
f5ca8502 | 6718 | S: Maintained |
527a6266 | 6719 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 6720 | F: include/linux/mv643xx.h |
1da177e4 | 6721 | |
370b8ed9 TP |
6722 | MARVELL MVNETA ETHERNET DRIVER |
6723 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6724 | L: netdev@vger.kernel.org | |
6725 | S: Maintained | |
6726 | F: drivers/net/ethernet/marvell/mvneta.* | |
6727 | ||
fcad584d | 6728 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 6729 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 6730 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
6731 | L: linux-wireless@vger.kernel.org |
6732 | S: Maintained | |
6733 | F: drivers/net/wireless/mwifiex/ | |
6734 | ||
a2c3f656 | 6735 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 6736 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 6737 | L: linux-wireless@vger.kernel.org |
16345910 | 6738 | S: Odd Fixes |
a2c3f656 LB |
6739 | F: drivers/net/wireless/mwl8k.c |
6740 | ||
2a69567b | 6741 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 6742 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 6743 | S: Odd Fixes |
1fa7e547 | 6744 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 6745 | |
1da177e4 | 6746 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 6747 | L: linux-fbdev@vger.kernel.org |
52653199 | 6748 | S: Orphan |
8a61f013 | 6749 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 6750 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 6751 | |
ca462085 GR |
6752 | MAX16065 HARDWARE MONITOR DRIVER |
6753 | M: Guenter Roeck <linux@roeck-us.net> | |
6754 | L: lm-sensors@lm-sensors.org | |
6755 | S: Maintained | |
6756 | F: Documentation/hwmon/max16065 | |
6757 | F: drivers/hwmon/max16065.c | |
6758 | ||
1f61cab8 GR |
6759 | MAX20751 HARDWARE MONITOR DRIVER |
6760 | M: Guenter Roeck <linux@roeck-us.net> | |
6761 | L: lm-sensors@lm-sensors.org | |
6762 | S: Maintained | |
6763 | F: Documentation/hwmon/max20751 | |
6764 | F: drivers/hwmon/max20751.c | |
6765 | ||
d20620de | 6766 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 6767 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
6768 | L: lm-sensors@lm-sensors.org |
6769 | S: Maintained | |
679655da JP |
6770 | F: Documentation/hwmon/max6650 |
6771 | F: drivers/hwmon/max6650.c | |
d20620de | 6772 | |
e89ab51f GR |
6773 | MAX6697 HARDWARE MONITOR DRIVER |
6774 | M: Guenter Roeck <linux@roeck-us.net> | |
6775 | L: lm-sensors@lm-sensors.org | |
6776 | S: Maintained | |
6777 | F: Documentation/hwmon/max6697 | |
6778 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
6779 | F: drivers/hwmon/max6697.c | |
6780 | F: include/linux/platform_data/max6697.h | |
6781 | ||
f8f847b5 KK |
6782 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
6783 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6784 | L: linux-pm@vger.kernel.org | |
6785 | S: Supported | |
6786 | F: drivers/power/max14577_charger.c | |
6787 | F: drivers/power/max77693_charger.c | |
6788 | ||
3811405e JMC |
6789 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
6790 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
6791 | L: linux-kernel@vger.kernel.org | |
6792 | S: Supported | |
6793 | F: drivers/*/*max77802.c | |
6794 | F: Documentation/devicetree/bindings/*/*max77802.txt | |
6795 | F: include/dt-bindings/*/*max77802.h | |
6796 | ||
befeb596 KK |
6797 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
6798 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
6799 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6800 | L: linux-kernel@vger.kernel.org | |
6801 | S: Supported | |
6802 | F: drivers/*/max14577.c | |
6803 | F: drivers/*/max77686.c | |
6804 | F: drivers/*/max77693.c | |
6805 | F: drivers/extcon/extcon-max14577.c | |
6806 | F: drivers/extcon/extcon-max77693.c | |
6807 | F: drivers/rtc/rtc-max77686.c | |
6808 | F: drivers/clk/clk-max77686.c | |
6809 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 6810 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
6811 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
6812 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
6813 | F: include/linux/mfd/max14577*.h | |
6814 | F: include/linux/mfd/max77686*.h | |
6815 | F: include/linux/mfd/max77693*.h | |
6816 | ||
9be3c9a5 HV |
6817 | MAXIRADIO FM RADIO RECEIVER DRIVER |
6818 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6819 | L: linux-media@vger.kernel.org | |
6820 | T: git git://linuxtv.org/media_tree.git | |
6821 | W: http://linuxtv.org | |
6822 | S: Maintained | |
6823 | F: drivers/media/radio/radio-maxiradio* | |
6824 | ||
c05dc2cc PR |
6825 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
6826 | M: Peter Rosin <peda@axentia.se> | |
6827 | L: linux-iio@vger.kernel.org | |
6828 | S: Maintained | |
6829 | F: drivers/iio/potentiometer/mcp4531.c | |
6830 | ||
6f32a8c9 LP |
6831 | MEDIA DRIVERS FOR RENESAS - VSP1 |
6832 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
6833 | L: linux-media@vger.kernel.org | |
6834 | L: linux-sh@vger.kernel.org | |
6835 | T: git git://linuxtv.org/media_tree.git | |
6836 | S: Supported | |
6837 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
6838 | F: drivers/media/platform/vsp1/ | |
6839 | ||
dacf9ce8 KS |
6840 | MEDIA DRIVERS FOR ASCOT2E |
6841 | M: Sergey Kozlov <serjk@netup.ru> | |
6842 | L: linux-media@vger.kernel.org | |
6843 | W: http://linuxtv.org | |
6844 | W: http://netup.tv/ | |
6845 | T: git git://linuxtv.org/media_tree.git | |
6846 | S: Supported | |
6847 | F: drivers/media/dvb-frontends/ascot2e* | |
6848 | ||
a6dc60ff KS |
6849 | MEDIA DRIVERS FOR CXD2841ER |
6850 | M: Sergey Kozlov <serjk@netup.ru> | |
6851 | L: linux-media@vger.kernel.org | |
6852 | W: http://linuxtv.org/ | |
6853 | W: http://netup.tv/ | |
6854 | T: git git://linuxtv.org/media_tree.git | |
6855 | S: Supported | |
6856 | F: drivers/media/dvb-frontends/cxd2841er* | |
6857 | ||
a5d32b35 KS |
6858 | MEDIA DRIVERS FOR HORUS3A |
6859 | M: Sergey Kozlov <serjk@netup.ru> | |
6860 | L: linux-media@vger.kernel.org | |
6861 | W: http://linuxtv.org/ | |
6862 | W: http://netup.tv/ | |
6863 | T: git git://linuxtv.org/media_tree.git | |
6864 | S: Supported | |
6865 | F: drivers/media/dvb-frontends/horus3a* | |
6866 | ||
e025273b KS |
6867 | MEDIA DRIVERS FOR LNBH25 |
6868 | M: Sergey Kozlov <serjk@netup.ru> | |
6869 | L: linux-media@vger.kernel.org | |
6870 | W: http://linuxtv.org/ | |
6871 | W: http://netup.tv/ | |
6872 | T: git git://linuxtv.org/media_tree.git | |
6873 | S: Supported | |
6874 | F: drivers/media/dvb-frontends/lnbh25* | |
6875 | ||
52b1eaf4 KS |
6876 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
6877 | M: Sergey Kozlov <serjk@netup.ru> | |
6878 | L: linux-media@vger.kernel.org | |
6879 | W: http://linuxtv.org/ | |
6880 | W: http://netup.tv/ | |
6881 | T: git git://linuxtv.org/media_tree.git | |
6882 | S: Supported | |
6883 | F: drivers/media/pci/netup_unidvb/* | |
6884 | ||
127c49ae | 6885 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
009a5410 | 6886 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
127c49ae JP |
6887 | P: LinuxTV.org Project |
6888 | L: linux-media@vger.kernel.org | |
6889 | W: http://linuxtv.org | |
8a6e2535 | 6890 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 6891 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
6892 | S: Maintained |
6893 | F: Documentation/dvb/ | |
6894 | F: Documentation/video4linux/ | |
ffe06198 | 6895 | F: Documentation/DocBook/media/ |
127c49ae | 6896 | F: drivers/media/ |
ffe06198 | 6897 | F: drivers/staging/media/ |
127c49ae | 6898 | F: include/media/ |
6c0f0359 MCC |
6899 | F: include/uapi/linux/dvb/ |
6900 | F: include/uapi/linux/videodev2.h | |
6901 | F: include/uapi/linux/media.h | |
6902 | F: include/uapi/linux/v4l2-* | |
6903 | F: include/uapi/linux/meye.h | |
6904 | F: include/uapi/linux/ivtv* | |
6905 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 6906 | |
c869f77d JK |
6907 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
6908 | M: Jakub Kicinski <kubakici@wp.pl> | |
6909 | L: linux-wireless@vger.kernel.org | |
6910 | S: Maintained | |
6911 | F: drivers/net/wireless/mediatek/mt7601u/ | |
6912 | ||
e399065b SS |
6913 | MEGARAID SCSI/SAS DRIVERS |
6914 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
6915 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
6916 | M: Uday Lingala <uday.lingala@avagotech.com> | |
6917 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 6918 | L: linux-scsi@vger.kernel.org |
e399065b | 6919 | W: http://www.lsi.com |
ce00f85c | 6920 | S: Maintained |
679655da JP |
6921 | F: Documentation/scsi/megaraid.txt |
6922 | F: drivers/scsi/megaraid.* | |
6923 | F: drivers/scsi/megaraid/ | |
757e0108 | 6924 | |
2c46c9d5 AV |
6925 | MELLANOX ETHERNET DRIVER (mlx4_en) |
6926 | M: Amir Vadai <amirv@mellanox.com> | |
b75f0050 | 6927 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
6928 | S: Supported |
6929 | W: http://www.mellanox.com | |
6930 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6931 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
6932 | ||
93c1edb2 JP |
6933 | MELLANOX ETHERNET SWITCH DRIVERS |
6934 | M: Jiri Pirko <jiri@mellanox.com> | |
6935 | M: Ido Schimmel <idosch@mellanox.com> | |
6936 | L: netdev@vger.kernel.org | |
6937 | S: Supported | |
6938 | W: http://www.mellanox.com | |
6939 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6940 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
6941 | ||
5b25b13a MD |
6942 | MEMBARRIER SUPPORT |
6943 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
6944 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
6945 | L: linux-kernel@vger.kernel.org | |
6946 | S: Supported | |
6947 | F: kernel/membarrier.c | |
6948 | F: include/uapi/linux/membarrier.h | |
6949 | ||
70ea91f1 SR |
6950 | MEMORY MANAGEMENT |
6951 | L: linux-mm@kvack.org | |
70ea91f1 SR |
6952 | W: http://www.linux-mm.org |
6953 | S: Maintained | |
679655da | 6954 | F: include/linux/mm.h |
551450bb CS |
6955 | F: include/linux/gfp.h |
6956 | F: include/linux/mmzone.h | |
6957 | F: include/linux/memory_hotplug.h | |
6958 | F: include/linux/vmalloc.h | |
679655da | 6959 | F: mm/ |
70ea91f1 | 6960 | |
f4e9ce66 | 6961 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 6962 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 6963 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 6964 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
6965 | W: http://www.linux-mtd.infradead.org/ |
6966 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 6967 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 6968 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 6969 | S: Maintained |
679655da JP |
6970 | F: drivers/mtd/ |
6971 | F: include/linux/mtd/ | |
c117ab84 | 6972 | F: include/uapi/mtd/ |
1da177e4 | 6973 | |
26c57ef1 | 6974 | MEN A21 WATCHDOG DRIVER |
30c7469b | 6975 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 6976 | L: linux-watchdog@vger.kernel.org |
30c7469b | 6977 | S: Maintained |
26c57ef1 JT |
6978 | F: drivers/watchdog/mena21_wdt.c |
6979 | ||
3764e82e | 6980 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
6981 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
6982 | S: Maintained | |
3764e82e JT |
6983 | F: drivers/mcb/ |
6984 | F: include/linux/mcb.h | |
b9f2f459 | 6985 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 6986 | |
48b490d2 AW |
6987 | MEN F21BMC (Board Management Controller) |
6988 | M: Andreas Werner <andreas.werner@men.de> | |
6989 | S: Supported | |
6990 | F: drivers/mfd/menf21bmc.c | |
6991 | F: drivers/watchdog/menf21bmc_wdt.c | |
6992 | F: drivers/leds/leds-menf21bmc.c | |
6993 | F: drivers/hwmon/menf21bmc_hwmon.c | |
6994 | F: Documentation/hwmon/menf21bmc | |
6995 | ||
12285945 JH |
6996 | METAG ARCHITECTURE |
6997 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 6998 | L: linux-metag@vger.kernel.org |
f23d0e24 | 6999 | S: Odd Fixes |
12285945 JH |
7000 | F: arch/metag/ |
7001 | F: Documentation/metag/ | |
7002 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 7003 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 7004 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
7005 | F: drivers/irqchip/irq-metag.c |
7006 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 7007 | F: drivers/tty/metag_da.c |
12285945 | 7008 | |
c6375b0a | 7009 | MICROBLAZE ARCHITECTURE |
8b58be88 | 7010 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
7011 | W: http://www.monstr.eu/fdt/ |
7012 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
7013 | S: Supported | |
0a8c7914 | 7014 | F: arch/microblaze/ |
1da177e4 | 7015 | |
2508a45a CY |
7016 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
7017 | M: Chen Yu <yu.c.chen@intel.com> | |
7018 | L: platform-driver-x86@vger.kernel.org | |
7019 | S: Supported | |
7020 | F: drivers/platform/x86/surfacepro3_button.c | |
7021 | ||
1da177e4 | 7022 | MICROTEK X6 SCANNER |
61eee9a7 | 7023 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 7024 | S: Maintained |
679655da | 7025 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
7026 | |
7027 | MIPS | |
8b58be88 | 7028 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7029 | L: linux-mips@linux-mips.org |
6097050d | 7030 | W: http://www.linux-mips.org/ |
b05e988e | 7031 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 7032 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 7033 | S: Supported |
679655da JP |
7034 | F: Documentation/mips/ |
7035 | F: arch/mips/ | |
1da177e4 | 7036 | |
08b7620a HV |
7037 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
7038 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7039 | L: linux-media@vger.kernel.org | |
7040 | T: git git://linuxtv.org/media_tree.git | |
7041 | W: http://linuxtv.org | |
7042 | S: Odd Fixes | |
7043 | F: drivers/media/radio/radio-miropcm20* | |
7044 | ||
e126ba97 EC |
7045 | Mellanox MLX5 core VPI driver |
7046 | M: Eli Cohen <eli@mellanox.com> | |
7047 | L: netdev@vger.kernel.org | |
7048 | L: linux-rdma@vger.kernel.org | |
7049 | W: http://www.mellanox.com | |
7050 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7051 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 7052 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
7053 | S: Supported |
7054 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
7055 | F: include/linux/mlx5/ | |
7056 | ||
7057 | Mellanox MLX5 IB driver | |
b75f0050 JP |
7058 | M: Eli Cohen <eli@mellanox.com> |
7059 | L: linux-rdma@vger.kernel.org | |
7060 | W: http://www.mellanox.com | |
7061 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 7062 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
7063 | S: Supported |
7064 | F: include/linux/mlx5/ | |
7065 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 7066 | |
764589b6 CM |
7067 | MELEXIS MLX90614 DRIVER |
7068 | M: Crt Mori <cmo@melexis.com> | |
7069 | L: linux-iio@vger.kernel.org | |
7070 | W: http://www.melexis.com | |
7071 | S: Supported | |
7072 | F: drivers/iio/temperature/mlx90614.c | |
7073 | ||
0ce277e4 AP |
7074 | MN88472 MEDIA DRIVER |
7075 | M: Antti Palosaari <crope@iki.fi> | |
7076 | L: linux-media@vger.kernel.org | |
7077 | W: http://linuxtv.org/ | |
7078 | W: http://palosaari.fi/linux/ | |
7079 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7080 | T: git git://linuxtv.org/anttip/media_tree.git | |
7081 | S: Maintained | |
7082 | F: drivers/staging/media/mn88472/ | |
7083 | F: drivers/media/dvb-frontends/mn88472.h | |
7084 | ||
4f4d238f AP |
7085 | MN88473 MEDIA DRIVER |
7086 | M: Antti Palosaari <crope@iki.fi> | |
7087 | L: linux-media@vger.kernel.org | |
7088 | W: http://linuxtv.org/ | |
7089 | W: http://palosaari.fi/linux/ | |
7090 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7091 | T: git git://linuxtv.org/anttip/media_tree.git | |
7092 | S: Maintained | |
7093 | F: drivers/staging/media/mn88473/ | |
7094 | F: drivers/media/dvb-frontends/mn88473.h | |
7095 | ||
1da177e4 | 7096 | MODULE SUPPORT |
8b58be88 | 7097 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 7098 | S: Maintained |
679655da JP |
7099 | F: include/linux/module.h |
7100 | F: kernel/module.c | |
1da177e4 LT |
7101 | |
7102 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 7103 | W: http://popies.net/meye/ |
b7788e13 | 7104 | S: Orphan |
679655da | 7105 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 7106 | F: drivers/media/pci/meye/ |
6c0f0359 | 7107 | F: include/uapi/linux/meye.h |
1da177e4 | 7108 | |
b9705b60 | 7109 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 7110 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 7111 | S: Maintained |
679655da | 7112 | F: Documentation/serial/moxa-smartio |
c897401b | 7113 | F: drivers/tty/mxser.* |
d735410a | 7114 | |
889b2f87 AK |
7115 | MR800 AVERMEDIA USB FM RADIO DRIVER |
7116 | M: Alexey Klimov <klimov.linux@gmail.com> | |
7117 | L: linux-media@vger.kernel.org | |
7118 | T: git git://linuxtv.org/media_tree.git | |
7119 | S: Maintained | |
7120 | F: drivers/media/radio/radio-mr800.c | |
7121 | ||
d7155691 AO |
7122 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
7123 | M: Alan Ott <alan@signal11.us> | |
7124 | L: linux-wpan@vger.kernel.org | |
7125 | S: Maintained | |
7126 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 7127 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 7128 | |
8c4c731a | 7129 | MSI LAPTOP SUPPORT |
182ae55c | 7130 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 7131 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 7132 | S: Maintained |
679655da | 7133 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 7134 | |
0f1006b1 | 7135 | MSI WMI SUPPORT |
d0944853 | 7136 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 7137 | S: Orphan |
0f1006b1 AA |
7138 | F: drivers/platform/x86/msi-wmi.c |
7139 | ||
19a628a0 AP |
7140 | MSI001 MEDIA DRIVER |
7141 | M: Antti Palosaari <crope@iki.fi> | |
7142 | L: linux-media@vger.kernel.org | |
7143 | W: http://linuxtv.org/ | |
7144 | W: http://palosaari.fi/linux/ | |
7145 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7146 | T: git git://linuxtv.org/anttip/media_tree.git | |
7147 | S: Maintained | |
0185e197 | 7148 | F: drivers/media/tuners/msi001* |
19a628a0 | 7149 | |
7570589d | 7150 | MSI2500 MEDIA DRIVER |
2c57213f AP |
7151 | M: Antti Palosaari <crope@iki.fi> |
7152 | L: linux-media@vger.kernel.org | |
7153 | W: http://linuxtv.org/ | |
7154 | W: http://palosaari.fi/linux/ | |
7155 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7156 | T: git git://linuxtv.org/anttip/media_tree.git | |
7157 | S: Maintained | |
7570589d | 7158 | F: drivers/media/usb/msi2500/ |
2c57213f | 7159 | |
159eeea4 RJ |
7160 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
7161 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
7162 | L: linux-mtd@lists.infradead.org | |
7163 | S: Maintained | |
7164 | F: drivers/mtd/devices/docg3* | |
7165 | ||
62a37dc7 | 7166 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
7167 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7168 | L: linux-media@vger.kernel.org | |
7169 | T: git git://linuxtv.org/media_tree.git | |
7170 | S: Maintained | |
7171 | F: drivers/media/i2c/mt9m032.c | |
7172 | F: include/media/mt9m032.h | |
7173 | ||
62a37dc7 | 7174 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
7175 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7176 | L: linux-media@vger.kernel.org | |
7177 | T: git git://linuxtv.org/media_tree.git | |
7178 | S: Maintained | |
7179 | F: drivers/media/i2c/mt9p031.c | |
7180 | F: include/media/mt9p031.h | |
7181 | ||
62a37dc7 | 7182 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
7183 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7184 | L: linux-media@vger.kernel.org | |
7185 | T: git git://linuxtv.org/media_tree.git | |
7186 | S: Maintained | |
7187 | F: drivers/media/i2c/mt9t001.c | |
7188 | F: include/media/mt9t001.h | |
7189 | ||
62a37dc7 | 7190 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
7191 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7192 | L: linux-media@vger.kernel.org | |
7193 | T: git git://linuxtv.org/media_tree.git | |
7194 | S: Maintained | |
f2272e13 | 7195 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 LP |
7196 | F: drivers/media/i2c/mt9v032.c |
7197 | F: include/media/mt9v032.h | |
7198 | ||
4e0d13cb | 7199 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 7200 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 7201 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 7202 | S: Supported |
679655da | 7203 | F: drivers/mfd/ |
55b5940d | 7204 | F: include/linux/mfd/ |
4e0d13cb | 7205 | |
5c4e6f13 | 7206 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 7207 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 7208 | L: linux-mmc@vger.kernel.org |
708dce3f | 7209 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 7210 | S: Maintained |
679655da JP |
7211 | F: drivers/mmc/ |
7212 | F: include/linux/mmc/ | |
c117ab84 | 7213 | F: include/uapi/linux/mmc/ |
baca2da4 | 7214 | |
15a0580c | 7215 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 7216 | S: Orphan |
679655da JP |
7217 | F: drivers/mmc/host/mmc_spi.c |
7218 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 7219 | |
1da177e4 | 7220 | MULTISOUND SOUND DRIVER |
8b58be88 | 7221 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 7222 | S: Maintained |
679655da JP |
7223 | F: Documentation/sound/oss/MultiSound |
7224 | F: sound/oss/msnd* | |
1da177e4 | 7225 | |
d735410a | 7226 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 7227 | S: Orphan |
c897401b | 7228 | F: drivers/tty/isicom.c |
679655da | 7229 | F: include/linux/isicom.h |
d735410a | 7230 | |
550a7375 | 7231 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 7232 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 7233 | L: linux-usb@vger.kernel.org |
43b416e5 | 7234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 7235 | S: Maintained |
679655da | 7236 | F: drivers/usb/musb/ |
550a7375 | 7237 | |
ea0af5f6 MK |
7238 | MXL5007T MEDIA DRIVER |
7239 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7240 | L: linux-media@vger.kernel.org | |
7241 | W: http://linuxtv.org/ | |
7242 | W: http://github.com/mkrufky | |
7243 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7244 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7245 | S: Maintained | |
7246 | F: drivers/media/tuners/mxl5007t.* | |
7247 | ||
2d3cf588 | 7248 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 7249 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 7250 | L: netdev@vger.kernel.org |
205057ae | 7251 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 7252 | S: Supported |
93f7848b | 7253 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 7254 | |
1da177e4 | 7255 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 7256 | S: Orphan |
d9fb9f38 | 7257 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 7258 | |
23dc05a3 DM |
7259 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
7260 | M: Daniel Mack <zonque@gmail.com> | |
7261 | S: Maintained | |
e5747e40 | 7262 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
7263 | W: http://www.native-instruments.com |
7264 | F: sound/usb/caiaq/ | |
7265 | ||
1da177e4 | 7266 | NCP FILESYSTEM |
52653199 PV |
7267 | M: Petr Vandrovec <petr@vandrovec.name> |
7268 | S: Odd Fixes | |
679655da | 7269 | F: fs/ncpfs/ |
1da177e4 | 7270 | |
a79b0322 FT |
7271 | NCR 5380 SCSI DRIVERS |
7272 | M: Finn Thain <fthain@telegraphics.com.au> | |
7273 | M: Michael Schmitz <schmitzmic@gmail.com> | |
7274 | L: linux-scsi@vger.kernel.org | |
7275 | S: Maintained | |
7276 | F: Documentation/scsi/g_NCR5380.txt | |
7277 | F: drivers/scsi/NCR5380.* | |
7278 | F: drivers/scsi/arm/cumana_1.c | |
7279 | F: drivers/scsi/arm/oak.c | |
7280 | F: drivers/scsi/atari_NCR5380.c | |
7281 | F: drivers/scsi/atari_scsi.* | |
7282 | F: drivers/scsi/dmx3191d.c | |
7283 | F: drivers/scsi/dtc.* | |
7284 | F: drivers/scsi/g_NCR5380.* | |
7285 | F: drivers/scsi/g_NCR5380_mmio.c | |
7286 | F: drivers/scsi/mac_scsi.* | |
7287 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
7288 | F: drivers/scsi/sun3_scsi.* |
7289 | F: drivers/scsi/sun3_scsi_vme.c | |
7290 | F: drivers/scsi/t128.* | |
7291 | ||
1da177e4 | 7292 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 7293 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7294 | L: linux-scsi@vger.kernel.org |
7295 | S: Maintained | |
679655da | 7296 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 7297 | |
4aa3eb4c GR |
7298 | NCT6775 HARDWARE MONITOR DRIVER |
7299 | M: Guenter Roeck <linux@roeck-us.net> | |
7300 | L: lm-sensors@lm-sensors.org | |
7301 | S: Maintained | |
7302 | F: Documentation/hwmon/nct6775 | |
7303 | F: drivers/hwmon/nct6775.c | |
7304 | ||
3c2d774c | 7305 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 7306 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 7307 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 7308 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
7309 | S: Supported |
7310 | F: drivers/infiniband/hw/nes/ | |
7311 | ||
be2f2e84 | 7312 | NETEM NETWORK EMULATOR |
adbbf69d | 7313 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 7314 | L: netem@lists.linux-foundation.org |
be2f2e84 | 7315 | S: Maintained |
679655da | 7316 | F: net/sched/sch_netem.c |
be2f2e84 | 7317 | |
b2f5a051 | 7318 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 7319 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 7320 | L: netdev@vger.kernel.org |
4a58448b | 7321 | S: Supported |
679655da | 7322 | F: Documentation/networking/s2io.txt |
b2f5a051 | 7323 | F: Documentation/networking/vxge.txt |
86387e1a | 7324 | F: drivers/net/ethernet/neterion/ |
4a58448b | 7325 | |
db9cf3a3 | 7326 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 7327 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 7328 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 7329 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 7330 | L: netfilter-devel@vger.kernel.org |
82b98543 | 7331 | L: coreteam@netfilter.org |
1da177e4 LT |
7332 | W: http://www.netfilter.org/ |
7333 | W: http://www.iptables.org/ | |
42010ed0 PNA |
7334 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
7335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
7336 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 7337 | S: Supported |
679655da JP |
7338 | F: include/linux/netfilter* |
7339 | F: include/linux/netfilter/ | |
7340 | F: include/net/netfilter/ | |
c117ab84 CEB |
7341 | F: include/uapi/linux/netfilter* |
7342 | F: include/uapi/linux/netfilter/ | |
679655da JP |
7343 | F: net/*/netfilter.c |
7344 | F: net/*/netfilter/ | |
7345 | F: net/netfilter/ | |
91c269a0 | 7346 | F: net/bridge/br_netfilter*.c |
1da177e4 | 7347 | |
4cc67735 | 7348 | NETLABEL |
87a0874c | 7349 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
7350 | W: http://netlabel.sf.net |
7351 | L: netdev@vger.kernel.org | |
87a0874c | 7352 | S: Maintained |
80811493 | 7353 | F: Documentation/netlabel/ |
679655da JP |
7354 | F: include/net/netlabel.h |
7355 | F: net/netlabel/ | |
4cc67735 | 7356 | |
1da177e4 | 7357 | NETROM NETWORK LAYER |
8b58be88 | 7358 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7359 | L: linux-hams@vger.kernel.org |
d34cb28a | 7360 | W: http://www.linux-ax25.org/ |
1da177e4 | 7361 | S: Maintained |
679655da | 7362 | F: include/net/netrom.h |
c117ab84 | 7363 | F: include/uapi/linux/netrom.h |
679655da | 7364 | F: net/netrom/ |
1da177e4 | 7365 | |
5ddb88c0 | 7366 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 7367 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 7368 | S: Maintained |
5e4b269b | 7369 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 7370 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
7371 | F: Documentation/blockdev/nbd.txt |
7372 | F: drivers/block/nbd.c | |
c117ab84 | 7373 | F: include/uapi/linux/nbd.h |
1da177e4 | 7374 | |
6e43650c NH |
7375 | NETWORK DROP MONITOR |
7376 | M: Neil Horman <nhorman@tuxdriver.com> | |
7377 | L: netdev@vger.kernel.org | |
7378 | S: Maintained | |
7379 | W: https://fedorahosted.org/dropwatch/ | |
7380 | F: net/core/drop_monitor.c | |
7381 | ||
1da177e4 | 7382 | NETWORKING [GENERAL] |
8b58be88 | 7383 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 7384 | L: netdev@vger.kernel.org |
b1e8fd54 | 7385 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 7386 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
7387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 7389 | S: Maintained |
679655da JP |
7390 | F: net/ |
7391 | F: include/net/ | |
018d21ed JP |
7392 | F: include/linux/in.h |
7393 | F: include/linux/net.h | |
7394 | F: include/linux/netdevice.h | |
c117ab84 CEB |
7395 | F: include/uapi/linux/in.h |
7396 | F: include/uapi/linux/net.h | |
7397 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 7398 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 7399 | F: tools/net/ |
f4e53f9a | 7400 | F: tools/testing/selftests/net/ |
335a67d2 | 7401 | F: lib/random32.c |
a101ccd1 | 7402 | F: lib/test_bpf.c |
1da177e4 LT |
7403 | |
7404 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
7405 | M: "David S. Miller" <davem@davemloft.net> |
7406 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
7407 | M: James Morris <jmorris@namei.org> |
7408 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
7409 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 7410 | L: netdev@vger.kernel.org |
08deed1e | 7411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 7412 | S: Maintained |
679655da JP |
7413 | F: net/ipv4/ |
7414 | F: net/ipv6/ | |
7415 | F: include/net/ip* | |
0a14842f | 7416 | F: arch/x86/net/* |
1da177e4 | 7417 | |
73b7656c DM |
7418 | NETWORKING [IPSEC] |
7419 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
7420 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
7421 | M: "David S. Miller" <davem@davemloft.net> | |
7422 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
7423 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
7424 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 7425 | S: Maintained |
5826bdd1 | 7426 | F: net/core/flow.c |
73b7656c DM |
7427 | F: net/xfrm/ |
7428 | F: net/key/ | |
7429 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
7430 | F: net/ipv4/esp4.c |
7431 | F: net/ipv4/ah4.c | |
7432 | F: net/ipv4/ipcomp.c | |
7433 | F: net/ipv4/ip_vti.c | |
73b7656c | 7434 | F: net/ipv6/xfrm* |
d1fc5024 SK |
7435 | F: net/ipv6/esp6.c |
7436 | F: net/ipv6/ah6.c | |
7437 | F: net/ipv6/ipcomp6.c | |
7438 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
7439 | F: include/uapi/linux/xfrm.h |
7440 | F: include/net/xfrm.h | |
7441 | ||
10e2ff1c | 7442 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 7443 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
7444 | L: netdev@vger.kernel.org |
7445 | S: Maintained | |
7446 | ||
29f8f632 | 7447 | NETWORKING [WIRELESS] |
2cb4abd1 | 7448 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 7449 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 7450 | |
788873ac JP |
7451 | NETWORKING DRIVERS |
7452 | L: netdev@vger.kernel.org | |
7453 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 7454 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
7455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7456 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
7457 | S: Odd Fixes |
7458 | F: drivers/net/ | |
018d21ed | 7459 | F: include/linux/if_* |
0b63bf1f | 7460 | F: include/linux/netdevice.h |
0b63bf1f JD |
7461 | F: include/linux/etherdevice.h |
7462 | F: include/linux/fcdevice.h | |
7463 | F: include/linux/fddidevice.h | |
7464 | F: include/linux/hippidevice.h | |
7465 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
7466 | F: include/uapi/linux/if_* |
7467 | F: include/uapi/linux/netdevice.h | |
788873ac | 7468 | |
0e324cf6 JL |
7469 | NETWORKING DRIVERS (WIRELESS) |
7470 | M: Kalle Valo <kvalo@codeaurora.org> | |
7471 | L: linux-wireless@vger.kernel.org | |
7472 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
7473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/ | |
7474 | S: Maintained | |
7475 | F: drivers/net/wireless/ | |
7476 | ||
3d396eb1 | 7477 | NETXEN (1/10) GbE SUPPORT |
8622315e | 7478 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
7479 | M: Sony Chacko <sony.chacko@qlogic.com> |
7480 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 7481 | L: netdev@vger.kernel.org |
9c2b5bde | 7482 | W: http://www.qlogic.com |
3d396eb1 | 7483 | S: Supported |
aa43c215 | 7484 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 7485 | |
6423d30f AAJ |
7486 | NFC SUBSYSTEM |
7487 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
7488 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
7489 | M: Samuel Ortiz <sameo@linux.intel.com> | |
7490 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 7491 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 7492 | S: Supported |
6423d30f | 7493 | F: net/nfc/ |
55eb94f9 | 7494 | F: include/net/nfc/ |
c117ab84 | 7495 | F: include/uapi/linux/nfc.h |
6423d30f | 7496 | F: drivers/nfc/ |
08eaa1e0 | 7497 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 7498 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 7499 | |
e8b43555 | 7500 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 7501 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 7502 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
7503 | L: linux-nfs@vger.kernel.org |
7504 | W: http://client.linux-nfs.org | |
cd7b996a | 7505 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 7506 | S: Maintained |
679655da JP |
7507 | F: fs/lockd/ |
7508 | F: fs/nfs/ | |
7509 | F: fs/nfs_common/ | |
7510 | F: net/sunrpc/ | |
7511 | F: include/linux/lockd/ | |
7512 | F: include/linux/nfs* | |
7513 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
7514 | F: include/uapi/linux/nfs* |
7515 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 7516 | |
85ef9cea | 7517 | NILFS2 FILESYSTEM |
e2126935 | 7518 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 7519 | L: linux-nilfs@vger.kernel.org |
f9472265 | 7520 | W: http://nilfs.sourceforge.net/ |
e2126935 | 7521 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 7522 | S: Supported |
679655da JP |
7523 | F: Documentation/filesystems/nilfs2.txt |
7524 | F: fs/nilfs2/ | |
7525 | F: include/linux/nilfs2_fs.h | |
c35c7ac5 | 7526 | F: include/trace/events/nilfs2.h |
85ef9cea | 7527 | |
1da177e4 | 7528 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 7529 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
7530 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7531 | S: Maintained | |
679655da JP |
7532 | F: Documentation/scsi/NinjaSCSI.txt |
7533 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
7534 | |
7535 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
7536 | M: GOTO Masanori <gotom@debian.or.jp> |
7537 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
7538 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7539 | S: Maintained | |
679655da JP |
7540 | F: Documentation/scsi/NinjaSCSI.txt |
7541 | F: drivers/scsi/nsp32* | |
1da177e4 | 7542 | |
383b8fb9 LFT |
7543 | NIOS2 ARCHITECTURE |
7544 | M: Ley Foon Tan <lftan@altera.com> | |
7545 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 7546 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
7547 | S: Maintained |
7548 | F: arch/nios2/ | |
7549 | ||
2a6afddb PR |
7550 | NOKIA N900 POWER SUPPLY DRIVERS |
7551 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
7552 | S: Maintained | |
7553 | F: include/linux/power/bq2415x_charger.h | |
081bab21 | 7554 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb PR |
7555 | F: include/linux/power/isp1704_charger.h |
7556 | F: drivers/power/bq2415x_charger.c | |
081bab21 | 7557 | F: drivers/power/bq27xxx_battery.c |
2a6afddb PR |
7558 | F: drivers/power/isp1704_charger.c |
7559 | F: drivers/power/rx51_battery.c | |
7560 | ||
a1bd3bae | 7561 | NTB DRIVER CORE |
9ef6bf6c JM |
7562 | M: Jon Mason <jdmason@kudzu.us> |
7563 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 7564 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 7565 | L: linux-ntb@googlegroups.com |
fce8a7bb | 7566 | S: Supported |
2984411f JM |
7567 | W: https://github.com/jonmason/ntb/wiki |
7568 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 7569 | F: drivers/ntb/ |
548c237c | 7570 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 7571 | F: include/linux/ntb.h |
a1bd3bae | 7572 | F: include/linux/ntb_transport.h |
fce8a7bb | 7573 | |
e26a5843 AH |
7574 | NTB INTEL DRIVER |
7575 | M: Jon Mason <jdmason@kudzu.us> | |
7576 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 7577 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
7578 | S: Supported |
7579 | W: https://github.com/jonmason/ntb/wiki | |
7580 | T: git git://github.com/jonmason/ntb.git | |
7581 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 7582 | |
1da177e4 | 7583 | NTFS FILESYSTEM |
2818ef50 | 7584 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 7585 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 7586 | W: http://www.tuxera.com/ |
e6f4dee7 | 7587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 7588 | S: Supported |
679655da JP |
7589 | F: Documentation/filesystems/ntfs.txt |
7590 | F: fs/ntfs/ | |
1da177e4 | 7591 | |
9eb8ef74 | 7592 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 7593 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7594 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7595 | S: Maintained |
8a61f013 JH |
7596 | F: drivers/video/fbdev/riva/ |
7597 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 7598 | |
79461681 | 7599 | NVM EXPRESS DRIVER |
b3975e94 JF |
7600 | M: Keith Busch <keith.busch@intel.com> |
7601 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 7602 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
7603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
7604 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 7605 | S: Supported |
57dacad5 | 7606 | F: drivers/nvme/host/ |
79461681 MW |
7607 | F: include/linux/nvme.h |
7608 | ||
aee4b9bd SK |
7609 | NVMEM FRAMEWORK |
7610 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
7611 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
7612 | S: Maintained | |
7613 | F: drivers/nvmem/ | |
7614 | F: Documentation/devicetree/bindings/nvmem/ | |
7615 | F: include/linux/nvmem-consumer.h | |
7616 | F: include/linux/nvmem-provider.h | |
7617 | ||
dece4585 CP |
7618 | NXP-NCI NFC DRIVER |
7619 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
7620 | R: Charles Gorand <charles.gorand@effinnov.com> | |
7621 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
7622 | S: Supported | |
7623 | F: drivers/nfc/nxp-nci | |
7624 | ||
f50d7146 RK |
7625 | NXP TDA998X DRM DRIVER |
7626 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
7627 | S: Supported | |
7628 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
7629 | F: include/drm/i2c/tda998x.h | |
7630 | ||
fbace43e PR |
7631 | NXP TFA9879 DRIVER |
7632 | M: Peter Rosin <peda@axentia.se> | |
7633 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7634 | S: Maintained | |
7635 | F: sound/soc/codecs/tfa9879* | |
7636 | ||
f5525786 | 7637 | OMAP SUPPORT |
0e24bdd4 | 7638 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
7639 | L: linux-omap@vger.kernel.org |
7640 | W: http://www.muru.com/linux/omap/ | |
7641 | W: http://linux.omap.com/ | |
8a6e2535 | 7642 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 7643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 7644 | S: Maintained |
4e04d5a3 | 7645 | F: arch/arm/*omap*/ |
026da812 FB |
7646 | F: arch/arm/configs/omap1_defconfig |
7647 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 7648 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
7649 | F: drivers/irqchip/irq-omap-intc.c |
7650 | F: drivers/mfd/*omap*.c | |
7651 | F: drivers/mfd/menelaus.c | |
7652 | F: drivers/mfd/palmas.c | |
7653 | F: drivers/mfd/tps65217.c | |
7654 | F: drivers/mfd/tps65218.c | |
7655 | F: drivers/mfd/tps65910.c | |
7656 | F: drivers/mfd/twl-core.[ch] | |
7657 | F: drivers/mfd/twl4030*.c | |
7658 | F: drivers/mfd/twl6030*.c | |
7659 | F: drivers/mfd/twl6040*.c | |
7660 | F: drivers/regulator/palmas-regulator*.c | |
7661 | F: drivers/regulator/pbias-regulator.c | |
7662 | F: drivers/regulator/tps65217-regulator.c | |
7663 | F: drivers/regulator/tps65218-regulator.c | |
7664 | F: drivers/regulator/tps65910-regulator.c | |
7665 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 7666 | F: include/linux/i2c-omap.h |
f5525786 | 7667 | |
50f29fbd | 7668 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 7669 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
7670 | M: Tony Lindgren <tony@atomide.com> |
7671 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 7672 | L: devicetree@vger.kernel.org |
50f29fbd TL |
7673 | S: Maintained |
7674 | F: arch/arm/boot/dts/*omap* | |
7675 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
7676 | F: arch/arm/boot/dts/*am4* |
7677 | F: arch/arm/boot/dts/*am5* | |
7678 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 7679 | |
f5525786 | 7680 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 7681 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
7682 | L: linux-omap@vger.kernel.org |
7683 | S: Maintained | |
7684 | F: arch/arm/*omap*/*clock* | |
7685 | ||
7686 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 7687 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
7688 | L: linux-omap@vger.kernel.org |
7689 | S: Maintained | |
7690 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 7691 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 7692 | |
d21db568 | 7693 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
7694 | M: Rajendra Nayak <rnayak@ti.com> |
7695 | M: Paul Walmsley <paul@pwsan.com> | |
7696 | L: linux-omap@vger.kernel.org | |
7697 | S: Maintained | |
d21db568 | 7698 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 7699 | |
f5525786 | 7700 | OMAP AUDIO SUPPORT |
6c284903 | 7701 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 7702 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 7703 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
7704 | L: linux-omap@vger.kernel.org |
7705 | S: Maintained | |
7706 | F: sound/soc/omap/ | |
7707 | ||
18640193 TL |
7708 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
7709 | M: Roger Quadros <rogerq@ti.com> | |
7710 | M: Tony Lindgren <tony@atomide.com> | |
7711 | L: linux-omap@vger.kernel.org | |
7712 | S: Maintained | |
7713 | F: drivers/memory/omap-gpmc.c | |
7714 | F: arch/arm/mach-omap2/*gpmc* | |
7715 | ||
f5525786 | 7716 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 7717 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 7718 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
7719 | L: linux-omap@vger.kernel.org |
7720 | S: Maintained | |
8a61f013 | 7721 | F: drivers/video/fbdev/omap/ |
f5525786 | 7722 | |
676eec0d | 7723 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 7724 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 7725 | L: linux-omap@vger.kernel.org |
676eec0d | 7726 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 7727 | S: Maintained |
8a61f013 | 7728 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
7729 | F: Documentation/arm/OMAP/DSS |
7730 | ||
8b37fcfc OBC |
7731 | OMAP HARDWARE SPINLOCK SUPPORT |
7732 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7733 | L: linux-omap@vger.kernel.org | |
7734 | S: Maintained | |
7735 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 7736 | |
f5525786 | 7737 | OMAP MMC SUPPORT |
8b58be88 | 7738 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
7739 | L: linux-omap@vger.kernel.org |
7740 | S: Maintained | |
653f41b5 MC |
7741 | F: drivers/mmc/host/omap.c |
7742 | ||
7743 | OMAP HS MMC SUPPORT | |
0a4585c6 | 7744 | L: linux-mmc@vger.kernel.org |
653f41b5 | 7745 | L: linux-omap@vger.kernel.org |
dfa5d196 | 7746 | S: Orphan |
653f41b5 | 7747 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
7748 | |
7749 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 7750 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
7751 | S: Maintained |
7752 | F: drivers/char/hw_random/omap-rng.c | |
7753 | ||
f400c82e | 7754 | OMAP HWMOD SUPPORT |
cdb55ab0 | 7755 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7756 | M: Paul Walmsley <paul@pwsan.com> |
7757 | L: linux-omap@vger.kernel.org | |
7758 | S: Maintained | |
8fc8b12b | 7759 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 7760 | |
8633fb30 PW |
7761 | OMAP HWMOD DATA |
7762 | M: Paul Walmsley <paul@pwsan.com> | |
7763 | L: linux-omap@vger.kernel.org | |
7764 | S: Maintained | |
7765 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
7766 | ||
f400c82e | 7767 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 7768 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7769 | L: linux-omap@vger.kernel.org |
7770 | S: Maintained | |
7771 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
7772 | ||
0db83ced | 7773 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
7774 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7775 | L: linux-media@vger.kernel.org | |
7776 | S: Maintained | |
7eec52db | 7777 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 7778 | F: drivers/media/platform/omap3isp/ |
0db83ced | 7779 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 7780 | |
f5525786 | 7781 | OMAP USB SUPPORT |
f299470a | 7782 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
7783 | L: linux-usb@vger.kernel.org |
7784 | L: linux-omap@vger.kernel.org | |
43b416e5 | 7785 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 7786 | S: Maintained |
a16fbd65 JP |
7787 | F: drivers/usb/*/*omap* |
7788 | F: arch/arm/*omap*/usb* | |
f5525786 | 7789 | |
6d994710 | 7790 | OMAP GPIO DRIVER |
a1415a8f | 7791 | M: Javier Martinez Canillas <javier@dowhile0.org> |
97215800 | 7792 | M: Santosh Shilimkar <ssantosh@kernel.org> |
c69d72ae | 7793 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
7794 | L: linux-omap@vger.kernel.org |
7795 | S: Maintained | |
7796 | F: drivers/gpio/gpio-omap.c | |
7797 | ||
c351e290 MJ |
7798 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
7799 | M: Mark Jackson <mpfj@newflow.co.uk> | |
7800 | L: linux-omap@vger.kernel.org | |
7801 | S: Maintained | |
7802 | F: arch/arm/boot/dts/am335x-nano.dts | |
7803 | ||
0ad122d9 | 7804 | OMFS FILESYSTEM |
8b58be88 | 7805 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
7806 | L: linux-karma-devel@lists.sourceforge.net |
7807 | S: Maintained | |
679655da JP |
7808 | F: Documentation/filesystems/omfs.txt |
7809 | F: fs/omfs/ | |
0ad122d9 | 7810 | |
c1986ee9 | 7811 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 7812 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 7813 | S: Maintained |
679655da JP |
7814 | F: drivers/char/pcmcia/cm4000_cs.c |
7815 | F: include/linux/cm4000_cs.h | |
c117ab84 | 7816 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 7817 | |
77c44ab1 | 7818 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 7819 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 7820 | S: Maintained |
679655da | 7821 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 7822 | |
77d5140f | 7823 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 7824 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 7825 | L: linux-media@vger.kernel.org |
275ffde4 | 7826 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 7827 | S: Maintained |
90d72ac6 | 7828 | F: drivers/media/i2c/ov7670.c |
77d5140f | 7829 | |
431bca73 | 7830 | ONENAND FLASH DRIVER |
8b58be88 | 7831 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
7832 | L: linux-mtd@lists.infradead.org |
7833 | S: Maintained | |
679655da JP |
7834 | F: drivers/mtd/onenand/ |
7835 | F: include/linux/mtd/onenand*.h | |
431bca73 | 7836 | |
1da177e4 | 7837 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 7838 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
7839 | L: osst-users@lists.sourceforge.net |
7840 | L: linux-scsi@vger.kernel.org | |
7841 | S: Maintained | |
f7269cfc JD |
7842 | F: Documentation/scsi/osst.txt |
7843 | F: drivers/scsi/osst.* | |
7844 | F: drivers/scsi/osst_*.h | |
7845 | F: drivers/scsi/st.h | |
1da177e4 | 7846 | |
e2d1d6c0 | 7847 | OPENCORES I2C BUS DRIVER |
8b58be88 | 7848 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 7849 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 7850 | S: Maintained |
679655da JP |
7851 | F: Documentation/i2c/busses/i2c-ocores |
7852 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 7853 | |
860c44c1 | 7854 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 7855 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 GL |
7856 | M: Frank Rowand <frowand.list@gmail.com> |
7857 | M: Grant Likely <grant.likely@linaro.org> | |
d0fb18c5 | 7858 | L: devicetree@vger.kernel.org |
a7fefe9f RH |
7859 | W: http://www.devicetree.org/ |
7860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git | |
860c44c1 | 7861 | S: Maintained |
f8828205 | 7862 | F: drivers/of/ |
860c44c1 | 7863 | F: include/linux/of*.h |
f8828205 | 7864 | F: scripts/dtc/ |
860c44c1 | 7865 | |
f8828205 | 7866 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 7867 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
7868 | M: Pawel Moll <pawel.moll@arm.com> |
7869 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 7870 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 7871 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 GL |
7872 | L: devicetree@vger.kernel.org |
7873 | S: Maintained | |
7874 | F: Documentation/devicetree/ | |
7875 | F: arch/*/boot/dts/ | |
7876 | F: include/dt-bindings/ | |
7877 | ||
2bb65f56 PA |
7878 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
7879 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
7880 | L: devicetree@vger.kernel.org | |
7881 | S: Maintained | |
7882 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
7883 | F: Documentation/devicetree/overlay-notes.txt | |
7884 | F: drivers/of/overlay.c | |
7885 | F: drivers/of/resolver.c | |
7886 | ||
19f9d392 JB |
7887 | OPENRISC ARCHITECTURE |
7888 | M: Jonas Bonn <jonas@southpole.se> | |
7889 | W: http://openrisc.net | |
eab7c1c0 | 7890 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
7891 | S: Maintained |
7892 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 7893 | F: arch/openrisc/ |
19f9d392 | 7894 | |
ccb1352e | 7895 | OPENVSWITCH |
4f337ed5 | 7896 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 7897 | L: netdev@vger.kernel.org |
ccb1352e JG |
7898 | L: dev@openvswitch.org |
7899 | W: http://openvswitch.org | |
ccb1352e JG |
7900 | S: Maintained |
7901 | F: net/openvswitch/ | |
b422da7c | 7902 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 7903 | |
af39917d CL |
7904 | OPL4 DRIVER |
7905 | M: Clemens Ladisch <clemens@ladisch.de> | |
7906 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7907 | T: git git://git.alsa-project.org/alsa-kernel.git | |
7908 | S: Maintained | |
7909 | F: sound/drivers/opl4/ | |
7910 | ||
1da177e4 | 7911 | OPROFILE |
4cf7e718 | 7912 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
7913 | L: oprofile-list@lists.sf.net |
7914 | S: Maintained | |
81c4a8a6 | 7915 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
7916 | F: arch/*/oprofile/ |
7917 | F: drivers/oprofile/ | |
7918 | F: include/linux/oprofile.h | |
1da177e4 | 7919 | |
e2d1d6c0 | 7920 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 7921 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 7922 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 7923 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 7924 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 7925 | S: Supported |
679655da JP |
7926 | F: Documentation/filesystems/ocfs2.txt |
7927 | F: Documentation/filesystems/dlmfs.txt | |
7928 | F: fs/ocfs2/ | |
e2d1d6c0 | 7929 | |
1da177e4 | 7930 | ORINOCO DRIVER |
724c6b35 | 7931 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7932 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 7933 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 7934 | S: Orphan |
679655da | 7935 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 7936 | |
42c55aa8 | 7937 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 7938 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 7939 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
7940 | L: osd-dev@open-osd.org |
7941 | W: http://open-osd.org | |
54e5881d | 7942 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 7943 | S: Maintained |
42c55aa8 | 7944 | F: drivers/scsi/osd/ |
6b6f0b6c | 7945 | F: include/scsi/osd_* |
42c55aa8 | 7946 | F: fs/exofs/ |
68274794 | 7947 | |
ef94b186 | 7948 | OVERLAY FILESYSTEM |
7c37fbda | 7949 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
7950 | L: linux-unionfs@vger.kernel.org |
7951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 7952 | S: Supported |
1d113735 | 7953 | F: fs/overlayfs/ |
7c37fbda NB |
7954 | F: Documentation/filesystems/overlayfs.txt |
7955 | ||
e2d1d6c0 | 7956 | P54 WIRELESS DRIVER |
084cb0fe | 7957 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 7958 | L: linux-wireless@vger.kernel.org |
084cb0fe | 7959 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 7960 | S: Maintained |
679655da | 7961 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 7962 | |
f5cd7872 | 7963 | PA SEMI ETHERNET DRIVER |
8b58be88 | 7964 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
7965 | L: netdev@vger.kernel.org |
7966 | S: Maintained | |
ded19add | 7967 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 7968 | |
beb58aa3 | 7969 | PA SEMI SMBUS DRIVER |
8b58be88 | 7970 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 7971 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 7972 | S: Maintained |
679655da | 7973 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 7974 | |
48fc267e SK |
7975 | PADATA PARALLEL EXECUTION MECHANISM |
7976 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
7977 | L: linux-crypto@vger.kernel.org |
7978 | S: Maintained | |
7979 | F: kernel/padata.c | |
7980 | F: include/linux/padata.h | |
7981 | F: Documentation/padata.txt | |
7982 | ||
709ee531 | 7983 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 7984 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 7985 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 7986 | S: Maintained |
679655da | 7987 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 7988 | |
368dd5ac | 7989 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
7990 | M: David Howells <dhowells@redhat.com> |
7991 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
7992 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
7993 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
7994 | S: Maintained | |
679655da JP |
7995 | F: Documentation/mn10300/ |
7996 | F: arch/mn10300/ | |
4fa97181 | 7997 | |
64dfff03 SM |
7998 | PARALLEL PORT SUBSYSTEM |
7999 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
8000 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 8001 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 8002 | S: Maintained |
679655da JP |
8003 | F: drivers/parport/ |
8004 | F: include/linux/parport*.h | |
8005 | F: drivers/char/ppdev.c | |
c117ab84 | 8006 | F: include/uapi/linux/ppdev.h |
64dfff03 | 8007 | F: Documentation/parport*.txt |
1da177e4 | 8008 | |
4cdf6bc2 | 8009 | PARAVIRT_OPS INTERFACE |
d633180c | 8010 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
8011 | M: Chris Wright <chrisw@sous-sol.org> |
8012 | M: Alok Kataria <akataria@vmware.com> | |
8013 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 8014 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 8015 | S: Supported |
a2e19991 | 8016 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
8017 | F: arch/*/kernel/paravirt* |
8018 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 8019 | |
e2d1d6c0 | 8020 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 8021 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 8022 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 8023 | S: Maintained |
679655da JP |
8024 | F: Documentation/blockdev/paride.txt |
8025 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
8026 | |
8027 | PARISC ARCHITECTURE | |
b8828770 | 8028 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 8029 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
8030 | L: linux-parisc@vger.kernel.org |
8031 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 8032 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 8033 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 8034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 8035 | S: Maintained |
679655da | 8036 | F: arch/parisc/ |
2b6bac9e | 8037 | F: Documentation/parisc/ |
679655da | 8038 | F: drivers/parisc/ |
2b6bac9e HD |
8039 | F: drivers/char/agp/parisc-agp.c |
8040 | F: drivers/input/serio/gscps2.c | |
8041 | F: drivers/parport/parport_gsc.* | |
8042 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 8043 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
8044 | F: drivers/video/console/sti* |
8045 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 8046 | |
1662d32c | 8047 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 8048 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
8049 | L: lm-sensors@lm-sensors.org |
8050 | S: Maintained | |
679655da JP |
8051 | F: Documentation/hwmon/pc87360 |
8052 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
8053 | |
8054 | PC8736x GPIO DRIVER | |
8b58be88 | 8055 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8056 | S: Maintained |
679655da | 8057 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 8058 | |
1ad107fd | 8059 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 8060 | M: Jean Delvare <jdelvare@suse.com> |
1ad107fd JD |
8061 | L: lm-sensors@lm-sensors.org |
8062 | S: Maintained | |
8063 | F: Documentation/hwmon/pc87427 | |
8064 | F: drivers/hwmon/pc87427.c | |
8065 | ||
b26e0ed4 | 8066 | PCA9532 LED DRIVER |
8b58be88 | 8067 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 8068 | S: Maintained |
d5ca6918 JP |
8069 | F: drivers/leds/leds-pca9532.c |
8070 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 8071 | |
5ce914a8 | 8072 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 8073 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
8074 | L: linux-i2c@vger.kernel.org |
8075 | S: Maintained | |
b4f0b74e | 8076 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 8077 | |
3971dae5 | 8078 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 8079 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
8080 | S: Maintained |
8081 | F: drivers/firmware/pcdp.* | |
8082 | ||
065c6359 | 8083 | PCI ERROR RECOVERY |
6305902c | 8084 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 8085 | L: linux-pci@vger.kernel.org |
065c6359 | 8086 | S: Supported |
679655da | 8087 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 8088 | |
1da177e4 | 8089 | PCI SUBSYSTEM |
5ac3a6d2 | 8090 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 8091 | L: linux-pci@vger.kernel.org |
99662dd1 | 8092 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 8093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 8094 | S: Supported |
679655da JP |
8095 | F: Documentation/PCI/ |
8096 | F: drivers/pci/ | |
8097 | F: include/linux/pci* | |
6b49ee49 | 8098 | F: arch/x86/pci/ |
cad01f91 | 8099 | F: arch/x86/kernel/quirks.c |
1da177e4 | 8100 | |
eaa6111b LFT |
8101 | PCI DRIVER FOR ALTERA PCIE IP |
8102 | M: Ley Foon Tan <lftan@altera.com> | |
8103 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8104 | L: linux-pci@vger.kernel.org | |
8105 | S: Supported | |
8106 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
8107 | F: drivers/pci/host/pcie-altera.c | |
8108 | ||
b7e78170 RH |
8109 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
8110 | M: Rob Herring <robh@kernel.org> | |
8111 | L: linux-pci@vger.kernel.org | |
8112 | L: linux-arm-kernel@lists.infradead.org | |
8113 | S: Maintained | |
8114 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
8115 | F: drivers/pci/host/pci-versatile.c | |
8116 | ||
5f6b6ccd TI |
8117 | PCI DRIVER FOR APPLIEDMICRO XGENE |
8118 | M: Tanmay Inamdar <tinamdar@apm.com> | |
8119 | L: linux-pci@vger.kernel.org | |
8120 | L: linux-arm-kernel@lists.infradead.org | |
8121 | S: Maintained | |
8122 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
8123 | F: drivers/pci/host/pci-xgene.c | |
8124 | ||
62d0ff83 ML |
8125 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
8126 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
8127 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
8128 | M: Roy Zang <tie-fei.zang@freescale.com> | |
8129 | L: linuxppc-dev@lists.ozlabs.org | |
8130 | L: linux-pci@vger.kernel.org | |
8131 | L: linux-arm-kernel@lists.infradead.org | |
8132 | S: Maintained | |
8133 | F: drivers/pci/host/*layerscape* | |
8134 | ||
f0b75693 | 8135 | PCI DRIVER FOR IMX6 |
f175aa2c | 8136 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 8137 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
8138 | L: linux-pci@vger.kernel.org |
8139 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8140 | S: Maintained | |
8141 | F: drivers/pci/host/*imx6* | |
8142 | ||
0c4ffcfe MK |
8143 | PCI DRIVER FOR TI KEYSTONE |
8144 | M: Murali Karicheri <m-karicheri2@ti.com> | |
8145 | L: linux-pci@vger.kernel.org | |
8146 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8147 | S: Maintained | |
8148 | F: drivers/pci/host/*keystone* | |
8149 | ||
f0b75693 BH |
8150 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
8151 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
8152 | M: Jason Cooper <jason@lakedaemon.net> | |
8153 | L: linux-pci@vger.kernel.org | |
8154 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8155 | S: Maintained | |
8156 | F: drivers/pci/host/*mvebu* | |
8157 | ||
0447cfd7 TR |
8158 | PCI DRIVER FOR NVIDIA TEGRA |
8159 | M: Thierry Reding <thierry.reding@gmail.com> | |
8160 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 8161 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
8162 | S: Supported |
8163 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
8164 | F: drivers/pci/host/pci-tegra.c | |
8165 | ||
47ff3de9 KVA |
8166 | PCI DRIVER FOR TI DRA7XX |
8167 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
8168 | L: linux-omap@vger.kernel.org | |
8169 | L: linux-pci@vger.kernel.org | |
8170 | S: Supported | |
8171 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
8172 | F: drivers/pci/host/pci-dra7xx.c | |
8173 | ||
f0b75693 BH |
8174 | PCI DRIVER FOR RENESAS R-CAR |
8175 | M: Simon Horman <horms@verge.net.au> | |
8176 | L: linux-pci@vger.kernel.org | |
8177 | L: linux-sh@vger.kernel.org | |
8178 | S: Maintained | |
8179 | F: drivers/pci/host/*rcar* | |
8180 | ||
4af82255 | 8181 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 8182 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 8183 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
8184 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8185 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
8186 | S: Maintained |
8187 | F: drivers/pci/host/pci-exynos.c | |
8188 | ||
f0b75693 | 8189 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 8190 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 8191 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
8192 | L: linux-pci@vger.kernel.org |
8193 | S: Maintained | |
8194 | F: drivers/pci/host/*designware* | |
8195 | ||
cf28855b WD |
8196 | PCI DRIVER FOR GENERIC OF HOSTS |
8197 | M: Will Deacon <will.deacon@arm.com> | |
8198 | L: linux-pci@vger.kernel.org | |
8199 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8200 | S: Maintained | |
8201 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
8202 | F: drivers/pci/host/pci-host-generic.c | |
8203 | ||
51b66a6c | 8204 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 8205 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 8206 | L: linux-pci@vger.kernel.org |
110baab1 | 8207 | S: Maintained |
51b66a6c PA |
8208 | F: drivers/pci/host/*spear* |
8209 | ||
af1169b4 LFT |
8210 | PCI MSI DRIVER FOR ALTERA MSI IP |
8211 | M: Ley Foon Tan <lftan@altera.com> | |
8212 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8213 | L: linux-pci@vger.kernel.org | |
8214 | S: Supported | |
8215 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
8216 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 8217 | |
dcd19de3 DD |
8218 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
8219 | M: Duc Dang <dhdang@apm.com> | |
8220 | L: linux-pci@vger.kernel.org | |
8221 | L: linux-arm-kernel@lists.infradead.org | |
8222 | S: Maintained | |
8223 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
8224 | F: drivers/pci/host/pci-xgene-msi.c | |
8225 | ||
500a1d9a ZW |
8226 | PCIE DRIVER FOR HISILICON |
8227 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
8228 | L: linux-pci@vger.kernel.org | |
8229 | S: Maintained | |
8230 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
8231 | F: drivers/pci/host/pcie-hisi.c | |
8232 | ||
1da177e4 | 8233 | PCMCIA SUBSYSTEM |
4230dfc9 | 8234 | P: Linux PCMCIA Team |
f5df5881 | 8235 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 8236 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 8237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 8238 | S: Maintained |
679655da JP |
8239 | F: Documentation/pcmcia/ |
8240 | F: drivers/pcmcia/ | |
8241 | F: include/pcmcia/ | |
1da177e4 LT |
8242 | |
8243 | PCNET32 NETWORK DRIVER | |
227fb925 | 8244 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 8245 | L: netdev@vger.kernel.org |
1da177e4 | 8246 | S: Maintained |
b955f6ca | 8247 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 8248 | |
48fc267e SK |
8249 | PCRYPT PARALLEL CRYPTO ENGINE |
8250 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8251 | L: linux-crypto@vger.kernel.org | |
8252 | S: Maintained | |
8253 | F: crypto/pcrypt.c | |
8254 | F: include/crypto/pcrypt.h | |
8255 | ||
e72df0b8 TH |
8256 | PER-CPU MEMORY ALLOCATOR |
8257 | M: Tejun Heo <tj@kernel.org> | |
8258 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
8259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
8260 | S: Maintained | |
8261 | F: include/linux/percpu*.h | |
8262 | F: mm/percpu*.c | |
8263 | F: arch/*/include/asm/percpu.h | |
8264 | ||
ad4ecbcb | 8265 | PER-TASK DELAY ACCOUNTING |
185e595f | 8266 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 8267 | S: Maintained |
679655da JP |
8268 | F: include/linux/delayacct.h |
8269 | F: kernel/delayacct.c | |
ad4ecbcb | 8270 | |
57c0c15b | 8271 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 | 8272 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
dd9b238c | 8273 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 8274 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 8275 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 8277 | S: Supported |
d53e8365 | 8278 | F: kernel/events/* |
a003236c | 8279 | F: include/linux/perf_event.h |
c117ab84 | 8280 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
8281 | F: arch/*/kernel/perf_event*.c |
8282 | F: arch/*/kernel/*/perf_event*.c | |
8283 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 8284 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
8285 | F: arch/*/kernel/perf_callchain.c |
8286 | F: tools/perf/ | |
6c0b3244 | 8287 | |
dd49d0f5 | 8288 | PERSONALITY HANDLING |
8b58be88 | 8289 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
8290 | L: linux-abi-devel@lists.sourceforge.net |
8291 | S: Maintained | |
679655da | 8292 | F: include/linux/personality.h |
c117ab84 | 8293 | F: include/uapi/linux/personality.h |
dd49d0f5 | 8294 | |
838e7a03 | 8295 | PHONET PROTOCOL |
2a06b40f | 8296 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
8297 | S: Supported |
8298 | F: Documentation/networking/phonet.txt | |
8299 | F: include/linux/phonet.h | |
8300 | F: include/net/phonet/ | |
c117ab84 | 8301 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
8302 | F: net/phonet/ |
8303 | ||
1da177e4 | 8304 | PHRAM MTD DRIVER |
8b58be88 | 8305 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
8306 | L: linux-mtd@lists.infradead.org |
8307 | S: Maintained | |
679655da | 8308 | F: drivers/mtd/devices/phram.c |
1da177e4 | 8309 | |
efdbb10e BP |
8310 | PICOLCD HID DRIVER |
8311 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
8312 | L: linux-input@vger.kernel.org | |
8313 | S: Maintained | |
8314 | F: drivers/hid/hid-picolcd* | |
8315 | ||
a53bfa07 JI |
8316 | PICOXCELL SUPPORT |
8317 | M: Jamie Iles <jamie@jamieiles.com> | |
8318 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8319 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
8320 | S: Supported | |
b8733987 | 8321 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 8322 | F: arch/arm/mach-picoxcell/ |
b8733987 | 8323 | F: drivers/crypto/picoxcell* |
a53bfa07 | 8324 | |
2744e8af LW |
8325 | PIN CONTROL SUBSYSTEM |
8326 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 8327 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 8328 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 8329 | S: Maintained |
07f29ba6 | 8330 | F: drivers/pinctrl/ |
8e406fe4 | 8331 | F: include/linux/pinctrl/ |
2744e8af | 8332 | |
2201bbb8 JCPV |
8333 | PIN CONTROLLER - ATMEL AT91 |
8334 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
8335 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8336 | S: Maintained | |
c654b6bf | 8337 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 8338 | |
33d3690c LD |
8339 | PIN CONTROLLER - ATMEL AT91 PIO4 |
8340 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
8341 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8342 | L: linux-gpio@vger.kernel.org | |
8343 | S: Supported | |
8344 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
8345 | ||
cbd1b652 MW |
8346 | PIN CONTROLLER - INTEL |
8347 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
8348 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
8349 | S: Maintained | |
8350 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 8351 | |
9963b536 LP |
8352 | PIN CONTROLLER - RENESAS |
8353 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8354 | L: linux-sh@vger.kernel.org | |
8355 | S: Maintained | |
8356 | F: drivers/pinctrl/sh-pfc/ | |
8357 | ||
b75e60d6 | 8358 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 8359 | M: Tomasz Figa <tomasz.figa@gmail.com> |
b75e60d6 DA |
8360 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8361 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
8362 | S: Maintained | |
9b5b33f6 | 8363 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 8364 | |
deda8287 | 8365 | PIN CONTROLLER - ST SPEAR |
da89947b | 8366 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
8367 | L: spear-devel@list.st.com |
8368 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8369 | W: http://www.st.com/spear | |
8370 | S: Maintained | |
8e406fe4 | 8371 | F: drivers/pinctrl/spear/ |
deda8287 | 8372 | |
249a6771 | 8373 | PKTCDVD DRIVER |
e5f6450c | 8374 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 8375 | S: Maintained |
679655da JP |
8376 | F: drivers/block/pktcdvd.c |
8377 | F: include/linux/pktcdvd.h | |
c117ab84 | 8378 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 8379 | |
b31d8273 G |
8380 | PKUNITY SOC DRIVERS |
8381 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
8382 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8383 | S: Maintained | |
ceebf4d5 | 8384 | T: git git://github.com/gxt/linux.git |
b31d8273 | 8385 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 8386 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 8387 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 8388 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 8389 | |
9d2ecfb7 | 8390 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 8391 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
8392 | L: lm-sensors@lm-sensors.org |
8393 | W: http://www.lm-sensors.org/ | |
8394 | W: http://www.roeck-us.net/linux/drivers/ | |
8395 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
8396 | S: Maintained | |
8397 | F: Documentation/hwmon/pmbus | |
8398 | F: drivers/hwmon/pmbus/ | |
8399 | F: include/linux/i2c/pmbus.h | |
8400 | ||
89a36810 | 8401 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
8402 | L: linux-scsi@vger.kernel.org |
8403 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 8404 | S: Orphan |
89a36810 AR |
8405 | F: drivers/scsi/pmcraid.* |
8406 | ||
dbf9bfe6 | 8407 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 8408 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 8409 | M: lindar_liu@usish.com |
f5a7b525 | 8410 | L: pmchba@pmcs.com |
dbf9bfe6 | 8411 | L: linux-scsi@vger.kernel.org |
8412 | S: Supported | |
8413 | F: drivers/scsi/pm8001/ | |
8414 | ||
1da177e4 | 8415 | POSIX CLOCKS and TIMERS |
8b58be88 | 8416 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 8417 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 8419 | S: Maintained |
679655da JP |
8420 | F: fs/timerfd.c |
8421 | F: include/linux/timer* | |
5cee9645 | 8422 | F: kernel/time/*timer* |
1da177e4 | 8423 | |
3be86148 | 8424 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 8425 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 8426 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 8427 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 8428 | L: linux-pm@vger.kernel.org |
54e5881d | 8429 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 8430 | S: Maintained |
679655da | 8431 | F: include/linux/power_supply.h |
8cd725a1 | 8432 | F: drivers/power/ |
26305022 | 8433 | X: drivers/power/avs/ |
3be86148 | 8434 | |
514f161a MR |
8435 | POWER STATE COORDINATION INTERFACE (PSCI) |
8436 | M: Mark Rutland <mark.rutland@arm.com> | |
8437 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
8438 | L: linux-arm-kernel@lists.infradead.org | |
8439 | S: Maintained | |
8440 | F: drivers/firmware/psci.c | |
8441 | F: include/linux/psci.h | |
8442 | F: include/uapi/linux/psci.h | |
8443 | ||
1da177e4 | 8444 | PNP SUPPORT |
9c3646d1 | 8445 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 8446 | S: Maintained |
679655da | 8447 | F: drivers/pnp/ |
1da177e4 LT |
8448 | |
8449 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 8450 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
8451 | L: linux-ppp@vger.kernel.org |
8452 | S: Maintained | |
224cf5ad | 8453 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
8454 | |
8455 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 8456 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 8457 | S: Maintained |
679655da | 8458 | F: net/atm/pppoatm.c |
c117ab84 | 8459 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
8460 | |
8461 | PPP OVER ETHERNET | |
8b58be88 | 8462 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 8463 | S: Maintained |
224cf5ad JK |
8464 | F: drivers/net/ppp/pppoe.c |
8465 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 8466 | |
a6d2370b | 8467 | PPP OVER L2TP |
8b58be88 | 8468 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 8469 | S: Maintained |
90ca28d1 | 8470 | F: net/l2tp/l2tp_ppp.c |
679655da | 8471 | F: include/linux/if_pppol2tp.h |
c117ab84 | 8472 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 8473 | |
eae9d2ba | 8474 | PPS SUPPORT |
8b58be88 | 8475 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
8476 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
8477 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
8478 | S: Maintained | |
cabaaf41 JP |
8479 | F: Documentation/pps/ |
8480 | F: drivers/pps/ | |
8481 | F: include/linux/pps*.h | |
eae9d2ba | 8482 | |
71a6d0af HW |
8483 | PPTP DRIVER |
8484 | M: Dmitry Kozlov <xeb@mail.ru> | |
8485 | L: netdev@vger.kernel.org | |
8486 | S: Maintained | |
224cf5ad | 8487 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
8488 | W: http://sourceforge.net/projects/accel-pptp |
8489 | ||
1da177e4 | 8490 | PREEMPTIBLE KERNEL |
8b58be88 | 8491 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
8492 | L: kpreempt-tech@lists.sourceforge.net |
8493 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
8494 | S: Supported | |
679655da JP |
8495 | F: Documentation/preempt-locking.txt |
8496 | F: include/linux/preempt.h | |
1da177e4 LT |
8497 | |
8498 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 8499 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 8500 | L: linux-wireless@vger.kernel.org |
9ef80804 | 8501 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 8502 | S: Obsolete |
679655da | 8503 | F: drivers/net/wireless/prism54/ |
1da177e4 | 8504 | |
02c18891 | 8505 | PS3 NETWORK SUPPORT |
b809b9ca | 8506 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 8507 | L: netdev@vger.kernel.org |
a14ab6b6 | 8508 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8509 | S: Maintained |
8df158ac | 8510 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 8511 | |
f58a9d17 | 8512 | PS3 PLATFORM SUPPORT |
b809b9ca | 8513 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 8514 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8515 | S: Maintained |
679655da JP |
8516 | F: arch/powerpc/boot/ps3* |
8517 | F: arch/powerpc/include/asm/lv1call.h | |
8518 | F: arch/powerpc/include/asm/ps3*.h | |
8519 | F: arch/powerpc/platforms/ps3/ | |
8520 | F: drivers/*/ps3* | |
8521 | F: drivers/ps3/ | |
fec629b8 | 8522 | F: drivers/rtc/rtc-ps3.c |
679655da | 8523 | F: drivers/usb/host/*ps3.c |
fec629b8 | 8524 | F: sound/ppc/snd_ps3* |
f58a9d17 | 8525 | |
cffb4add | 8526 | PS3VRAM DRIVER |
8b58be88 | 8527 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 8528 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 8529 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 8530 | S: Maintained |
8a3977cb | 8531 | F: drivers/block/ps3vram.c |
cffb4add | 8532 | |
8defe599 | 8533 | PSTORE FILESYSTEM |
9d5e2a02 | 8534 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
8535 | M: Colin Cross <ccross@android.com> |
8536 | M: Kees Cook <keescook@chromium.org> | |
8537 | M: Tony Luck <tony.luck@intel.com> | |
8538 | S: Maintained | |
8539 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
8540 | F: fs/pstore/ | |
8541 | F: include/linux/pstore* | |
04851772 | 8542 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
8543 | F: drivers/acpi/apei/erst.c |
8544 | ||
7fbc415d RC |
8545 | PTP HARDWARE CLOCK SUPPORT |
8546 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 8547 | L: netdev@vger.kernel.org |
7fbc415d RC |
8548 | S: Maintained |
8549 | W: http://linuxptp.sourceforge.net/ | |
8550 | F: Documentation/ABI/testing/sysfs-ptp | |
8551 | F: Documentation/ptp/* | |
0ecb3cdd | 8552 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
8553 | F: drivers/net/phy/dp83640* |
8554 | F: drivers/ptp/* | |
8555 | F: include/linux/ptp_cl* | |
8556 | ||
cf94a4d1 | 8557 | PTRACE SUPPORT |
e846ee5f | 8558 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 8559 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
8560 | S: Maintained |
8561 | F: include/asm-generic/syscall.h | |
8562 | F: include/linux/ptrace.h | |
8563 | F: include/linux/regset.h | |
8564 | F: include/linux/tracehook.h | |
c117ab84 | 8565 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
8566 | F: kernel/ptrace.c |
8567 | ||
8320204a | 8568 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 8569 | M: Mike Isely <isely@pobox.com> |
16e9495d | 8570 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 8571 | L: linux-media@vger.kernel.org |
8320204a | 8572 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 8573 | T: git git://linuxtv.org/media_tree.git |
8320204a | 8574 | S: Maintained |
679655da | 8575 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 8576 | F: drivers/media/usb/pvrusb2/ |
8320204a | 8577 | |
39532e6c HG |
8578 | PWC WEBCAM DRIVER |
8579 | M: Hans de Goede <hdegoede@redhat.com> | |
8580 | L: linux-media@vger.kernel.org | |
8581 | T: git git://linuxtv.org/media_tree.git | |
8582 | S: Maintained | |
8583 | F: drivers/media/usb/pwc/* | |
8584 | ||
93c090b3 KD |
8585 | PWM FAN DRIVER |
8586 | M: Kamil Debski <k.debski@samsung.com> | |
8587 | L: lm-sensors@lm-sensors.org | |
8588 | S: Supported | |
8589 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
8590 | F: Documentation/hwmon/pwm-fan | |
8591 | F: drivers/hwmon/pwm-fan.c | |
8592 | ||
200efedd | 8593 | PWM SUBSYSTEM |
aa3495f7 TR |
8594 | M: Thierry Reding <thierry.reding@gmail.com> |
8595 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 8596 | S: Maintained |
006e854f | 8597 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
8598 | F: Documentation/pwm.txt |
8599 | F: Documentation/devicetree/bindings/pwm/ | |
8600 | F: include/linux/pwm.h | |
0c2498f1 | 8601 | F: drivers/pwm/ |
a140b98d TR |
8602 | F: drivers/video/backlight/pwm_bl.c |
8603 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 8604 | |
30ec261e | 8605 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 8606 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 8607 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 8608 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 8609 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 8610 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 8611 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 8612 | S: Maintained |
679655da | 8613 | F: arch/arm/mach-pxa/ |
820439f1 | 8614 | F: drivers/dma/pxa* |
679655da | 8615 | F: drivers/pcmcia/pxa2xx* |
9df92e6c | 8616 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 8617 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 8618 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 8619 | F: sound/arm/pxa* |
14430813 | 8620 | F: sound/soc/pxa/ |
1da177e4 | 8621 | |
ec64d3bf EG |
8622 | PXA3xx NAND FLASH DRIVER |
8623 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
8624 | L: linux-mtd@lists.infradead.org | |
8625 | S: Maintained | |
9a67f099 | 8626 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 8627 | |
3f640c61 | 8628 | MMP SUPPORT |
8b58be88 | 8629 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 8630 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 8631 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
8632 | T: git git://github.com/hzhuang1/linux.git |
8633 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 8634 | S: Maintained |
3f640c61 | 8635 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 8636 | |
272f133a PO |
8637 | PXA MMCI DRIVER |
8638 | S: Orphan | |
8639 | ||
57f63bc8 | 8640 | PXA RTC DRIVER |
8b58be88 | 8641 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
8642 | L: rtc-linux@googlegroups.com |
8643 | S: Maintained | |
8644 | ||
cea4001a | 8645 | QAT DRIVER |
49e7d9df JP |
8646 | M: Tadeusz Struk <tadeusz.struk@intel.com> |
8647 | L: qat-linux@intel.com | |
8648 | S: Supported | |
8649 | F: drivers/crypto/qat/ | |
cea4001a | 8650 | |
52a09a04 | 8651 | QIB DRIVER |
8473c603 | 8652 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
8653 | L: linux-rdma@vger.kernel.org |
8654 | S: Supported | |
8655 | F: drivers/infiniband/hw/qib/ | |
8656 | ||
5e9772b9 JS |
8657 | QLOGIC QLA1280 SCSI DRIVER |
8658 | M: Michael Reed <mdr@sgi.com> | |
8659 | L: linux-scsi@vger.kernel.org | |
8660 | S: Maintained | |
8661 | F: drivers/scsi/qla1280.[ch] | |
8662 | ||
1da177e4 | 8663 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 8664 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
8665 | L: linux-scsi@vger.kernel.org |
8666 | S: Supported | |
679655da JP |
8667 | F: Documentation/scsi/LICENSE.qla2xxx |
8668 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 8669 | |
883c98fe | 8670 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 8671 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
8672 | L: linux-scsi@vger.kernel.org |
8673 | S: Supported | |
bacfb81b | 8674 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
8675 | F: drivers/scsi/qla4xxx/ |
8676 | ||
5a4faa87 | 8677 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 8678 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 8679 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
8680 | M: linux-driver@qlogic.com |
8681 | L: netdev@vger.kernel.org | |
8682 | S: Supported | |
679655da | 8683 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 8684 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 8685 | |
0ec00f03 | 8686 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
9f35a3cc | 8687 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
8688 | L: netdev@vger.kernel.org |
8689 | S: Supported | |
aa43c215 | 8690 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 8691 | |
c4e84bde | 8692 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
8693 | M: Harish Patil <harish.patil@qlogic.com> |
8694 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
8695 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 8696 | M: linux-driver@qlogic.com |
c4e84bde RM |
8697 | L: netdev@vger.kernel.org |
8698 | S: Supported | |
aa43c215 | 8699 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 8700 | |
fe56b9e6 YM |
8701 | QLOGIC QL4xxx ETHERNET DRIVER |
8702 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> | |
8703 | M: Ariel Elior <Ariel.Elior@qlogic.com> | |
8704 | M: everest-linux-l2@qlogic.com | |
8705 | L: netdev@vger.kernel.org | |
8706 | S: Supported | |
8707 | F: drivers/net/ethernet/qlogic/qed/ | |
8708 | F: include/linux/qed/ | |
8709 | F: drivers/net/ethernet/qlogic/qede/ | |
8710 | ||
1da177e4 | 8711 | QNX4 FILESYSTEM |
8b58be88 | 8712 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
8713 | W: http://www.alarsen.net/linux/qnx4fs/ |
8714 | S: Maintained | |
80811493 | 8715 | F: fs/qnx4/ |
c117ab84 CEB |
8716 | F: include/uapi/linux/qnx4_fs.h |
8717 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 8718 | |
91952bc0 AP |
8719 | QT1010 MEDIA DRIVER |
8720 | M: Antti Palosaari <crope@iki.fi> | |
8721 | L: linux-media@vger.kernel.org | |
8722 | W: http://linuxtv.org/ | |
8723 | W: http://palosaari.fi/linux/ | |
8724 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8725 | T: git git://linuxtv.org/anttip/media_tree.git | |
8726 | S: Maintained | |
8727 | F: drivers/media/tuners/qt1010* | |
8728 | ||
966fb5ec SM |
8729 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
8730 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
8731 | L: linux-wireless@vger.kernel.org | |
8732 | L: ath9k-devel@lists.ath9k.org | |
8733 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
8734 | S: Supported | |
8735 | F: drivers/net/wireless/ath/ath9k/ | |
8736 | ||
2ea0ffcb KV |
8737 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
8738 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
8739 | L: ath10k@lists.infradead.org | |
8740 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
8741 | T: git git://github.com/kvalo/ath.git | |
8742 | S: Supported | |
8743 | F: drivers/net/wireless/ath/ath10k/ | |
8744 | ||
4f4567cf RK |
8745 | QUALCOMM HEXAGON ARCHITECTURE |
8746 | M: Richard Kuo <rkuo@codeaurora.org> | |
8747 | L: linux-hexagon@vger.kernel.org | |
8748 | S: Supported | |
8749 | F: arch/hexagon/ | |
8750 | ||
8e84c258 EK |
8751 | QUALCOMM WCN36XX WIRELESS DRIVER |
8752 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
8753 | L: wcn36xx@lists.infradead.org | |
8754 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
8755 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
8756 | S: Supported | |
8757 | F: drivers/net/wireless/ath/wcn36xx/ | |
8758 | ||
602adf40 | 8759 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
8760 | M: Ilya Dryomov <idryomov@gmail.com> |
8761 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 8762 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 8763 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
8764 | W: http://ceph.com/ |
8765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 8766 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 8767 | S: Supported |
398ecff5 | 8768 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
8769 | F: drivers/block/rbd.c |
8770 | F: drivers/block/rbd_types.h | |
8771 | ||
1da177e4 | 8772 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8773 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 8774 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 8775 | S: Maintained |
8a61f013 | 8776 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 8777 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 8778 | |
c6c9b34c HG |
8779 | RADIOSHARK RADIO DRIVER |
8780 | M: Hans de Goede <hdegoede@redhat.com> | |
8781 | L: linux-media@vger.kernel.org | |
8782 | T: git git://linuxtv.org/media_tree.git | |
8783 | S: Maintained | |
8784 | F: drivers/media/radio/radio-shark.c | |
8785 | ||
8786 | RADIOSHARK2 RADIO DRIVER | |
8787 | M: Hans de Goede <hdegoede@redhat.com> | |
8788 | L: linux-media@vger.kernel.org | |
8789 | T: git git://linuxtv.org/media_tree.git | |
8790 | S: Maintained | |
8791 | F: drivers/media/radio/radio-shark2.c | |
8792 | F: drivers/media/radio/radio-tea5777.c | |
8793 | ||
1da177e4 | 8794 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8795 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 8796 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 8797 | S: Maintained |
8a61f013 | 8798 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 8799 | |
e7839f25 | 8800 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 8801 | P: rt2x00 project |
b182427e | 8802 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 8803 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 8804 | L: linux-wireless@vger.kernel.org |
95ea3627 ID |
8805 | S: Maintained |
8806 | F: drivers/net/wireless/rt2x00/ | |
8807 | ||
9db5579b | 8808 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 8809 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 8810 | S: Maintained |
679655da JP |
8811 | F: Documentation/blockdev/ramdisk.txt |
8812 | F: drivers/block/brd.c | |
9db5579b | 8813 | |
9e95ce27 | 8814 | RANDOM NUMBER DRIVER |
0624bcaa | 8815 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 8816 | S: Maintained |
679655da | 8817 | F: drivers/char/random.c |
9e95ce27 | 8818 | |
394b701c | 8819 | RAPIDIO SUBSYSTEM |
8b58be88 | 8820 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 8821 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 8822 | S: Maintained |
679655da | 8823 | F: drivers/rapidio/ |
394b701c | 8824 | |
e2d1d6c0 | 8825 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 8826 | L: linux-wireless@vger.kernel.org |
f52a5490 | 8827 | S: Orphan |
679655da | 8828 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
8829 | |
8830 | RCUTORTURE MODULE | |
e0198b29 | 8831 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 8832 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 8833 | L: linux-kernel@vger.kernel.org |
f9094d8e | 8834 | S: Supported |
08deed1e | 8835 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 8836 | F: Documentation/RCU/torture.txt |
34e2d560 | 8837 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 8838 | |
c87b9c60 PM |
8839 | RCUTORTURE TEST FRAMEWORK |
8840 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 8841 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8842 | R: Steven Rostedt <rostedt@goodmis.org> |
8843 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 8844 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 8845 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
8846 | S: Supported |
8847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
8848 | F: tools/testing/selftests/rcutorture | |
8849 | ||
c1f766b5 | 8850 | RDC R-321X SoC |
8b58be88 | 8851 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
8852 | S: Maintained |
8853 | ||
db17f395 | 8854 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 8855 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
8856 | L: netdev@vger.kernel.org |
8857 | S: Maintained | |
58565a35 | 8858 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 8859 | |
a09ed661 | 8860 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 8861 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 8862 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 8863 | S: Supported |
679655da | 8864 | F: net/rds/ |
a09ed661 | 8865 | |
595182bc | 8866 | READ-COPY UPDATE (RCU) |
8b58be88 | 8867 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 8868 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8869 | R: Steven Rostedt <rostedt@goodmis.org> |
8870 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 8871 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 8872 | L: linux-kernel@vger.kernel.org |
9fab9787 | 8873 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 8874 | S: Supported |
08deed1e | 8875 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 8876 | F: Documentation/RCU/ |
9fab9787 | 8877 | X: Documentation/RCU/torture.txt |
f9094d8e | 8878 | F: include/linux/rcu* |
4102adab PM |
8879 | X: include/linux/srcu.h |
8880 | F: kernel/rcu/ | |
34e2d560 | 8881 | X: kernel/torture.c |
595182bc | 8882 | |
0c86edc0 | 8883 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 8884 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 8885 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 8886 | L: rtc-linux@googlegroups.com |
8a6e2535 | 8887 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 8888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 8889 | S: Maintained |
679655da JP |
8890 | F: Documentation/rtc.txt |
8891 | F: drivers/rtc/ | |
8892 | F: include/linux/rtc.h | |
c117ab84 | 8893 | F: include/uapi/linux/rtc.h |
0c86edc0 | 8894 | |
0e400c53 MB |
8895 | REALTEK AUDIO CODECS |
8896 | M: Bard Liao <bardliao@realtek.com> | |
8897 | M: Oder Chiou <oder_chiou@realtek.com> | |
8898 | S: Maintained | |
8899 | F: sound/soc/codecs/rt* | |
8900 | F: include/sound/rt*.h | |
8901 | ||
1da177e4 | 8902 | REISERFS FILE SYSTEM |
76c4e5ea | 8903 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 8904 | S: Supported |
679655da | 8905 | F: fs/reiserfs/ |
1da177e4 | 8906 | |
b83a313b | 8907 | REGISTER MAP ABSTRACTION |
b02e48f2 | 8908 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 8909 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
8910 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
8911 | S: Supported | |
8912 | F: drivers/base/regmap/ | |
8913 | F: include/linux/regmap.h | |
8914 | ||
400e64df OBC |
8915 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
8916 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 8917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
8918 | S: Maintained |
8919 | F: drivers/remoteproc/ | |
8920 | F: Documentation/remoteproc.txt | |
6fc26488 | 8921 | F: include/linux/remoteproc.h |
400e64df | 8922 | |
d8115db5 OBC |
8923 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
8924 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
8926 | S: Maintained | |
8927 | F: drivers/rpmsg/ | |
8928 | F: Documentation/rpmsg.txt | |
8929 | F: include/linux/rpmsg.h | |
8930 | ||
1b0fe6be PZ |
8931 | RESET CONTROLLER FRAMEWORK |
8932 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
8933 | S: Maintained | |
8934 | F: drivers/reset/ | |
8935 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 8936 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
8937 | F: include/linux/reset.h |
8938 | F: include/linux/reset-controller.h | |
8939 | ||
e0897645 | 8940 | RFKILL |
8b58be88 | 8941 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 8942 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
8943 | W: http://wireless.kernel.org/ |
8944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
8945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 8946 | S: Maintained |
505c9247 | 8947 | F: Documentation/rfkill.txt |
80811493 | 8948 | F: net/rfkill/ |
e0897645 | 8949 | |
933685ca TG |
8950 | RHASHTABLE |
8951 | M: Thomas Graf <tgraf@suug.ch> | |
8952 | L: netdev@vger.kernel.org | |
8953 | S: Maintained | |
8954 | F: lib/rhashtable.c | |
8955 | F: include/linux/rhashtable.h | |
8956 | ||
67e054e9 ML |
8957 | RICOH SMARTMEDIA/XD DRIVER |
8958 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8959 | S: Maintained | |
21c26f50 JP |
8960 | F: drivers/mtd/nand/r852.c |
8961 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 8962 | |
92634125 ML |
8963 | RICOH R5C592 MEMORYSTICK DRIVER |
8964 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8965 | S: Maintained | |
8966 | F: drivers/memstick/host/r592.* | |
8967 | ||
27f1d2f9 SA |
8968 | ROCCAT DRIVERS |
8969 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
8970 | W: http://sourceforge.net/projects/roccat/ | |
8971 | S: Maintained | |
8972 | F: drivers/hid/hid-roccat* | |
8973 | F: include/linux/hid-roccat* | |
8974 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
8975 | ||
4b8ac966 JP |
8976 | ROCKER DRIVER |
8977 | M: Jiri Pirko <jiri@resnulli.us> | |
8978 | M: Scott Feldman <sfeldma@gmail.com> | |
8979 | L: netdev@vger.kernel.org | |
8980 | S: Supported | |
8981 | F: drivers/net/ethernet/rocker/ | |
8982 | ||
1da177e4 LT |
8983 | ROCKETPORT DRIVER |
8984 | P: Comtrol Corp. | |
1da177e4 LT |
8985 | W: http://www.comtrol.com |
8986 | S: Maintained | |
679655da | 8987 | F: Documentation/serial/rocket.txt |
c897401b | 8988 | F: drivers/tty/rocket* |
1da177e4 | 8989 | |
7645c2f4 KC |
8990 | ROCKETPORT EXPRESS/INFINITY DRIVER |
8991 | M: Kevin Cernekee <cernekee@gmail.com> | |
8992 | L: linux-serial@vger.kernel.org | |
8993 | S: Odd Fixes | |
8994 | F: drivers/tty/serial/rp2.* | |
8995 | ||
1da177e4 | 8996 | ROSE NETWORK LAYER |
8b58be88 | 8997 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8998 | L: linux-hams@vger.kernel.org |
d34cb28a | 8999 | W: http://www.linux-ax25.org/ |
1da177e4 | 9000 | S: Maintained |
679655da | 9001 | F: include/net/rose.h |
c117ab84 | 9002 | F: include/uapi/linux/rose.h |
679655da | 9003 | F: net/rose/ |
1da177e4 | 9004 | |
91952bc0 AP |
9005 | RTL2830 MEDIA DRIVER |
9006 | M: Antti Palosaari <crope@iki.fi> | |
9007 | L: linux-media@vger.kernel.org | |
9008 | W: http://linuxtv.org/ | |
9009 | W: http://palosaari.fi/linux/ | |
9010 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9011 | T: git git://linuxtv.org/anttip/media_tree.git | |
9012 | S: Maintained | |
9013 | F: drivers/media/dvb-frontends/rtl2830* | |
9014 | ||
27a0aacf AP |
9015 | RTL2832 MEDIA DRIVER |
9016 | M: Antti Palosaari <crope@iki.fi> | |
9017 | L: linux-media@vger.kernel.org | |
9018 | W: http://linuxtv.org/ | |
9019 | W: http://palosaari.fi/linux/ | |
9020 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9021 | T: git git://linuxtv.org/anttip/media_tree.git | |
9022 | S: Maintained | |
9023 | F: drivers/media/dvb-frontends/rtl2832* | |
9024 | ||
ba6e6f6e AP |
9025 | RTL2832_SDR MEDIA DRIVER |
9026 | M: Antti Palosaari <crope@iki.fi> | |
9027 | L: linux-media@vger.kernel.org | |
9028 | W: http://linuxtv.org/ | |
9029 | W: http://palosaari.fi/linux/ | |
9030 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9031 | T: git git://linuxtv.org/anttip/media_tree.git | |
9032 | S: Maintained | |
b4bb1c28 | 9033 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 9034 | |
59840488 | 9035 | RTL8180 WIRELESS DRIVER |
605bebe2 | 9036 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9037 | W: http://wireless.kernel.org/ |
54e5881d | 9038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 9039 | S: Orphan |
3cfeb0c3 | 9040 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 9041 | |
59840488 | 9042 | RTL8187 WIRELESS DRIVER |
9f0939bf | 9043 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
9044 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
9045 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 9046 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9047 | W: http://wireless.kernel.org/ |
54e5881d | 9048 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 9049 | S: Maintained |
3cfeb0c3 | 9050 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 9051 | |
3cf0c8ad LF |
9052 | RTL8192CE WIRELESS DRIVER |
9053 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
9054 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
9055 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 9056 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
9057 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
9058 | S: Maintained | |
9059 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 9060 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 9061 | |
26f1fad2 JS |
9062 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
9063 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
9064 | L: linux-wireless@vger.kernel.org | |
9065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211 | |
9066 | S: Maintained | |
9067 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
9068 | ||
9eb8ef74 | 9069 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 9070 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 9071 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 9072 | S: Maintained |
8a61f013 | 9073 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 9074 | |
1da177e4 | 9075 | S390 |
8b58be88 JP |
9076 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
9077 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 9078 | L: linux-s390@vger.kernel.org |
5238da45 HC |
9079 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9080 | S: Supported | |
679655da | 9081 | F: arch/s390/ |
a968cd3e | 9082 | F: drivers/s390/ |
3bfe6858 JN |
9083 | F: Documentation/s390/ |
9084 | F: Documentation/DocBook/s390* | |
5238da45 | 9085 | |
322986ca SO |
9086 | S390 COMMON I/O LAYER |
9087 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
9088 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
9089 | L: linux-s390@vger.kernel.org | |
9090 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9091 | S: Supported | |
9092 | F: drivers/s390/cio/ | |
9093 | ||
9094 | S390 DASD DRIVER | |
9095 | M: Stefan Weinhuber <wein@de.ibm.com> | |
9096 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
9097 | L: linux-s390@vger.kernel.org | |
9098 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9099 | S: Supported | |
9100 | F: drivers/s390/block/dasd* | |
9101 | F: block/partitions/ibm.c | |
9102 | ||
5238da45 | 9103 | S390 NETWORK DRIVERS |
8b58be88 | 9104 | M: Ursula Braun <ursula.braun@de.ibm.com> |
d58140cc | 9105 | L: linux-s390@vger.kernel.org |
5238da45 HC |
9106 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9107 | S: Supported | |
679655da | 9108 | F: drivers/s390/net/ |
5238da45 | 9109 | |
322986ca SO |
9110 | S390 PCI SUBSYSTEM |
9111 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
9112 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
9113 | L: linux-s390@vger.kernel.org | |
9114 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9115 | S: Supported | |
9116 | F: arch/s390/pci/ | |
9117 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
9118 | ||
feed9b62 | 9119 | S390 ZCRYPT DRIVER |
5c8d0983 | 9120 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 9121 | L: linux-s390@vger.kernel.org |
a968cd3e | 9122 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 9123 | S: Supported |
d5ca6918 | 9124 | F: drivers/s390/crypto/ |
feed9b62 | 9125 | |
5238da45 | 9126 | S390 ZFCP DRIVER |
d38e19d0 | 9127 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 9128 | L: linux-s390@vger.kernel.org |
5238da45 | 9129 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 9130 | S: Supported |
679655da | 9131 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 9132 | |
dd96df2c | 9133 | S390 IUCV NETWORK LAYER |
8b58be88 | 9134 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
9135 | L: linux-s390@vger.kernel.org |
9136 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9137 | S: Supported | |
679655da JP |
9138 | F: drivers/s390/net/*iucv* |
9139 | F: include/net/iucv/ | |
9140 | F: net/iucv/ | |
dd96df2c | 9141 | |
8128f23c GS |
9142 | S390 IOMMU (PCI) |
9143 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
9144 | L: linux-s390@vger.kernel.org | |
9145 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9146 | S: Supported | |
9147 | F: drivers/iommu/s390-iommu.c | |
9148 | ||
4dde7f75 | 9149 | S3C24XX SD/MMC Driver |
8b58be88 | 9150 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 9151 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 9152 | S: Supported |
679655da | 9153 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 9154 | |
1f15a229 HV |
9155 | SAA6588 RDS RECEIVER DRIVER |
9156 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9157 | L: linux-media@vger.kernel.org | |
9158 | T: git git://linuxtv.org/media_tree.git | |
9159 | W: http://linuxtv.org | |
9160 | S: Odd Fixes | |
9161 | F: drivers/media/i2c/saa6588* | |
9162 | ||
98ed12e6 | 9163 | SAA7134 VIDEO4LINUX DRIVER |
009a5410 | 9164 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
98ed12e6 MCC |
9165 | L: linux-media@vger.kernel.org |
9166 | W: http://linuxtv.org | |
9167 | T: git git://linuxtv.org/media_tree.git | |
9168 | S: Odd fixes | |
e42bf501 | 9169 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
9170 | F: drivers/media/pci/saa7134/ |
9171 | ||
1da177e4 | 9172 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 9173 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 9174 | L: linux-media@vger.kernel.org |
275ffde4 | 9175 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 9176 | S: Maintained |
90d72ac6 MCC |
9177 | F: drivers/media/common/saa7146/ |
9178 | F: drivers/media/pci/saa7146/ | |
9179 | F: include/media/saa7146* | |
1da177e4 | 9180 | |
92304a40 | 9181 | SAMSUNG LAPTOP DRIVER |
5909c654 | 9182 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
9183 | L: platform-driver-x86@vger.kernel.org |
9184 | S: Maintained | |
9185 | F: drivers/platform/x86/samsung-laptop.c | |
9186 | ||
4a109cc0 | 9187 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 9188 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
9189 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9190 | S: Supported | |
14430813 | 9191 | F: sound/soc/samsung/ |
4a109cc0 | 9192 | |
0d89a28b | 9193 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 9194 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
9195 | L: linux-fbdev@vger.kernel.org |
9196 | S: Maintained | |
8a61f013 | 9197 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 9198 | |
b40f0632 | 9199 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 9200 | M: Sangbeom Kim <sbkim73@samsung.com> |
b40f0632 | 9201 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
f69d3a17 | 9202 | L: linux-kernel@vger.kernel.org |
b40f0632 | 9203 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
9204 | S: Supported |
9205 | F: drivers/mfd/sec*.c | |
9206 | F: drivers/regulator/s2m*.c | |
9207 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
9208 | F: drivers/clk/clk-s2mps11.c |
9209 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 9210 | F: include/linux/mfd/samsung/ |
b40f0632 KK |
9211 | F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt |
9212 | F: Documentation/devicetree/bindings/mfd/s2mp*.txt | |
f69d3a17 | 9213 | |
038f5c4b SN |
9214 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
9215 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9216 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
9217 | L: linux-media@vger.kernel.org | |
9218 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
9219 | S: Supported | |
9220 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 9221 | |
6fd86ab2 SN |
9222 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
9223 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
9224 | L: linux-media@vger.kernel.org | |
9225 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9226 | S: Maintained | |
9227 | F: drivers/media/platform/s3c-camif/ | |
9228 | F: include/media/s3c_camif.h | |
9229 | ||
b84ef24e AH |
9230 | SAMSUNG S5C73M3 CAMERA DRIVER |
9231 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9232 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9233 | L: linux-media@vger.kernel.org | |
9234 | S: Supported | |
9235 | F: drivers/media/i2c/s5c73m3/* | |
9236 | ||
7d459937 AH |
9237 | SAMSUNG S5K5BAF CAMERA DRIVER |
9238 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9239 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9240 | L: linux-media@vger.kernel.org | |
9241 | S: Supported | |
9242 | F: drivers/media/i2c/s5k5baf.c | |
9243 | ||
c04c674f RB |
9244 | SAMSUNG S3FWRN5 NFC DRIVER |
9245 | M: Robert Baldyga <r.baldyga@samsung.com> | |
9246 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
9247 | S: Supported | |
9248 | F: drivers/nfc/s3fwrn5 | |
9249 | ||
310e39c9 | 9250 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
9251 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
9252 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
9253 | S: Supported |
9254 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9255 | F: drivers/clk/samsung/ | |
9256 | ||
66890ed6 BA |
9257 | SAMSUNG SXGBE DRIVERS |
9258 | M: Byungho An <bh74.an@samsung.com> | |
9259 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
9260 | M: Vipul Pandya <vipul.pandya@samsung.com> |
9261 | S: Supported | |
9262 | L: netdev@vger.kernel.org | |
9263 | F: drivers/net/ethernet/samsung/sxgbe/ | |
9264 | ||
93c537af LM |
9265 | SAMSUNG THERMAL DRIVER |
9266 | M: Lukasz Majewski <l.majewski@samsung.com> | |
9267 | L: linux-pm@vger.kernel.org | |
9268 | L: linux-samsung-soc@vger.kernel.org | |
9269 | S: Supported | |
9270 | T: https://github.com/lmajewski/linux-samsung-thermal.git | |
9271 | F: drivers/thermal/samsung/ | |
9272 | ||
e296cd32 KD |
9273 | SAMSUNG USB2 PHY DRIVER |
9274 | M: Kamil Debski <k.debski@samsung.com> | |
9275 | L: linux-kernel@vger.kernel.org | |
9276 | S: Supported | |
9277 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
9278 | F: Documentation/phy/samsung-usb2.txt | |
9279 | F: drivers/phy/phy-exynos4210-usb2.c | |
9280 | F: drivers/phy/phy-exynos4x12-usb2.c | |
9281 | F: drivers/phy/phy-exynos5250-usb2.c | |
9282 | F: drivers/phy/phy-s5pv210-usb2.c | |
9283 | F: drivers/phy/phy-samsung-usb2.c | |
9284 | F: drivers/phy/phy-samsung-usb2.h | |
9285 | ||
ca749e2a | 9286 | SERIAL DRIVERS |
5e30bbb7 | 9287 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 9288 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 9289 | S: Maintained |
14430813 | 9290 | F: drivers/tty/serial/ |
ca749e2a | 9291 | |
aecb7b64 | 9292 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 9293 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 9294 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 9295 | S: Maintained |
1fb200d6 | 9296 | F: include/linux/dma/dw.h |
3d598f47 | 9297 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 9298 | F: drivers/dma/dw/ |
aecb7b64 | 9299 | |
058999cc LP |
9300 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
9301 | M: Lars Persson <lars.persson@axis.com> | |
9302 | L: netdev@vger.kernel.org | |
9303 | S: Supported | |
9304 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
9305 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
9306 | ||
fc531d98 WS |
9307 | SYNOPSYS DESIGNWARE I2C DRIVER |
9308 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
9309 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> | |
9310 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9311 | L: linux-i2c@vger.kernel.org | |
9312 | S: Maintained | |
9313 | F: drivers/i2c/busses/i2c-designware-* | |
9314 | F: include/linux/platform_data/i2c-designware.h | |
9315 | ||
f9e37137 SJ |
9316 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
9317 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
9318 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
9319 | L: linux-mmc@vger.kernel.org | |
9320 | S: Maintained | |
9321 | F: include/linux/mmc/dw_mmc.h | |
9322 | F: drivers/mmc/host/dw_mmc* | |
9323 | ||
a961e698 AS |
9324 | SYSTEM TRACE MODULE CLASS |
9325 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
9326 | S: Maintained | |
9327 | F: Documentation/trace/stm.txt | |
9328 | F: drivers/hwtracing/stm/ | |
9329 | F: include/linux/stm.h | |
9330 | F: include/uapi/linux/stm.h | |
9331 | ||
1db121d6 AN |
9332 | THUNDERBOLT DRIVER |
9333 | M: Andreas Noever <andreas.noever@gmail.com> | |
9334 | S: Maintained | |
9335 | F: drivers/thunderbolt/ | |
9336 | ||
9222d247 | 9337 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 9338 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 9339 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9340 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9341 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
9342 | S: Supported |
9343 | F: include/linux/clocksource.h | |
9344 | F: include/linux/time.h | |
9345 | F: include/linux/timex.h | |
c117ab84 CEB |
9346 | F: include/uapi/linux/time.h |
9347 | F: include/uapi/linux/timex.h | |
88606e80 TG |
9348 | F: kernel/time/clocksource.c |
9349 | F: kernel/time/time*.c | |
9350 | F: kernel/time/ntp.c | |
7fe5f1c1 | 9351 | F: tools/testing/selftests/timers/ |
88606e80 | 9352 | |
1da177e4 | 9353 | SC1200 WDT DRIVER |
b300645a | 9354 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 9355 | S: Maintained |
679655da | 9356 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
9357 | |
9358 | SCHEDULER | |
dd9b238c | 9359 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 9360 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 9361 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 9363 | S: Maintained |
95c0d71d | 9364 | F: kernel/sched/ |
679655da | 9365 | F: include/linux/sched.h |
c117ab84 | 9366 | F: include/uapi/linux/sched.h |
c2eb505b | 9367 | F: include/linux/wait.h |
1da177e4 | 9368 | |
6bcf6737 | 9369 | SCORE ARCHITECTURE |
ed38665e | 9370 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 9371 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 9372 | W: http://www.sunplus.com |
6bcf6737 | 9373 | S: Supported |
a2681a75 | 9374 | F: arch/score/ |
6bcf6737 | 9375 | |
80f390ea SH |
9376 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
9377 | M: Sudeep Holla <sudeep.holla@arm.com> | |
9378 | L: linux-arm-kernel@lists.infradead.org | |
9379 | S: Maintained | |
9380 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 9381 | F: drivers/clk/clk-scpi.c |
8def3103 | 9382 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
9383 | F: drivers/firmware/arm_scpi.c |
9384 | F: include/linux/scpi_protocol.h | |
80f390ea | 9385 | |
1da177e4 | 9386 | SCSI CDROM DRIVER |
8b58be88 | 9387 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9388 | L: linux-scsi@vger.kernel.org |
9389 | W: http://www.kernel.dk | |
9390 | S: Maintained | |
679655da | 9391 | F: drivers/scsi/sr* |
1da177e4 | 9392 | |
fb50a83d | 9393 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 9394 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
9395 | L: linux-rdma@vger.kernel.org |
9396 | S: Supported | |
9397 | W: http://www.openfabrics.org | |
9398 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
9399 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
9400 | F: drivers/infiniband/ulp/srp/ | |
9401 | F: include/scsi/srp.h | |
9402 | ||
1da177e4 | 9403 | SCSI SG DRIVER |
8b58be88 | 9404 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 9405 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 9406 | W: http://sg.danny.cz/sg |
1da177e4 | 9407 | S: Maintained |
59ab3c93 | 9408 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
9409 | F: drivers/scsi/sg.c |
9410 | F: include/scsi/sg.h | |
1da177e4 LT |
9411 | |
9412 | SCSI SUBSYSTEM | |
0351b8f8 | 9413 | M: "James E.J. Bottomley" <JBottomley@odin.com> |
1da177e4 | 9414 | L: linux-scsi@vger.kernel.org |
0351b8f8 | 9415 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
1da177e4 | 9416 | S: Maintained |
679655da JP |
9417 | F: drivers/scsi/ |
9418 | F: include/scsi/ | |
1da177e4 LT |
9419 | |
9420 | SCSI TAPE DRIVER | |
8b58be88 | 9421 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
9422 | L: linux-scsi@vger.kernel.org |
9423 | S: Maintained | |
679655da | 9424 | F: Documentation/scsi/st.txt |
f7269cfc JD |
9425 | F: drivers/scsi/st.* |
9426 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
9427 | |
9428 | SCTP PROTOCOL | |
8b6efb75 | 9429 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 9430 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 9431 | L: linux-sctp@vger.kernel.org |
5f85813c | 9432 | W: http://lksctp.sourceforge.net |
8b6efb75 | 9433 | S: Maintained |
679655da JP |
9434 | F: Documentation/networking/sctp.txt |
9435 | F: include/linux/sctp.h | |
4d58c025 | 9436 | F: include/uapi/linux/sctp.h |
679655da JP |
9437 | F: include/net/sctp/ |
9438 | F: net/sctp/ | |
1da177e4 LT |
9439 | |
9440 | SCx200 CPU SUPPORT | |
8b58be88 | 9441 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9442 | S: Odd Fixes |
679655da | 9443 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 9444 | F: arch/x86/platform/scx200/ |
679655da JP |
9445 | F: drivers/watchdog/scx200_wdt.c |
9446 | F: drivers/i2c/busses/scx200* | |
9447 | F: drivers/mtd/maps/scx200_docflash.c | |
9448 | F: include/linux/scx200.h | |
1662d32c JC |
9449 | |
9450 | SCx200 GPIO DRIVER | |
8b58be88 | 9451 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9452 | S: Maintained |
679655da JP |
9453 | F: drivers/char/scx200_gpio.c |
9454 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
9455 | |
9456 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 9457 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9458 | S: Maintained |
679655da | 9459 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 9460 | |
6a36913a | 9461 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 9462 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
9463 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
9464 | S: Maintained | |
679655da | 9465 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 9466 | |
e7839f25 | 9467 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
7a241d6e | 9468 | L: linux-mmc@vger.kernel.org |
a1cb1d11 | 9469 | S: Orphan |
7a241d6e | 9470 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 9471 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 9472 | |
c04f9d61 KC |
9473 | SECURE COMPUTING |
9474 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
9475 | R: Andy Lutomirski <luto@amacapital.net> |
9476 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
9477 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
9478 | S: Supported | |
9479 | F: kernel/seccomp.c | |
9480 | F: include/uapi/linux/seccomp.h | |
9481 | F: include/linux/seccomp.h | |
c99ee51a | 9482 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
9483 | K: \bsecure_computing |
9484 | K: \bTIF_SECCOMP\b | |
9485 | ||
0d1bb41a | 9486 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 9487 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 9488 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 9489 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 9490 | S: Maintained |
dc524882 | 9491 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 9492 | |
c63b3cba | 9493 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 9494 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 9495 | L: spear-devel@list.st.com |
c63b3cba VK |
9496 | L: linux-mmc@vger.kernel.org |
9497 | S: Maintained | |
9498 | F: drivers/mmc/host/sdhci-spear.c | |
9499 | ||
8711cca2 | 9500 | SECURITY SUBSYSTEM |
9b45c0d2 | 9501 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 9502 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 9503 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 9504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 9505 | W: http://kernsec.org/ |
8711cca2 | 9506 | S: Supported |
7d2c86b5 | 9507 | F: security/ |
8711cca2 | 9508 | |
1da177e4 | 9509 | SECURITY CONTACT |
8b58be88 | 9510 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
9511 | S: Supported |
9512 | ||
9513 | SELINUX SECURITY MODULE | |
e0238b4c | 9514 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 9515 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 9516 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 9517 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 9518 | W: http://selinuxproject.org |
5a5f2acf | 9519 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 9520 | S: Supported |
679655da JP |
9521 | F: include/linux/selinux* |
9522 | F: security/selinux/ | |
6bde95ce | 9523 | F: scripts/selinux/ |
1da177e4 | 9524 | |
c1c124e9 JJ |
9525 | APPARMOR SECURITY MODULE |
9526 | M: John Johansen <john.johansen@canonical.com> | |
9527 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
9528 | W: apparmor.wiki.kernel.org | |
9529 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
9530 | S: Supported | |
9531 | F: security/apparmor/ | |
9532 | ||
730daa16 KC |
9533 | YAMA SECURITY MODULE |
9534 | M: Kees Cook <keescook@chromium.org> | |
9535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
9536 | S: Supported | |
9537 | F: security/yama/ | |
9538 | ||
cef2cf07 | 9539 | SENSABLE PHANTOM |
8b58be88 | 9540 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 9541 | S: Maintained |
679655da | 9542 | F: drivers/misc/phantom.c |
c117ab84 | 9543 | F: include/uapi/linux/phantom.h |
cef2cf07 | 9544 | |
6733b39a | 9545 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
4627de93 | 9546 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
9d27e216 KM |
9547 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
9548 | M: John Soni Jose <sony.john@avagotech.com> | |
3387f656 | 9549 | L: linux-scsi@vger.kernel.org |
4627de93 | 9550 | W: http://www.avagotech.com |
3387f656 JP |
9551 | S: Supported |
9552 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 9553 | |
6938f855 SP |
9554 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER |
9555 | M: Sathya Perla <sathya.perla@avagotech.com> | |
9556 | M: Ajit Khaparde <ajit.khaparde@avagotech.com> | |
9557 | M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com> | |
9558 | M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com> | |
7d2c86b5 | 9559 | L: netdev@vger.kernel.org |
fea3af67 | 9560 | W: http://www.emulex.com |
7d2c86b5 | 9561 | S: Supported |
9aebddd1 | 9562 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 9563 | |
d2928a8c | 9564 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
9565 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
9566 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
9567 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
9568 | L: linux-rdma@vger.kernel.org |
9569 | W: http://www.emulex.com | |
9570 | S: Supported | |
9571 | F: drivers/infiniband/hw/ocrdma/ | |
9572 | ||
8ceee660 | 9573 | SFC NETWORK DRIVER |
c06f51ea | 9574 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 9575 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 9576 | L: netdev@vger.kernel.org |
8ceee660 | 9577 | S: Supported |
874aeea5 | 9578 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 9579 | |
e2d1d6c0 | 9580 | SGI GRU DRIVER |
cc883afc | 9581 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 9582 | S: Maintained |
679655da | 9583 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
9584 | |
9585 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 9586 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
9587 | L: linux-ia64@vger.kernel.org |
9588 | S: Supported | |
679655da | 9589 | F: Documentation/ia64/serial.txt |
df621252 | 9590 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 9591 | F: include/linux/ioc?.h |
e2d1d6c0 | 9592 | |
75312619 | 9593 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
9594 | M: Cliff Whickman <cpw@sgi.com> |
9595 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 9596 | S: Maintained |
679655da | 9597 | F: drivers/misc/sgi-xp/ |
75312619 | 9598 | |
46eacf3b AP |
9599 | SI2157 MEDIA DRIVER |
9600 | M: Antti Palosaari <crope@iki.fi> | |
9601 | L: linux-media@vger.kernel.org | |
9602 | W: http://linuxtv.org/ | |
9603 | W: http://palosaari.fi/linux/ | |
9604 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9605 | T: git git://linuxtv.org/anttip/media_tree.git | |
9606 | S: Maintained | |
9607 | F: drivers/media/tuners/si2157* | |
9608 | ||
75e2d5ba AP |
9609 | SI2168 MEDIA DRIVER |
9610 | M: Antti Palosaari <crope@iki.fi> | |
9611 | L: linux-media@vger.kernel.org | |
9612 | W: http://linuxtv.org/ | |
9613 | W: http://palosaari.fi/linux/ | |
9614 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9615 | T: git git://linuxtv.org/anttip/media_tree.git | |
9616 | S: Maintained | |
9617 | F: drivers/media/dvb-frontends/si2168* | |
9618 | ||
49cc629d HV |
9619 | SI470X FM RADIO RECEIVER I2C DRIVER |
9620 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9621 | L: linux-media@vger.kernel.org | |
9622 | T: git git://linuxtv.org/media_tree.git | |
9623 | W: http://linuxtv.org | |
9624 | S: Odd Fixes | |
9625 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
9626 | ||
9627 | SI470X FM RADIO RECEIVER USB DRIVER | |
9628 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9629 | L: linux-media@vger.kernel.org | |
9630 | T: git git://linuxtv.org/media_tree.git | |
9631 | W: http://linuxtv.org | |
9632 | S: Maintained | |
9633 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
9634 | F: drivers/media/radio/si470x/radio-si470x.h | |
9635 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
9636 | ||
c937ca03 EV |
9637 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
9638 | M: Eduardo Valentin <edubezval@gmail.com> | |
9639 | L: linux-media@vger.kernel.org | |
9640 | T: git git://linuxtv.org/media_tree.git | |
9641 | W: http://linuxtv.org | |
9642 | S: Odd Fixes | |
99995ded | 9643 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
9644 | |
9645 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
9646 | M: Eduardo Valentin <edubezval@gmail.com> | |
9647 | L: linux-media@vger.kernel.org | |
9648 | T: git git://linuxtv.org/media_tree.git | |
9649 | W: http://linuxtv.org | |
9650 | S: Odd Fixes | |
99995ded DR |
9651 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
9652 | ||
9653 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
9654 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9655 | L: linux-media@vger.kernel.org | |
9656 | T: git git://linuxtv.org/media_tree.git | |
9657 | W: http://linuxtv.org | |
9658 | S: Maintained | |
9659 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 9660 | |
beb91d46 | 9661 | SIANO DVB DRIVER |
009a5410 | 9662 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
beb91d46 MCC |
9663 | L: linux-media@vger.kernel.org |
9664 | W: http://linuxtv.org | |
9665 | T: git git://linuxtv.org/media_tree.git | |
9666 | S: Odd fixes | |
9667 | F: drivers/media/common/siano/ | |
beb91d46 | 9668 | F: drivers/media/usb/siano/ |
beb91d46 | 9669 | F: drivers/media/usb/siano/ |
14430813 | 9670 | F: drivers/media/mmc/siano/ |
beb91d46 | 9671 | |
6f15b602 HG |
9672 | SIMPLEFB FB DRIVER |
9673 | M: Hans de Goede <hdegoede@redhat.com> | |
9674 | L: linux-fbdev@vger.kernel.org | |
9675 | S: Maintained | |
2d799dde | 9676 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
9677 | F: drivers/video/fbdev/simplefb.c |
9678 | F: include/linux/platform_data/simplefb.h | |
9679 | ||
b618b69c | 9680 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 9681 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9682 | S: Orphan |
b618b69c | 9683 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
9684 | |
9685 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 9686 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9687 | S: Orphan |
b618b69c GL |
9688 | F: drivers/media/platform/sh_vou.c |
9689 | F: include/media/sh_vou.h | |
9690 | ||
6349d997 | 9691 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 9692 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
9693 | L: sfi-devel@simplefirmware.org |
9694 | W: http://simplefirmware.org/ | |
9695 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 9696 | S: Supported |
943fc810 | 9697 | F: arch/x86/platform/sfi/ |
6349d997 LB |
9698 | F: drivers/sfi/ |
9699 | F: include/linux/sfi*.h | |
e2d1d6c0 | 9700 | |
1da177e4 LT |
9701 | SIMTEC EB110ATX (Chalice CATS) |
9702 | P: Ben Dooks | |
b16957c6 BD |
9703 | P: Vincent Sanders <vince@simtec.co.uk> |
9704 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9705 | W: http://www.simtec.co.uk/products/EB110ATX/ |
9706 | S: Supported | |
9707 | ||
9708 | SIMTEC EB2410ITX (BAST) | |
9709 | P: Ben Dooks | |
b16957c6 BD |
9710 | P: Vincent Sanders <vince@simtec.co.uk> |
9711 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9712 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
9713 | S: Supported | |
15dba387 JP |
9714 | F: arch/arm/mach-s3c24xx/mach-bast.c |
9715 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
9716 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 9717 | |
4c5adde7 | 9718 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 9719 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 9720 | M: Kevin Hilman <khilman@deeprootsystems.com> |
c9f46a85 | 9721 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 9722 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 9723 | S: Supported |
14430813 | 9724 | F: arch/arm/mach-davinci/ |
046d0a37 | 9725 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 9726 | |
8d4b3f08 | 9727 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 9728 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 9729 | L: linux-media@vger.kernel.org |
8d4b3f08 LP |
9730 | W: http://linuxtv.org/ |
9731 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9732 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 9733 | S: Maintained |
8d4b3f08 LP |
9734 | F: drivers/media/platform/davinci/ |
9735 | F: include/media/davinci/ | |
9736 | ||
417d2e50 | 9737 | TI AM437X VPFE DRIVER |
e43cdb56 | 9738 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 BP |
9739 | L: linux-media@vger.kernel.org |
9740 | W: http://linuxtv.org/ | |
9741 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9742 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9743 | S: Maintained | |
9744 | F: drivers/media/platform/am437x/ | |
9745 | ||
c4c0283a | 9746 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 9747 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a BP |
9748 | L: linux-media@vger.kernel.org |
9749 | W: http://linuxtv.org/ | |
9750 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9751 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9752 | S: Maintained | |
9753 | F: drivers/media/i2c/ov2659.c | |
9754 | F: include/media/ov2659.h | |
9755 | ||
3a6779f5 SM |
9756 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
9757 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
9758 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
9759 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
9760 | L: linux-fbdev@vger.kernel.org | |
9761 | S: Maintained | |
9762 | F: drivers/video/fbdev/sm712* | |
9763 | F: Documentation/fb/sm712fb.txt | |
9764 | ||
92aab3c0 | 9765 | SIS 190 ETHERNET DRIVER |
8b58be88 | 9766 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
9767 | L: netdev@vger.kernel.org |
9768 | S: Maintained | |
8c7de408 | 9769 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 9770 | |
1da177e4 | 9771 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 9772 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 9773 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 9774 | L: netdev@vger.kernel.org |
1da177e4 | 9775 | S: Maintained |
8c7de408 | 9776 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
9777 | |
9778 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 9779 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 9780 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 9781 | S: Maintained |
679655da | 9782 | F: Documentation/fb/sisfb.txt |
8a61f013 | 9783 | F: drivers/video/fbdev/sis/ |
679655da | 9784 | F: include/video/sisfb.h |
1da177e4 LT |
9785 | |
9786 | SIS USB2VGA DRIVER | |
8b58be88 | 9787 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
9788 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
9789 | S: Maintained | |
679655da | 9790 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 9791 | |
415ad26d | 9792 | SLAB ALLOCATOR |
16e943bf | 9793 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 9794 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
9795 | M: David Rientjes <rientjes@google.com> |
9796 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
9797 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
9798 | L: linux-mm@kvack.org |
9799 | S: Maintained | |
679655da | 9800 | F: include/linux/sl?b*.h |
16e943bf | 9801 | F: mm/sl?b* |
415ad26d | 9802 | |
9fab9787 | 9803 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 9804 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 9805 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 9806 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9807 | R: Steven Rostedt <rostedt@goodmis.org> |
9808 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 9809 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
9810 | W: http://www.rdrop.com/users/paulmck/RCU/ |
9811 | S: Supported | |
9812 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
9813 | F: include/linux/srcu.h |
9814 | F: kernel/rcu/srcu.c | |
9fab9787 | 9815 | |
66372841 CS |
9816 | SMACK SECURITY MODULE |
9817 | M: Casey Schaufler <casey@schaufler-ca.com> | |
9818 | L: linux-security-module@vger.kernel.org | |
9819 | W: http://schaufler-ca.com | |
9820 | T: git git://git.gitorious.org/smack-next/kernel.git | |
9821 | S: Maintained | |
9822 | F: Documentation/security/Smack.txt | |
9823 | F: security/smack/ | |
9824 | ||
20651e0b | 9825 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
9826 | M: Kevin Hilman <khilman@kernel.org> |
9827 | M: Nishanth Menon <nm@ti.com> | |
9828 | S: Maintained | |
20651e0b | 9829 | F: drivers/power/avs/ |
68ace3e1 KH |
9830 | F: include/linux/power/smartreflex.h |
9831 | L: linux-pm@vger.kernel.org | |
9832 | ||
1da177e4 | 9833 | SMC91x ETHERNET DRIVER |
2f82af08 | 9834 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 9835 | S: Odd Fixes |
ae150435 | 9836 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 9837 | |
e8e31622 SA |
9838 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
9839 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
9840 | L: linux-media@vger.kernel.org | |
9841 | S: Maintained | |
14430813 | 9842 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
9843 | F: include/media/smiapp.h |
9844 | F: drivers/media/i2c/smiapp-pll.c | |
9845 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 9846 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 9847 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 9848 | |
920fa1ff GR |
9849 | SMM665 HARDWARE MONITOR DRIVER |
9850 | M: Guenter Roeck <linux@roeck-us.net> | |
9851 | L: lm-sensors@lm-sensors.org | |
9852 | S: Maintained | |
9853 | F: Documentation/hwmon/smm665 | |
9854 | F: drivers/hwmon/smm665.c | |
9855 | ||
9df7305b | 9856 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 9857 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 9858 | L: lm-sensors@lm-sensors.org |
90b24cfb | 9859 | S: Maintained |
9df7305b SG |
9860 | F: Documentation/hwmon/emc2103 |
9861 | F: drivers/hwmon/emc2103.c | |
9862 | ||
a98d506c HG |
9863 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
9864 | M: Hans de Goede <hdegoede@redhat.com> | |
9865 | L: lm-sensors@lm-sensors.org | |
9866 | S: Supported | |
9867 | F: Documentation/hwmon/sch5627 | |
9868 | F: drivers/hwmon/sch5627.c | |
9869 | ||
6ea884db | 9870 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 9871 | M: Jean Delvare <jdelvare@suse.com> |
6ea884db MH |
9872 | L: lm-sensors@lm-sensors.org |
9873 | S: Maintained | |
679655da JP |
9874 | F: Documentation/hwmon/smsc47b397 |
9875 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 9876 | |
fd9abb3d | 9877 | SMSC911x ETHERNET DRIVER |
90b24cfb | 9878 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 9879 | L: netdev@vger.kernel.org |
90b24cfb | 9880 | S: Maintained |
679655da | 9881 | F: include/linux/smsc911x.h |
ae150435 | 9882 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
9883 | |
9884 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 9885 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 9886 | L: netdev@vger.kernel.org |
90b24cfb | 9887 | S: Maintained |
ae150435 | 9888 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 9889 | |
3c8a63e2 | 9890 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 9891 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 9892 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 9893 | S: Maintained |
8a61f013 | 9894 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 9895 | |
668acf32 | 9896 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 9897 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 9898 | L: linux-media@vger.kernel.org |
275ffde4 | 9899 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 9900 | S: Maintained |
90d72ac6 MCC |
9901 | F: include/media/soc* |
9902 | F: drivers/media/i2c/soc_camera/ | |
9903 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 9904 | |
e2d1d6c0 | 9905 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 9906 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 9907 | S: Maintained |
679655da | 9908 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 9909 | |
e3994db1 | 9910 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
9911 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
9912 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
9913 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 9914 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
9915 | L: linux-media@vger.kernel.org |
9916 | S: Supported | |
9917 | F: drivers/media/pci/solo6x10/ | |
9918 | ||
1da177e4 | 9919 | SOFTWARE RAID (Multiple Disks) SUPPORT |
d8130624 | 9920 | M: Neil Brown <neilb@suse.com> |
1da177e4 | 9921 | L: linux-raid@vger.kernel.org |
524418bb | 9922 | S: Supported |
679655da JP |
9923 | F: drivers/md/ |
9924 | F: include/linux/raid/ | |
c117ab84 | 9925 | F: include/uapi/linux/raid/ |
1da177e4 | 9926 | |
1da177e4 | 9927 | SONIC NETWORK DRIVER |
8b58be88 | 9928 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 9929 | L: netdev@vger.kernel.org |
1da177e4 | 9930 | S: Maintained |
d9fb9f38 | 9931 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 9932 | |
61e115a5 | 9933 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 9934 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
9935 | L: netdev@vger.kernel.org |
9936 | S: Maintained | |
679655da JP |
9937 | F: drivers/ssb/ |
9938 | F: include/linux/ssb/ | |
61e115a5 | 9939 | |
1da177e4 | 9940 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 9941 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 9942 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 9943 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 9944 | S: Maintained |
679655da JP |
9945 | F: Documentation/laptops/sony-laptop.txt |
9946 | F: drivers/char/sonypi.c | |
9947 | F: drivers/platform/x86/sony-laptop.c | |
9948 | F: include/linux/sony-laptop.h | |
1da177e4 | 9949 | |
baf8532a | 9950 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 9951 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
9952 | W: http://tifmxx.berlios.de/ |
9953 | S: Maintained | |
679655da | 9954 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 9955 | |
0ab30494 ML |
9956 | SONY MEMORYSTICK STANDARD SUPPORT |
9957 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9958 | S: Maintained | |
9959 | F: drivers/memstick/core/ms_block.* | |
9960 | ||
1da177e4 | 9961 | SOUND |
8b58be88 | 9962 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 9963 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 9964 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 9965 | W: http://www.alsa-project.org/ |
dde7ad8d | 9966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 9967 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 9968 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 9969 | S: Maintained |
3126a179 JP |
9970 | F: Documentation/sound/ |
9971 | F: include/sound/ | |
c117ab84 | 9972 | F: include/uapi/sound/ |
679655da | 9973 | F: sound/ |
1da177e4 | 9974 | |
33bbe149 MB |
9975 | SOUND - COMPRESSED AUDIO |
9976 | M: Vinod Koul <vinod.koul@intel.com> | |
9977 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
9979 | S: Supported | |
f672f31a | 9980 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 9981 | F: include/sound/compress_driver.h |
f672f31a | 9982 | F: include/uapi/sound/compress_* |
33bbe149 MB |
9983 | F: sound/core/compress_offload.c |
9984 | F: sound/soc/soc-compress.c | |
9985 | ||
bd903bde | 9986 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 9987 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9988 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 9989 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 9990 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 9991 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 9992 | S: Supported |
2820f615 | 9993 | F: Documentation/sound/alsa/soc/ |
679655da | 9994 | F: sound/soc/ |
e6e55122 | 9995 | F: include/sound/soc* |
eb1a6af3 | 9996 | |
d7f8761b MB |
9997 | SOUND - DMAENGINE HELPERS |
9998 | M: Lars-Peter Clausen <lars@metafoo.de> | |
9999 | S: Supported | |
10000 | F: include/sound/dmaengine_pcm.h | |
10001 | F: sound/core/pcm_dmaengine.c | |
10002 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
10003 | ||
990a6a99 OS |
10004 | SP2 MEDIA DRIVER |
10005 | M: Olli Salonen <olli.salonen@iki.fi> | |
10006 | L: linux-media@vger.kernel.org | |
10007 | W: http://linuxtv.org/ | |
10008 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10009 | S: Maintained | |
10010 | F: drivers/media/dvb-frontends/sp2* | |
10011 | ||
473321fc | 10012 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 10013 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 10014 | L: sparclinux@vger.kernel.org |
8a6e2535 | 10015 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
10016 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
10017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 10018 | S: Maintained |
679655da | 10019 | F: arch/sparc/ |
7765b8bb | 10020 | F: drivers/sbus/ |
1da177e4 | 10021 | |
6404fcca DM |
10022 | SPARC SERIAL DRIVERS |
10023 | M: "David S. Miller" <davem@davemloft.net> | |
10024 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
10025 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
10026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 10027 | S: Maintained |
6816383a | 10028 | F: include/linux/sunserialcore.h |
df621252 | 10029 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
10030 | F: drivers/tty/serial/sunhv.c |
10031 | F: drivers/tty/serial/sunsab.c | |
10032 | F: drivers/tty/serial/sunsab.h | |
10033 | F: drivers/tty/serial/sunsu.c | |
10034 | F: drivers/tty/serial/sunzilog.c | |
10035 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 10036 | |
389325b4 CL |
10037 | SPARSE CHECKER |
10038 | M: "Christopher Li" <sparse@chrisli.org> | |
10039 | L: linux-sparse@vger.kernel.org | |
10040 | W: https://sparse.wiki.kernel.org/ | |
10041 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
10042 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
10043 | S: Maintained | |
10044 | F: include/linux/compiler.h | |
10045 | ||
fc0c195a | 10046 | SPEAR PLATFORM SUPPORT |
da89947b | 10047 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 10048 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
10049 | L: spear-devel@list.st.com |
10050 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
10051 | W: http://www.st.com/spear |
10052 | S: Maintained | |
281e192f | 10053 | F: arch/arm/mach-spear/ |
fc0c195a VK |
10054 | |
10055 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 10056 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 VK |
10057 | L: spear-devel@list.st.com |
10058 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
10059 | W: http://www.st.com/spear |
10060 | S: Maintained | |
5df33a62 | 10061 | F: drivers/clk/spear/ |
fc0c195a | 10062 | |
e2d1d6c0 | 10063 | SPI SUBSYSTEM |
b02e48f2 | 10064 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 10065 | L: linux-spi@vger.kernel.org |
e7e4e13c | 10066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 10067 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 10068 | S: Maintained |
679655da JP |
10069 | F: Documentation/spi/ |
10070 | F: drivers/spi/ | |
10071 | F: include/linux/spi/ | |
c117ab84 | 10072 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 10073 | |
2752e401 | 10074 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 10075 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
10076 | L: netdev@vger.kernel.org |
10077 | S: Supported | |
679655da | 10078 | F: Documentation/networking/spider_net.txt |
8df158ac | 10079 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 10080 | |
e2d1d6c0 | 10081 | SPU FILE SYSTEM |
8b58be88 | 10082 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 10083 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
10084 | W: http://www.ibm.com/developerworks/power/cell/ |
10085 | S: Supported | |
679655da JP |
10086 | F: Documentation/filesystems/spufs.txt |
10087 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 10088 | |
fc555841 | 10089 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 10090 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
10091 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
10092 | W: http://squashfs.org.uk | |
10093 | S: Maintained | |
679655da JP |
10094 | F: Documentation/filesystems/squashfs.txt |
10095 | F: fs/squashfs/ | |
fc555841 | 10096 | |
1da177e4 | 10097 | SRM (Alpha) environment access |
8b58be88 | 10098 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 10099 | S: Maintained |
679655da | 10100 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 10101 | |
26e9a397 | 10102 | STABLE BRANCH |
879a5a00 | 10103 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 10104 | L: stable@vger.kernel.org |
879a5a00 | 10105 | S: Supported |
7b175c46 | 10106 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 10107 | |
26e9a397 | 10108 | STAGING SUBSYSTEM |
879a5a00 | 10109 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 10110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 10111 | L: devel@driverdev.osuosl.org |
879a5a00 | 10112 | S: Supported |
679655da | 10113 | F: drivers/staging/ |
dbc6c2cc | 10114 | |
ebd3d010 JP |
10115 | STAGING - COMEDI |
10116 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 10117 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
10118 | S: Odd Fixes |
10119 | F: drivers/staging/comedi/ | |
10120 | ||
a0138163 JP |
10121 | STAGING - FLARION FT1000 DRIVERS |
10122 | M: Marek Belisko <marek.belisko@gmail.com> | |
10123 | S: Odd Fixes | |
10124 | F: drivers/staging/ft1000/ | |
10125 | ||
6c1bb424 | 10126 | STAGING - INDUSTRIAL IO |
030a13d7 | 10127 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 10128 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
10129 | S: Odd Fixes |
10130 | F: drivers/staging/iio/ | |
10131 | ||
a0138163 JP |
10132 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
10133 | M: Jarod Wilson <jarod@wilsonet.com> | |
10134 | W: http://www.lirc.org/ | |
10135 | S: Odd Fixes | |
b2b0186d | 10136 | F: drivers/staging/media/lirc/ |
a0138163 | 10137 | |
f5e5de1e OD |
10138 | STAGING - LUSTRE PARALLEL FILESYSTEM |
10139 | M: Oleg Drokin <oleg.drokin@intel.com> | |
10140 | M: Andreas Dilger <andreas.dilger@intel.com> | |
d98229f0 AD |
10141 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
10142 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
10143 | S: Maintained |
10144 | F: drivers/staging/lustre | |
10145 | ||
7c6b6c71 MD |
10146 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
10147 | M: Marc Dietrich <marvin24@gmx.de> | |
10148 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 10149 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
10150 | S: Maintained |
10151 | F: drivers/staging/nvec/ | |
10152 | ||
a0138163 | 10153 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
10154 | M: Jens Frederich <jfrederich@gmail.com> |
10155 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
10156 | M: Jon Nettleton <jon.nettleton@gmail.com> |
10157 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 10158 | S: Maintained |
a0138163 JP |
10159 | F: drivers/staging/olpc_dcon/ |
10160 | ||
10161 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER | |
29e7017b JP |
10162 | M: Willy Tarreau <willy@meta-x.org> |
10163 | S: Odd Fixes | |
10164 | F: drivers/staging/panel/ | |
10165 | ||
a0138163 JP |
10166 | STAGING - REALTEK RTL8712U DRIVERS |
10167 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10168 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
10169 | S: Odd Fixes | |
10170 | F: drivers/staging/rtl8712/ | |
10171 | ||
7591ba8b JS |
10172 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
10173 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10174 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10175 | L: linux-wireless@vger.kernel.org | |
10176 | S: Maintained | |
10177 | F: drivers/staging/rtl8723au/ | |
10178 | ||
980ac4d7 SM |
10179 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
10180 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
10181 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
10182 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
10183 | L: linux-fbdev@vger.kernel.org | |
10184 | S: Maintained | |
10185 | F: drivers/staging/sm750fb/ | |
10186 | ||
510fa408 JP |
10187 | STAGING - SLICOSS |
10188 | M: Lior Dotan <liodot@gmail.com> | |
10189 | M: Christopher Harrer <charrer@alacritech.com> | |
10190 | S: Odd Fixes | |
10191 | F: drivers/staging/slicoss/ | |
10192 | ||
a0138163 JP |
10193 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
10194 | M: William Hubbs <w.d.hubbs@gmail.com> | |
10195 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 10196 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 10197 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 10198 | L: speakup@linux-speakup.org |
a0138163 JP |
10199 | W: http://www.linux-speakup.org/ |
10200 | S: Odd Fixes | |
10201 | F: drivers/staging/speakup/ | |
10202 | ||
b3e871ce JP |
10203 | STAGING - VIA VT665X DRIVERS |
10204 | M: Forest Bond <forest@alittletooquiet.net> | |
10205 | S: Odd Fixes | |
10206 | F: drivers/staging/vt665?/ | |
10207 | ||
a30baec1 JK |
10208 | STAGING - WILC1000 WIFI DRIVER |
10209 | M: Johnny Kim <johnny.kim@atmel.com> | |
0c9dbce8 | 10210 | M: Austin Shin <austin.shin@atmel.com> |
a30baec1 | 10211 | M: Chris Park <chris.park@atmel.com> |
06b54863 TC |
10212 | M: Tony Cho <tony.cho@atmel.com> |
10213 | M: Glen Lee <glen.lee@atmel.com> | |
10214 | M: Leo Kim <leo.kim@atmel.com> | |
a30baec1 JK |
10215 | L: linux-wireless@vger.kernel.org |
10216 | S: Supported | |
10217 | F: drivers/staging/wilc1000/ | |
10218 | ||
709bcb07 | 10219 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 10220 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
10221 | S: Odd Fixes |
10222 | F: drivers/staging/xgifb/ | |
10223 | ||
77241056 MM |
10224 | HFI1 DRIVER |
10225 | M: Mike Marciniszyn <infinipath@intel.com> | |
10226 | L: linux-rdma@vger.kernel.org | |
10227 | S: Supported | |
10228 | F: drivers/staging/rdma/hfi1 | |
10229 | ||
1da177e4 | 10230 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 10231 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 10232 | S: Odd Fixes |
9bba23b0 | 10233 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 10234 | |
e2d1d6c0 | 10235 | SUN3/3X |
8b58be88 | 10236 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
10237 | W: http://sammy.net/sun3/ |
10238 | S: Maintained | |
679655da JP |
10239 | F: arch/m68k/kernel/*sun3* |
10240 | F: arch/m68k/sun3*/ | |
10241 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 10242 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 10243 | |
af6a5af8 HG |
10244 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
10245 | M: Hans de Goede <hdegoede@redhat.com> | |
10246 | L: linux-input@vger.kernel.org | |
10247 | S: Maintained | |
10248 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
10249 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
10250 | ||
2bc9ff01 DK |
10251 | SUNDANCE NETWORK DRIVER |
10252 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
10253 | L: netdev@vger.kernel.org | |
10254 | S: Maintained | |
10255 | F: drivers/net/ethernet/dlink/sundance.c | |
10256 | ||
2cbb12a4 | 10257 | SUPERH |
2cbb12a4 | 10258 | L: linux-sh@vger.kernel.org |
8a6e2535 | 10259 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 10260 | S: Orphan |
066069e1 | 10261 | F: Documentation/sh/ |
679655da | 10262 | F: arch/sh/ |
066069e1 | 10263 | F: drivers/sh/ |
1da177e4 | 10264 | |
4480f15b | 10265 | SUSPEND TO RAM |
7fb06082 | 10266 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
10267 | M: Len Brown <len.brown@intel.com> |
10268 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 10269 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 10270 | S: Supported |
679655da JP |
10271 | F: Documentation/power/ |
10272 | F: arch/x86/kernel/acpi/ | |
10273 | F: drivers/base/power/ | |
10274 | F: kernel/power/ | |
10275 | F: include/linux/suspend.h | |
10276 | F: include/linux/freezer.h | |
10277 | F: include/linux/pm.h | |
1da177e4 LT |
10278 | |
10279 | SVGA HANDLING | |
8b58be88 | 10280 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
10281 | L: linux-video@atrey.karlin.mff.cuni.cz |
10282 | S: Maintained | |
679655da JP |
10283 | F: Documentation/svga.txt |
10284 | F: arch/x86/boot/video* | |
1da177e4 | 10285 | |
6e28b761 KRW |
10286 | SWIOTLB SUBSYSTEM |
10287 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
10288 | L: linux-kernel@vger.kernel.org | |
10289 | S: Supported | |
10290 | F: lib/swiotlb.c | |
10291 | F: arch/*/kernel/pci-swiotlb.c | |
10292 | F: include/linux/swiotlb.h | |
10293 | ||
007f790c JP |
10294 | SWITCHDEV |
10295 | M: Jiri Pirko <jiri@resnulli.us> | |
10296 | L: netdev@vger.kernel.org | |
10297 | S: Supported | |
10298 | F: net/switchdev/ | |
10299 | F: include/net/switchdev.h | |
10300 | ||
db8e35d5 VG |
10301 | SYNOPSYS ARC ARCHITECTURE |
10302 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 10303 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
10304 | S: Supported |
10305 | F: arch/arc/ | |
9b28829d | 10306 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 10307 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 10308 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 10309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 10310 | |
556cc1c5 AB |
10311 | SYNOPSYS ARC SDP platform support |
10312 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
10313 | S: Supported | |
10314 | F: arch/arc/plat-axs10x | |
10315 | F: arch/arc/boot/dts/ax* | |
10316 | F: Documentation/devicetree/bindings/arc/axs10* | |
10317 | ||
6c284c9a LJ |
10318 | SYSTEM CONFIGURATION (SYSCON) |
10319 | M: Lee Jones <lee.jones@linaro.org> | |
10320 | M: Arnd Bergmann <arnd@arndb.de> | |
10321 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
10322 | S: Supported | |
10323 | F: drivers/mfd/syscon.c | |
10324 | ||
1da177e4 | 10325 | SYSV FILESYSTEM |
8b58be88 | 10326 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 10327 | S: Maintained |
679655da JP |
10328 | F: Documentation/filesystems/sysv-fs.txt |
10329 | F: fs/sysv/ | |
10330 | F: include/linux/sysv_fs.h | |
1da177e4 | 10331 | |
86cfa7fc | 10332 | TARGET SUBSYSTEM |
9c3646d1 | 10333 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 10334 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 10335 | L: target-devel@vger.kernel.org |
86cfa7fc | 10336 | W: http://www.linux-iscsi.org |
cf015e9f | 10337 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 10338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
10339 | S: Supported |
10340 | F: drivers/target/ | |
10341 | F: include/target/ | |
10342 | F: Documentation/target/ | |
10343 | ||
4e68852d | 10344 | TASKSTATS STATISTICS INTERFACE |
185e595f | 10345 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 10346 | S: Maintained |
679655da JP |
10347 | F: Documentation/accounting/taskstats* |
10348 | F: include/linux/taskstats* | |
10349 | F: kernel/taskstats.c | |
4e68852d | 10350 | |
781b456a | 10351 | TC CLASSIFIER |
f935f3f8 | 10352 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
10353 | L: netdev@vger.kernel.org |
10354 | S: Maintained | |
679655da | 10355 | F: include/net/pkt_cls.h |
c117ab84 | 10356 | F: include/uapi/linux/pkt_cls.h |
679655da | 10357 | F: net/sched/ |
781b456a | 10358 | |
5067f08a | 10359 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
10360 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
10361 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
10362 | W: http://tcp-lp-mod.sourceforge.net/ |
10363 | S: Maintained | |
679655da | 10364 | F: net/ipv4/tcp_lp.c |
5067f08a | 10365 | |
91952bc0 AP |
10366 | TDA10071 MEDIA DRIVER |
10367 | M: Antti Palosaari <crope@iki.fi> | |
10368 | L: linux-media@vger.kernel.org | |
10369 | W: http://linuxtv.org/ | |
10370 | W: http://palosaari.fi/linux/ | |
10371 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10372 | T: git git://linuxtv.org/anttip/media_tree.git | |
10373 | S: Maintained | |
10374 | F: drivers/media/dvb-frontends/tda10071* | |
10375 | ||
10376 | TDA18212 MEDIA DRIVER | |
10377 | M: Antti Palosaari <crope@iki.fi> | |
10378 | L: linux-media@vger.kernel.org | |
10379 | W: http://linuxtv.org/ | |
10380 | W: http://palosaari.fi/linux/ | |
10381 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10382 | T: git git://linuxtv.org/anttip/media_tree.git | |
10383 | S: Maintained | |
10384 | F: drivers/media/tuners/tda18212* | |
10385 | ||
10386 | TDA18218 MEDIA DRIVER | |
10387 | M: Antti Palosaari <crope@iki.fi> | |
10388 | L: linux-media@vger.kernel.org | |
10389 | W: http://linuxtv.org/ | |
10390 | W: http://palosaari.fi/linux/ | |
10391 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10392 | T: git git://linuxtv.org/anttip/media_tree.git | |
10393 | S: Maintained | |
10394 | F: drivers/media/tuners/tda18218* | |
10395 | ||
3b2f6aba MK |
10396 | TDA18271 MEDIA DRIVER |
10397 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10398 | L: linux-media@vger.kernel.org | |
10399 | W: http://linuxtv.org/ | |
10400 | W: http://github.com/mkrufky | |
10401 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10402 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10403 | S: Maintained | |
10404 | F: drivers/media/tuners/tda18271* | |
10405 | ||
e48307a9 MK |
10406 | TDA827x MEDIA DRIVER |
10407 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10408 | L: linux-media@vger.kernel.org | |
10409 | W: http://linuxtv.org/ | |
10410 | W: http://github.com/mkrufky | |
10411 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10412 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10413 | S: Maintained | |
10414 | F: drivers/media/tuners/tda8290.* | |
10415 | ||
66cf9212 MK |
10416 | TDA8290 MEDIA DRIVER |
10417 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10418 | L: linux-media@vger.kernel.org | |
10419 | W: http://linuxtv.org/ | |
10420 | W: http://github.com/mkrufky | |
10421 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10422 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10423 | S: Maintained | |
10424 | F: drivers/media/tuners/tda8290.* | |
10425 | ||
4b9fba30 HV |
10426 | TDA9840 MEDIA DRIVER |
10427 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10428 | L: linux-media@vger.kernel.org | |
10429 | T: git git://linuxtv.org/media_tree.git | |
10430 | W: http://linuxtv.org | |
10431 | S: Maintained | |
10432 | F: drivers/media/i2c/tda9840* | |
10433 | ||
2cb654fd | 10434 | TEA5761 TUNER DRIVER |
009a5410 | 10435 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd MCC |
10436 | L: linux-media@vger.kernel.org |
10437 | W: http://linuxtv.org | |
10438 | T: git git://linuxtv.org/media_tree.git | |
10439 | S: Odd fixes | |
10440 | F: drivers/media/tuners/tea5761.* | |
10441 | ||
10442 | TEA5767 TUNER DRIVER | |
009a5410 | 10443 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd MCC |
10444 | L: linux-media@vger.kernel.org |
10445 | W: http://linuxtv.org | |
10446 | T: git git://linuxtv.org/media_tree.git | |
10447 | S: Maintained | |
10448 | F: drivers/media/tuners/tea5767.* | |
10449 | ||
4b9fba30 HV |
10450 | TEA6415C MEDIA DRIVER |
10451 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10452 | L: linux-media@vger.kernel.org | |
10453 | T: git git://linuxtv.org/media_tree.git | |
10454 | W: http://linuxtv.org | |
10455 | S: Maintained | |
10456 | F: drivers/media/i2c/tea6415c* | |
10457 | ||
10458 | TEA6420 MEDIA DRIVER | |
10459 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10460 | L: linux-media@vger.kernel.org | |
10461 | T: git git://linuxtv.org/media_tree.git | |
10462 | W: http://linuxtv.org | |
10463 | S: Maintained | |
10464 | F: drivers/media/i2c/tea6420* | |
10465 | ||
3d249d4c | 10466 | TEAM DRIVER |
dca9ab92 | 10467 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
10468 | L: netdev@vger.kernel.org |
10469 | S: Supported | |
10470 | F: drivers/net/team/ | |
10471 | F: include/linux/if_team.h | |
c117ab84 | 10472 | F: include/uapi/linux/if_team.h |
3d249d4c | 10473 | |
7d029125 | 10474 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 10475 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
10476 | S: Maintained |
10477 | F: arch/x86/platform/ts5500/ | |
10478 | ||
40ad4a30 SY |
10479 | TECHNOTREND USB IR RECEIVER |
10480 | M: Sean Young <sean@mess.org> | |
10481 | L: linux-media@vger.kernel.org | |
10482 | S: Maintained | |
10483 | F: drivers/media/rc/ttusbir.c | |
10484 | ||
adabdb0c | 10485 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 10486 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 10487 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 10488 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 10489 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 10490 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 10491 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 10492 | S: Supported |
bbbe96ed | 10493 | N: [^a-z]tegra |
84b9414b | 10494 | |
adabdb0c SW |
10495 | TEGRA CLOCK DRIVER |
10496 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
10497 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
10498 | S: Supported | |
10499 | F: drivers/clk/tegra/ | |
10500 | ||
10501 | TEGRA DMA DRIVER | |
10502 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10503 | S: Supported | |
10504 | F: drivers/dma/tegra20-apb-dma.c | |
10505 | ||
adabdb0c SW |
10506 | TEGRA I2C DRIVER |
10507 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10508 | S: Supported | |
10509 | F: drivers/i2c/busses/i2c-tegra.c | |
10510 | ||
10511 | TEGRA IOMMU DRIVERS | |
10512 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
10513 | S: Supported | |
10514 | F: drivers/iommu/tegra* | |
10515 | ||
10516 | TEGRA KBC DRIVER | |
10517 | M: Rakesh Iyer <riyer@nvidia.com> | |
10518 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10519 | S: Supported | |
10520 | F: drivers/input/keyboard/tegra-kbc.c | |
10521 | ||
adabdb0c SW |
10522 | TEGRA PWM DRIVER |
10523 | M: Thierry Reding <thierry.reding@gmail.com> | |
10524 | S: Supported | |
10525 | F: drivers/pwm/pwm-tegra.c | |
10526 | ||
10527 | TEGRA SERIAL DRIVER | |
10528 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10529 | S: Supported | |
10530 | F: drivers/tty/serial/serial-tegra.c | |
10531 | ||
10532 | TEGRA SPI DRIVER | |
10533 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10534 | S: Supported | |
10535 | F: drivers/spi/spi-tegra* | |
10536 | ||
1a348ccc | 10537 | TEHUTI ETHERNET DRIVER |
8b58be88 | 10538 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
10539 | L: netdev@vger.kernel.org |
10540 | S: Supported | |
ef7f5429 | 10541 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 10542 | |
4e68852d | 10543 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 10544 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 10545 | S: Supported |
679655da | 10546 | F: drivers/char/tlclk.c |
4e68852d | 10547 | |
4480f15b | 10548 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 10549 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
10550 | M: Max Filippov <jcmvbkbc@gmail.com> |
10551 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 10552 | S: Maintained |
679655da | 10553 | F: arch/xtensa/ |
3dc99857 | 10554 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 10555 | |
5313ba66 HV |
10556 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
10557 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10558 | L: linux-media@vger.kernel.org | |
10559 | T: git git://linuxtv.org/media_tree.git | |
10560 | W: http://linuxtv.org | |
10561 | S: Maintained | |
10562 | F: drivers/media/radio/radio-raremono.c | |
10563 | ||
d3fb6955 | 10564 | THERMAL |
b75f0050 | 10565 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 10566 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
10567 | L: linux-pm@vger.kernel.org |
10568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
10569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
10570 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
10571 | S: Supported | |
10572 | F: drivers/thermal/ | |
10573 | F: include/linux/thermal.h | |
af6c9f16 | 10574 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
10575 | F: include/linux/cpu_cooling.h |
10576 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 10577 | |
64e05d8b VK |
10578 | THERMAL/CPU_COOLING |
10579 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
10580 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
10581 | M: Javi Merino <javi.merino@arm.com> | |
10582 | L: linux-pm@vger.kernel.org | |
10583 | S: Supported | |
10584 | F: Documentation/thermal/cpu-cooling-api.txt | |
10585 | F: drivers/thermal/cpu_cooling.c | |
10586 | F: include/linux/cpu_cooling.h | |
10587 | ||
30ba2fbd VD |
10588 | THINGM BLINK(1) USB RGB LED DRIVER |
10589 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
10590 | S: Maintained | |
10591 | F: drivers/hid/hid-thingm.c | |
10592 | ||
4e68852d | 10593 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 10594 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 10595 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 10596 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
10597 | W: http://ibm-acpi.sourceforge.net |
10598 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 10599 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 10600 | S: Maintained |
679655da | 10601 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 10602 | |
1b46f2a2 | 10603 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 10604 | M: Eduardo Valentin <edubezval@gmail.com> |
1b46f2a2 | 10605 | L: linux-pm@vger.kernel.org |
531ff13e | 10606 | L: linux-omap@vger.kernel.org |
5a723e81 | 10607 | S: Maintained |
794b2e25 | 10608 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 10609 | |
0c7665c3 MF |
10610 | TI CDCE706 CLOCK DRIVER |
10611 | M: Max Filippov <jcmvbkbc@gmail.com> | |
10612 | S: Maintained | |
10613 | F: drivers/clk/clk-cdce706.c | |
10614 | ||
49b6a5e3 TK |
10615 | TI CLOCK DRIVER |
10616 | M: Tero Kristo <t-kristo@ti.com> | |
10617 | L: linux-omap@vger.kernel.org | |
10618 | S: Maintained | |
10619 | F: drivers/clk/ti/ | |
10620 | F: include/linux/clk/ti.h | |
10621 | ||
4020f2d7 | 10622 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 10623 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 10624 | S: Maintained |
679655da JP |
10625 | F: drivers/misc/tifm* |
10626 | F: drivers/mmc/host/tifm_sd.c | |
10627 | F: include/linux/tifm.h | |
4020f2d7 | 10628 | |
e0c52404 | 10629 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 10630 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
10631 | L: linux-kernel@vger.kernel.org |
10632 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10633 | S: Maintained | |
10634 | F: drivers/soc/ti/* | |
10635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
10636 | ||
10637 | ||
152ad442 SR |
10638 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
10639 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 10640 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
10641 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10642 | S: Maintained | |
10643 | F: sound/soc/codecs/lm49453* | |
d392dead | 10644 | F: sound/soc/codecs/isabelle* |
152ad442 | 10645 | |
0edd807d KM |
10646 | TI LP855x BACKLIGHT DRIVER |
10647 | M: Milo Kim <milo.kim@ti.com> | |
10648 | S: Maintained | |
10649 | F: Documentation/backlight/lp855x-driver.txt | |
10650 | F: drivers/video/backlight/lp855x_bl.c | |
10651 | F: include/linux/platform_data/lp855x.h | |
10652 | ||
faf13f6d KM |
10653 | TI LP8727 CHARGER DRIVER |
10654 | M: Milo Kim <milo.kim@ti.com> | |
10655 | S: Maintained | |
10656 | F: drivers/power/lp8727_charger.c | |
10657 | F: include/linux/platform_data/lp8727.h | |
10658 | ||
22f1229f KM |
10659 | TI LP8788 MFD DRIVER |
10660 | M: Milo Kim <milo.kim@ti.com> | |
10661 | S: Maintained | |
10662 | F: drivers/iio/adc/lp8788_adc.c | |
10663 | F: drivers/leds/leds-lp8788.c | |
10664 | F: drivers/mfd/lp8788*.c | |
10665 | F: drivers/power/lp8788-charger.c | |
10666 | F: drivers/regulator/lp8788-*.c | |
10667 | F: include/linux/mfd/lp8788*.h | |
10668 | ||
84640e27 KM |
10669 | TI NETCP ETHERNET DRIVER |
10670 | M: Wingman Kwok <w-kwok2@ti.com> | |
10671 | M: Murali Karicheri <m-karicheri2@ti.com> | |
10672 | L: netdev@vger.kernel.org | |
10673 | S: Maintained | |
10674 | F: drivers/net/ethernet/ti/netcp* | |
10675 | ||
217e0ca9 KC |
10676 | TI TAS571X FAMILY ASoC CODEC DRIVER |
10677 | M: Kevin Cernekee <cernekee@chromium.org> | |
10678 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10679 | S: Odd Fixes | |
10680 | F: sound/soc/codecs/tas571x* | |
10681 | ||
dd5e8e6b | 10682 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 10683 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
10684 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10685 | S: Maintained | |
10686 | F: sound/soc/codecs/twl4030* | |
10687 | ||
90921014 | 10688 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
10689 | L: linux-wireless@vger.kernel.org |
10690 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
10691 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
10692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 10693 | S: Orphan |
90921014 LC |
10694 | F: drivers/net/wireless/ti/ |
10695 | F: include/linux/wl12xx.h | |
10696 | ||
e86eaa3a | 10697 | TIPC NETWORK LAYER |
8b58be88 | 10698 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 10699 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
10700 | L: netdev@vger.kernel.org (core kernel code) |
10701 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 10702 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 10703 | S: Maintained |
c117ab84 | 10704 | F: include/uapi/linux/tipc*.h |
679655da | 10705 | F: net/tipc/ |
e86eaa3a | 10706 | |
867e359b | 10707 | TILE ARCHITECTURE |
c47b15c4 | 10708 | M: Chris Metcalf <cmetcalf@ezchip.com> |
740e1433 | 10709 | W: http://www.ezchip.com/scm/ |
867e359b CM |
10710 | S: Supported |
10711 | F: arch/tile/ | |
6b940606 | 10712 | F: drivers/char/tile-srom.c |
5c770755 | 10713 | F: drivers/edac/tile_edac.c |
6b940606 CM |
10714 | F: drivers/net/ethernet/tile/ |
10715 | F: drivers/rtc/rtc-tile.c | |
10716 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 10717 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
10718 | F: drivers/usb/host/*-tilegx.c |
10719 | F: include/linux/usb/tilegx.h | |
867e359b | 10720 | |
1da177e4 | 10721 | TLAN NETWORK DRIVER |
8b58be88 | 10722 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 10723 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
10724 | W: http://sourceforge.net/projects/tlan/ |
10725 | S: Maintained | |
679655da | 10726 | F: Documentation/networking/tlan.txt |
b544dbac | 10727 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 10728 | |
d74db3b2 | 10729 | TOMOYO SECURITY MODULE |
8b58be88 JP |
10730 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
10731 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
10732 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
10733 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
10734 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
10735 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
10736 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 10737 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 10738 | S: Maintained |
679655da | 10739 | F: security/tomoyo/ |
d74db3b2 | 10740 | |
9caeb532 | 10741 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 10742 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 10743 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
10744 | S: Maintained |
10745 | F: drivers/platform/x86/topstar-laptop.c | |
10746 | ||
1da177e4 | 10747 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 10748 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 10749 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 10750 | S: Maintained |
679655da | 10751 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 10752 | |
0a63ca11 AA |
10753 | TOSHIBA BLUETOOTH DRIVER |
10754 | M: Azael Avalos <coproscefalo@gmail.com> | |
10755 | L: platform-driver-x86@vger.kernel.org | |
10756 | S: Maintained | |
10757 | F: drivers/platform/x86/toshiba_bluetooth.c | |
10758 | ||
10759 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
10760 | M: Azael Avalos <coproscefalo@gmail.com> | |
10761 | L: platform-driver-x86@vger.kernel.org | |
10762 | S: Maintained | |
10763 | F: drivers/platform/x86/toshiba_haps.c | |
10764 | ||
14991fc7 AA |
10765 | TOSHIBA WMI HOTKEYS DRIVER |
10766 | M: Azael Avalos <coproscefalo@gmail.com> | |
10767 | L: platform-driver-x86@vger.kernel.org | |
10768 | S: Maintained | |
10769 | F: drivers/platform/x86/toshiba-wmi.c | |
10770 | ||
1da177e4 | 10771 | TOSHIBA SMM DRIVER |
8b58be88 | 10772 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
10773 | W: http://www.buzzard.org.uk/toshiba/ |
10774 | S: Maintained | |
679655da JP |
10775 | F: drivers/char/toshiba.c |
10776 | F: include/linux/toshiba.h | |
c117ab84 | 10777 | F: include/uapi/linux/toshiba.h |
1da177e4 | 10778 | |
d32d9864 MR |
10779 | TOSHIBA TC358743 DRIVER |
10780 | M: Mats Randgaard <matrandg@cisco.com> | |
10781 | L: linux-media@vger.kernel.org | |
10782 | S: Maintained | |
10783 | F: drivers/media/i2c/tc358743* | |
10784 | F: include/media/tc358743.h | |
10785 | ||
d719f900 | 10786 | TMIO MMC DRIVER |
c4b13fb0 | 10787 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 10788 | L: linux-mmc@vger.kernel.org |
d719f900 | 10789 | S: Maintained |
d1057c40 GL |
10790 | F: drivers/mmc/host/tmio_mmc* |
10791 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
10792 | F: include/linux/mmc/tmio.h | |
10793 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 10794 | |
917cc4e6 GR |
10795 | TMP401 HARDWARE MONITOR DRIVER |
10796 | M: Guenter Roeck <linux@roeck-us.net> | |
10797 | L: lm-sensors@lm-sensors.org | |
10798 | S: Maintained | |
10799 | F: Documentation/hwmon/tmp401 | |
10800 | F: drivers/hwmon/tmp401.c | |
10801 | ||
98f32602 | 10802 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 10803 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
10804 | L: linux-mm@kvack.org |
10805 | S: Maintained | |
10806 | F: include/linux/shmem_fs.h | |
10807 | F: mm/shmem.c | |
10808 | ||
45f95b53 | 10809 | TM6000 VIDEO4LINUX DRIVER |
009a5410 | 10810 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
45f95b53 MCC |
10811 | L: linux-media@vger.kernel.org |
10812 | W: http://linuxtv.org | |
10813 | T: git git://linuxtv.org/media_tree.git | |
10814 | S: Odd fixes | |
10815 | F: drivers/media/usb/tm6000/ | |
10816 | ||
c65fde19 HV |
10817 | TW68 VIDEO4LINUX DRIVER |
10818 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10819 | L: linux-media@vger.kernel.org | |
10820 | T: git git://linuxtv.org/media_tree.git | |
10821 | W: http://linuxtv.org | |
10822 | S: Odd Fixes | |
10823 | F: drivers/media/pci/tw68/ | |
10824 | ||
4e68852d | 10825 | TPM DEVICE DRIVER |
901486b8 | 10826 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 10827 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 10828 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 10829 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 10830 | W: http://tpmdd.sourceforge.net |
63a10dfd | 10831 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
f78c81b4 PH |
10832 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
10833 | T: https://github.com/PeterHuewe/linux-tpmdd | |
4e68852d | 10834 | S: Maintained |
679655da | 10835 | F: drivers/char/tpm/ |
4e68852d | 10836 | |
1a0f1b27 AL |
10837 | TPM IBM_VTPM DEVICE DRIVER |
10838 | M: Ashley Lai <ashleydlai@gmail.com> | |
10839 | W: http://tpmdd.sourceforge.net | |
10840 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
10841 | S: Maintained | |
10842 | F: drivers/char/tpm/tpm_ibmvtpm* | |
10843 | ||
d6f005a1 JP |
10844 | TRACING |
10845 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 10846 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 10847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
10848 | S: Maintained |
10849 | F: Documentation/trace/ftrace.txt | |
10850 | F: arch/*/*/*/ftrace.h | |
10851 | F: arch/*/kernel/ftrace.c | |
10852 | F: include/*/ftrace.h | |
10853 | F: include/linux/trace*.h | |
10854 | F: include/trace/ | |
10855 | F: kernel/trace/ | |
6e68e6c5 | 10856 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 10857 | |
1da177e4 | 10858 | TRIVIAL PATCHES |
8b58be88 | 10859 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 10860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 10861 | S: Maintained |
86ef925f | 10862 | K: ^Subject:.*(?i)trivial |
1da177e4 | 10863 | |
4e68852d | 10864 | TTY LAYER |
879a5a00 | 10865 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 10866 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 10867 | S: Supported |
08deed1e | 10868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 10869 | F: Documentation/serial/ |
8dd5d2f1 | 10870 | F: drivers/tty/ |
df621252 | 10871 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
10872 | F: include/linux/serial_core.h |
10873 | F: include/linux/serial.h | |
10874 | F: include/linux/tty.h | |
c117ab84 CEB |
10875 | F: include/uapi/linux/serial_core.h |
10876 | F: include/uapi/linux/serial.h | |
10877 | F: include/uapi/linux/tty.h | |
4e68852d | 10878 | |
91952bc0 AP |
10879 | TUA9001 MEDIA DRIVER |
10880 | M: Antti Palosaari <crope@iki.fi> | |
10881 | L: linux-media@vger.kernel.org | |
10882 | W: http://linuxtv.org/ | |
10883 | W: http://palosaari.fi/linux/ | |
10884 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10885 | T: git git://linuxtv.org/anttip/media_tree.git | |
10886 | S: Maintained | |
10887 | F: drivers/media/tuners/tua9001* | |
10888 | ||
740db6d7 | 10889 | TULIP NETWORK DRIVERS |
8b58be88 | 10890 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
10891 | L: netdev@vger.kernel.org |
10892 | S: Maintained | |
0f04e2aa | 10893 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
10894 | |
10895 | TUN/TAP driver | |
ba57b6f2 | 10896 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
10897 | W: http://vtun.sourceforge.net/tun |
10898 | S: Maintained | |
679655da JP |
10899 | F: Documentation/networking/tuntap.txt |
10900 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 10901 | |
b454cc66 | 10902 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 10903 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
10904 | M: Ralf Baechle <ralf@linux-mips.org> |
10905 | L: linux-mips@linux-mips.org | |
10906 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 10907 | S: Maintained |
679655da JP |
10908 | F: drivers/tc/ |
10909 | F: include/linux/tc.h | |
b454cc66 | 10910 | |
1da177e4 | 10911 | U14-34F SCSI DRIVER |
8b58be88 | 10912 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
10913 | L: linux-scsi@vger.kernel.org |
10914 | S: Maintained | |
679655da | 10915 | F: drivers/scsi/u14-34f.c |
1da177e4 | 10916 | |
e2d1d6c0 | 10917 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 10918 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 10919 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 10920 | L: linux-mtd@lists.infradead.org |
e2966cbe | 10921 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
10922 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
10923 | S: Maintained | |
679655da JP |
10924 | F: Documentation/filesystems/ubifs.txt |
10925 | F: fs/ubifs/ | |
e2d1d6c0 | 10926 | |
e1632fa2 | 10927 | UCLINUX (M68KNOMMU AND COLDFIRE) |
8b58be88 | 10928 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 | 10929 | W: http://www.uclinux.org/ |
e1632fa2 | 10930 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 10931 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 10932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 10933 | S: Maintained |
e1632fa2 GU |
10934 | F: arch/m68k/coldfire/ |
10935 | F: arch/m68k/68*/ | |
61bc02bb JP |
10936 | F: arch/m68k/*/*_no.* |
10937 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 10938 | |
1da177e4 | 10939 | UDF FILESYSTEM |
d8130624 | 10940 | M: Jan Kara <jack@suse.com> |
1da177e4 | 10941 | S: Maintained |
679655da JP |
10942 | F: Documentation/filesystems/udf.txt |
10943 | F: fs/udf/ | |
1da177e4 | 10944 | |
cc2020e6 | 10945 | UFS FILESYSTEM |
8b58be88 | 10946 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 10947 | S: Maintained |
679655da JP |
10948 | F: Documentation/filesystems/ufs.txt |
10949 | F: fs/ufs/ | |
cc2020e6 | 10950 | |
0a09d3ab DH |
10951 | UHID USERSPACE HID IO DRIVER: |
10952 | M: David Herrmann <dh.herrmann@googlemail.com> | |
10953 | L: linux-input@vger.kernel.org | |
10954 | S: Maintained | |
10955 | F: drivers/hid/uhid.c | |
c117ab84 | 10956 | F: include/uapi/linux/uhid.h |
0a09d3ab | 10957 | |
18332a80 | 10958 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 10959 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 10960 | S: Orphan |
355ffe69 | 10961 | F: drivers/uwb/ |
679655da JP |
10962 | F: include/linux/uwb.h |
10963 | F: include/linux/uwb/ | |
18332a80 | 10964 | |
b31d8273 G |
10965 | UNICORE32 ARCHITECTURE: |
10966 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
10967 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
10968 | S: Maintained | |
ceebf4d5 | 10969 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
10970 | F: arch/unicore32/ |
10971 | ||
d8379ab1 TF |
10972 | UNIFDEF |
10973 | M: Tony Finch <dot@dotat.at> | |
10974 | W: http://dotat.at/prog/unifdef | |
10975 | S: Maintained | |
10976 | F: scripts/unifdef.c | |
10977 | ||
1da177e4 | 10978 | UNIFORM CDROM DRIVER |
8b58be88 | 10979 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10980 | W: http://www.kernel.dk |
10981 | S: Maintained | |
679655da JP |
10982 | F: Documentation/cdrom/ |
10983 | F: drivers/cdrom/cdrom.c | |
10984 | F: include/linux/cdrom.h | |
c117ab84 | 10985 | F: include/uapi/linux/cdrom.h |
1da177e4 | 10986 | |
56df0122 | 10987 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
10988 | M: Benjamin Romer <benjamin.romer@unisys.com> |
10989 | M: David Kershner <david.kershner@unisys.com> | |
10990 | L: sparmaintainer@unisys.com (Unisys internal) | |
10991 | S: Supported | |
10992 | F: drivers/staging/unisys/ | |
56df0122 | 10993 | |
9941fa6e VH |
10994 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
10995 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
10996 | L: linux-scsi@vger.kernel.org |
10997 | S: Supported | |
10998 | F: Documentation/scsi/ufs.txt | |
10999 | F: drivers/scsi/ufs/ | |
11000 | ||
e2d1d6c0 | 11001 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 11002 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 11003 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
11004 | W: http://www.linux-mtd.infradead.org/ |
11005 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 11006 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 11007 | S: Supported |
80811493 | 11008 | F: drivers/mtd/ubi/ |
679655da | 11009 | F: include/linux/mtd/ubi.h |
c117ab84 | 11010 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 11011 | |
1da177e4 | 11012 | USB ACM DRIVER |
61eee9a7 | 11013 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 11014 | L: linux-usb@vger.kernel.org |
1da177e4 | 11015 | S: Maintained |
679655da JP |
11016 | F: Documentation/usb/acm.txt |
11017 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 11018 | |
b7d572e1 PF |
11019 | USB AR5523 WIRELESS DRIVER |
11020 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
11021 | L: linux-wireless@vger.kernel.org | |
11022 | S: Maintained | |
11023 | F: drivers/net/wireless/ath/ar5523/ | |
11024 | ||
115bb1ff | 11025 | USB ATTACHED SCSI |
f50a4968 | 11026 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 11027 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
11028 | L: linux-usb@vger.kernel.org |
11029 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 11030 | S: Maintained |
115bb1ff MW |
11031 | F: drivers/usb/storage/uas.c |
11032 | ||
1da177e4 | 11033 | USB CDC ETHERNET DRIVER |
61eee9a7 | 11034 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 11035 | L: linux-usb@vger.kernel.org |
1da177e4 | 11036 | S: Maintained |
679655da | 11037 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 11038 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 11039 | |
66e3e591 KP |
11040 | USB CHAOSKEY DRIVER |
11041 | M: Keith Packard <keithp@keithp.com> | |
11042 | L: linux-usb@vger.kernel.org | |
11043 | S: Maintained | |
11044 | F: drivers/usb/misc/chaoskey.c | |
11045 | ||
b02b371e | 11046 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 11047 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
11048 | L: linux-usb@vger.kernel.org |
11049 | S: Maintained | |
679655da | 11050 | F: drivers/usb/c67x00/ |
b02b371e | 11051 | |
d0374f4f | 11052 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 11053 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 11054 | L: netdev@vger.kernel.org |
d0374f4f PK |
11055 | W: http://www.linux-usb.org/usbnet |
11056 | S: Maintained | |
679655da | 11057 | F: drivers/net/usb/dm9601.c |
d0374f4f | 11058 | |
cc2020e6 | 11059 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 11060 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
11061 | L: rio500-users@lists.sourceforge.net |
11062 | W: http://rio500.sourceforge.net | |
11063 | S: Maintained | |
679655da | 11064 | F: drivers/usb/misc/rio500* |
cc2020e6 | 11065 | |
1da177e4 | 11066 | USB EHCI DRIVER |
578333ab | 11067 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11068 | L: linux-usb@vger.kernel.org |
578333ab | 11069 | S: Maintained |
679655da JP |
11070 | F: Documentation/usb/ehci.txt |
11071 | F: drivers/usb/host/ehci* | |
1da177e4 | 11072 | |
69ae9e3e | 11073 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 11074 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 11075 | L: linux-usb@vger.kernel.org |
69ae9e3e | 11076 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
11077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
11078 | S: Maintained | |
679655da JP |
11079 | F: drivers/usb/gadget/ |
11080 | F: include/linux/usb/gadget* | |
69ae9e3e | 11081 | |
2dea64b4 | 11082 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 11083 | M: Jiri Kosina <jikos@kernel.org> |
795fb7e7 | 11084 | L: linux-usb@vger.kernel.org |
54e5881d | 11085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 11086 | S: Maintained |
c2f01971 | 11087 | F: Documentation/hid/hiddev.txt |
679655da | 11088 | F: drivers/hid/usbhid/ |
1da177e4 | 11089 | |
959eea21 | 11090 | USB ISP116X DRIVER |
8b58be88 | 11091 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 11092 | L: linux-usb@vger.kernel.org |
959eea21 | 11093 | S: Maintained |
679655da JP |
11094 | F: drivers/usb/host/isp116x* |
11095 | F: include/linux/usb/isp116x.h | |
959eea21 | 11096 | |
1da177e4 | 11097 | USB MASS STORAGE DRIVER |
8b58be88 | 11098 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 11099 | L: linux-usb@vger.kernel.org |
8836aeb8 | 11100 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
11101 | S: Maintained |
11102 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 11103 | F: drivers/usb/storage/ |
1da177e4 | 11104 | |
af39917d CL |
11105 | USB MIDI DRIVER |
11106 | M: Clemens Ladisch <clemens@ladisch.de> | |
11107 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11108 | T: git git://git.alsa-project.org/alsa-kernel.git | |
11109 | S: Maintained | |
11110 | F: sound/usb/midi.* | |
11111 | ||
444ce9d4 JP |
11112 | USB NETWORKING DRIVERS |
11113 | L: linux-usb@vger.kernel.org | |
11114 | S: Odd Fixes | |
11115 | F: drivers/net/usb/ | |
11116 | ||
1da177e4 | 11117 | USB OHCI DRIVER |
578333ab | 11118 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11119 | L: linux-usb@vger.kernel.org |
578333ab | 11120 | S: Maintained |
679655da JP |
11121 | F: Documentation/usb/ohci.txt |
11122 | F: drivers/usb/host/ohci* | |
1da177e4 | 11123 | |
963ffa3e PC |
11124 | USB OTG FSM (Finite State Machine) |
11125 | M: Peter Chen <Peter.Chen@freescale.com> | |
8373856d | 11126 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
11127 | L: linux-usb@vger.kernel.org |
11128 | S: Maintained | |
11129 | F: drivers/usb/common/usb-otg-fsm.c | |
11130 | ||
563da3a9 VM |
11131 | USB OVER IP DRIVER |
11132 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
11133 | M: Shuah Khan <shuah.kh@samsung.com> | |
11134 | L: linux-usb@vger.kernel.org | |
11135 | S: Maintained | |
11136 | F: drivers/usb/usbip/ | |
11137 | F: tools/usb/usbip/ | |
11138 | ||
1da177e4 | 11139 | USB PEGASUS DRIVER |
a16b945c | 11140 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 11141 | L: linux-usb@vger.kernel.org |
043600a6 | 11142 | L: netdev@vger.kernel.org |
052e3128 PM |
11143 | T: git git://github.com/petkan/pegasus.git |
11144 | W: https://github.com/petkan/pegasus | |
1da177e4 | 11145 | S: Maintained |
679655da | 11146 | F: drivers/net/usb/pegasus.* |
1da177e4 | 11147 | |
d3ad558f FB |
11148 | USB PHY LAYER |
11149 | M: Felipe Balbi <balbi@ti.com> | |
11150 | L: linux-usb@vger.kernel.org | |
11151 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
11152 | S: Maintained | |
11153 | F: drivers/usb/phy/ | |
d3ad558f | 11154 | |
73e4fb3f | 11155 | USB PRINTER DRIVER (usblp) |
8b58be88 | 11156 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 11157 | L: linux-usb@vger.kernel.org |
73e4fb3f | 11158 | S: Supported |
679655da | 11159 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
11160 | |
11161 | USB RTL8150 DRIVER | |
a16b945c | 11162 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 11163 | L: linux-usb@vger.kernel.org |
043600a6 | 11164 | L: netdev@vger.kernel.org |
052e3128 PM |
11165 | T: git git://github.com/petkan/rtl8150.git |
11166 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 11167 | S: Maintained |
679655da | 11168 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 11169 | |
f896b796 | 11170 | USB SERIAL SUBSYSTEM |
66085694 | 11171 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 11172 | L: linux-usb@vger.kernel.org |
4e68852d | 11173 | S: Maintained |
679655da | 11174 | F: Documentation/usb/usb-serial.txt |
f896b796 | 11175 | F: drivers/usb/serial/ |
679655da | 11176 | F: include/linux/usb/serial.h |
1da177e4 | 11177 | |
b3f0db1c SG |
11178 | USB SMSC75XX ETHERNET DRIVER |
11179 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
11180 | L: netdev@vger.kernel.org | |
11181 | S: Maintained | |
11182 | F: drivers/net/usb/smsc75xx.* | |
11183 | ||
2f7ca802 | 11184 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 11185 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 11186 | L: netdev@vger.kernel.org |
90b24cfb | 11187 | S: Maintained |
679655da | 11188 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 11189 | |
1da177e4 | 11190 | USB SUBSYSTEM |
879a5a00 | 11191 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 11192 | L: linux-usb@vger.kernel.org |
1da177e4 | 11193 | W: http://www.linux-usb.org |
08deed1e | 11194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 11195 | S: Supported |
679655da | 11196 | F: Documentation/usb/ |
679655da JP |
11197 | F: drivers/usb/ |
11198 | F: include/linux/usb.h | |
11199 | F: include/linux/usb/ | |
1da177e4 LT |
11200 | |
11201 | USB UHCI DRIVER | |
8b58be88 | 11202 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11203 | L: linux-usb@vger.kernel.org |
1da177e4 | 11204 | S: Maintained |
679655da | 11205 | F: drivers/usb/host/uhci* |
1da177e4 | 11206 | |
69ae9e3e | 11207 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 11208 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 11209 | L: netdev@vger.kernel.org |
69ae9e3e | 11210 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 11211 | S: Maintained |
679655da JP |
11212 | F: drivers/net/usb/usbnet.c |
11213 | F: include/linux/usb/usbnet.h | |
1da177e4 | 11214 | |
c0efd232 | 11215 | USB VIDEO CLASS |
c53ac071 | 11216 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 11217 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 11218 | L: linux-media@vger.kernel.org |
275ffde4 | 11219 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 11220 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 11221 | S: Maintained |
0c0d06ca | 11222 | F: drivers/media/usb/uvc/ |
6c0f0359 | 11223 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 11224 | |
b60b9c45 HV |
11225 | USB VISION DRIVER |
11226 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11227 | L: linux-media@vger.kernel.org | |
11228 | T: git git://linuxtv.org/media_tree.git | |
11229 | W: http://linuxtv.org | |
11230 | S: Odd Fixes | |
11231 | F: drivers/media/usb/usbvision/ | |
11232 | ||
8282da47 LP |
11233 | USB WEBCAM GADGET |
11234 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
11235 | L: linux-usb@vger.kernel.org | |
11236 | S: Maintained | |
3a83c16e | 11237 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 11238 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 11239 | |
bf164cc0 | 11240 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 11241 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
11242 | L: linux-wireless@vger.kernel.org |
11243 | S: Maintained | |
679655da | 11244 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 11245 | |
eb6bab13 | 11246 | USB XHCI DRIVER |
03d85053 | 11247 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
11248 | L: linux-usb@vger.kernel.org |
11249 | S: Supported | |
36d0344c SS |
11250 | F: drivers/usb/host/xhci* |
11251 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 11252 | |
1da177e4 | 11253 | USB ZD1201 DRIVER |
4086b9ca | 11254 | L: linux-wireless@vger.kernel.org |
1da177e4 | 11255 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 11256 | S: Orphan |
679655da | 11257 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 11258 | |
b7eee616 | 11259 | USB ZR364XX DRIVER |
8b58be88 | 11260 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 11261 | L: linux-usb@vger.kernel.org |
661263b5 | 11262 | L: linux-media@vger.kernel.org |
275ffde4 | 11263 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
11264 | W: http://royale.zerezo.com/zr364xx/ |
11265 | S: Maintained | |
679655da | 11266 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 11267 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 11268 | |
289fcff4 HK |
11269 | ULPI BUS |
11270 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
11271 | L: linux-usb@vger.kernel.org | |
11272 | S: Maintained | |
11273 | F: drivers/usb/common/ulpi.c | |
11274 | F: include/linux/ulpi/ | |
11275 | ||
e7839f25 | 11276 | USER-MODE LINUX (UML) |
8b58be88 | 11277 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 11278 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
11279 | L: user-mode-linux-devel@lists.sourceforge.net |
11280 | L: user-mode-linux-user@lists.sourceforge.net | |
11281 | W: http://user-mode-linux.sourceforge.net | |
11282 | S: Maintained | |
61516587 | 11283 | F: Documentation/virtual/uml/ |
679655da | 11284 | F: arch/um/ |
b070989a | 11285 | F: arch/x86/um/ |
679655da JP |
11286 | F: fs/hostfs/ |
11287 | F: fs/hppfs/ | |
b7eee616 | 11288 | |
e5f114e9 | 11289 | USERSPACE I/O (UIO) |
6a534c9d | 11290 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 11291 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 11292 | S: Maintained |
3d3fecbd | 11293 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
11294 | F: Documentation/DocBook/uio-howto.tmpl |
11295 | F: drivers/uio/ | |
11296 | F: include/linux/uio*.h | |
e5f114e9 | 11297 | |
256cccbe | 11298 | UTIL-LINUX PACKAGE |
8b58be88 | 11299 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
11300 | L: util-linux@vger.kernel.org |
11301 | W: http://en.wikipedia.org/wiki/Util-linux | |
11302 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
11303 | S: Maintained |
11304 | ||
c1fd1c07 | 11305 | UVESAFB DRIVER |
8b58be88 | 11306 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 11307 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
11308 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
11309 | S: Maintained | |
679655da | 11310 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 11311 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 11312 | |
456930d8 SA |
11313 | VF610 NAND DRIVER |
11314 | M: Stefan Agner <stefan@agner.ch> | |
11315 | L: linux-mtd@lists.infradead.org | |
11316 | S: Supported | |
11317 | F: drivers/mtd/nand/vf610_nfc.c | |
11318 | ||
4480f15b | 11319 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 11320 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 11321 | S: Maintained |
679655da JP |
11322 | F: Documentation/filesystems/vfat.txt |
11323 | F: fs/fat/ | |
1da177e4 | 11324 | |
cba3345c AW |
11325 | VFIO DRIVER |
11326 | M: Alex Williamson <alex.williamson@redhat.com> | |
11327 | L: kvm@vger.kernel.org | |
11328 | S: Maintained | |
11329 | F: Documentation/vfio.txt | |
11330 | F: drivers/vfio/ | |
11331 | F: include/linux/vfio.h | |
c117ab84 | 11332 | F: include/uapi/linux/vfio.h |
cba3345c | 11333 | |
a714ea5f AW |
11334 | VFIO PLATFORM DRIVER |
11335 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
11336 | L: kvm@vger.kernel.org | |
11337 | S: Maintained | |
11338 | F: drivers/vfio/platform/ | |
11339 | ||
9e6f3438 PO |
11340 | VIDEOBUF2 FRAMEWORK |
11341 | M: Pawel Osciak <pawel@osciak.com> | |
11342 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 11343 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
11344 | L: linux-media@vger.kernel.org |
11345 | S: Maintained | |
90d72ac6 | 11346 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
11347 | F: include/media/videobuf2-* |
11348 | ||
5523662e SCP |
11349 | VIRTUAL SERIO DEVICE DRIVER |
11350 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
11351 | S: Maintained | |
11352 | F: drivers/input/serio/userio.c | |
11353 | F: include/uapi/linux/userio.h | |
11354 | ||
9a82446b AS |
11355 | VIRTIO CONSOLE DRIVER |
11356 | M: Amit Shah <amit.shah@redhat.com> | |
11357 | L: virtualization@lists.linux-foundation.org | |
11358 | S: Maintained | |
11359 | F: drivers/char/virtio_console.c | |
11360 | F: include/linux/virtio_console.h | |
c117ab84 | 11361 | F: include/uapi/linux/virtio_console.h |
9a82446b | 11362 | |
2426ec8f | 11363 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
11364 | M: "Michael S. Tsirkin" <mst@redhat.com> |
11365 | L: virtualization@lists.linux-foundation.org | |
11366 | S: Maintained | |
11367 | F: drivers/virtio/ | |
c893c8d7 | 11368 | F: tools/virtio/ |
2426ec8f MT |
11369 | F: drivers/net/virtio_net.c |
11370 | F: drivers/block/virtio_blk.c | |
11371 | F: include/linux/virtio_*.h | |
916cdabc | 11372 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 11373 | |
f2dbda3b CH |
11374 | VIRTIO DRIVERS FOR S390 |
11375 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
11376 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
11377 | L: linux-s390@vger.kernel.org | |
11378 | L: virtualization@lists.linux-foundation.org | |
11379 | L: kvm@vger.kernel.org | |
11380 | S: Supported | |
1b568d93 | 11381 | F: drivers/s390/virtio/ |
f2dbda3b | 11382 | |
4ad6ee91 GH |
11383 | VIRTIO GPU DRIVER |
11384 | M: David Airlie <airlied@linux.ie> | |
11385 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11386 | L: dri-devel@lists.freedesktop.org | |
11387 | L: virtualization@lists.linux-foundation.org | |
11388 | S: Maintained | |
11389 | F: drivers/gpu/drm/virtio/ | |
11390 | F: include/uapi/linux/virtio_gpu.h | |
11391 | ||
3a4d5c94 MT |
11392 | VIRTIO HOST (VHOST) |
11393 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
11394 | L: kvm@vger.kernel.org | |
c996d8b9 | 11395 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
11396 | L: netdev@vger.kernel.org |
11397 | S: Maintained | |
11398 | F: drivers/vhost/ | |
c117ab84 | 11399 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 11400 | |
271c8651 GH |
11401 | VIRTIO INPUT DRIVER |
11402 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11403 | S: Maintained | |
11404 | F: drivers/virtio/virtio_input.c | |
11405 | F: include/uapi/linux/virtio_input.h | |
11406 | ||
1da177e4 | 11407 | VIA RHINE NETWORK DRIVER |
210347e1 | 11408 | S: Orphan |
f2148a47 | 11409 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 11410 | |
f0bf7f61 | 11411 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 11412 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 11413 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
11414 | S: Maintained |
11415 | F: drivers/mmc/host/via-sdmmc.c | |
11416 | ||
69e4a7c2 | 11417 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 11418 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 11419 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 11420 | S: Maintained |
c7babebd FTS |
11421 | F: include/linux/via-core.h |
11422 | F: include/linux/via-gpio.h | |
11423 | F: include/linux/via_i2c.h | |
8a61f013 | 11424 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 11425 | |
01f20734 | 11426 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 11427 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
11428 | L: netdev@vger.kernel.org |
11429 | S: Maintained | |
f2148a47 | 11430 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 11431 | |
f73f8173 AW |
11432 | VIRT LIB |
11433 | M: Alex Williamson <alex.williamson@redhat.com> | |
11434 | M: Paolo Bonzini <pbonzini@redhat.com> | |
11435 | L: kvm@vger.kernel.org | |
11436 | S: Supported | |
11437 | F: virt/lib/ | |
11438 | ||
77911fd2 | 11439 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
11440 | M: Hans Verkuil <hverkuil@xs4all.nl> |
11441 | L: linux-media@vger.kernel.org | |
11442 | T: git git://linuxtv.org/media_tree.git | |
11443 | W: http://linuxtv.org | |
11444 | S: Maintained | |
77911fd2 | 11445 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 11446 | |
be7f8273 | 11447 | VLAN (802.1Q) |
8b58be88 | 11448 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
11449 | L: netdev@vger.kernel.org |
11450 | S: Maintained | |
679655da JP |
11451 | F: drivers/net/macvlan.c |
11452 | F: include/linux/if_*vlan.h | |
11453 | F: net/8021q/ | |
be7f8273 | 11454 | |
55e331cf | 11455 | VLYNQ BUS |
8b58be88 | 11456 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 11457 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
11458 | S: Maintained |
11459 | F: drivers/vlynq/vlynq.c | |
11460 | F: include/linux/vlynq.h | |
11461 | ||
390beae4 | 11462 | VME SUBSYSTEM |
74c600e3 | 11463 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 11464 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
11465 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
11466 | L: devel@driverdev.osuosl.org | |
11467 | S: Maintained | |
11468 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
11469 | F: Documentation/vme_api.txt | |
11470 | F: drivers/staging/vme/ | |
11471 | F: drivers/vme/ | |
11472 | F: include/linux/vme* | |
11473 | ||
4488e09b AK |
11474 | VMWARE HYPERVISOR INTERFACE |
11475 | M: Alok Kataria <akataria@vmware.com> | |
11476 | L: virtualization@lists.linux-foundation.org | |
11477 | S: Supported | |
11478 | F: arch/x86/kernel/cpu/vmware.c | |
11479 | ||
73b35d07 DT |
11480 | VMWARE BALLOON DRIVER |
11481 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
11482 | M: Philip Moltmann <moltmann@vmware.com> | |
11483 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11484 | L: linux-kernel@vger.kernel.org | |
11485 | S: Maintained | |
11486 | F: drivers/misc/vmw_balloon.c | |
11487 | ||
8b8be51b TH |
11488 | VMWARE VMMOUSE SUBDRIVER |
11489 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
11490 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11491 | L: linux-input@vger.kernel.org | |
11492 | S: Maintained | |
11493 | F: drivers/input/mouse/vmmouse.c | |
11494 | F: drivers/input/mouse/vmmouse.h | |
11495 | ||
d1a890fa | 11496 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 11497 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
11498 | M: "VMware, Inc." <pv-drivers@vmware.com> |
11499 | L: netdev@vger.kernel.org | |
11500 | S: Maintained | |
11501 | F: drivers/net/vmxnet3/ | |
d1a890fa | 11502 | |
851b1642 | 11503 | VMware PVSCSI driver |
f2d7e40e | 11504 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
11505 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
11506 | L: linux-scsi@vger.kernel.org | |
11507 | S: Maintained | |
11508 | F: drivers/scsi/vmw_pvscsi.c | |
11509 | F: drivers/scsi/vmw_pvscsi.h | |
11510 | ||
e53e86c7 | 11511 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 11512 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11513 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 11514 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 11515 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 11516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 11517 | S: Supported |
679655da JP |
11518 | F: drivers/regulator/ |
11519 | F: include/linux/regulator/ | |
e53e86c7 | 11520 | |
081958eb DA |
11521 | VRF |
11522 | M: David Ahern <dsa@cumulusnetworks.com> | |
11523 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
11524 | L: netdev@vger.kernel.org | |
11525 | S: Maintained | |
11526 | F: drivers/net/vrf.c | |
562d897d | 11527 | F: Documentation/networking/vrf.txt |
081958eb | 11528 | |
ab41319e | 11529 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 11530 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
11531 | L: lm-sensors@lm-sensors.org |
11532 | S: Maintained | |
679655da JP |
11533 | F: Documentation/hwmon/vt1211 |
11534 | F: drivers/hwmon/vt1211.c | |
ab41319e | 11535 | |
1de9e371 | 11536 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 11537 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
11538 | L: lm-sensors@lm-sensors.org |
11539 | S: Maintained | |
679655da | 11540 | F: drivers/hwmon/vt8231.c |
1de9e371 | 11541 | |
88095e7b TO |
11542 | VUB300 USB to SDIO/SD/MMC bridge chip |
11543 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
11544 | L: linux-mmc@vger.kernel.org | |
11545 | L: linux-usb@vger.kernel.org | |
11546 | S: Supported | |
11547 | F: drivers/mmc/host/vub300.c | |
11548 | ||
1da177e4 | 11549 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 11550 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 11551 | S: Maintained |
679655da JP |
11552 | F: Documentation/w1/ |
11553 | F: drivers/w1/ | |
1da177e4 | 11554 | |
13927079 | 11555 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 11556 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 11557 | L: lm-sensors@lm-sensors.org |
25845c22 | 11558 | S: Maintained |
679655da JP |
11559 | F: Documentation/hwmon/w83791d |
11560 | F: drivers/hwmon/w83791d.c | |
13927079 | 11561 | |
61db011d | 11562 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 11563 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
11564 | L: lm-sensors@lm-sensors.org |
11565 | S: Maintained | |
679655da JP |
11566 | F: Documentation/hwmon/w83793 |
11567 | F: drivers/hwmon/w83793.c | |
61db011d | 11568 | |
e3760b43 | 11569 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 11570 | M: Jean Delvare <jdelvare@suse.com> |
e3760b43 JD |
11571 | L: lm-sensors@lm-sensors.org |
11572 | S: Maintained | |
11573 | F: drivers/hwmon/w83795.c | |
11574 | ||
1da177e4 | 11575 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 11576 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 11577 | S: Maintained |
679655da | 11578 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 11579 | |
b4e05923 HG |
11580 | WACOM PROTOCOL 4 SERIAL TABLETS |
11581 | M: Julian Squires <julian@cipht.net> | |
11582 | M: Hans de Goede <hdegoede@redhat.com> | |
11583 | L: linux-input@vger.kernel.org | |
11584 | S: Maintained | |
11585 | F: drivers/input/tablet/wacom_serial4.c | |
11586 | ||
3527761c | 11587 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 11588 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
11589 | L: linux-watchdog@vger.kernel.org |
11590 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 11591 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 11592 | S: Maintained |
679655da JP |
11593 | F: Documentation/watchdog/ |
11594 | F: drivers/watchdog/ | |
11595 | F: include/linux/watchdog.h | |
c117ab84 | 11596 | F: include/uapi/linux/watchdog.h |
3527761c | 11597 | |
1da177e4 | 11598 | WD7000 SCSI DRIVER |
8b58be88 | 11599 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
11600 | L: linux-scsi@vger.kernel.org |
11601 | S: Maintained | |
679655da | 11602 | F: drivers/scsi/wd7000.c |
1da177e4 | 11603 | |
b22e00f3 DH |
11604 | WIIMOTE HID DRIVER |
11605 | M: David Herrmann <dh.herrmann@googlemail.com> | |
11606 | L: linux-input@vger.kernel.org | |
11607 | S: Maintained | |
11608 | F: drivers/hid/hid-wiimote* | |
11609 | ||
e258b80e | 11610 | WINBOND CIR DRIVER |
364e9e18 | 11611 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 11612 | S: Maintained |
116ab806 | 11613 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 11614 | |
8a70da82 | 11615 | WIMAX STACK |
8b58be88 | 11616 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 11617 | M: linux-wimax@intel.com |
49e7d9df | 11618 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
11619 | S: Supported |
11620 | W: http://linuxwimax.org | |
315987dc | 11621 | F: Documentation/wimax/README.wimax |
315987dc JP |
11622 | F: include/linux/wimax/debug.h |
11623 | F: include/net/wimax.h | |
c117ab84 | 11624 | F: include/uapi/linux/wimax.h |
315987dc | 11625 | F: net/wimax/ |
8a70da82 | 11626 | |
5fc14680 | 11627 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 11628 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 11629 | S: Maintained |
679655da | 11630 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 11631 | |
1da177e4 | 11632 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 11633 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 11634 | L: linux-wireless@vger.kernel.org |
926554c4 | 11635 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 11636 | S: Maintained |
679655da | 11637 | F: drivers/net/wireless/wl3501* |
1da177e4 | 11638 | |
055bcbcb | 11639 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 11640 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
11641 | T: git https://github.com/CirrusLogic/linux-drivers.git |
11642 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 11643 | S: Supported |
3768f0b1 | 11644 | F: Documentation/hwmon/wm83?? |
f494993f CK |
11645 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
11646 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
11647 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 11648 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 11649 | F: drivers/clk/clk-wm83*.c |
9c309598 | 11650 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 11651 | F: drivers/leds/leds-wm83*.c |
25b273ba | 11652 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 11653 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 11654 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
11655 | F: drivers/input/misc/wm831x-on.c |
11656 | F: drivers/input/touchscreen/wm831x-ts.c | |
11657 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
11658 | F: drivers/mfd/arizona* |
11659 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
11660 | F: drivers/power/wm83*.c |
11661 | F: drivers/rtc/rtc-wm83*.c | |
11662 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 11663 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 11664 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 11665 | F: include/linux/mfd/arizona/ |
3860e6c4 | 11666 | F: include/linux/mfd/wm831x/ |
b75ea16a | 11667 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 11668 | F: include/linux/mfd/wm8400* |
59ec6da2 | 11669 | F: include/linux/wm97xx.h |
055bcbcb | 11670 | F: include/sound/wm????.h |
9c309598 | 11671 | F: sound/soc/codecs/arizona.? |
055bcbcb | 11672 | F: sound/soc/codecs/wm* |
b75ea16a | 11673 | |
3e6cd7a4 TH |
11674 | WORKQUEUE |
11675 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 11676 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
11677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
11678 | S: Maintained | |
11679 | F: include/linux/workqueue.h | |
11680 | F: kernel/workqueue.c | |
11681 | F: Documentation/workqueue.txt | |
11682 | ||
1da177e4 | 11683 | X.25 NETWORK LAYER |
8bf28059 | 11684 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 11685 | L: linux-x25@vger.kernel.org |
8bf28059 | 11686 | S: Odd Fixes |
679655da JP |
11687 | F: Documentation/networking/x25* |
11688 | F: include/net/x25* | |
11689 | F: net/x25/ | |
1da177e4 | 11690 | |
e2d1d6c0 | 11691 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
11692 | M: Thomas Gleixner <tglx@linutronix.de> |
11693 | M: Ingo Molnar <mingo@redhat.com> | |
11694 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 11695 | M: x86@kernel.org |
981c3a4f | 11696 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 11698 | S: Maintained |
679655da JP |
11699 | F: Documentation/x86/ |
11700 | F: arch/x86/ | |
e2d1d6c0 | 11701 | |
d0944853 | 11702 | X86 PLATFORM DRIVERS |
e181ba15 | 11703 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 11704 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 11705 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 11706 | S: Maintained |
14430813 | 11707 | F: drivers/platform/x86/ |
3a4bceef | 11708 | F: drivers/platform/olpc/ |
d0944853 | 11709 | |
c1f5c54b IM |
11710 | X86 MCE INFRASTRUCTURE |
11711 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 11712 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
11713 | L: linux-edac@vger.kernel.org |
11714 | S: Maintained | |
11715 | F: arch/x86/kernel/cpu/mcheck/* | |
11716 | ||
79ebdc95 BP |
11717 | X86 MICROCODE UPDATE SUPPORT |
11718 | M: Borislav Petkov <bp@alien8.de> | |
11719 | S: Maintained | |
11720 | F: arch/x86/kernel/cpu/microcode/* | |
11721 | ||
f0905c5a AL |
11722 | X86 VDSO |
11723 | M: Andy Lutomirski <luto@amacapital.net> | |
11724 | L: linux-kernel@vger.kernel.org | |
11725 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
11726 | S: Maintained | |
d603c8e1 | 11727 | F: arch/x86/entry/vdso/ |
f0905c5a | 11728 | |
d6fad502 | 11729 | XC2028/3028 TUNER DRIVER |
009a5410 | 11730 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d6fad502 MCC |
11731 | L: linux-media@vger.kernel.org |
11732 | W: http://linuxtv.org | |
11733 | T: git git://linuxtv.org/media_tree.git | |
11734 | S: Maintained | |
11735 | F: drivers/media/tuners/tuner-xc2028.* | |
11736 | ||
c4468085 | 11737 | XEN HYPERVISOR INTERFACE |
c4468085 | 11738 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
11739 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
11740 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 11741 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 11742 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
11743 | S: Supported |
11744 | F: arch/x86/xen/ | |
11745 | F: drivers/*/xen-*front.c | |
11746 | F: drivers/xen/ | |
11747 | F: arch/x86/include/asm/xen/ | |
11748 | F: include/xen/ | |
c117ab84 | 11749 | F: include/uapi/xen/ |
c4468085 | 11750 | |
77bfb479 SS |
11751 | XEN HYPERVISOR ARM |
11752 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 11753 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
11754 | S: Supported |
11755 | F: arch/arm/xen/ | |
11756 | F: arch/arm/include/asm/xen/ | |
11757 | ||
b475e83f SS |
11758 | XEN HYPERVISOR ARM64 |
11759 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 11760 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
11761 | S: Supported |
11762 | F: arch/arm64/xen/ | |
11763 | F: arch/arm64/include/asm/xen/ | |
11764 | ||
9b57e1a7 IC |
11765 | XEN NETWORK BACKEND DRIVER |
11766 | M: Ian Campbell <ian.campbell@citrix.com> | |
8386040b | 11767 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 11768 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
11769 | L: netdev@vger.kernel.org |
11770 | S: Supported | |
11771 | F: drivers/net/xen-netback/* | |
11772 | ||
c5f8e29d KRW |
11773 | XEN PCI SUBSYSTEM |
11774 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 11775 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
11776 | S: Supported |
11777 | F: arch/x86/pci/*xen* | |
11778 | F: drivers/pci/*xen* | |
11779 | ||
a2c5ae65 KRW |
11780 | XEN BLOCK SUBSYSTEM |
11781 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 11782 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
11783 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
11784 | S: Supported | |
11785 | F: drivers/block/xen-blkback/* | |
11786 | F: drivers/block/xen* | |
11787 | ||
15d03609 JG |
11788 | XEN PVSCSI DRIVERS |
11789 | M: Juergen Gross <jgross@suse.com> | |
11790 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
11791 | L: linux-scsi@vger.kernel.org | |
11792 | S: Supported | |
11793 | F: drivers/scsi/xen-scsifront.c | |
11794 | F: drivers/xen/xen-scsiback.c | |
11795 | F: include/xen/interface/io/vscsiif.h | |
11796 | ||
c5f8e29d KRW |
11797 | XEN SWIOTLB SUBSYSTEM |
11798 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 11799 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
11800 | S: Supported |
11801 | F: arch/x86/xen/*swiotlb* | |
11802 | F: drivers/xen/*swiotlb* | |
11803 | ||
1da177e4 LT |
11804 | XFS FILESYSTEM |
11805 | P: Silicon Graphics Inc | |
809625ca | 11806 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 11807 | M: xfs@oss.sgi.com |
d7ede1aa | 11808 | L: xfs@oss.sgi.com |
1da177e4 | 11809 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 11810 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 11811 | S: Supported |
679655da JP |
11812 | F: Documentation/filesystems/xfs.txt |
11813 | F: fs/xfs/ | |
1da177e4 | 11814 | |
8a3b7a25 | 11815 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
11816 | M: Anirudha Sarangi <anirudh@xilinx.com> |
11817 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 11818 | S: Maintained |
11819 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
11820 | ||
238b8721 | 11821 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 11822 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
11823 | L: linux-serial@vger.kernel.org |
11824 | S: Maintained | |
df621252 | 11825 | F: drivers/tty/serial/uartlite.c |
238b8721 | 11826 | |
df330515 LP |
11827 | XILINX VIDEO IP CORES |
11828 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
11829 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
11830 | L: linux-media@vger.kernel.org | |
11831 | T: git git://linuxtv.org/media_tree.git | |
11832 | S: Supported | |
11833 | F: Documentation/devicetree/bindings/media/xilinx/ | |
11834 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 11835 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 11836 | |
74316949 EB |
11837 | XILLYBUS DRIVER |
11838 | M: Eli Billauer <eli.billauer@gmail.com> | |
11839 | L: linux-kernel@vger.kernel.org | |
11840 | S: Supported | |
11841 | F: drivers/char/xillybus/ | |
11842 | ||
f620e4b8 MF |
11843 | XTENSA XTFPGA PLATFORM SUPPORT |
11844 | M: Max Filippov <jcmvbkbc@gmail.com> | |
11845 | L: linux-xtensa@linux-xtensa.org | |
11846 | S: Maintained | |
11847 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 11848 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 11849 | |
1da177e4 | 11850 | YAM DRIVER FOR AX.25 |
8b58be88 | 11851 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
11852 | L: linux-hams@vger.kernel.org |
11853 | S: Maintained | |
679655da JP |
11854 | F: drivers/net/hamradio/yam* |
11855 | F: include/linux/yam.h | |
1da177e4 | 11856 | |
af64a5eb | 11857 | YEALINK PHONE DRIVER |
8b58be88 | 11858 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
11859 | L: usbb2k-api-dev@nongnu.org |
11860 | S: Maintained | |
679655da JP |
11861 | F: Documentation/input/yealink.txt |
11862 | F: drivers/input/misc/yealink.* | |
af64a5eb | 11863 | |
1da177e4 | 11864 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 11865 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
11866 | W: http://yaina.de/jreuter/ |
11867 | W: http://www.qsl.net/dl1bke/ | |
11868 | L: linux-hams@vger.kernel.org | |
11869 | S: Maintained | |
679655da JP |
11870 | F: Documentation/networking/z8530drv.txt |
11871 | F: drivers/net/hamradio/*scc.c | |
11872 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 11873 | |
0cf31ec1 | 11874 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 11875 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
11876 | L: linux-mm@kvack.org |
11877 | S: Maintained | |
11878 | F: mm/zbud.c | |
11879 | F: include/linux/zbud.h | |
11880 | ||
7c0c3afb | 11881 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
11882 | M: Daniel Drake <dsd@gentoo.org> |
11883 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 11884 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 11885 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
11886 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
11887 | S: Maintained | |
679655da | 11888 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 11889 | |
20263029 DS |
11890 | ZPOOL COMPRESSED PAGE STORAGE API |
11891 | M: Dan Streetman <ddstreet@ieee.org> | |
11892 | L: linux-mm@kvack.org | |
11893 | S: Maintained | |
11894 | F: mm/zpool.c | |
11895 | F: include/linux/zpool.h | |
11896 | ||
1da177e4 | 11897 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 11898 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 11899 | L: linux-media@vger.kernel.org |
1da177e4 | 11900 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 11901 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 11902 | S: Odd Fixes |
90d72ac6 | 11903 | F: drivers/media/pci/zoran/ |
1da177e4 | 11904 | |
6920f2cc MK |
11905 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
11906 | M: Minchan Kim <minchan@kernel.org> | |
11907 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 11908 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
11909 | L: linux-kernel@vger.kernel.org |
11910 | S: Maintained | |
11911 | F: drivers/block/zram/ | |
11912 | F: Documentation/blockdev/zram.txt | |
11913 | ||
8b4a4080 | 11914 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 11915 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 11916 | S: Maintained |
df621252 | 11917 | F: drivers/tty/serial/zs.* |
8b4a4080 | 11918 | |
eae70d06 MK |
11919 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
11920 | M: Minchan Kim <minchan@kernel.org> | |
11921 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 11922 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
11923 | L: linux-mm@kvack.org |
11924 | S: Maintained | |
11925 | F: mm/zsmalloc.c | |
11926 | F: include/linux/zsmalloc.h | |
d02be50d | 11927 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 11928 | |
0cf31ec1 | 11929 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 11930 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
11931 | L: linux-mm@kvack.org |
11932 | S: Maintained | |
11933 | F: mm/zswap.c | |
11934 | ||
1da177e4 | 11935 | THE REST |
8b58be88 | 11936 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 11937 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 11938 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 11939 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 11940 | S: Buried alive in reporters |
34d03cc1 JP |
11941 | F: * |
11942 | F: */ |